'+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;
}));
});
-->
Magnus Carlsen vs Levon Aronian, FIDE World Championship Knockout Tournament 2004
Magnus Carlsen vs Levon Aronian
FIDE World Championship Knockout Tournament 2004: 0-1
#chess #chessgame
----------------------------------------------------
Social Links:
https://www.facebook.com/profile.php?id=100093540717924
https://twitter.com/data_chess
----------------------------------------------------
Music:
Despair and Triumph by Kevin MacLeod is licensed under a Creative Commons Attribution 4.0 license. https://creativecommons.org/licenses/by/4.0/
Source: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1400012
Artist: http://incompetech.com/
----------------------------------------------------
Note:
This video is for educational purpose only.
published: 06 Aug 2023
Rustam Kasimdzhanov vs Vassily Ivanchuk 2004 FIDE World Championship Tournament
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06.24"]
[EventDate "?"]
[Round "3.2"]
[Result "1/2-1/2"]
[White "Rustam Kasimdzhanov"]
[Black "Vassily Ivanchuk"]
[ECO "C11"]
[WhiteElo "2652"]
[BlackElo "2716"]
[PlyCount "31"]
1. e4 e6 2. d4 d5 3. Nc3 Nf6 4. Bg5 dxe4 5. Nxe4 Nbd7 6. Nf3
h6 7. Nxf6+ Nxf6 8. Bxf6 Qxf6 9. Bb5+ c6 10. Bd3 Bd7 11. O-O
c5 12. c3 cxd4 13. Qb3 Bd6 14. Nxd4 Qe5 15. g3 O-O-O 16. Rfe1
1/2-1/2
published: 11 Mar 2018
Levon Aronian vs Pavel Smirnov || FIDE World Championship Knockout Tournament, 2004 #chess
Levon Aronian vs Pavel Smirnov || FIDE World Championship Knockout Tournament, 2004 #chess
#chessgame #chessmate #king #chessplayer #queen #chessstrategies
#ding #capablanca #fide
Hello and welcome to my channel Chess Train Non Stops and this video is the chess analisis of the game played between Levon Aronian vs Pavel Smirnov. They playing opening with Semi-Slav. This game comes to you from FIDE World Championship Knockout Tournament (2004) 0-1. Smirnov win this game after long fight.
chess, wesley so, fabiano caruana, ding liren, mikhail tal, alexander alekhine, tigran petrosian, alekhine defence, grunfeld defence, magnus carlsen, hikaru nakamura, alireza firouzja modern, tata steel chess 2023, jose raul capablanca.
published: 19 Oct 2023
Francisco Vallejo Pons vs Rodrigo Rafael Vasquez Schroeder 2004 FIDE World Championship Tournament
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06.20"]
[EventDate "?"]
[Round "1.3"]
[Result "0-1"]
[White "Francisco Vallejo Pons"]
[Black "Rodrigo Rafael Vasquez Schroeder"]
[ECO "B20"]
[WhiteElo "2666"]
[BlackElo "2523"]
[PlyCount "101"]
1. e4 c5 2. Ne2 d6 3. g3 g6 4. Bg2 Bg7 5. c3 e5 6. d4 cxd4
7. cxd4 Nc6 8. dxe5 dxe5 9. Qxd8+ Nxd8 10. Nbc3 Ne7 11. Be3
Bd7 12. O-O Ne6 13. Rfd1 Nc6 14. Bh3 Rd8 15. Kg2 Ncd4 16. Bxd4
exd4 17. Nd5 Bc6 18. Rac1 f5 19. Nef4 Nxf4+ 20. Nxf4 Bh6
21. Rc4 Bxf4 22. gxf4 Bxe4+ 23. f3 Bc6 24. Rcxd4 Rxd4 25. Rxd4
Ke7 26. Kf2 Rc8 27. Bf1 Bd7 28. Bc4 Be6 29. Bxe6 Rc2+ 30. Ke3
Kxe6 31. Rd2 Rc1 32. Rd8 Rb1 33. b3 Re1+ 34. Kf2 Rh1 35. Kg3
Rg1+ 36. Kf2 Ra1 37. Rd2 Rh1 38. Kg3 Rc1 39. Kf2 b5 40. Kg3 b4
41. Kh4 Rg1 42. Re2+ Kd6 43. R...
published: 21 Mar 2017
Ni Hua vs Evgeny Vladimirov 2004 FIDE World Championship Tournament
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06.20"]
[EventDate "?"]
[Round "1.7"]
[Result "1-0"]
[White "Ni Hua"]
[Black "Evgeny Vladimirov"]
[ECO "C47"]
[WhiteElo "2587"]
[BlackElo "2621"]
[PlyCount "101"]
1. e4 e5 2. Nf3 Nc6 3. Nc3 Nf6 4. g3 Nd4 5. Bg2 Nxf3+ 6. Qxf3
Bc5 7. d3 c6 8. h3 d6 9. O-O O-O 10. Be3 Bxe3 11. fxe3 h6
12. Kh2 Nh7 13. Rad1 Qe7 14. Qe2 Bd7 15. Rf2 f5 16. exf5 Bxf5
17. Rdf1 Be6 18. d4 Rxf2 19. Rxf2 Nf6 20. a3 Bf7 21. Qd2 Re8
22. Rf1 exd4 23. exd4 Qe3 24. Qf2 Qxf2 25. Rxf2 d5 26. g4 Bg6
27. Rd2 Re1 28. Bf3 Nh7 29. h4 Nf6 30. Kg3 Be4 31. Kf2 Rh1
32. Bxh1 Bxh1 33. Kg3 Be4 34. g5 hxg5 35. hxg5 Nh5+ 36. Kh4
Bg6 37. Rf2 Be8 38. Nd1 g6 39. Ne3 Ng7 40. Rf6 Bf7 41. Rd6 Ne6
42. c3 Nf4 43. Rd7 b5 44. Ng4 Be6 45. Nf6+ Kf8 46. Rxa7 Bf5
47...
published: 04 Apr 2017
Rustam Kasimdzhanov vs Vassily Ivanchuk 2004 FIDE World Championship Tournament
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06.24"]
[EventDate "?"]
[Round "3.3"]
[Result "1/2-1/2"]
[White "Rustam Kasimdzhanov"]
[Black "Vassily Ivanchuk"]
[ECO "C18"]
[WhiteElo "2652"]
[BlackElo "2716"]
[PlyCount "92"]
1. e4 e6 2. d4 d5 3. Nc3 Bb4 4. e5 Ne7 5. a3 Bxc3+ 6. bxc3 c5
7. Qg4 Kf8 8. Qd1 b6 9. Nf3 h6 10. a4 Ba6 11. Bxa6 Nxa6
12. O-O Kg8 13. Qd3 Nb8 14. Nh4 Nbc6 15. f4 Qd7 16. dxc5 bxc5
17. Ba3 Rc8 18. c4 Nb4 19. Qb3 dxc4 20. Qxc4 Qxa4 21. c3 Qa6
22. Qe4 Qd3 23. Qxd3 Nxd3 24. Rad1 g5 25. Rxd3 gxh4 26. Rd7
Nd5 27. Rf3 Rh7 28. Rxa7 Rg7 29. f5 exf5 30. Ra5 h3 31. Rxh3
Nf4 32. Rf3 Rxg2+ 33. Kf1 Rg4 34. h3 Rh4 35. Ra4 Ng6 36. Rxh4
Nxh4 37. Rf4 Ng6 38. Rxf5 Rc6 39. e6 fxe6 40. Rxc5 Ra6
41. Rc8+ Kf7 42. Bc5 e5 43. Be3 Rf6+ 44. Ke2 Nf4+ 45. B...
published: 27 Feb 2018
The 2004 FIDE World Chess Championship / Rustam Kasimdzhanov vs Michael Adams (+3 -2 =3)
The 2004 FIDE World Chess Championship / Rustam Kasimdzhanov vs Michael Adams (+3 -2 =3)
published: 18 Feb 2023
Teimour Radjabov vs Pavel Smirnov 2004 FIDE World Championship Tournament
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06.27"]
[EventDate "?"]
[Round "4.2"]
[Result "1/2-1/2"]
[White "Teimour Radjabov"]
[Black "Pavel Smirnov"]
[ECO "D11"]
[WhiteElo "2670"]
[BlackElo "2601"]
[PlyCount "27"]
1. d4 d5 2. c4 c6 3. Nf3 Nf6 4. e3 a6 5. Bd3 Bg4 6. Nbd2 e6
7. O-O Nbd7 8. b3 Bf5 9. Qc2 Bxd3 10. Qxd3 Be7 11. Bb2 O-O
12. Rfd1 a5 13. a3 Qb6 14. Rac1 1/2-1/2
published: 31 Mar 2018
Ni Hua vs Ye Jiangchuan 2004 FIDE World Championship Tournament
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06.22"]
[EventDate "?"]
[Round "2.2"]
[Result "1/2-1/2"]
[White "Ni Hua"]
[Black "Ye Jiangchuan"]
[ECO "B48"]
[WhiteElo "2587"]
[BlackElo "2681"]
[PlyCount "92"]
1. e4 c5 2. Nf3 e6 3. d4 cxd4 4. Nxd4 Nc6 5. Nc3 Qc7 6. Be3 a6
7. Qd2 Nf6 8. O-O-O Bb4 9. f3 Ne5 10. Nb3 b5 11. Qe1 Rb8
12. Bd4 Nc6 13. Bc5 Bxc5 14. Nxc5 O-O 15. Qg3 Ne5 16. Nd3 d6
17. f4 Ng6 18. Qe3 b4 19. Ne2 Bb7 20. Ng3 Rfc8 21. Ne1 d5
22. e5 Ne4 23. Kb1 Qa5 24. Ne2 Ne7 25. Nd4 Nf5 26. Nxf5 exf5
27. Rd4 Bc6 28. Bd3 Nc3+ 29. bxc3 bxc3+ 30. Kc1 Rb1+ 31. Kxb1
Qa3 32. Rb4 Qxb4+ 33. Kc1 d4 34. Qg3 Rb8 35. Kd1 Qb1+ 36. Ke2
Qc1 37. Kf1 Rb1 38. Qh4 g6 39. Rg1 Qd2 40. g4 Qxf4+ 41. Qf2
Rxe1+ 42. Kxe1 Qc1+ 43. Ke2 Qd2+ 44. Kf1 Qd1+ 45. Qe1 Qf3+
46. Qf2...
published: 02 Jan 2018
Evgeny Vladimirov vs Ni Hua 2004 FIDE World Championship Tournament
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06.20"]
[EventDate "?"]
[Round "1.4"]
[Result "1/2-1/2"]
[White "Evgeny Vladimirov"]
[Black "Ni Hua"]
[ECO "D13"]
[WhiteElo "2621"]
[BlackElo "2587"]
[PlyCount "119"]
1. d4 d5 2. c4 c6 3. Nf3 Nf6 4. cxd5 cxd5 5. Nc3 Nc6 6. Bf4 a6
7. Rc1 Bf5 8. e3 Qb6 9. Bd3 Bxd3 10. Qxd3 e6 11. O-O Be7
12. Ne5 O-O 13. Nxc6 Qxc6 14. Ne2 Qb6 15. Rc7 Rfe8 16. Qb3
Qxb3 17. axb3 b6 18. Rfc1 Bd8 19. R7c6 Re7 20. h3 Rd7 21. Nc3
Kf8 22. Na4 Rb7 23. Kf1 Nd7 24. Rc8 Rxc8 25. Rxc8 Ke7 26. Ke2
f6 27. Ra8 b5 28. Nc3 Rb6 29. Na2 b4 30. Nc1 Rc6 31. Nd3 a5
32. Kd2 g5 33. Bg3 h5 34. h4 Ke8 35. hxg5 fxg5 36. Ne5 Nxe5
37. Bxe5 Kd7 38. f3 Rc8 39. Ra7+ Kc6 40. Ra6+ Kd7 41. e4 dxe4
42. fxe4 h4 43. Ra7+ Ke8 44. Kd3 Rc1 45. d5 exd5 46. exd5 Re...
published: 01 Apr 2017
18:31
Magnus Carlsen vs Levon Aronian, FIDE World Championship Knockout Tournament 2004
Magnus Carlsen vs Levon Aronian
FIDE World Championship Knockout Tournament 2004: 0-1
#chess #chessgame
----------------------------------------------------
So...
Magnus Carlsen vs Levon Aronian
FIDE World Championship Knockout Tournament 2004: 0-1
#chess #chessgame
----------------------------------------------------
Social Links:
https://www.facebook.com/profile.php?id=100093540717924
https://twitter.com/data_chess
----------------------------------------------------
Music:
Despair and Triumph by Kevin MacLeod is licensed under a Creative Commons Attribution 4.0 license. https://creativecommons.org/licenses/by/4.0/
Source: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1400012
Artist: http://incompetech.com/
----------------------------------------------------
Note:
This video is for educational purpose only.
https://wn.com/Magnus_Carlsen_Vs_Levon_Aronian,_Fide_World_Championship_Knockout_Tournament_2004
Magnus Carlsen vs Levon Aronian
FIDE World Championship Knockout Tournament 2004: 0-1
#chess #chessgame
----------------------------------------------------
Social Links:
https://www.facebook.com/profile.php?id=100093540717924
https://twitter.com/data_chess
----------------------------------------------------
Music:
Despair and Triumph by Kevin MacLeod is licensed under a Creative Commons Attribution 4.0 license. https://creativecommons.org/licenses/by/4.0/
Source: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1400012
Artist: http://incompetech.com/
----------------------------------------------------
Note:
This video is for educational purpose only.
published: 06 Aug 2023
views: 9735
0:53
Rustam Kasimdzhanov vs Vassily Ivanchuk 2004 FIDE World Championship Tournament
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06.24"]
[EventDate "?"]
[Round "3.2"]
[Result "1/2-1/2"]
[White "Rustam K...
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06.24"]
[EventDate "?"]
[Round "3.2"]
[Result "1/2-1/2"]
[White "Rustam Kasimdzhanov"]
[Black "Vassily Ivanchuk"]
[ECO "C11"]
[WhiteElo "2652"]
[BlackElo "2716"]
[PlyCount "31"]
1. e4 e6 2. d4 d5 3. Nc3 Nf6 4. Bg5 dxe4 5. Nxe4 Nbd7 6. Nf3
h6 7. Nxf6+ Nxf6 8. Bxf6 Qxf6 9. Bb5+ c6 10. Bd3 Bd7 11. O-O
c5 12. c3 cxd4 13. Qb3 Bd6 14. Nxd4 Qe5 15. g3 O-O-O 16. Rfe1
1/2-1/2
https://wn.com/Rustam_Kasimdzhanov_Vs_Vassily_Ivanchuk_2004_Fide_World_Championship_Tournament
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06.24"]
[EventDate "?"]
[Round "3.2"]
[Result "1/2-1/2"]
[White "Rustam Kasimdzhanov"]
[Black "Vassily Ivanchuk"]
[ECO "C11"]
[WhiteElo "2652"]
[BlackElo "2716"]
[PlyCount "31"]
1. e4 e6 2. d4 d5 3. Nc3 Nf6 4. Bg5 dxe4 5. Nxe4 Nbd7 6. Nf3
h6 7. Nxf6+ Nxf6 8. Bxf6 Qxf6 9. Bb5+ c6 10. Bd3 Bd7 11. O-O
c5 12. c3 cxd4 13. Qb3 Bd6 14. Nxd4 Qe5 15. g3 O-O-O 16. Rfe1
1/2-1/2
published: 11 Mar 2018
views: 23
9:44
Levon Aronian vs Pavel Smirnov || FIDE World Championship Knockout Tournament, 2004 #chess
Levon Aronian vs Pavel Smirnov || FIDE World Championship Knockout Tournament, 2004 #chess
#chessgame #chessmate #king #chessplayer #queen #chessstrategies
#...
Levon Aronian vs Pavel Smirnov || FIDE World Championship Knockout Tournament, 2004 #chess
#chessgame #chessmate #king #chessplayer #queen #chessstrategies
#ding #capablanca #fide
Hello and welcome to my channel Chess Train Non Stops and this video is the chess analisis of the game played between Levon Aronian vs Pavel Smirnov. They playing opening with Semi-Slav. This game comes to you from FIDE World Championship Knockout Tournament (2004) 0-1. Smirnov win this game after long fight.
chess, wesley so, fabiano caruana, ding liren, mikhail tal, alexander alekhine, tigran petrosian, alekhine defence, grunfeld defence, magnus carlsen, hikaru nakamura, alireza firouzja modern, tata steel chess 2023, jose raul capablanca.
https://wn.com/Levon_Aronian_Vs_Pavel_Smirnov_||_Fide_World_Championship_Knockout_Tournament,_2004_Chess
Levon Aronian vs Pavel Smirnov || FIDE World Championship Knockout Tournament, 2004 #chess
#chessgame #chessmate #king #chessplayer #queen #chessstrategies
#ding #capablanca #fide
Hello and welcome to my channel Chess Train Non Stops and this video is the chess analisis of the game played between Levon Aronian vs Pavel Smirnov. They playing opening with Semi-Slav. This game comes to you from FIDE World Championship Knockout Tournament (2004) 0-1. Smirnov win this game after long fight.
chess, wesley so, fabiano caruana, ding liren, mikhail tal, alexander alekhine, tigran petrosian, alekhine defence, grunfeld defence, magnus carlsen, hikaru nakamura, alireza firouzja modern, tata steel chess 2023, jose raul capablanca.
published: 19 Oct 2023
views: 322
2:43
Francisco Vallejo Pons vs Rodrigo Rafael Vasquez Schroeder 2004 FIDE World Championship Tournament
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06.20"]
[EventDate "?"]
[Round "1.3"]
[Result "0-1"]
[White "Francisco Va...
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06.20"]
[EventDate "?"]
[Round "1.3"]
[Result "0-1"]
[White "Francisco Vallejo Pons"]
[Black "Rodrigo Rafael Vasquez Schroeder"]
[ECO "B20"]
[WhiteElo "2666"]
[BlackElo "2523"]
[PlyCount "101"]
1. e4 c5 2. Ne2 d6 3. g3 g6 4. Bg2 Bg7 5. c3 e5 6. d4 cxd4
7. cxd4 Nc6 8. dxe5 dxe5 9. Qxd8+ Nxd8 10. Nbc3 Ne7 11. Be3
Bd7 12. O-O Ne6 13. Rfd1 Nc6 14. Bh3 Rd8 15. Kg2 Ncd4 16. Bxd4
exd4 17. Nd5 Bc6 18. Rac1 f5 19. Nef4 Nxf4+ 20. Nxf4 Bh6
21. Rc4 Bxf4 22. gxf4 Bxe4+ 23. f3 Bc6 24. Rcxd4 Rxd4 25. Rxd4
Ke7 26. Kf2 Rc8 27. Bf1 Bd7 28. Bc4 Be6 29. Bxe6 Rc2+ 30. Ke3
Kxe6 31. Rd2 Rc1 32. Rd8 Rb1 33. b3 Re1+ 34. Kf2 Rh1 35. Kg3
Rg1+ 36. Kf2 Ra1 37. Rd2 Rh1 38. Kg3 Rc1 39. Kf2 b5 40. Kg3 b4
41. Kh4 Rg1 42. Re2+ Kd6 43. Rd2+ Kc5 44. Rd7 Rg2 45. Rxa7
Rxh2+ 46. Kg3 Rb2 47. Ra4 Rd2 48. Kh4 Rd3 49. Kg3 Rd7 50. Kf2
Re7 51. Ra5+ 0-1
https://wn.com/Francisco_Vallejo_Pons_Vs_Rodrigo_Rafael_Vasquez_Schroeder_2004_Fide_World_Championship_Tournament
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06.20"]
[EventDate "?"]
[Round "1.3"]
[Result "0-1"]
[White "Francisco Vallejo Pons"]
[Black "Rodrigo Rafael Vasquez Schroeder"]
[ECO "B20"]
[WhiteElo "2666"]
[BlackElo "2523"]
[PlyCount "101"]
1. e4 c5 2. Ne2 d6 3. g3 g6 4. Bg2 Bg7 5. c3 e5 6. d4 cxd4
7. cxd4 Nc6 8. dxe5 dxe5 9. Qxd8+ Nxd8 10. Nbc3 Ne7 11. Be3
Bd7 12. O-O Ne6 13. Rfd1 Nc6 14. Bh3 Rd8 15. Kg2 Ncd4 16. Bxd4
exd4 17. Nd5 Bc6 18. Rac1 f5 19. Nef4 Nxf4+ 20. Nxf4 Bh6
21. Rc4 Bxf4 22. gxf4 Bxe4+ 23. f3 Bc6 24. Rcxd4 Rxd4 25. Rxd4
Ke7 26. Kf2 Rc8 27. Bf1 Bd7 28. Bc4 Be6 29. Bxe6 Rc2+ 30. Ke3
Kxe6 31. Rd2 Rc1 32. Rd8 Rb1 33. b3 Re1+ 34. Kf2 Rh1 35. Kg3
Rg1+ 36. Kf2 Ra1 37. Rd2 Rh1 38. Kg3 Rc1 39. Kf2 b5 40. Kg3 b4
41. Kh4 Rg1 42. Re2+ Kd6 43. Rd2+ Kc5 44. Rd7 Rg2 45. Rxa7
Rxh2+ 46. Kg3 Rb2 47. Ra4 Rd2 48. Kh4 Rd3 49. Kg3 Rd7 50. Kf2
Re7 51. Ra5+ 0-1
published: 21 Mar 2017
views: 15
2:47
Ni Hua vs Evgeny Vladimirov 2004 FIDE World Championship Tournament
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06.20"]
[EventDate "?"]
[Round "1.7"]
[Result "1-0"]
[White "Ni Hua"]
[Bl...
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06.20"]
[EventDate "?"]
[Round "1.7"]
[Result "1-0"]
[White "Ni Hua"]
[Black "Evgeny Vladimirov"]
[ECO "C47"]
[WhiteElo "2587"]
[BlackElo "2621"]
[PlyCount "101"]
1. e4 e5 2. Nf3 Nc6 3. Nc3 Nf6 4. g3 Nd4 5. Bg2 Nxf3+ 6. Qxf3
Bc5 7. d3 c6 8. h3 d6 9. O-O O-O 10. Be3 Bxe3 11. fxe3 h6
12. Kh2 Nh7 13. Rad1 Qe7 14. Qe2 Bd7 15. Rf2 f5 16. exf5 Bxf5
17. Rdf1 Be6 18. d4 Rxf2 19. Rxf2 Nf6 20. a3 Bf7 21. Qd2 Re8
22. Rf1 exd4 23. exd4 Qe3 24. Qf2 Qxf2 25. Rxf2 d5 26. g4 Bg6
27. Rd2 Re1 28. Bf3 Nh7 29. h4 Nf6 30. Kg3 Be4 31. Kf2 Rh1
32. Bxh1 Bxh1 33. Kg3 Be4 34. g5 hxg5 35. hxg5 Nh5+ 36. Kh4
Bg6 37. Rf2 Be8 38. Nd1 g6 39. Ne3 Ng7 40. Rf6 Bf7 41. Rd6 Ne6
42. c3 Nf4 43. Rd7 b5 44. Ng4 Be6 45. Nf6+ Kf8 46. Rxa7 Bf5
47. b3 Ne2 48. a4 bxa4 49. bxa4 Nxc3 50. a5 Nb5 51. Rb7 1-0
https://wn.com/Ni_Hua_Vs_Evgeny_Vladimirov_2004_Fide_World_Championship_Tournament
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06.20"]
[EventDate "?"]
[Round "1.7"]
[Result "1-0"]
[White "Ni Hua"]
[Black "Evgeny Vladimirov"]
[ECO "C47"]
[WhiteElo "2587"]
[BlackElo "2621"]
[PlyCount "101"]
1. e4 e5 2. Nf3 Nc6 3. Nc3 Nf6 4. g3 Nd4 5. Bg2 Nxf3+ 6. Qxf3
Bc5 7. d3 c6 8. h3 d6 9. O-O O-O 10. Be3 Bxe3 11. fxe3 h6
12. Kh2 Nh7 13. Rad1 Qe7 14. Qe2 Bd7 15. Rf2 f5 16. exf5 Bxf5
17. Rdf1 Be6 18. d4 Rxf2 19. Rxf2 Nf6 20. a3 Bf7 21. Qd2 Re8
22. Rf1 exd4 23. exd4 Qe3 24. Qf2 Qxf2 25. Rxf2 d5 26. g4 Bg6
27. Rd2 Re1 28. Bf3 Nh7 29. h4 Nf6 30. Kg3 Be4 31. Kf2 Rh1
32. Bxh1 Bxh1 33. Kg3 Be4 34. g5 hxg5 35. hxg5 Nh5+ 36. Kh4
Bg6 37. Rf2 Be8 38. Nd1 g6 39. Ne3 Ng7 40. Rf6 Bf7 41. Rd6 Ne6
42. c3 Nf4 43. Rd7 b5 44. Ng4 Be6 45. Nf6+ Kf8 46. Rxa7 Bf5
47. b3 Ne2 48. a4 bxa4 49. bxa4 Nxc3 50. a5 Nb5 51. Rb7 1-0
published: 04 Apr 2017
views: 39
2:28
Rustam Kasimdzhanov vs Vassily Ivanchuk 2004 FIDE World Championship Tournament
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06.24"]
[EventDate "?"]
[Round "3.3"]
[Result "1/2-1/2"]
[White "Rustam K...
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06.24"]
[EventDate "?"]
[Round "3.3"]
[Result "1/2-1/2"]
[White "Rustam Kasimdzhanov"]
[Black "Vassily Ivanchuk"]
[ECO "C18"]
[WhiteElo "2652"]
[BlackElo "2716"]
[PlyCount "92"]
1. e4 e6 2. d4 d5 3. Nc3 Bb4 4. e5 Ne7 5. a3 Bxc3+ 6. bxc3 c5
7. Qg4 Kf8 8. Qd1 b6 9. Nf3 h6 10. a4 Ba6 11. Bxa6 Nxa6
12. O-O Kg8 13. Qd3 Nb8 14. Nh4 Nbc6 15. f4 Qd7 16. dxc5 bxc5
17. Ba3 Rc8 18. c4 Nb4 19. Qb3 dxc4 20. Qxc4 Qxa4 21. c3 Qa6
22. Qe4 Qd3 23. Qxd3 Nxd3 24. Rad1 g5 25. Rxd3 gxh4 26. Rd7
Nd5 27. Rf3 Rh7 28. Rxa7 Rg7 29. f5 exf5 30. Ra5 h3 31. Rxh3
Nf4 32. Rf3 Rxg2+ 33. Kf1 Rg4 34. h3 Rh4 35. Ra4 Ng6 36. Rxh4
Nxh4 37. Rf4 Ng6 38. Rxf5 Rc6 39. e6 fxe6 40. Rxc5 Ra6
41. Rc8+ Kf7 42. Bc5 e5 43. Be3 Rf6+ 44. Ke2 Nf4+ 45. Bxf4
Rxf4 46. Rc5 Rh4 1/2-1/2
https://wn.com/Rustam_Kasimdzhanov_Vs_Vassily_Ivanchuk_2004_Fide_World_Championship_Tournament
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06.24"]
[EventDate "?"]
[Round "3.3"]
[Result "1/2-1/2"]
[White "Rustam Kasimdzhanov"]
[Black "Vassily Ivanchuk"]
[ECO "C18"]
[WhiteElo "2652"]
[BlackElo "2716"]
[PlyCount "92"]
1. e4 e6 2. d4 d5 3. Nc3 Bb4 4. e5 Ne7 5. a3 Bxc3+ 6. bxc3 c5
7. Qg4 Kf8 8. Qd1 b6 9. Nf3 h6 10. a4 Ba6 11. Bxa6 Nxa6
12. O-O Kg8 13. Qd3 Nb8 14. Nh4 Nbc6 15. f4 Qd7 16. dxc5 bxc5
17. Ba3 Rc8 18. c4 Nb4 19. Qb3 dxc4 20. Qxc4 Qxa4 21. c3 Qa6
22. Qe4 Qd3 23. Qxd3 Nxd3 24. Rad1 g5 25. Rxd3 gxh4 26. Rd7
Nd5 27. Rf3 Rh7 28. Rxa7 Rg7 29. f5 exf5 30. Ra5 h3 31. Rxh3
Nf4 32. Rf3 Rxg2+ 33. Kf1 Rg4 34. h3 Rh4 35. Ra4 Ng6 36. Rxh4
Nxh4 37. Rf4 Ng6 38. Rxf5 Rc6 39. e6 fxe6 40. Rxc5 Ra6
41. Rc8+ Kf7 42. Bc5 e5 43. Be3 Rf6+ 44. Ke2 Nf4+ 45. Bxf4
Rxf4 46. Rc5 Rh4 1/2-1/2
published: 27 Feb 2018
views: 18
0:50
Teimour Radjabov vs Pavel Smirnov 2004 FIDE World Championship Tournament
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06.27"]
[EventDate "?"]
[Round "4.2"]
[Result "1/2-1/2"]
[White "Teimour ...
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06.27"]
[EventDate "?"]
[Round "4.2"]
[Result "1/2-1/2"]
[White "Teimour Radjabov"]
[Black "Pavel Smirnov"]
[ECO "D11"]
[WhiteElo "2670"]
[BlackElo "2601"]
[PlyCount "27"]
1. d4 d5 2. c4 c6 3. Nf3 Nf6 4. e3 a6 5. Bd3 Bg4 6. Nbd2 e6
7. O-O Nbd7 8. b3 Bf5 9. Qc2 Bxd3 10. Qxd3 Be7 11. Bb2 O-O
12. Rfd1 a5 13. a3 Qb6 14. Rac1 1/2-1/2
https://wn.com/Teimour_Radjabov_Vs_Pavel_Smirnov_2004_Fide_World_Championship_Tournament
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06.27"]
[EventDate "?"]
[Round "4.2"]
[Result "1/2-1/2"]
[White "Teimour Radjabov"]
[Black "Pavel Smirnov"]
[ECO "D11"]
[WhiteElo "2670"]
[BlackElo "2601"]
[PlyCount "27"]
1. d4 d5 2. c4 c6 3. Nf3 Nf6 4. e3 a6 5. Bd3 Bg4 6. Nbd2 e6
7. O-O Nbd7 8. b3 Bf5 9. Qc2 Bxd3 10. Qxd3 Be7 11. Bb2 O-O
12. Rfd1 a5 13. a3 Qb6 14. Rac1 1/2-1/2
published: 31 Mar 2018
views: 7
2:26
Ni Hua vs Ye Jiangchuan 2004 FIDE World Championship Tournament
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06.22"]
[EventDate "?"]
[Round "2.2"]
[Result "1/2-1/2"]
[White "Ni Hua"]...
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06.22"]
[EventDate "?"]
[Round "2.2"]
[Result "1/2-1/2"]
[White "Ni Hua"]
[Black "Ye Jiangchuan"]
[ECO "B48"]
[WhiteElo "2587"]
[BlackElo "2681"]
[PlyCount "92"]
1. e4 c5 2. Nf3 e6 3. d4 cxd4 4. Nxd4 Nc6 5. Nc3 Qc7 6. Be3 a6
7. Qd2 Nf6 8. O-O-O Bb4 9. f3 Ne5 10. Nb3 b5 11. Qe1 Rb8
12. Bd4 Nc6 13. Bc5 Bxc5 14. Nxc5 O-O 15. Qg3 Ne5 16. Nd3 d6
17. f4 Ng6 18. Qe3 b4 19. Ne2 Bb7 20. Ng3 Rfc8 21. Ne1 d5
22. e5 Ne4 23. Kb1 Qa5 24. Ne2 Ne7 25. Nd4 Nf5 26. Nxf5 exf5
27. Rd4 Bc6 28. Bd3 Nc3+ 29. bxc3 bxc3+ 30. Kc1 Rb1+ 31. Kxb1
Qa3 32. Rb4 Qxb4+ 33. Kc1 d4 34. Qg3 Rb8 35. Kd1 Qb1+ 36. Ke2
Qc1 37. Kf1 Rb1 38. Qh4 g6 39. Rg1 Qd2 40. g4 Qxf4+ 41. Qf2
Rxe1+ 42. Kxe1 Qc1+ 43. Ke2 Qd2+ 44. Kf1 Qd1+ 45. Qe1 Qf3+
46. Qf2 Qd1+ 1/2-1/2
https://wn.com/Ni_Hua_Vs_Ye_Jiangchuan_2004_Fide_World_Championship_Tournament
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06.22"]
[EventDate "?"]
[Round "2.2"]
[Result "1/2-1/2"]
[White "Ni Hua"]
[Black "Ye Jiangchuan"]
[ECO "B48"]
[WhiteElo "2587"]
[BlackElo "2681"]
[PlyCount "92"]
1. e4 c5 2. Nf3 e6 3. d4 cxd4 4. Nxd4 Nc6 5. Nc3 Qc7 6. Be3 a6
7. Qd2 Nf6 8. O-O-O Bb4 9. f3 Ne5 10. Nb3 b5 11. Qe1 Rb8
12. Bd4 Nc6 13. Bc5 Bxc5 14. Nxc5 O-O 15. Qg3 Ne5 16. Nd3 d6
17. f4 Ng6 18. Qe3 b4 19. Ne2 Bb7 20. Ng3 Rfc8 21. Ne1 d5
22. e5 Ne4 23. Kb1 Qa5 24. Ne2 Ne7 25. Nd4 Nf5 26. Nxf5 exf5
27. Rd4 Bc6 28. Bd3 Nc3+ 29. bxc3 bxc3+ 30. Kc1 Rb1+ 31. Kxb1
Qa3 32. Rb4 Qxb4+ 33. Kc1 d4 34. Qg3 Rb8 35. Kd1 Qb1+ 36. Ke2
Qc1 37. Kf1 Rb1 38. Qh4 g6 39. Rg1 Qd2 40. g4 Qxf4+ 41. Qf2
Rxe1+ 42. Kxe1 Qc1+ 43. Ke2 Qd2+ 44. Kf1 Qd1+ 45. Qe1 Qf3+
46. Qf2 Qd1+ 1/2-1/2
published: 02 Jan 2018
views: 19
3:14
Evgeny Vladimirov vs Ni Hua 2004 FIDE World Championship Tournament
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06.20"]
[EventDate "?"]
[Round "1.4"]
[Result "1/2-1/2"]
[White "Evgeny V...
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06.20"]
[EventDate "?"]
[Round "1.4"]
[Result "1/2-1/2"]
[White "Evgeny Vladimirov"]
[Black "Ni Hua"]
[ECO "D13"]
[WhiteElo "2621"]
[BlackElo "2587"]
[PlyCount "119"]
1. d4 d5 2. c4 c6 3. Nf3 Nf6 4. cxd5 cxd5 5. Nc3 Nc6 6. Bf4 a6
7. Rc1 Bf5 8. e3 Qb6 9. Bd3 Bxd3 10. Qxd3 e6 11. O-O Be7
12. Ne5 O-O 13. Nxc6 Qxc6 14. Ne2 Qb6 15. Rc7 Rfe8 16. Qb3
Qxb3 17. axb3 b6 18. Rfc1 Bd8 19. R7c6 Re7 20. h3 Rd7 21. Nc3
Kf8 22. Na4 Rb7 23. Kf1 Nd7 24. Rc8 Rxc8 25. Rxc8 Ke7 26. Ke2
f6 27. Ra8 b5 28. Nc3 Rb6 29. Na2 b4 30. Nc1 Rc6 31. Nd3 a5
32. Kd2 g5 33. Bg3 h5 34. h4 Ke8 35. hxg5 fxg5 36. Ne5 Nxe5
37. Bxe5 Kd7 38. f3 Rc8 39. Ra7+ Kc6 40. Ra6+ Kd7 41. e4 dxe4
42. fxe4 h4 43. Ra7+ Ke8 44. Kd3 Rc1 45. d5 exd5 46. exd5 Re1
47. Bd6 Rg1 48. Ke4 Rxg2 49. Rh7 g4 50. Kf5 g3 51. Be5 Re2
52. d6 Rxe5+ 53. Kxe5 g2 54. d7+ Kf8 55. Rh8+ Ke7 56. Rh7+ Kf8
57. Rh8+ Ke7 58. Rh7+ Kf8 59. Rh8+ Ke7 60. Ke4 1/2-1/2
https://wn.com/Evgeny_Vladimirov_Vs_Ni_Hua_2004_Fide_World_Championship_Tournament
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06.20"]
[EventDate "?"]
[Round "1.4"]
[Result "1/2-1/2"]
[White "Evgeny Vladimirov"]
[Black "Ni Hua"]
[ECO "D13"]
[WhiteElo "2621"]
[BlackElo "2587"]
[PlyCount "119"]
1. d4 d5 2. c4 c6 3. Nf3 Nf6 4. cxd5 cxd5 5. Nc3 Nc6 6. Bf4 a6
7. Rc1 Bf5 8. e3 Qb6 9. Bd3 Bxd3 10. Qxd3 e6 11. O-O Be7
12. Ne5 O-O 13. Nxc6 Qxc6 14. Ne2 Qb6 15. Rc7 Rfe8 16. Qb3
Qxb3 17. axb3 b6 18. Rfc1 Bd8 19. R7c6 Re7 20. h3 Rd7 21. Nc3
Kf8 22. Na4 Rb7 23. Kf1 Nd7 24. Rc8 Rxc8 25. Rxc8 Ke7 26. Ke2
f6 27. Ra8 b5 28. Nc3 Rb6 29. Na2 b4 30. Nc1 Rc6 31. Nd3 a5
32. Kd2 g5 33. Bg3 h5 34. h4 Ke8 35. hxg5 fxg5 36. Ne5 Nxe5
37. Bxe5 Kd7 38. f3 Rc8 39. Ra7+ Kc6 40. Ra6+ Kd7 41. e4 dxe4
42. fxe4 h4 43. Ra7+ Ke8 44. Kd3 Rc1 45. d5 exd5 46. exd5 Re1
47. Bd6 Rg1 48. Ke4 Rxg2 49. Rh7 g4 50. Kf5 g3 51. Be5 Re2
52. d6 Rxe5+ 53. Kxe5 g2 54. d7+ Kf8 55. Rh8+ Ke7 56. Rh7+ Kf8
57. Rh8+ Ke7 58. Rh7+ Kf8 59. Rh8+ Ke7 60. Ke4 1/2-1/2
published: 01 Apr 2017
views: 26
18:31
Magnus Carlsen vs Levon Aronian, FIDE World Championship Knockout Tournament 2004
Magnus Carlsen vs Levon Aronian
FIDE World Championship Knockout Tournament 2004: 0-1
#che...
Play in Full Screen
Magnus Carlsen vs Levon Aronian, FIDE World Championship Knockout Tournament 2004
Magnus Carlsen vs Levon Aronian, FIDE World Championship Knockout Tournament 2004
Magnus Carlsen vs Levon Aronian
FIDE World Championship Knockout Tournament 2004: 0-1
#chess #chessgame
----------------------------------------------------
Social Links:
https://www.facebook.com/profile.php?id=100093540717924
https://twitter.com/data_chess
----------------------------------------------------
Music:
Despair and Triumph by Kevin MacLeod is licensed under a Creative Commons Attribution 4.0 license. https://creativecommons.org/licenses/by/4.0/
Source: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1400012
Artist: http://incompetech.com/
----------------------------------------------------
Note:
This video is for educational purpose only.
0:53
Rustam Kasimdzhanov vs Vassily Ivanchuk 2004 FIDE World Championship Tournament
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06....
Play in Full Screen
Rustam Kasimdzhanov vs Vassily Ivanchuk 2004 FIDE World Championship Tournament
Rustam Kasimdzhanov vs Vassily Ivanchuk 2004 FIDE World Championship Tournament
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06.24"]
[EventDate "?"]
[Round "3.2"]
[Result "1/2-1/2"]
[White "Rustam Kasimdzhanov"]
[Black "Vassily Ivanchuk"]
[ECO "C11"]
[WhiteElo "2652"]
[BlackElo "2716"]
[PlyCount "31"]
1. e4 e6 2. d4 d5 3. Nc3 Nf6 4. Bg5 dxe4 5. Nxe4 Nbd7 6. Nf3
h6 7. Nxf6+ Nxf6 8. Bxf6 Qxf6 9. Bb5+ c6 10. Bd3 Bd7 11. O-O
c5 12. c3 cxd4 13. Qb3 Bd6 14. Nxd4 Qe5 15. g3 O-O-O 16. Rfe1
1/2-1/2
9:44
Levon Aronian vs Pavel Smirnov || FIDE World Championship Knockout Tournament, 2004 #chess
Levon Aronian vs Pavel Smirnov || FIDE World Championship Knockout Tournament, 2004 #chess...
Play in Full Screen
Levon Aronian vs Pavel Smirnov || FIDE World Championship Knockout Tournament, 2004 #chess
Levon Aronian vs Pavel Smirnov || FIDE World Championship Knockout Tournament, 2004 #chess
Levon Aronian vs Pavel Smirnov || FIDE World Championship Knockout Tournament, 2004 #chess
#chessgame #chessmate #king #chessplayer #queen #chessstrategies
#ding #capablanca #fide
Hello and welcome to my channel Chess Train Non Stops and this video is the chess analisis of the game played between Levon Aronian vs Pavel Smirnov. They playing opening with Semi-Slav. This game comes to you from FIDE World Championship Knockout Tournament (2004) 0-1. Smirnov win this game after long fight.
chess, wesley so, fabiano caruana, ding liren, mikhail tal, alexander alekhine, tigran petrosian, alekhine defence, grunfeld defence, magnus carlsen, hikaru nakamura, alireza firouzja modern, tata steel chess 2023, jose raul capablanca.
2:43
Francisco Vallejo Pons vs Rodrigo Rafael Vasquez Schroeder 2004 FIDE World Championship Tournament
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06....
Play in Full Screen
Francisco Vallejo Pons vs Rodrigo Rafael Vasquez Schroeder 2004 FIDE World Championship Tournament
Francisco Vallejo Pons vs Rodrigo Rafael Vasquez Schroeder 2004 FIDE World Championship Tournament
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06.20"]
[EventDate "?"]
[Round "1.3"]
[Result "0-1"]
[White "Francisco Vallejo Pons"]
[Black "Rodrigo Rafael Vasquez Schroeder"]
[ECO "B20"]
[WhiteElo "2666"]
[BlackElo "2523"]
[PlyCount "101"]
1. e4 c5 2. Ne2 d6 3. g3 g6 4. Bg2 Bg7 5. c3 e5 6. d4 cxd4
7. cxd4 Nc6 8. dxe5 dxe5 9. Qxd8+ Nxd8 10. Nbc3 Ne7 11. Be3
Bd7 12. O-O Ne6 13. Rfd1 Nc6 14. Bh3 Rd8 15. Kg2 Ncd4 16. Bxd4
exd4 17. Nd5 Bc6 18. Rac1 f5 19. Nef4 Nxf4+ 20. Nxf4 Bh6
21. Rc4 Bxf4 22. gxf4 Bxe4+ 23. f3 Bc6 24. Rcxd4 Rxd4 25. Rxd4
Ke7 26. Kf2 Rc8 27. Bf1 Bd7 28. Bc4 Be6 29. Bxe6 Rc2+ 30. Ke3
Kxe6 31. Rd2 Rc1 32. Rd8 Rb1 33. b3 Re1+ 34. Kf2 Rh1 35. Kg3
Rg1+ 36. Kf2 Ra1 37. Rd2 Rh1 38. Kg3 Rc1 39. Kf2 b5 40. Kg3 b4
41. Kh4 Rg1 42. Re2+ Kd6 43. Rd2+ Kc5 44. Rd7 Rg2 45. Rxa7
Rxh2+ 46. Kg3 Rb2 47. Ra4 Rd2 48. Kh4 Rd3 49. Kg3 Rd7 50. Kf2
Re7 51. Ra5+ 0-1
2:47
Ni Hua vs Evgeny Vladimirov 2004 FIDE World Championship Tournament
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06....
Play in Full Screen
Ni Hua vs Evgeny Vladimirov 2004 FIDE World Championship Tournament
Ni Hua vs Evgeny Vladimirov 2004 FIDE World Championship Tournament
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06.20"]
[EventDate "?"]
[Round "1.7"]
[Result "1-0"]
[White "Ni Hua"]
[Black "Evgeny Vladimirov"]
[ECO "C47"]
[WhiteElo "2587"]
[BlackElo "2621"]
[PlyCount "101"]
1. e4 e5 2. Nf3 Nc6 3. Nc3 Nf6 4. g3 Nd4 5. Bg2 Nxf3+ 6. Qxf3
Bc5 7. d3 c6 8. h3 d6 9. O-O O-O 10. Be3 Bxe3 11. fxe3 h6
12. Kh2 Nh7 13. Rad1 Qe7 14. Qe2 Bd7 15. Rf2 f5 16. exf5 Bxf5
17. Rdf1 Be6 18. d4 Rxf2 19. Rxf2 Nf6 20. a3 Bf7 21. Qd2 Re8
22. Rf1 exd4 23. exd4 Qe3 24. Qf2 Qxf2 25. Rxf2 d5 26. g4 Bg6
27. Rd2 Re1 28. Bf3 Nh7 29. h4 Nf6 30. Kg3 Be4 31. Kf2 Rh1
32. Bxh1 Bxh1 33. Kg3 Be4 34. g5 hxg5 35. hxg5 Nh5+ 36. Kh4
Bg6 37. Rf2 Be8 38. Nd1 g6 39. Ne3 Ng7 40. Rf6 Bf7 41. Rd6 Ne6
42. c3 Nf4 43. Rd7 b5 44. Ng4 Be6 45. Nf6+ Kf8 46. Rxa7 Bf5
47. b3 Ne2 48. a4 bxa4 49. bxa4 Nxc3 50. a5 Nb5 51. Rb7 1-0
2:28
Rustam Kasimdzhanov vs Vassily Ivanchuk 2004 FIDE World Championship Tournament
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06....
Play in Full Screen
Rustam Kasimdzhanov vs Vassily Ivanchuk 2004 FIDE World Championship Tournament
Rustam Kasimdzhanov vs Vassily Ivanchuk 2004 FIDE World Championship Tournament
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06.24"]
[EventDate "?"]
[Round "3.3"]
[Result "1/2-1/2"]
[White "Rustam Kasimdzhanov"]
[Black "Vassily Ivanchuk"]
[ECO "C18"]
[WhiteElo "2652"]
[BlackElo "2716"]
[PlyCount "92"]
1. e4 e6 2. d4 d5 3. Nc3 Bb4 4. e5 Ne7 5. a3 Bxc3+ 6. bxc3 c5
7. Qg4 Kf8 8. Qd1 b6 9. Nf3 h6 10. a4 Ba6 11. Bxa6 Nxa6
12. O-O Kg8 13. Qd3 Nb8 14. Nh4 Nbc6 15. f4 Qd7 16. dxc5 bxc5
17. Ba3 Rc8 18. c4 Nb4 19. Qb3 dxc4 20. Qxc4 Qxa4 21. c3 Qa6
22. Qe4 Qd3 23. Qxd3 Nxd3 24. Rad1 g5 25. Rxd3 gxh4 26. Rd7
Nd5 27. Rf3 Rh7 28. Rxa7 Rg7 29. f5 exf5 30. Ra5 h3 31. Rxh3
Nf4 32. Rf3 Rxg2+ 33. Kf1 Rg4 34. h3 Rh4 35. Ra4 Ng6 36. Rxh4
Nxh4 37. Rf4 Ng6 38. Rxf5 Rc6 39. e6 fxe6 40. Rxc5 Ra6
41. Rc8+ Kf7 42. Bc5 e5 43. Be3 Rf6+ 44. Ke2 Nf4+ 45. Bxf4
Rxf4 46. Rc5 Rh4 1/2-1/2
33:19
The 2004 FIDE World Chess Championship / Rustam Kasimdzhanov vs Michael Adams (+3 -2 =3)
The 2004 FIDE World Chess Championship / Rustam Kasimdzhanov vs Michael Adams (+3 -2 =3)
Play in Full Screen
The 2004 FIDE World Chess Championship / Rustam Kasimdzhanov vs Michael Adams (+3 -2 =3)
The 2004 FIDE World Chess Championship / Rustam Kasimdzhanov vs Michael Adams (+3 -2 =3)
The 2004 FIDE World Chess Championship / Rustam Kasimdzhanov vs Michael Adams (+3 -2 =3)
0:50
Teimour Radjabov vs Pavel Smirnov 2004 FIDE World Championship Tournament
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06....
Play in Full Screen
Teimour Radjabov vs Pavel Smirnov 2004 FIDE World Championship Tournament
Teimour Radjabov vs Pavel Smirnov 2004 FIDE World Championship Tournament
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06.27"]
[EventDate "?"]
[Round "4.2"]
[Result "1/2-1/2"]
[White "Teimour Radjabov"]
[Black "Pavel Smirnov"]
[ECO "D11"]
[WhiteElo "2670"]
[BlackElo "2601"]
[PlyCount "27"]
1. d4 d5 2. c4 c6 3. Nf3 Nf6 4. e3 a6 5. Bd3 Bg4 6. Nbd2 e6
7. O-O Nbd7 8. b3 Bf5 9. Qc2 Bxd3 10. Qxd3 Be7 11. Bb2 O-O
12. Rfd1 a5 13. a3 Qb6 14. Rac1 1/2-1/2
2:26
Ni Hua vs Ye Jiangchuan 2004 FIDE World Championship Tournament
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06....
Play in Full Screen
Ni Hua vs Ye Jiangchuan 2004 FIDE World Championship Tournament
Ni Hua vs Ye Jiangchuan 2004 FIDE World Championship Tournament
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06.22"]
[EventDate "?"]
[Round "2.2"]
[Result "1/2-1/2"]
[White "Ni Hua"]
[Black "Ye Jiangchuan"]
[ECO "B48"]
[WhiteElo "2587"]
[BlackElo "2681"]
[PlyCount "92"]
1. e4 c5 2. Nf3 e6 3. d4 cxd4 4. Nxd4 Nc6 5. Nc3 Qc7 6. Be3 a6
7. Qd2 Nf6 8. O-O-O Bb4 9. f3 Ne5 10. Nb3 b5 11. Qe1 Rb8
12. Bd4 Nc6 13. Bc5 Bxc5 14. Nxc5 O-O 15. Qg3 Ne5 16. Nd3 d6
17. f4 Ng6 18. Qe3 b4 19. Ne2 Bb7 20. Ng3 Rfc8 21. Ne1 d5
22. e5 Ne4 23. Kb1 Qa5 24. Ne2 Ne7 25. Nd4 Nf5 26. Nxf5 exf5
27. Rd4 Bc6 28. Bd3 Nc3+ 29. bxc3 bxc3+ 30. Kc1 Rb1+ 31. Kxb1
Qa3 32. Rb4 Qxb4+ 33. Kc1 d4 34. Qg3 Rb8 35. Kd1 Qb1+ 36. Ke2
Qc1 37. Kf1 Rb1 38. Qh4 g6 39. Rg1 Qd2 40. g4 Qxf4+ 41. Qf2
Rxe1+ 42. Kxe1 Qc1+ 43. Ke2 Qd2+ 44. Kf1 Qd1+ 45. Qe1 Qf3+
46. Qf2 Qd1+ 1/2-1/2
3:14
Evgeny Vladimirov vs Ni Hua 2004 FIDE World Championship Tournament
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06....
Play in Full Screen
Evgeny Vladimirov vs Ni Hua 2004 FIDE World Championship Tournament
Evgeny Vladimirov vs Ni Hua 2004 FIDE World Championship Tournament
[Event "FIDE World Championship Knockout Tournament"]
[Site "Tripoli LBA"]
[Date "2004.06.20"]
[EventDate "?"]
[Round "1.4"]
[Result "1/2-1/2"]
[White "Evgeny Vladimirov"]
[Black "Ni Hua"]
[ECO "D13"]
[WhiteElo "2621"]
[BlackElo "2587"]
[PlyCount "119"]
1. d4 d5 2. c4 c6 3. Nf3 Nf6 4. cxd5 cxd5 5. Nc3 Nc6 6. Bf4 a6
7. Rc1 Bf5 8. e3 Qb6 9. Bd3 Bxd3 10. Qxd3 e6 11. O-O Be7
12. Ne5 O-O 13. Nxc6 Qxc6 14. Ne2 Qb6 15. Rc7 Rfe8 16. Qb3
Qxb3 17. axb3 b6 18. Rfc1 Bd8 19. R7c6 Re7 20. h3 Rd7 21. Nc3
Kf8 22. Na4 Rb7 23. Kf1 Nd7 24. Rc8 Rxc8 25. Rxc8 Ke7 26. Ke2
f6 27. Ra8 b5 28. Nc3 Rb6 29. Na2 b4 30. Nc1 Rc6 31. Nd3 a5
32. Kd2 g5 33. Bg3 h5 34. h4 Ke8 35. hxg5 fxg5 36. Ne5 Nxe5
37. Bxe5 Kd7 38. f3 Rc8 39. Ra7+ Kc6 40. Ra6+ Kd7 41. e4 dxe4
42. fxe4 h4 43. Ra7+ Ke8 44. Kd3 Rc1 45. d5 exd5 46. exd5 Re1
47. Bd6 Rg1 48. Ke4 Rxg2 49. Rh7 g4 50. Kf5 g3 51. Be5 Re2
52. d6 Rxe5+ 53. Kxe5 g2 54. d7+ Kf8 55. Rh8+ Ke7 56. Rh7+ Kf8
57. Rh8+ Ke7 58. Rh7+ Kf8 59. Rh8+ Ke7 60. Ke4 1/2-1/2
');
} 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));
}
});
});
});
// -->
Latest News for: fide world chess championship 2004
Edit
The Observer
10 Nov 2023
Adams , an eight-time British champion, was narrowly defeated in the final of the Fide world championship in 2004 , while Nunn, a mathematician and three-time world champion in chess problem solving, ...