'+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;
}));
});
-->
หลิว ย่าหนาน โอลิมปิก 2004 Liu Yanan (刘亚男) Volleyball Olympics
หลิว ย่าหนาน วอลเลย์บอลหญิงโอลิมปิก 2004 โดยวอลเลย์บอลหญิงทีมชาติจีน สามารถคว้าเหรียญทองไปครองได้เป็นสมัยที่ 2
Liu Yanan (刘亚男) Volleyball Olympics 2004
เพลง/song
Tobu - Hope
https://www.youtube.com/watch?v=EP625xQIGzs
published: 30 Jan 2022
Liu Yanan WGP 2003
published: 29 May 2016
Liu Yanan&Zhou Suhong(刘亚男&周苏红)
They are the rear of the iron triangle, is a good partner in the front row, To Liu 4 and Zhou 7(她们是后排的铁三角,是前排的好搭档,致刘4和周7)
published: 04 Jul 2015
홍석(HONGSEOK) & 옌안(YANAN) - '小幸運 - 나의 소녀시대 OST' (Cover) (To Do List)
홍석(HONGSEOK) & 옌안(YANAN) - '小幸運(소행운) - 나의 소녀시대(我的少女時代 Our Times) OST' (Cover) (To Do List)
PENTAGON Official Youtube: https://www.youtube.com/c/officialpentagon
PENTAGON Official Facebook: https://www.facebook.com/pentagon.unitedcube
PENTAGON Official Twitter: https://twitter.com/CUBE_PTG
PENTAGON Official Instagram: https://www.instagram.com/CUBE_PTG/
PENTAGON Official Fansite: http://cafe.daum.net/cube-pentagon
ⓒ All Rights Reserved CUBE Entertainment
published: 11 Nov 2017
Yanan Liu
published: 09 Jan 2017
【突围赛直拍】凸凹凸组:刘亚楠 Liu Yanan | 了不起!舞社 | 苏有朋/王霏霏/程潇/李永钦TEN/赞多 | 优酷综艺 YOUKU SHOW
Join YOUKU SHOW membership to unlock extra eps and more bonuses: http://bit.ly/youkushowmembership
Shop officially licensed merch of your favorite YOUKU programs: https://bit.ly/KOITAKEyt
【了不起!舞社】由数位艺人组建自己的“女子舞社”,集结全中国齐舞专业人士及来自各行各业及校园中的舞蹈少女,通过数轮竞技,最终选出最强齐舞团,参加世界级专业齐舞大赛,打造专业性和大众审美兼具的优秀齐舞作品,展现舞蹈对年轻人的正面影响力。
【Great Dance Crew】As at last a team of female dancers will be formed, dancers from all walks of life are brought together: they may be professional dancers in China, dance enthusiasts hailing from different professions, or young female dancers who are still in school. Over several rounds of competition, the program aims to put together the strongest crew ever and send them to a world-level crew dance championship. The goal is to produce excellent crew dance pieces that are both professiona...
published: 11 Jun 2022
yanan liu
published: 27 Mar 2019
【Focus Cam】二公直拍 锐角组:刘亚楠 Liu Yanan | 了不起!舞社 | 苏有朋/王霏霏/程潇/李永钦TEN/赞多 | 优酷综艺 YOUKU SHOW
Join YOUKU SHOW membership to unlock extra eps and more bonuses: http://bit.ly/youkushowmembership
Shop officially licensed merch of your favorite YOUKU programs: https://bit.ly/KOITAKEyt
【了不起!舞社】由数位艺人组建自己的“女子舞社”,集结全中国齐舞专业人士及来自各行各业及校园中的舞蹈少女,通过数轮竞技,最终选出最强齐舞团,参加世界级专业齐舞大赛,打造专业性和大众审美兼具的优秀齐舞作品,展现舞蹈对年轻人的正面影响力。
【Great Dance Crew】As at last a team of female dancers will be formed, dancers from all walks of life are brought together: they may be professional dancers in China, dance enthusiasts hailing from different professions, or young female dancers who are still in school. Over several rounds of competition, the program aims to put together the strongest crew ever and send them to a world-level crew dance championship. The goal is to produce excellent crew dance pieces that are both professiona...
published: 04 Jun 2022
4:31
หลิว ย่าหนาน โอลิมปิก 2004 Liu Yanan (刘亚男) Volleyball Olympics
หลิว ย่าหนาน วอลเลย์บอลหญิงโอลิมปิก 2004 โดยวอลเลย์บอลหญิงทีมชาติจีน สามารถคว้าเหรียญทองไปครองได้เป็นสมัยที่ 2
Liu Yanan (刘亚男) Volleyball Olympics 2004
เพลง...
หลิว ย่าหนาน วอลเลย์บอลหญิงโอลิมปิก 2004 โดยวอลเลย์บอลหญิงทีมชาติจีน สามารถคว้าเหรียญทองไปครองได้เป็นสมัยที่ 2
Liu Yanan (刘亚男) Volleyball Olympics 2004
เพลง/song
Tobu - Hope
https://www.youtube.com/watch?v=EP625xQIGzs
https://wn.com/หลิว_ย่าหนาน_โอลิมปิก_2004_Liu_Yanan_(刘亚男)_Volleyball_Olympics
หลิว ย่าหนาน วอลเลย์บอลหญิงโอลิมปิก 2004 โดยวอลเลย์บอลหญิงทีมชาติจีน สามารถคว้าเหรียญทองไปครองได้เป็นสมัยที่ 2
Liu Yanan (刘亚男) Volleyball Olympics 2004
เพลง/song
Tobu - Hope
https://www.youtube.com/watch?v=EP625xQIGzs
published: 30 Jan 2022
views: 8521
3:16
Liu Yanan&Zhou Suhong(刘亚男&周苏红)
They are the rear of the iron triangle, is a good partner in the front row, To Liu 4 and Zhou 7(她们是后排的铁三角,是前排的好搭档,致刘4和周7)
They are the rear of the iron triangle, is a good partner in the front row, To Liu 4 and Zhou 7(她们是后排的铁三角,是前排的好搭档,致刘4和周7)
https://wn.com/Liu_Yanan_Zhou_Suhong(刘亚男_周苏红)
They are the rear of the iron triangle, is a good partner in the front row, To Liu 4 and Zhou 7(她们是后排的铁三角,是前排的好搭档,致刘4和周7)
published: 04 Jul 2015
views: 10241
4:36
홍석(HONGSEOK) & 옌안(YANAN) - '小幸運 - 나의 소녀시대 OST' (Cover) (To Do List)
홍석(HONGSEOK) & 옌안(YANAN) - '小幸運(소행운) - 나의 소녀시대(我的少女時代 Our Times) OST' (Cover) (To Do List)
PENTAGON Official Youtube: https://www.youtube.com/c/officialpentago...
홍석(HONGSEOK) & 옌안(YANAN) - '小幸運(소행운) - 나의 소녀시대(我的少女時代 Our Times) OST' (Cover) (To Do List)
PENTAGON Official Youtube: https://www.youtube.com/c/officialpentagon
PENTAGON Official Facebook: https://www.facebook.com/pentagon.unitedcube
PENTAGON Official Twitter: https://twitter.com/CUBE_PTG
PENTAGON Official Instagram: https://www.instagram.com/CUBE_PTG/
PENTAGON Official Fansite: http://cafe.daum.net/cube-pentagon
ⓒ All Rights Reserved CUBE Entertainment
https://wn.com/홍석(Hongseok)_옌안(Yanan)_'小幸運_나의_소녀시대_Ost'_(Cover)_(To_Do_List)
홍석(HONGSEOK) & 옌안(YANAN) - '小幸運(소행운) - 나의 소녀시대(我的少女時代 Our Times) OST' (Cover) (To Do List)
PENTAGON Official Youtube: https://www.youtube.com/c/officialpentagon
PENTAGON Official Facebook: https://www.facebook.com/pentagon.unitedcube
PENTAGON Official Twitter: https://twitter.com/CUBE_PTG
PENTAGON Official Instagram: https://www.instagram.com/CUBE_PTG/
PENTAGON Official Fansite: http://cafe.daum.net/cube-pentagon
ⓒ All Rights Reserved CUBE Entertainment
published: 11 Nov 2017
views: 801176
1:24
【突围赛直拍】凸凹凸组:刘亚楠 Liu Yanan | 了不起!舞社 | 苏有朋/王霏霏/程潇/李永钦TEN/赞多 | 优酷综艺 YOUKU SHOW
Join YOUKU SHOW membership to unlock extra eps and more bonuses: http://bit.ly/youkushowmembership
Shop officially licensed merch of your favorite YOUKU program...
Join YOUKU SHOW membership to unlock extra eps and more bonuses: http://bit.ly/youkushowmembership
Shop officially licensed merch of your favorite YOUKU programs: https://bit.ly/KOITAKEyt
【了不起!舞社】由数位艺人组建自己的“女子舞社”,集结全中国齐舞专业人士及来自各行各业及校园中的舞蹈少女,通过数轮竞技,最终选出最强齐舞团,参加世界级专业齐舞大赛,打造专业性和大众审美兼具的优秀齐舞作品,展现舞蹈对年轻人的正面影响力。
【Great Dance Crew】As at last a team of female dancers will be formed, dancers from all walks of life are brought together: they may be professional dancers in China, dance enthusiasts hailing from different professions, or young female dancers who are still in school. Over several rounds of competition, the program aims to put together the strongest crew ever and send them to a world-level crew dance championship. The goal is to produce excellent crew dance pieces that are both professional and entertaining and to highlight the positive impact dance has on young people.
社长:苏有朋 主理人:王霏霏/程潇/李永钦TEN/赞多
更新时间:每周六20点(UTC+8)更新;加入优酷综艺会员,解锁《了不起!舞社》会员衍生节目及更多福利!
Update schedule: Update at 8 pm(UTC+8) every SAT. Join YOUKU SHOW membership to unlock extra eps and more bonuses!
【了不起!舞社 Great Dance Crew】正片 Full EPs:https://bit.ly/3vkGmDz
【了不起!舞社 Great Dance Crew】会员及专享视频 Members-only Content:https://bit.ly/3OkDTle
【了不起!舞社 Great Dance Crew】衍生节目Spin-offs:https://bit.ly/384fcsM
【了不起!舞社 Great Dance Crew】舞台纯享 Performance Collection:https://bit.ly/3rw1wNP
【了不起!舞社 Great Dance Crew】抢先看&精彩看点 Trailer & Clips:https://bit.ly/3MeQVPz
【了不起!舞社 Great Dance Crew】花絮看个够 BTS: https://bit.ly/37oVJ63
【了不起!舞社 Great Dance Crew】原创特辑 Edits Compilation:https://bit.ly/3xAS7sa
【了不起!舞社 Great Dance Crew】Reaction: https://bit.ly/3uZBIvY
【了不起!舞社 Great Dance Crew】街舞MC廖搏reaction:https://bit.ly/3KO4rbM
【了不起!舞社 Great Dance Crew】舞台Focus Cam : https://bit.ly/3M1XNjs
#优酷综艺 #YOUKUSHOW #了不起舞社 #GreatDanceCrew
00:00 加入优酷综艺会员,解锁《了不起!舞社》会员衍生节目及更多福利
00:30 Join YOUKU SHOW membership to unlock extra eps and more bonuses
关注优酷频道,更多精彩节目等你来盘!
YOUTUBE YOUKU: https://bit.ly/youkuofficial
YOUTUBE YOUKU SHOW: http://bit.ly/youkushow
YOUTUBE YOUKU MOVIE: http://bit.ly/youkumovie
YOUTUBE YOUKU ANIMATION: https://bit.ly/youkuanimation
YOUTUBE YOUKU DOCUMENTARY: https://bit.ly/youkudocumentary
YOUTUBE YOUKU ROMANCE: http://bit.ly/youkuromance
YOUTUBE YOUKU English: http://bit.ly/youku_EN
YOUTUBE YOUKU Thai: http://bit.ly/youku_TH
YOUTUBE YOUKU Arabic: http://bit.ly/youku_ARAB
YOUTUBE YOUKU Spanish: http://bit.ly/youku_ESP
YOUTUBE YOUKU Indonesian: http://bit.ly/youku_ID
YOUTUBE YOUKU Vietnamese: http://bit.ly/youku_VN
关注优酷海外媒体账号获取更多最新资讯!
FACEBOOK YOUKU: https://bit.ly/youkufb
INSTAGRAM YOUKU: http://bit.ly/youkuins
TWITTER YOUKU: http://bit.ly/youkutwt
TIKTOK YOUKU: http://bit.ly/youkutiktok
更多精彩综艺,等你来追!
©《怦然心动20岁 第二季》https://bit.ly/3NfBlUK
©《一起探恋爱 》:https://bit.ly/3koj9vf
©《厉害了!舞社》:https://bit.ly/36woXQ4
©《了不起!舞社》:https://bit.ly/3vkGmDz
©《一刻综》:https://bit.ly/3usXesB
©《没谈过恋爱的我》:https://bit.ly/3pmD94q
©《新民乐国风夜》:https://bit.ly/3AtzNks
©《飘雪的日子来看你》:https://bit.ly/33eu2KZ
©《偶像就该酱婶 第一季》:https://bit.ly/3Gl5sqn
©《麻花特开心》:https://bit.ly/34h3Nnn
©《青春守艺人》:https://bit.ly/32gZlo7
©《单立人原创喜剧大赛 2021夏》:https://bit.ly/3oZw4GX
©《了不起的打工人》:https://bit.ly/3G6iBTz
©《冬梦之约 第二季》https://bit.ly/3I2hwhu
©《追光吧!》:https://bit.ly/3078Vsm
©《中国潮音》:https://bit.ly/3q49Mot
©《所有女生的offer》:http://bit.do/fSpiQ
©《上车吧!冠军》:https://bit.ly/3CzHhT6
©《我们恋爱吧3》:https://bit.ly/2WgDWbJ
©《一起火锅吧 第二季》:https://bit.ly/3kjA5Cu
©《这!就是灌篮 第四季》:https://bit.ly/3z1LOfl
©《这!就是街舞 第四季》:https://bit.ly/3snA9F1
©《“拳”力以赴的我们》:https://bit.ly/3ggJvO3
©《念念青春》:https://bit.ly/3BOkbs2
©《师父!我要跳舞了2》:https://bit.ly/3xMIaoU
©《草莓星球来的人》:https://bit.ly/3i8Gq2L
©《降落草莓星》:https://bit.ly/2Vhndof
©《这!就是潮流》:https://bit.ly/3k4oGYO
©《德云社》:https://bit.ly/3c26ASB
©《象牙山爱逗团》:https://bit.ly/3xgBtLI
©《怦然心动20岁》:https://bit.ly/3xok5VA
©《我是女演员》:https://bit.ly/3fTgj0e
©《老郭有新番 第一季》:https://bit.ly/3xdC5S7
©《同一屋檐下 第一季》:http://bit.ly/3on92aj
©《追光吧!哥哥》:https://bit.ly/33RvHU5
©《blueblue的少年》:http://bit.ly/3nYmPnm
©《宇宙打歌中心》:https://bit.ly/2UTSTMx
©《这!就是街舞S3》:https://bit.ly/2I25ytG
©《我们恋爱吧S2》:https://bit.ly/2I3pJav
©《这!就是灌篮S3》:https://bit.ly/363bLha
©《火星情报局S5》:https://bit.ly/3lc3eyE
©《奋斗吧主播》:https://bit.ly/2TRZWVq
©《想想办法吧!爸爸》:https://bit.ly/36kQaBd
©《看我的生活》:https://bit.ly/35zmYab
©《少年之名》:https://bit.ly/3mHYj9J
©《720潮流主理人》:http://bit.ly/34xNcZG
©《汪喵物语》:https://bit.ly/3nqz23J
©《师父!我要跳舞了》:https://bit.ly/3lJIsa2
©《我们的挑战》:https://bit.ly/2VarRjT
©《这!就是街舞S2》:https://bit.ly/2I1vci2
https://wn.com/【突围赛直拍】凸凹凸组:刘亚楠_Liu_Yanan_|_了不起!舞社_|_苏有朋_王霏霏_程潇_李永钦Ten_赞多_|_优酷综艺_Youku_Show
Join YOUKU SHOW membership to unlock extra eps and more bonuses: http://bit.ly/youkushowmembership
Shop officially licensed merch of your favorite YOUKU programs: https://bit.ly/KOITAKEyt
【了不起!舞社】由数位艺人组建自己的“女子舞社”,集结全中国齐舞专业人士及来自各行各业及校园中的舞蹈少女,通过数轮竞技,最终选出最强齐舞团,参加世界级专业齐舞大赛,打造专业性和大众审美兼具的优秀齐舞作品,展现舞蹈对年轻人的正面影响力。
【Great Dance Crew】As at last a team of female dancers will be formed, dancers from all walks of life are brought together: they may be professional dancers in China, dance enthusiasts hailing from different professions, or young female dancers who are still in school. Over several rounds of competition, the program aims to put together the strongest crew ever and send them to a world-level crew dance championship. The goal is to produce excellent crew dance pieces that are both professional and entertaining and to highlight the positive impact dance has on young people.
社长:苏有朋 主理人:王霏霏/程潇/李永钦TEN/赞多
更新时间:每周六20点(UTC+8)更新;加入优酷综艺会员,解锁《了不起!舞社》会员衍生节目及更多福利!
Update schedule: Update at 8 pm(UTC+8) every SAT. Join YOUKU SHOW membership to unlock extra eps and more bonuses!
【了不起!舞社 Great Dance Crew】正片 Full EPs:https://bit.ly/3vkGmDz
【了不起!舞社 Great Dance Crew】会员及专享视频 Members-only Content:https://bit.ly/3OkDTle
【了不起!舞社 Great Dance Crew】衍生节目Spin-offs:https://bit.ly/384fcsM
【了不起!舞社 Great Dance Crew】舞台纯享 Performance Collection:https://bit.ly/3rw1wNP
【了不起!舞社 Great Dance Crew】抢先看&精彩看点 Trailer & Clips:https://bit.ly/3MeQVPz
【了不起!舞社 Great Dance Crew】花絮看个够 BTS: https://bit.ly/37oVJ63
【了不起!舞社 Great Dance Crew】原创特辑 Edits Compilation:https://bit.ly/3xAS7sa
【了不起!舞社 Great Dance Crew】Reaction: https://bit.ly/3uZBIvY
【了不起!舞社 Great Dance Crew】街舞MC廖搏reaction:https://bit.ly/3KO4rbM
【了不起!舞社 Great Dance Crew】舞台Focus Cam : https://bit.ly/3M1XNjs
#优酷综艺 #YOUKUSHOW #了不起舞社 #GreatDanceCrew
00:00 加入优酷综艺会员,解锁《了不起!舞社》会员衍生节目及更多福利
00:30 Join YOUKU SHOW membership to unlock extra eps and more bonuses
关注优酷频道,更多精彩节目等你来盘!
YOUTUBE YOUKU: https://bit.ly/youkuofficial
YOUTUBE YOUKU SHOW: http://bit.ly/youkushow
YOUTUBE YOUKU MOVIE: http://bit.ly/youkumovie
YOUTUBE YOUKU ANIMATION: https://bit.ly/youkuanimation
YOUTUBE YOUKU DOCUMENTARY: https://bit.ly/youkudocumentary
YOUTUBE YOUKU ROMANCE: http://bit.ly/youkuromance
YOUTUBE YOUKU English: http://bit.ly/youku_EN
YOUTUBE YOUKU Thai: http://bit.ly/youku_TH
YOUTUBE YOUKU Arabic: http://bit.ly/youku_ARAB
YOUTUBE YOUKU Spanish: http://bit.ly/youku_ESP
YOUTUBE YOUKU Indonesian: http://bit.ly/youku_ID
YOUTUBE YOUKU Vietnamese: http://bit.ly/youku_VN
关注优酷海外媒体账号获取更多最新资讯!
FACEBOOK YOUKU: https://bit.ly/youkufb
INSTAGRAM YOUKU: http://bit.ly/youkuins
TWITTER YOUKU: http://bit.ly/youkutwt
TIKTOK YOUKU: http://bit.ly/youkutiktok
更多精彩综艺,等你来追!
©《怦然心动20岁 第二季》https://bit.ly/3NfBlUK
©《一起探恋爱 》:https://bit.ly/3koj9vf
©《厉害了!舞社》:https://bit.ly/36woXQ4
©《了不起!舞社》:https://bit.ly/3vkGmDz
©《一刻综》:https://bit.ly/3usXesB
©《没谈过恋爱的我》:https://bit.ly/3pmD94q
©《新民乐国风夜》:https://bit.ly/3AtzNks
©《飘雪的日子来看你》:https://bit.ly/33eu2KZ
©《偶像就该酱婶 第一季》:https://bit.ly/3Gl5sqn
©《麻花特开心》:https://bit.ly/34h3Nnn
©《青春守艺人》:https://bit.ly/32gZlo7
©《单立人原创喜剧大赛 2021夏》:https://bit.ly/3oZw4GX
©《了不起的打工人》:https://bit.ly/3G6iBTz
©《冬梦之约 第二季》https://bit.ly/3I2hwhu
©《追光吧!》:https://bit.ly/3078Vsm
©《中国潮音》:https://bit.ly/3q49Mot
©《所有女生的offer》:http://bit.do/fSpiQ
©《上车吧!冠军》:https://bit.ly/3CzHhT6
©《我们恋爱吧3》:https://bit.ly/2WgDWbJ
©《一起火锅吧 第二季》:https://bit.ly/3kjA5Cu
©《这!就是灌篮 第四季》:https://bit.ly/3z1LOfl
©《这!就是街舞 第四季》:https://bit.ly/3snA9F1
©《“拳”力以赴的我们》:https://bit.ly/3ggJvO3
©《念念青春》:https://bit.ly/3BOkbs2
©《师父!我要跳舞了2》:https://bit.ly/3xMIaoU
©《草莓星球来的人》:https://bit.ly/3i8Gq2L
©《降落草莓星》:https://bit.ly/2Vhndof
©《这!就是潮流》:https://bit.ly/3k4oGYO
©《德云社》:https://bit.ly/3c26ASB
©《象牙山爱逗团》:https://bit.ly/3xgBtLI
©《怦然心动20岁》:https://bit.ly/3xok5VA
©《我是女演员》:https://bit.ly/3fTgj0e
©《老郭有新番 第一季》:https://bit.ly/3xdC5S7
©《同一屋檐下 第一季》:http://bit.ly/3on92aj
©《追光吧!哥哥》:https://bit.ly/33RvHU5
©《blueblue的少年》:http://bit.ly/3nYmPnm
©《宇宙打歌中心》:https://bit.ly/2UTSTMx
©《这!就是街舞S3》:https://bit.ly/2I25ytG
©《我们恋爱吧S2》:https://bit.ly/2I3pJav
©《这!就是灌篮S3》:https://bit.ly/363bLha
©《火星情报局S5》:https://bit.ly/3lc3eyE
©《奋斗吧主播》:https://bit.ly/2TRZWVq
©《想想办法吧!爸爸》:https://bit.ly/36kQaBd
©《看我的生活》:https://bit.ly/35zmYab
©《少年之名》:https://bit.ly/3mHYj9J
©《720潮流主理人》:http://bit.ly/34xNcZG
©《汪喵物语》:https://bit.ly/3nqz23J
©《师父!我要跳舞了》:https://bit.ly/3lJIsa2
©《我们的挑战》:https://bit.ly/2VarRjT
©《这!就是街舞S2》:https://bit.ly/2I1vci2
published: 11 Jun 2022
views: 143
2:47
【Focus Cam】二公直拍 锐角组:刘亚楠 Liu Yanan | 了不起!舞社 | 苏有朋/王霏霏/程潇/李永钦TEN/赞多 | 优酷综艺 YOUKU SHOW
Join YOUKU SHOW membership to unlock extra eps and more bonuses: http://bit.ly/youkushowmembership
Shop officially licensed merch of your favorite YOUKU program...
Join YOUKU SHOW membership to unlock extra eps and more bonuses: http://bit.ly/youkushowmembership
Shop officially licensed merch of your favorite YOUKU programs: https://bit.ly/KOITAKEyt
【了不起!舞社】由数位艺人组建自己的“女子舞社”,集结全中国齐舞专业人士及来自各行各业及校园中的舞蹈少女,通过数轮竞技,最终选出最强齐舞团,参加世界级专业齐舞大赛,打造专业性和大众审美兼具的优秀齐舞作品,展现舞蹈对年轻人的正面影响力。
【Great Dance Crew】As at last a team of female dancers will be formed, dancers from all walks of life are brought together: they may be professional dancers in China, dance enthusiasts hailing from different professions, or young female dancers who are still in school. Over several rounds of competition, the program aims to put together the strongest crew ever and send them to a world-level crew dance championship. The goal is to produce excellent crew dance pieces that are both professional and entertaining and to highlight the positive impact dance has on young people.
社长:苏有朋 主理人:王霏霏/程潇/李永钦TEN/赞多
更新时间:每周六20点(UTC+8)更新;加入优酷综艺会员,解锁《了不起!舞社》会员衍生节目及更多福利!
Update schedule: Update at 8 pm(UTC+8) every SAT. Join YOUKU SHOW membership to unlock extra eps and more bonuses!
【了不起!舞社 Great Dance Crew】正片 Full EPs:https://bit.ly/3vkGmDz
【了不起!舞社 Great Dance Crew】会员及专享视频 Members-only Content:https://bit.ly/3OkDTle
【了不起!舞社 Great Dance Crew】衍生节目Spin-offs:https://bit.ly/384fcsM
【了不起!舞社 Great Dance Crew】舞台纯享 Performance Collection:https://bit.ly/3rw1wNP
【了不起!舞社 Great Dance Crew】抢先看&精彩看点 Trailer & Clips:https://bit.ly/3MeQVPz
【了不起!舞社 Great Dance Crew】花絮看个够 BTS: https://bit.ly/37oVJ63
【了不起!舞社 Great Dance Crew】原创特辑 Edits Compilation:https://bit.ly/3xAS7sa
【了不起!舞社 Great Dance Crew】Reaction: https://bit.ly/3uZBIvY
【了不起!舞社 Great Dance Crew】街舞MC廖搏reaction:https://bit.ly/3KO4rbM
【了不起!舞社 Great Dance Crew】舞台Focus Cam : https://bit.ly/3M1XNjs
#优酷综艺 #YOUKUSHOW #了不起舞社 #GreatDanceCrew
00:00 加入优酷综艺会员,解锁《了不起!舞社》会员衍生节目及更多福利
00:30 Join YOUKU SHOW membership to unlock extra eps and more bonuses
关注优酷频道,更多精彩节目等你来盘!
YOUTUBE YOUKU: https://bit.ly/youkuofficial
YOUTUBE YOUKU SHOW: http://bit.ly/youkushow
YOUTUBE YOUKU MOVIE: http://bit.ly/youkumovie
YOUTUBE YOUKU ANIMATION: https://bit.ly/youkuanimation
YOUTUBE YOUKU DOCUMENTARY: https://bit.ly/youkudocumentary
YOUTUBE YOUKU ROMANCE: http://bit.ly/youkuromance
YOUTUBE YOUKU English: http://bit.ly/youku_EN
YOUTUBE YOUKU Thai: http://bit.ly/youku_TH
YOUTUBE YOUKU Arabic: http://bit.ly/youku_ARAB
YOUTUBE YOUKU Spanish: http://bit.ly/youku_ESP
YOUTUBE YOUKU Indonesian: http://bit.ly/youku_ID
YOUTUBE YOUKU Vietnamese: http://bit.ly/youku_VN
关注优酷海外媒体账号获取更多最新资讯!
FACEBOOK YOUKU: https://bit.ly/youkufb
INSTAGRAM YOUKU: http://bit.ly/youkuins
TWITTER YOUKU: http://bit.ly/youkutwt
TIKTOK YOUKU: http://bit.ly/youkutiktok
更多精彩综艺,等你来追!
©《怦然心动20岁 第二季》https://bit.ly/3NfBlUK
©《一起探恋爱 》:https://bit.ly/3koj9vf
©《厉害了!舞社》:https://bit.ly/36woXQ4
©《了不起!舞社》:https://bit.ly/3vkGmDz
©《一刻综》:https://bit.ly/3usXesB
©《没谈过恋爱的我》:https://bit.ly/3pmD94q
©《新民乐国风夜》:https://bit.ly/3AtzNks
©《飘雪的日子来看你》:https://bit.ly/33eu2KZ
©《偶像就该酱婶 第一季》:https://bit.ly/3Gl5sqn
©《麻花特开心》:https://bit.ly/34h3Nnn
©《青春守艺人》:https://bit.ly/32gZlo7
©《单立人原创喜剧大赛 2021夏》:https://bit.ly/3oZw4GX
©《了不起的打工人》:https://bit.ly/3G6iBTz
©《冬梦之约 第二季》https://bit.ly/3I2hwhu
©《追光吧!》:https://bit.ly/3078Vsm
©《中国潮音》:https://bit.ly/3q49Mot
©《所有女生的offer》:http://bit.do/fSpiQ
©《上车吧!冠军》:https://bit.ly/3CzHhT6
©《我们恋爱吧3》:https://bit.ly/2WgDWbJ
©《一起火锅吧 第二季》:https://bit.ly/3kjA5Cu
©《这!就是灌篮 第四季》:https://bit.ly/3z1LOfl
©《这!就是街舞 第四季》:https://bit.ly/3snA9F1
©《“拳”力以赴的我们》:https://bit.ly/3ggJvO3
©《念念青春》:https://bit.ly/3BOkbs2
©《师父!我要跳舞了2》:https://bit.ly/3xMIaoU
©《草莓星球来的人》:https://bit.ly/3i8Gq2L
©《降落草莓星》:https://bit.ly/2Vhndof
©《这!就是潮流》:https://bit.ly/3k4oGYO
©《德云社》:https://bit.ly/3c26ASB
©《象牙山爱逗团》:https://bit.ly/3xgBtLI
©《怦然心动20岁》:https://bit.ly/3xok5VA
©《我是女演员》:https://bit.ly/3fTgj0e
©《老郭有新番 第一季》:https://bit.ly/3xdC5S7
©《同一屋檐下 第一季》:http://bit.ly/3on92aj
©《追光吧!哥哥》:https://bit.ly/33RvHU5
©《blueblue的少年》:http://bit.ly/3nYmPnm
©《宇宙打歌中心》:https://bit.ly/2UTSTMx
©《这!就是街舞S3》:https://bit.ly/2I25ytG
©《我们恋爱吧S2》:https://bit.ly/2I3pJav
©《这!就是灌篮S3》:https://bit.ly/363bLha
©《火星情报局S5》:https://bit.ly/3lc3eyE
©《奋斗吧主播》:https://bit.ly/2TRZWVq
©《想想办法吧!爸爸》:https://bit.ly/36kQaBd
©《看我的生活》:https://bit.ly/35zmYab
©《少年之名》:https://bit.ly/3mHYj9J
©《720潮流主理人》:http://bit.ly/34xNcZG
©《汪喵物语》:https://bit.ly/3nqz23J
©《师父!我要跳舞了》:https://bit.ly/3lJIsa2
©《我们的挑战》:https://bit.ly/2VarRjT
©《这!就是街舞S2》:https://bit.ly/2I1vci2
https://wn.com/【Focus_Cam】二公直拍_锐角组:刘亚楠_Liu_Yanan_|_了不起!舞社_|_苏有朋_王霏霏_程潇_李永钦Ten_赞多_|_优酷综艺_Youku_Show
Join YOUKU SHOW membership to unlock extra eps and more bonuses: http://bit.ly/youkushowmembership
Shop officially licensed merch of your favorite YOUKU programs: https://bit.ly/KOITAKEyt
【了不起!舞社】由数位艺人组建自己的“女子舞社”,集结全中国齐舞专业人士及来自各行各业及校园中的舞蹈少女,通过数轮竞技,最终选出最强齐舞团,参加世界级专业齐舞大赛,打造专业性和大众审美兼具的优秀齐舞作品,展现舞蹈对年轻人的正面影响力。
【Great Dance Crew】As at last a team of female dancers will be formed, dancers from all walks of life are brought together: they may be professional dancers in China, dance enthusiasts hailing from different professions, or young female dancers who are still in school. Over several rounds of competition, the program aims to put together the strongest crew ever and send them to a world-level crew dance championship. The goal is to produce excellent crew dance pieces that are both professional and entertaining and to highlight the positive impact dance has on young people.
社长:苏有朋 主理人:王霏霏/程潇/李永钦TEN/赞多
更新时间:每周六20点(UTC+8)更新;加入优酷综艺会员,解锁《了不起!舞社》会员衍生节目及更多福利!
Update schedule: Update at 8 pm(UTC+8) every SAT. Join YOUKU SHOW membership to unlock extra eps and more bonuses!
【了不起!舞社 Great Dance Crew】正片 Full EPs:https://bit.ly/3vkGmDz
【了不起!舞社 Great Dance Crew】会员及专享视频 Members-only Content:https://bit.ly/3OkDTle
【了不起!舞社 Great Dance Crew】衍生节目Spin-offs:https://bit.ly/384fcsM
【了不起!舞社 Great Dance Crew】舞台纯享 Performance Collection:https://bit.ly/3rw1wNP
【了不起!舞社 Great Dance Crew】抢先看&精彩看点 Trailer & Clips:https://bit.ly/3MeQVPz
【了不起!舞社 Great Dance Crew】花絮看个够 BTS: https://bit.ly/37oVJ63
【了不起!舞社 Great Dance Crew】原创特辑 Edits Compilation:https://bit.ly/3xAS7sa
【了不起!舞社 Great Dance Crew】Reaction: https://bit.ly/3uZBIvY
【了不起!舞社 Great Dance Crew】街舞MC廖搏reaction:https://bit.ly/3KO4rbM
【了不起!舞社 Great Dance Crew】舞台Focus Cam : https://bit.ly/3M1XNjs
#优酷综艺 #YOUKUSHOW #了不起舞社 #GreatDanceCrew
00:00 加入优酷综艺会员,解锁《了不起!舞社》会员衍生节目及更多福利
00:30 Join YOUKU SHOW membership to unlock extra eps and more bonuses
关注优酷频道,更多精彩节目等你来盘!
YOUTUBE YOUKU: https://bit.ly/youkuofficial
YOUTUBE YOUKU SHOW: http://bit.ly/youkushow
YOUTUBE YOUKU MOVIE: http://bit.ly/youkumovie
YOUTUBE YOUKU ANIMATION: https://bit.ly/youkuanimation
YOUTUBE YOUKU DOCUMENTARY: https://bit.ly/youkudocumentary
YOUTUBE YOUKU ROMANCE: http://bit.ly/youkuromance
YOUTUBE YOUKU English: http://bit.ly/youku_EN
YOUTUBE YOUKU Thai: http://bit.ly/youku_TH
YOUTUBE YOUKU Arabic: http://bit.ly/youku_ARAB
YOUTUBE YOUKU Spanish: http://bit.ly/youku_ESP
YOUTUBE YOUKU Indonesian: http://bit.ly/youku_ID
YOUTUBE YOUKU Vietnamese: http://bit.ly/youku_VN
关注优酷海外媒体账号获取更多最新资讯!
FACEBOOK YOUKU: https://bit.ly/youkufb
INSTAGRAM YOUKU: http://bit.ly/youkuins
TWITTER YOUKU: http://bit.ly/youkutwt
TIKTOK YOUKU: http://bit.ly/youkutiktok
更多精彩综艺,等你来追!
©《怦然心动20岁 第二季》https://bit.ly/3NfBlUK
©《一起探恋爱 》:https://bit.ly/3koj9vf
©《厉害了!舞社》:https://bit.ly/36woXQ4
©《了不起!舞社》:https://bit.ly/3vkGmDz
©《一刻综》:https://bit.ly/3usXesB
©《没谈过恋爱的我》:https://bit.ly/3pmD94q
©《新民乐国风夜》:https://bit.ly/3AtzNks
©《飘雪的日子来看你》:https://bit.ly/33eu2KZ
©《偶像就该酱婶 第一季》:https://bit.ly/3Gl5sqn
©《麻花特开心》:https://bit.ly/34h3Nnn
©《青春守艺人》:https://bit.ly/32gZlo7
©《单立人原创喜剧大赛 2021夏》:https://bit.ly/3oZw4GX
©《了不起的打工人》:https://bit.ly/3G6iBTz
©《冬梦之约 第二季》https://bit.ly/3I2hwhu
©《追光吧!》:https://bit.ly/3078Vsm
©《中国潮音》:https://bit.ly/3q49Mot
©《所有女生的offer》:http://bit.do/fSpiQ
©《上车吧!冠军》:https://bit.ly/3CzHhT6
©《我们恋爱吧3》:https://bit.ly/2WgDWbJ
©《一起火锅吧 第二季》:https://bit.ly/3kjA5Cu
©《这!就是灌篮 第四季》:https://bit.ly/3z1LOfl
©《这!就是街舞 第四季》:https://bit.ly/3snA9F1
©《“拳”力以赴的我们》:https://bit.ly/3ggJvO3
©《念念青春》:https://bit.ly/3BOkbs2
©《师父!我要跳舞了2》:https://bit.ly/3xMIaoU
©《草莓星球来的人》:https://bit.ly/3i8Gq2L
©《降落草莓星》:https://bit.ly/2Vhndof
©《这!就是潮流》:https://bit.ly/3k4oGYO
©《德云社》:https://bit.ly/3c26ASB
©《象牙山爱逗团》:https://bit.ly/3xgBtLI
©《怦然心动20岁》:https://bit.ly/3xok5VA
©《我是女演员》:https://bit.ly/3fTgj0e
©《老郭有新番 第一季》:https://bit.ly/3xdC5S7
©《同一屋檐下 第一季》:http://bit.ly/3on92aj
©《追光吧!哥哥》:https://bit.ly/33RvHU5
©《blueblue的少年》:http://bit.ly/3nYmPnm
©《宇宙打歌中心》:https://bit.ly/2UTSTMx
©《这!就是街舞S3》:https://bit.ly/2I25ytG
©《我们恋爱吧S2》:https://bit.ly/2I3pJav
©《这!就是灌篮S3》:https://bit.ly/363bLha
©《火星情报局S5》:https://bit.ly/3lc3eyE
©《奋斗吧主播》:https://bit.ly/2TRZWVq
©《想想办法吧!爸爸》:https://bit.ly/36kQaBd
©《看我的生活》:https://bit.ly/35zmYab
©《少年之名》:https://bit.ly/3mHYj9J
©《720潮流主理人》:http://bit.ly/34xNcZG
©《汪喵物语》:https://bit.ly/3nqz23J
©《师父!我要跳舞了》:https://bit.ly/3lJIsa2
©《我们的挑战》:https://bit.ly/2VarRjT
©《这!就是街舞S2》:https://bit.ly/2I1vci2
published: 04 Jun 2022
views: 70
4:31
หลิว ย่าหนาน โอลิมปิก 2004 Liu Yanan (刘亚男) Volleyball Olympics
หลิว ย่าหนาน วอลเลย์บอลหญิงโอลิมปิก 2004 โดยวอลเลย์บอลหญิงทีมชาติจีน สามารถคว้าเหรียญทองไป...
Play in Full Screen
หลิว ย่าหนาน โอลิมปิก 2004 Liu Yanan (刘亚男) Volleyball Olympics
หลิว ย่าหนาน โอลิมปิก 2004 Liu Yanan (刘亚男) Volleyball Olympics
หลิว ย่าหนาน วอลเลย์บอลหญิงโอลิมปิก 2004 โดยวอลเลย์บอลหญิงทีมชาติจีน สามารถคว้าเหรียญทองไปครองได้เป็นสมัยที่ 2
Liu Yanan (刘亚男) Volleyball Olympics 2004
เพลง/song
Tobu - Hope
https://www.youtube.com/watch?v=EP625xQIGzs
3:16
Liu Yanan&Zhou Suhong(刘亚男&周苏红)
They are the rear of the iron triangle, is a good partner in the front row, To Liu 4 and Z...
Play in Full Screen
Liu Yanan&Zhou Suhong(刘亚男&周苏红)
Liu Yanan&Zhou Suhong(刘亚男&周苏红)
They are the rear of the iron triangle, is a good partner in the front row, To Liu 4 and Zhou 7(她们是后排的铁三角,是前排的好搭档,致刘4和周7)
4:36
홍석(HONGSEOK) & 옌안(YANAN) - '小幸運 - 나의 소녀시대 OST' (Cover) (To Do List)
홍석(HONGSEOK) & 옌안(YANAN) - '小幸運(소행운) - 나의 소녀시대(我的少女時代 Our Times) OST' (Cover) (To Do List)...
Play in Full Screen
홍석(HONGSEOK) & 옌안(YANAN) - '小幸運 - 나의 소녀시대 OST' (Cover) (To Do List)
홍석(HONGSEOK) & 옌안(YANAN) - '小幸運 - 나의 소녀시대 OST' (Cover) (To Do List)
홍석(HONGSEOK) & 옌안(YANAN) - '小幸運(소행운) - 나의 소녀시대(我的少女時代 Our Times) OST' (Cover) (To Do List)
PENTAGON Official Youtube: https://www.youtube.com/c/officialpentagon
PENTAGON Official Facebook: https://www.facebook.com/pentagon.unitedcube
PENTAGON Official Twitter: https://twitter.com/CUBE_PTG
PENTAGON Official Instagram: https://www.instagram.com/CUBE_PTG/
PENTAGON Official Fansite: http://cafe.daum.net/cube-pentagon
ⓒ All Rights Reserved CUBE Entertainment
1:24
【突围赛直拍】凸凹凸组:刘亚楠 Liu Yanan | 了不起!舞社 | 苏有朋/王霏霏/程潇/李永钦TEN/赞多 | 优酷综艺 YOUKU SHOW
Join YOUKU SHOW membership to unlock extra eps and more bonuses: http://bit.ly/youkushowme...
Play in Full Screen
【突围赛直拍】凸凹凸组:刘亚楠 Liu Yanan | 了不起!舞社 | 苏有朋/王霏霏/程潇/李永钦TEN/赞多 | 优酷综艺 YOUKU SHOW
【突围赛直拍】凸凹凸组:刘亚楠 Liu Yanan | 了不起!舞社 | 苏有朋/王霏霏/程潇/李永钦TEN/赞多 | 优酷综艺 YOUKU SHOW
Join YOUKU SHOW membership to unlock extra eps and more bonuses: http://bit.ly/youkushowmembership
Shop officially licensed merch of your favorite YOUKU programs: https://bit.ly/KOITAKEyt
【了不起!舞社】由数位艺人组建自己的“女子舞社”,集结全中国齐舞专业人士及来自各行各业及校园中的舞蹈少女,通过数轮竞技,最终选出最强齐舞团,参加世界级专业齐舞大赛,打造专业性和大众审美兼具的优秀齐舞作品,展现舞蹈对年轻人的正面影响力。
【Great Dance Crew】As at last a team of female dancers will be formed, dancers from all walks of life are brought together: they may be professional dancers in China, dance enthusiasts hailing from different professions, or young female dancers who are still in school. Over several rounds of competition, the program aims to put together the strongest crew ever and send them to a world-level crew dance championship. The goal is to produce excellent crew dance pieces that are both professional and entertaining and to highlight the positive impact dance has on young people.
社长:苏有朋 主理人:王霏霏/程潇/李永钦TEN/赞多
更新时间:每周六20点(UTC+8)更新;加入优酷综艺会员,解锁《了不起!舞社》会员衍生节目及更多福利!
Update schedule: Update at 8 pm(UTC+8) every SAT. Join YOUKU SHOW membership to unlock extra eps and more bonuses!
【了不起!舞社 Great Dance Crew】正片 Full EPs:https://bit.ly/3vkGmDz
【了不起!舞社 Great Dance Crew】会员及专享视频 Members-only Content:https://bit.ly/3OkDTle
【了不起!舞社 Great Dance Crew】衍生节目Spin-offs:https://bit.ly/384fcsM
【了不起!舞社 Great Dance Crew】舞台纯享 Performance Collection:https://bit.ly/3rw1wNP
【了不起!舞社 Great Dance Crew】抢先看&精彩看点 Trailer & Clips:https://bit.ly/3MeQVPz
【了不起!舞社 Great Dance Crew】花絮看个够 BTS: https://bit.ly/37oVJ63
【了不起!舞社 Great Dance Crew】原创特辑 Edits Compilation:https://bit.ly/3xAS7sa
【了不起!舞社 Great Dance Crew】Reaction: https://bit.ly/3uZBIvY
【了不起!舞社 Great Dance Crew】街舞MC廖搏reaction:https://bit.ly/3KO4rbM
【了不起!舞社 Great Dance Crew】舞台Focus Cam : https://bit.ly/3M1XNjs
#优酷综艺 #YOUKUSHOW #了不起舞社 #GreatDanceCrew
00:00 加入优酷综艺会员,解锁《了不起!舞社》会员衍生节目及更多福利
00:30 Join YOUKU SHOW membership to unlock extra eps and more bonuses
关注优酷频道,更多精彩节目等你来盘!
YOUTUBE YOUKU: https://bit.ly/youkuofficial
YOUTUBE YOUKU SHOW: http://bit.ly/youkushow
YOUTUBE YOUKU MOVIE: http://bit.ly/youkumovie
YOUTUBE YOUKU ANIMATION: https://bit.ly/youkuanimation
YOUTUBE YOUKU DOCUMENTARY: https://bit.ly/youkudocumentary
YOUTUBE YOUKU ROMANCE: http://bit.ly/youkuromance
YOUTUBE YOUKU English: http://bit.ly/youku_EN
YOUTUBE YOUKU Thai: http://bit.ly/youku_TH
YOUTUBE YOUKU Arabic: http://bit.ly/youku_ARAB
YOUTUBE YOUKU Spanish: http://bit.ly/youku_ESP
YOUTUBE YOUKU Indonesian: http://bit.ly/youku_ID
YOUTUBE YOUKU Vietnamese: http://bit.ly/youku_VN
关注优酷海外媒体账号获取更多最新资讯!
FACEBOOK YOUKU: https://bit.ly/youkufb
INSTAGRAM YOUKU: http://bit.ly/youkuins
TWITTER YOUKU: http://bit.ly/youkutwt
TIKTOK YOUKU: http://bit.ly/youkutiktok
更多精彩综艺,等你来追!
©《怦然心动20岁 第二季》https://bit.ly/3NfBlUK
©《一起探恋爱 》:https://bit.ly/3koj9vf
©《厉害了!舞社》:https://bit.ly/36woXQ4
©《了不起!舞社》:https://bit.ly/3vkGmDz
©《一刻综》:https://bit.ly/3usXesB
©《没谈过恋爱的我》:https://bit.ly/3pmD94q
©《新民乐国风夜》:https://bit.ly/3AtzNks
©《飘雪的日子来看你》:https://bit.ly/33eu2KZ
©《偶像就该酱婶 第一季》:https://bit.ly/3Gl5sqn
©《麻花特开心》:https://bit.ly/34h3Nnn
©《青春守艺人》:https://bit.ly/32gZlo7
©《单立人原创喜剧大赛 2021夏》:https://bit.ly/3oZw4GX
©《了不起的打工人》:https://bit.ly/3G6iBTz
©《冬梦之约 第二季》https://bit.ly/3I2hwhu
©《追光吧!》:https://bit.ly/3078Vsm
©《中国潮音》:https://bit.ly/3q49Mot
©《所有女生的offer》:http://bit.do/fSpiQ
©《上车吧!冠军》:https://bit.ly/3CzHhT6
©《我们恋爱吧3》:https://bit.ly/2WgDWbJ
©《一起火锅吧 第二季》:https://bit.ly/3kjA5Cu
©《这!就是灌篮 第四季》:https://bit.ly/3z1LOfl
©《这!就是街舞 第四季》:https://bit.ly/3snA9F1
©《“拳”力以赴的我们》:https://bit.ly/3ggJvO3
©《念念青春》:https://bit.ly/3BOkbs2
©《师父!我要跳舞了2》:https://bit.ly/3xMIaoU
©《草莓星球来的人》:https://bit.ly/3i8Gq2L
©《降落草莓星》:https://bit.ly/2Vhndof
©《这!就是潮流》:https://bit.ly/3k4oGYO
©《德云社》:https://bit.ly/3c26ASB
©《象牙山爱逗团》:https://bit.ly/3xgBtLI
©《怦然心动20岁》:https://bit.ly/3xok5VA
©《我是女演员》:https://bit.ly/3fTgj0e
©《老郭有新番 第一季》:https://bit.ly/3xdC5S7
©《同一屋檐下 第一季》:http://bit.ly/3on92aj
©《追光吧!哥哥》:https://bit.ly/33RvHU5
©《blueblue的少年》:http://bit.ly/3nYmPnm
©《宇宙打歌中心》:https://bit.ly/2UTSTMx
©《这!就是街舞S3》:https://bit.ly/2I25ytG
©《我们恋爱吧S2》:https://bit.ly/2I3pJav
©《这!就是灌篮S3》:https://bit.ly/363bLha
©《火星情报局S5》:https://bit.ly/3lc3eyE
©《奋斗吧主播》:https://bit.ly/2TRZWVq
©《想想办法吧!爸爸》:https://bit.ly/36kQaBd
©《看我的生活》:https://bit.ly/35zmYab
©《少年之名》:https://bit.ly/3mHYj9J
©《720潮流主理人》:http://bit.ly/34xNcZG
©《汪喵物语》:https://bit.ly/3nqz23J
©《师父!我要跳舞了》:https://bit.ly/3lJIsa2
©《我们的挑战》:https://bit.ly/2VarRjT
©《这!就是街舞S2》:https://bit.ly/2I1vci2
2:47
【Focus Cam】二公直拍 锐角组:刘亚楠 Liu Yanan | 了不起!舞社 | 苏有朋/王霏霏/程潇/李永钦TEN/赞多 | 优酷综艺 YOUKU SHOW
Join YOUKU SHOW membership to unlock extra eps and more bonuses: http://bit.ly/youkushowme...
Play in Full Screen
【Focus Cam】二公直拍 锐角组:刘亚楠 Liu Yanan | 了不起!舞社 | 苏有朋/王霏霏/程潇/李永钦TEN/赞多 | 优酷综艺 YOUKU SHOW
【Focus Cam】二公直拍 锐角组:刘亚楠 Liu Yanan | 了不起!舞社 | 苏有朋/王霏霏/程潇/李永钦TEN/赞多 | 优酷综艺 YOUKU SHOW
Join YOUKU SHOW membership to unlock extra eps and more bonuses: http://bit.ly/youkushowmembership
Shop officially licensed merch of your favorite YOUKU programs: https://bit.ly/KOITAKEyt
【了不起!舞社】由数位艺人组建自己的“女子舞社”,集结全中国齐舞专业人士及来自各行各业及校园中的舞蹈少女,通过数轮竞技,最终选出最强齐舞团,参加世界级专业齐舞大赛,打造专业性和大众审美兼具的优秀齐舞作品,展现舞蹈对年轻人的正面影响力。
【Great Dance Crew】As at last a team of female dancers will be formed, dancers from all walks of life are brought together: they may be professional dancers in China, dance enthusiasts hailing from different professions, or young female dancers who are still in school. Over several rounds of competition, the program aims to put together the strongest crew ever and send them to a world-level crew dance championship. The goal is to produce excellent crew dance pieces that are both professional and entertaining and to highlight the positive impact dance has on young people.
社长:苏有朋 主理人:王霏霏/程潇/李永钦TEN/赞多
更新时间:每周六20点(UTC+8)更新;加入优酷综艺会员,解锁《了不起!舞社》会员衍生节目及更多福利!
Update schedule: Update at 8 pm(UTC+8) every SAT. Join YOUKU SHOW membership to unlock extra eps and more bonuses!
【了不起!舞社 Great Dance Crew】正片 Full EPs:https://bit.ly/3vkGmDz
【了不起!舞社 Great Dance Crew】会员及专享视频 Members-only Content:https://bit.ly/3OkDTle
【了不起!舞社 Great Dance Crew】衍生节目Spin-offs:https://bit.ly/384fcsM
【了不起!舞社 Great Dance Crew】舞台纯享 Performance Collection:https://bit.ly/3rw1wNP
【了不起!舞社 Great Dance Crew】抢先看&精彩看点 Trailer & Clips:https://bit.ly/3MeQVPz
【了不起!舞社 Great Dance Crew】花絮看个够 BTS: https://bit.ly/37oVJ63
【了不起!舞社 Great Dance Crew】原创特辑 Edits Compilation:https://bit.ly/3xAS7sa
【了不起!舞社 Great Dance Crew】Reaction: https://bit.ly/3uZBIvY
【了不起!舞社 Great Dance Crew】街舞MC廖搏reaction:https://bit.ly/3KO4rbM
【了不起!舞社 Great Dance Crew】舞台Focus Cam : https://bit.ly/3M1XNjs
#优酷综艺 #YOUKUSHOW #了不起舞社 #GreatDanceCrew
00:00 加入优酷综艺会员,解锁《了不起!舞社》会员衍生节目及更多福利
00:30 Join YOUKU SHOW membership to unlock extra eps and more bonuses
关注优酷频道,更多精彩节目等你来盘!
YOUTUBE YOUKU: https://bit.ly/youkuofficial
YOUTUBE YOUKU SHOW: http://bit.ly/youkushow
YOUTUBE YOUKU MOVIE: http://bit.ly/youkumovie
YOUTUBE YOUKU ANIMATION: https://bit.ly/youkuanimation
YOUTUBE YOUKU DOCUMENTARY: https://bit.ly/youkudocumentary
YOUTUBE YOUKU ROMANCE: http://bit.ly/youkuromance
YOUTUBE YOUKU English: http://bit.ly/youku_EN
YOUTUBE YOUKU Thai: http://bit.ly/youku_TH
YOUTUBE YOUKU Arabic: http://bit.ly/youku_ARAB
YOUTUBE YOUKU Spanish: http://bit.ly/youku_ESP
YOUTUBE YOUKU Indonesian: http://bit.ly/youku_ID
YOUTUBE YOUKU Vietnamese: http://bit.ly/youku_VN
关注优酷海外媒体账号获取更多最新资讯!
FACEBOOK YOUKU: https://bit.ly/youkufb
INSTAGRAM YOUKU: http://bit.ly/youkuins
TWITTER YOUKU: http://bit.ly/youkutwt
TIKTOK YOUKU: http://bit.ly/youkutiktok
更多精彩综艺,等你来追!
©《怦然心动20岁 第二季》https://bit.ly/3NfBlUK
©《一起探恋爱 》:https://bit.ly/3koj9vf
©《厉害了!舞社》:https://bit.ly/36woXQ4
©《了不起!舞社》:https://bit.ly/3vkGmDz
©《一刻综》:https://bit.ly/3usXesB
©《没谈过恋爱的我》:https://bit.ly/3pmD94q
©《新民乐国风夜》:https://bit.ly/3AtzNks
©《飘雪的日子来看你》:https://bit.ly/33eu2KZ
©《偶像就该酱婶 第一季》:https://bit.ly/3Gl5sqn
©《麻花特开心》:https://bit.ly/34h3Nnn
©《青春守艺人》:https://bit.ly/32gZlo7
©《单立人原创喜剧大赛 2021夏》:https://bit.ly/3oZw4GX
©《了不起的打工人》:https://bit.ly/3G6iBTz
©《冬梦之约 第二季》https://bit.ly/3I2hwhu
©《追光吧!》:https://bit.ly/3078Vsm
©《中国潮音》:https://bit.ly/3q49Mot
©《所有女生的offer》:http://bit.do/fSpiQ
©《上车吧!冠军》:https://bit.ly/3CzHhT6
©《我们恋爱吧3》:https://bit.ly/2WgDWbJ
©《一起火锅吧 第二季》:https://bit.ly/3kjA5Cu
©《这!就是灌篮 第四季》:https://bit.ly/3z1LOfl
©《这!就是街舞 第四季》:https://bit.ly/3snA9F1
©《“拳”力以赴的我们》:https://bit.ly/3ggJvO3
©《念念青春》:https://bit.ly/3BOkbs2
©《师父!我要跳舞了2》:https://bit.ly/3xMIaoU
©《草莓星球来的人》:https://bit.ly/3i8Gq2L
©《降落草莓星》:https://bit.ly/2Vhndof
©《这!就是潮流》:https://bit.ly/3k4oGYO
©《德云社》:https://bit.ly/3c26ASB
©《象牙山爱逗团》:https://bit.ly/3xgBtLI
©《怦然心动20岁》:https://bit.ly/3xok5VA
©《我是女演员》:https://bit.ly/3fTgj0e
©《老郭有新番 第一季》:https://bit.ly/3xdC5S7
©《同一屋檐下 第一季》:http://bit.ly/3on92aj
©《追光吧!哥哥》:https://bit.ly/33RvHU5
©《blueblue的少年》:http://bit.ly/3nYmPnm
©《宇宙打歌中心》:https://bit.ly/2UTSTMx
©《这!就是街舞S3》:https://bit.ly/2I25ytG
©《我们恋爱吧S2》:https://bit.ly/2I3pJav
©《这!就是灌篮S3》:https://bit.ly/363bLha
©《火星情报局S5》:https://bit.ly/3lc3eyE
©《奋斗吧主播》:https://bit.ly/2TRZWVq
©《想想办法吧!爸爸》:https://bit.ly/36kQaBd
©《看我的生活》:https://bit.ly/35zmYab
©《少年之名》:https://bit.ly/3mHYj9J
©《720潮流主理人》:http://bit.ly/34xNcZG
©《汪喵物语》:https://bit.ly/3nqz23J
©《师父!我要跳舞了》:https://bit.ly/3lJIsa2
©《我们的挑战》:https://bit.ly/2VarRjT
©《这!就是街舞S2》:https://bit.ly/2I1vci2
');
} 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('
VIDEO
');
}
}
});
}
}
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));
}
});
});
});
// -->
Trying To Make Me
by:
Lennon
Are you sleeping, I wish I was Are you dreaming, of someone to love Do you know what I'm thinking but I guess you don't Cause you'd have to be around to hear my thoughts Tomorrow's another day, and today is yesterday And I don't care what you think you have to say Tomorrow comes and today is gone And I'm sick and tired of everyone trying to make me Somebody else It's funny how you destroyed the better part of me There's nothing left so there's nothing anybody can see It's been 6 months now and you think you found everything In a day I wasn't there, in a way you didn't care Tomorrow's another day, and today is yesterday And I don't care what you think you have to say Tomorrow comes and today is gone And I'm sick and tired of everyone trying to make me Somebody else I didn't settle, I just got lazy But I could see where you'd make the mistake I didn't try, I just gave up It was better to leave than stay It's easy when you're leaving It's harder when you try to return But I haven't got that far yet And that's a lesson I never want to learn I should know better and so should you I m exactly where you left me There was nothing better to do Are you still sleeping? Are you still dreaming? I m finally leaving but your still mixing Tomorrow's another day, and today is yesterday And I don't care what you think you have to say Tomorrow comes and today is gone And I'm sick and tired of everyone trying to make me Somebody else Somebody else
Latest News for: liu yanan
Edit
Business Insider
15 Jan 2025
Liu Yanan/Xinhua via Getty ImagesInflation accelerated for the third straight month.The consumer price index rose 2.9% year-over-year in December, matching the consensus expectation.The Federal ...