<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-2461602893558785930</id><updated>2024-11-01T11:14:46.926+03:00</updated><category term="Türkü"/><category term="Arabesk-Alaturka"/><category term="Pop-Aranjman"/><category term="Şarkı"/><category term="Şiir"/><category term="Komedi"/><category term="Sıra Geceleri"/><category term="Kanto"/><category term="Top 10"/><category term="Vid-Rad-Mp3"/><category term="Davul Zurna ile Türküler"/><category term="Barak Havaları"/><category term="Editörün Seçtikleri"/><category term="Müzik Dinletisi Mp3"/><category term="Radyo Dinle"/><category term="Uzun Havalar"/><category term="Video Arama Motoru"/><category term="Video Galeri"/><category term="Şiir Dinletisi Mp3"/><title type='text'>MerT TuBe</title><subtitle type='html'>VİDEO/müzik-komedi-şiir, MP3</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://nostmuzden.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default'/><link rel='alternate' type='text/html' href='https://nostmuzden.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default?start-index=26&amp;max-results=25'/><author><name>İmdat</name><uri>http://www.blogger.com/profile/02588424190203669089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>397</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-2461602893558785930.post-5281211266030408916</id><published>2018-06-03T00:41:00.001+03:00</published><updated>2018-06-03T01:15:10.422+03:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Vid-Rad-Mp3"/><category scheme="http://www.blogger.com/atom/ns#" term="Şiir Dinletisi Mp3"/><title type='text'>Şiir Dinletisi Mp3</title><content type='html'>&lt;script&gt;/*
 *  Author Sam Johnson 
 *  Under MIT License
 */
;( function( $, window, document, undefined ) {

    &quot;use strict&quot;;
        // Create the defaults once
        var pluginName = &quot;musicPlayer&quot;,
            defaults = {
                autoPlay: false , 
                volume: 80, 
                loop: false, 
                timeSeparator: &#39; / &#39;,
                playerAbovePlaylist: true,  
                infoElements: [&#39;title&#39; , &#39;artist&#39;] , 
                elements: [&#39;artwork&#39;, &#39;information&#39;, &#39;controls&#39;, &#39;progress&#39;, &#39;time&#39;, &#39;volume&#39;],  
                timeElements: [&#39;current&#39;, &#39;duration&#39;],  
                controlElements: [&#39;backward&#39;, &#39;play&#39;, &#39;forward&#39;, &#39;stop&#39;], 
                onLoad: function() {}, 
                onPlay: function() {}, 
                onPause: function() {}, 
                onStop: function() {}, 
                onFwd: function() {}, 
                onRew: function() {}, 
                volumeChanged: function() {}, 
                progressChanged: function() {} , 
                trackClicked: function() {},
                onMute: function() {}
            };

        //Setup Touch Events
        var isTouch           = &#39;ontouchstart&#39; in window,
            eStart            = isTouch ? &#39;touchstart&#39;  : &#39;mousedown&#39;,
            eMove             = isTouch ? &#39;touchmove&#39;   : &#39;mousemove&#39;,
            eEnd              = isTouch ? &#39;touchend&#39;    : &#39;mouseup&#39;,
            eCancel           = isTouch ? &#39;touchcancel&#39; : &#39;mouseup&#39;;

        function Plugin ( element, options ) {
            this.element = element;
            this.settings = $.extend( {}, defaults, options );
            this._defaults = defaults;
            this._name = pluginName;
            this.init();
        }

        $.extend( Plugin.prototype, {
            init: function() {
                var controlInnerElem  = &quot;&quot;,
                    timeInnerElem     = &quot;&quot;,
                    infoElem          = &quot;&quot;,  
                    infoInnerElem     = &quot;&quot;,
                    fullPlayerElem    = &quot;&quot;, 
                    volumeElem        = &quot;&quot;,
                    progressElem      = &quot;&quot;,
                    artworkElem       = &quot;&quot;,
                    timeElem          = &quot;&quot;,
                    controlElem       = &quot;&quot;, 
                    titleElem         = &quot;&quot;, 
                    artistElem        = &quot;&quot;,
                    backwardElem      = &quot;&quot;,
                    forwardElem       = &quot;&quot;,
                    stopElem          = &quot;&quot;,
                    playElem          = &quot;&quot;,
                    curTimeElem       = &quot;&quot;,
                    durTimeElem       = &quot;&quot;,
                    timeSeparator     = &quot;&quot;,
                    playerElem        = &quot;&quot;,
                    playerThis        = this;

                for( var elemItem in this.settings.elements ) 
                { 
                    
                    //PREPARE VOLUME
                    if (this.settings.elements[elemItem] == &quot;volume&quot; ) {

                        volumeElem   = &quot;&lt;div class=&#39;volume&#39;&gt;&lt;div class=&#39;volume-btn&#39; title=&#39;Volume&#39;&gt;&lt;/div&gt;&lt;div class=&#39; volume-adjust&#39;&gt;&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&quot; ;
                        fullPlayerElem  += volumeElem; 
                    }
                    //PREPARE PROGRESS
                    else if (this.settings.elements[elemItem] == &quot;progress&quot; ) {
                        progressElem = &quot;&lt;div class=&#39;progressbar&#39;&gt;&lt;div class=&#39;bar-loaded&#39; &gt;&lt;/div&gt;&lt;div class=&#39;bar-played&#39;&gt;&lt;/div&gt;&lt;/div&gt;&quot;;
                        fullPlayerElem  += progressElem; 
                    }
                    //PREPARE ARTWORK
                    else if (this.settings.elements[elemItem] == &quot;artwork&quot; ) {
                       artworkElem = &quot;&lt;div class=&#39;cover&#39;&gt;&lt;/div&gt;&quot;;
                       fullPlayerElem  += artworkElem; 
                    }
                    //PREPARE INFORMATION displayed by the player in  the given order
                    else if (this.settings.elements[elemItem] == &quot;information&quot; ) {
                        
                        $.inArray(&quot;title&quot;, this.settings.infoElements ) != &#39;-1&#39;   ? titleElem     = &quot;&lt;div class=&#39;title&#39;&gt;&lt;/div&gt;&quot;  : titleElem = &quot; &quot; ;
                        $.inArray(&quot;artist&quot;, this.settings.infoElements ) != &#39;-1&#39;  ? artistElem    = &quot;&lt;div class=&#39;artist&#39;&gt;&lt;/div&gt;&quot; : artistElem = &quot; &quot; ;
                        
                        for( var item in this.settings.infoElements ) {  
                            if (this.settings.infoElements[item] == &quot;title&quot; ) {    infoInnerElem += titleElem;  }
                            else if ( this.settings.infoElements[item]  == &quot;artist&quot; ) {   infoInnerElem += artistElem ;  }
                        }
                        infoElem = &quot;&lt;div class=&#39;info&#39; &gt;&quot; + infoInnerElem + &quot;&lt;/div&gt;&quot;;
                        fullPlayerElem  += infoElem; 
                    }
                    //PREPARE TIME (current &amp; Duration) in the given order
                    else if (this.settings.elements[elemItem] == &quot;time&quot; ) {
                    
                        $.inArray(&quot;current&quot;, this.settings.timeElements) != &#39;-1&#39;  ? curTimeElem = &quot;&lt;div class=&#39;time-current&#39;&gt;&lt;/div&gt;&quot; : curTimeElem = &quot; &quot; ;                    
                        $.inArray(&quot;duration&quot;, this.settings.timeElements) != &#39;-1&#39; ? durTimeElem = &quot;&lt;div class=&#39;time-duration&#39;&gt;&lt;/div&gt;&quot; : durTimeElem = &quot; &quot; ;
                        timeSeparator =  &quot;&lt;div class=&#39;time-separator&#39;&gt;&quot; + this.settings.timeSeparator.replace(/\s/g, &#39;&amp;nbsp;&#39;) + &quot;&lt;/div&gt;&quot; ;  
                        
                        for( var item in this.settings.timeElements ) {  
                            if( item == 1 ) { timeInnerElem +=  timeSeparator; }
                            if (this.settings.timeElements[item] == &quot;current&quot; ) {    timeInnerElem += curTimeElem ;  }
                            else if ( this.settings.timeElements[item]  == &quot;duration&quot; ) {   timeInnerElem += durTimeElem;  }
                        }
                        timeElem = &quot;&lt;div class=&#39;timeHolder&#39;&gt;&quot; + timeInnerElem + &quot;&lt;/div&gt;&quot;;
                        fullPlayerElem  += timeElem; 
                    }
                    //PREPARE CONTROLS inner elements to display [play, stop, forward or backward] in the given order
                    else if (this.settings.elements[elemItem] == &quot;controls&quot; ) {

                        $.inArray(&quot;backward&quot;, this.settings.controlElements) != &#39;-1&#39;  ? backwardElem   = &quot;&lt;div class=&#39;rew&#39;&gt;&lt;/div&gt;&quot;      : backwardElem  = &quot; &quot; ;
                        $.inArray(&quot;forward&quot;, this.settings.controlElements)  != &#39;-1&#39;  ? forwardElem    = &quot;&lt;div class=&#39;fwd&#39;&gt;&lt;/div&gt;&quot;        : forwardElem   = &quot; &quot; ;
                        $.inArray(&quot;stop&quot;, this.settings.controlElements) != &#39;-1&#39;      ? stopElem       = &quot;&lt;div class=&#39;stop&#39;&gt;&lt;/div&gt;&quot;       : stopElem      = &quot; &quot; ;
                        $.inArray(&quot;play&quot;, this.settings.controlElements) != &#39;-1&#39;      ? playElem       = &quot;&lt;div class=&#39;play&#39;&gt;&lt;/div&gt;&lt;div class=&#39;pause&#39;&gt;&lt;/div&gt;&quot; : playElem  = &quot; &quot; ;

                        for( var item in this.settings.controlElements ) {  
                            if (this.settings.controlElements[item] == &quot;backward&quot; ) {       controlInnerElem  +=  backwardElem ;  }
                            else if (this.settings.controlElements[item] == &quot;play&quot; ) {      controlInnerElem +=  playElem;  }
                            else if (this.settings.controlElements[item] == &quot;forward&quot; ) {   controlInnerElem +=  forwardElem;  }
                            else if (this.settings.controlElements[item] == &quot;stop&quot; ) {   controlInnerElem +=  stopElem;  }
                        }
                        controlElem   = &quot;&lt;div class=&#39;controls&#39;&gt;&quot; + controlInnerElem + &quot;&lt;/div&gt;&quot;;
                        fullPlayerElem  += controlElem; 
                    }
                }
                

                //ADD THE PREPARED ELEMENT SORTED IN THEIR RIGHT ORDER TO THE PLAYER ELEMENT
                playerElem = $(&quot;&lt;div class=&#39;player&#39; &gt;&quot; + fullPlayerElem + &quot;&lt;/div&gt;&quot;);
                //console.log(this.element);
                if(this.settings.playerAbovePlaylist) {
                    $(playerElem).insertBefore($(this.element).find(&quot;.playlist&quot;));
                }else {
                    $(playerElem).insertAfter($(this.element).find(&quot;.playlist&quot;));
                }

                        this.playlistHolder    = $(this.element).children(&quot;.playlist&quot;),
                        this.playerHolder      = $(this.element).children(&quot;.player&quot;);
                        this.song              = &quot;&quot;;
                        this.theBar            = this.playerHolder.find(&#39;.progressbar&#39;);
                        this.barPlayed         = this.playerHolder.find(&#39;.bar-played&#39;);
                        this.barLoaded         = this.playerHolder.find(&#39;.bar-loaded&#39; );
                        this.timeCurrent       = this.playerHolder.find(&#39;.time-current&#39;);
                        this.timeDuration      = this.playerHolder.find(&#39;.time-duration&#39; );
                        this.timeSeparator     = this.settings.timeSeparator;
                        this.volumeInfo        = this.playerHolder.find(&#39;.volume&#39;);
                        this.volumeButton      = this.playerHolder.find(&#39;.volume-btn&#39;);
                        this.volumeAdjuster    = this.playerHolder.find(&#39;.volume-adjust&#39; + &#39; &gt; div&#39; );
                        this.volumeValue       = this.settings.volume / 100;
                        this.volumeDefault     = 0;
                        this.trackInfo         = this.playerHolder.find(&#39;.info&#39;);
                        //tracker           = playerHolder.find(&#39;.progressbar&#39;),
                        //volume            = playerHolder.find(&#39;.volume&#39;),
                        this.coverInfo         = this.playerHolder.find(&#39;.cover&#39;); 
                        this.controlsInfo      = this.playerHolder.find(&#39;.controls&#39;);
                        this.controlPlay       = $(this.controlsInfo).find(&#39;.play&#39;);
                        this.controlPause      = $(this.controlsInfo).find(&#39;.pause&#39;);
                        this.controlStop       = $(this.controlsInfo).find(&#39;.stop&#39;);
                        this.controlFwd        = $(this.controlsInfo).find(&#39;.fwd&#39;);
                        this.controlRew        = $(this.controlsInfo).find(&#39;.rew&#39;); 
                        this.cssClass          = 
                        {
                            playing:        &#39;playing&#39;,
                            mute:           &#39;mute&#39;
                        };

                //Volume cannot be set using JavaScript, so the volumechange event will never be fired. 
                //Even if the user changes the volume on their device while mobile Safari is open, this event will not fire
                //source: https://www.ibm.com/developerworks/library/wa-ioshtml5/
                //Hide Volume control on IOS devices. 
                if (/iPad|iPhone|iPod/.test(navigator.userAgent)) $(volumeInfo).hide();

                // initialization - first element in playlist
                this.initAudio( $(this.playlistHolder.children(&quot;li:first-child&quot;) ) );

                // set volume  
                this.song.volume = this.volumeValue;

                //set default time Current and duration time
                this.timeDuration.html( &#39;&amp;hellip;&#39; );
                this.timeCurrent.text( this.secondsToTime( 0 ) );  


            // play click
            $(this.controlPlay).click(function (e) {
                e.preventDefault();

                playerThis.playAudio();
            
            });

            // pause click
            $(this.controlPause).click(function (e) {
                e.preventDefault();

                playerThis.stopAudio();

                //issue pause callback
                playerThis.settings.onPause();
            });

            // forward click
            $(this.controlFwd).click(function (e) {
                e.preventDefault();

                playerThis.stopAudio();

                var next = $(playerThis.playlistHolder).find(&#39;li.active&#39;).next();

                //Looping Activated : play the first item on the playlist if there is no next item with(looping)
                if ( next.length == 0 ) {
                    next = $(playerThis.playlistHolder).find(&#39;li:first-child&#39;);      
                }

                playerThis.loadNewSong(next);
                playerThis.playAudio();

                //issue forward callback
                playerThis.settings.onFwd();

            });

            // rewind click
            $(this.controlRew).click(function (e) {
                e.preventDefault();

                playerThis.stopAudio();

                var prev = $(playerThis.playlistHolder).find(&#39;li.active&#39;).prev();
                //play the last item on the playlist if there is no previous item (looping)
                if (prev.length == 0 ) {
                    prev = $(playerThis.playlistHolder).find(&#39;li:last-child&#39;); 
                }

                playerThis.loadNewSong(prev);
                playerThis.playAudio();

                //issue backward callback
                playerThis.settings.onRew();

            });

            //stop click 
            $(this.controlStop).click(function (e) {
                e.preventDefault();

                playerThis.stopAudio();
                playerThis.song.currentTime = 0;
                
                //issue stop callback
                playerThis.settings.onStop();
            });

            // Play clicked Playlist song. 
            $(this.playlistHolder).find(&#39;li&#39;).click(function (e) {
                e.preventDefault();

                playerThis.stopAudio();
                playerThis.loadNewSong($(this));
                playerThis.playAudio();

                //issue track clicked callback
                playerThis.settings.trackClicked();
            })


            },
            
            secondsToTime: function( secs ) 
            {
                var hours = Math.floor( secs / 3600 ), 
                minutes = Math.floor( secs % 3600 / 60 ), 
                seconds = Math.ceil( secs % 3600 % 60 );

                return ( hours == 0 ? &#39;&#39; : hours &gt; 0 &amp;&amp; hours.toString().length &lt; 2 ? &#39;0&#39;+hours+&#39;:&#39; : hours+&#39;:&#39; ) + ( minutes.toString().length &lt; 2 ? &#39;0&#39;+minutes : minutes ) + &#39;:&#39; + ( seconds.toString().length &lt; 2 ? &#39;0&#39;+seconds : seconds );
            },
            adjustVolume: function( e )
            {  
                // volElemClicked  = e.toElement.parentElement;
                // volElemClicked  = $(volElemClicked).parent().parent().parent().parent();
                // console.log(e);
                var theRealEvent     = isTouch ? e.originalEvent.touches[ 0 ] : e; 
                this.song.volume     = Math.abs( ( theRealEvent.pageX - ( this.volumeAdjuster.offset().left ) ) / this.volumeAdjuster.width() );

            },
            adjustCurrentTime: function( e )
            {
                var theRealEvent        = isTouch ? e.originalEvent.touches[ 0 ] : e;
                this.song.currentTime    = Math.round( ( this.song.duration * ( theRealEvent.pageX - this.theBar.offset().left ) ) / this.theBar.width() );
            },

            initAudio: function(elem) 
            {
                var url     = elem.children(&quot;a:first-child&quot;).attr(&quot;href&quot;),
                    title   = elem.text(),
                    cover   = elem.attr(&#39;data-cover&#39;),
                    artist  = elem.attr(&#39;data-artist&#39;),
                    playerInstance = this;

                //Set the title of the song  on the player  
                $(this.trackInfo).children(&#39;.title&#39;).text(title);
                //Set the artist name on the player
                $(this.trackInfo).children(&#39;.artist&#39;).text(artist);

                //Set the cover image for the player 
                $(this.coverInfo).css(&#39;background-image&#39;,&#39;url(&#39;+ cover +&#39;)&#39;);
                 
                this.song = new Audio(url); 

                //Force load
                this.song.load();

                //set the song time duration on player
                this.song.addEventListener(&#39;loadeddata&#39;, function()
                {
                    $(playerInstance.timeDuration).html(playerInstance.secondsToTime(this.duration) );
                    $(playerInstance.volumeAdjuster).find( &#39;div&#39; ).width( this.volume * 100 + &#39;%&#39; );
                    playerInstance.volumeDefault = this.volume;

                }, false);

             
                //update bar loader 
                this.song.addEventListener(&#39;progress&#39;, function()
                {
                    $(playerInstance.barLoaded).width( ( this.buffered.end( 0 ) / this.duration ) * 100 + &#39;%&#39; );
                });

                //timeupdate event listener (timeupdate used together with the current Time Property to return
                // the current position of the audio playback in seconds)   
                this.song.addEventListener(&#39;timeupdate&#39;,function ()
                {
                    $(playerInstance.timeCurrent).text( playerInstance.secondsToTime(this.currentTime ) ); 
                    $(playerInstance.barPlayed).width( (this.currentTime / this.duration ) * 100 + &#39;%&#39; );

                });

                this.song.addEventListener(&#39;volumechange&#39;, function()
                {
                    if(Number(Math.round(this.volume * 100+&#39;e&#39;+1)+&#39;e-&#39;+1) &lt;= 0.4 ){ this.volume = 0; }
                    $(playerInstance.volumeAdjuster).find( &#39;div&#39; ).width( this.volume * 100 + &#39;%&#39; );
                    if( this.volume &gt; 0 &amp;&amp; playerInstance.playerHolder.hasClass( playerInstance.cssClass.mute ) ) playerInstance.playerHolder.removeClass( playerInstance.cssClass.mute );
                    if( this.volume &lt;= 0 &amp;&amp; !playerInstance.playerHolder.hasClass( playerInstance.cssClass.mute ) ) playerInstance.playerHolder.addClass( playerInstance.cssClass.mute );

                    playerInstance.volumeValue  = this.volume;
                });

                this.song.addEventListener(&#39;ended&#39;, function()
                {   
                     //Play the loaded song when autoplay is activated
                      //$(&#39;.fwd&#39;).click(); 
                    if (playerInstance.settings.autoPlay){ playerInstance.autoPlayNext(); } 
                    else {
                        //Hide playing class
                        playerInstance.playerHolder.removeClass( playerInstance.cssClass.playing );
                        //Hide pause Icon and show play
                        $(playerInstance.controlPlay).removeClass(&#39;hidden&#39;);
                        $(playerInstance.controlPause).removeClass(&#39;visible&#39;);
                    }

                });

                //Toggle Mute icon and reset Volume   
                $(this.volumeButton).on(&#39;click&#39;, function()
                {

                    if( $(playerInstance.playerHolder).hasClass( playerInstance.cssClass.mute ) )
                    {
                        $(playerInstance.playerHolder).removeClass( playerInstance.cssClass.mute );
                        playerInstance.song.volume = playerInstance.volumeDefault;
                    }
                    else
                    {
                        $(playerInstance.playerHolder).addClass( playerInstance.cssClass.mute );
                        playerInstance.volumeDefault = playerInstance.song.volume;
                        playerInstance.song.volume = 0;
                        //issue callback to track mute action.
                        playerInstance.settings.onMute();
                        
                    }

                    return false;
                });

                //when volume bar is clicked
                $(this.volumeAdjuster).on( eStart, function( e )
                {
                    playerInstance.adjustVolume( e );
                    playerInstance.volumeAdjuster.on( eMove, function( e ) { playerInstance.adjustVolume( e ); } );
                    //issue callback
                    playerInstance.settings.volumeChanged();

                })
                .on( eCancel, function()
                {
                    playerInstance.volumeAdjuster.unbind( eMove );
                    
                });

                //when trackbar is click 
                $(this.theBar).on( eStart, function( e )
                {
                    playerInstance.adjustCurrentTime( e );
                    playerInstance.theBar.on( eMove, function( e ) { playerInstance.adjustCurrentTime( e ); } );
                })
                .on( eCancel, function()
                {
                    playerInstance.theBar.unbind( eMove );
                    //issue callback
                    playerInstance.settings.progressChanged();
                });

                //Make active the loaded Song playing  
                $(this.playlistHolder).children(&#39;li&#39;).removeClass(&#39;active&#39;);
                elem.addClass(&#39;active&#39;);


                //issue Callback
                this.settings.onLoad();

                //Play the loaded song when autoplay is activated
                if (this.settings.autoPlay) this.playAudio();  
  
            },
            playAudio: function() 
            { 
                this.song.play();

                //Add playing class
                this.playerHolder.addClass(this.cssClass.playing);

                //Hide pause Icon and show play if they exist 
                if ( $.inArray(&quot;controls&quot;, this.settings.elements ) != &#39;-1&#39; &amp;&amp; $.inArray(&quot;play&quot;, this.settings.controlElements ) != &#39;-1&#39;  ) {
                    $(this.controlPlay).addClass(&#39;hidden&#39;);
                    $(this.controlPause).addClass(&#39;visible&#39;);
                }

                this.settings.onPlay();
            },

            stopAudio: function() 
            {
                this.song.pause();
                //Remove playing class
                this.playerHolder.removeClass(this.cssClass.playing);

                //Hide pause Icon and show play if they exist 
                if ( $.inArray(&quot;controls&quot;, this.settings.elements ) != &#39;-1&#39; &amp;&amp; $.inArray(&quot;play&quot;, this.settings.controlElements ) != &#39;-1&#39; ) {
                    $(this.controlPlay).removeClass(&#39;hidden&#39;);
                    $(this.controlPause).removeClass(&#39;visible&#39;);
                }
                
            },
            // Auto Play the next track and loop if lopp is activated
            autoPlayNext: function() 
            {
                
                this.stopAudio();
                var next = $(this.playlistHolder).children(&#39;li.active&#39;).next();

                //Looping Activated : play the first item on the playlist if there is no next item with(looping)
                if (  next.length == 0 &amp;&amp; this.settings.loop  ) {
                    next = $(this.playlistHolder).children(&#39;li:first-child&#39;)
                    this.loadNewSong(next);
                    this.playAudio();
                }
                else if ( !next.length == 0  ) {
                    this.loadNewSong(next);
                    this.playAudio();
                }
            },
            //initiate the give song maintaining current settings 
            loadNewSong: function(elem) 
            {
                //save current volume  level
                this.volumeValue = this.song.volume;
                //set up the next song to be played
                this.initAudio(elem);
                //set song volume to the previous track&#39;s volume to ensure consistency
                this.song.volume = this.volumeValue;
                this.volumeAdjuster.find( &#39;div&#39; ).width( this.volumeValue * 100 + &#39;%&#39; );
                //reset progress &amp; loaded bar indicator to begin
                this.barPlayed.width(0);
                this.barLoaded.width(0);
            }


        });

        $.fn[ pluginName ] = function( options ) {
            return this.each( function() {
                if ( !$.data( this, &quot;plugin_&quot; + pluginName ) ) {
                    $.data( this, &quot;plugin_&quot; +
                        pluginName, new Plugin( this, options ) );
                }
            } );
        };

} )( jQuery, window, document );&lt;/script&gt;


&lt;style&gt;

.example {margin: 0; width: 658px; padding: 0; border: 1px solid #adadad;}

.player {background: #fe6d46 url(&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi5yEQ1xGgdoTxVYDrgaABwRVylRz0ribkcuj0VT5iKSWV6QGh8gwv2uLUv8GoQIKnDEdTJ-2DjPlzc0R2KTci6jYddIzsU7_KPaRNUaYCGBvGw5W92wFPs2jWFtgLX40JcP3g2-cFedw8/s1600/dinlek1.png&quot;) no-repeat top right;
background-size: auto 100%;
    height: 215px;
    position: relative;
    width: 100%;
    z-index: 2;
    margin: 0;
    padding: 0;}

.example .title, .artist {
    font-family: verdana;
    left: 177px;
    position: absolute;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;}

.example .title {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    top: 10px;
    width: 260px;
line-height: 18px;}

.artist {
    color: #EEEEEE;
    font-size: 12px;
    top: 40px;}

.pl {
    background: url(http://www.jqueryscript.net/demo/Minimal-jQuery-Cross-platform-Audio-Player-MINImusic-Player/images/playlist.png) no-repeat;
    cursor: pointer;
    height: 40px;
    left: 330px;
    position: absolute;
    top: 20px;
    width: 39px;
}
.pl:hover {
    top: 21px;
}
.cover {background-size:100% 100%;
    height: 195px;
    margin-left: 10px;
    position: absolute;
    top: 10px;
    width: 160px;}

.controls {
    cursor: pointer;
    left: 0px;
    position: absolute;
    top: 65px;
    left: 205px;}

.controls .play, .controls .pause {
    width: 60px;
    height: 60px;
    margin: 0 5px 0px 5px;
}
.controls .play, .controls .pause, .controls .rew, .controls .fwd {
   text-indent: -10000px;
    border: none;
    float: left;}

.controls .rew, .controls .fwd {
    width: 50px;
    height: 50px;
    margin: 5px 5px 5px 5px;}

.controls .play {
    background: url(http://www.jqueryscript.net/demo/Minimal-jQuery-Cross-platform-Audio-Player-MINImusic-Player/images/play.png) no-repeat;
}
.controls .pause {
    background: url(http://www.jqueryscript.net/demo/Minimal-jQuery-Cross-platform-Audio-Player-MINImusic-Player/images/pause.png) no-repeat;
    display: none;
}
.controls .rew {
    background: url(http://www.jqueryscript.net/demo/Minimal-jQuery-Cross-platform-Audio-Player-MINImusic-Player/images/rewind.png) no-repeat;
}
.controls .fwd {
    background: url(http://www.jqueryscript.net/demo/Minimal-jQuery-Cross-platform-Audio-Player-MINImusic-Player/images/next.png) no-repeat;
}


.hidden {display: none;}

.controls .visible {display: block;}

.volume {
    height: 11px;
    left: 230px;
    position: absolute;
    top: 142px;
    width: 140px;}

.mute  .volume-btn {
    background: url(http://www.jqueryscript.net/demo/Minimal-jQuery-Cross-platform-Audio-Player-MINImusic-Player/images/volume-off.png) no-repeat;
}
.volume-btn {
    background: url(http://www.jqueryscript.net/demo/Minimal-jQuery-Cross-platform-Audio-Player-MINImusic-Player/images/volume-up.png) no-repeat;
    height: 20px;
    width: 20px;
    float: left;
    position: relative;
    top: -4px;
}
.volume-adjust {
    height: 11px;
    position: relative;
    width: 80%;
    background: #fff;
    float: right;
}
.volume-adjust  &gt; div &gt; div {
    height: 11px;
    background: #151B48;
}
.progressbar{
    background-color: #fff;
    cursor: pointer;
    z-index: 1;
    right: 6.875em; /* 110 */
     height: 15px;
    left: 0px;
    position: absolute;
    width: 36%;
    top: 170px;
    margin: 0px 27%;}

.novolume .progressbar{right: 4.375em; /* 70 */}

.progressbar div{
    width: 0%;
    height: 15px;
    position: absolute;
    left: 0;
    top: 0;}

.bar-loaded{background-color: #f1f1f1; z-index: 1;}

.bar-played{background: #151B48; z-index: 2;}

.timeHolder {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: bold;
    bottom: 5px;
    position: absolute;
    margin: 0px 27%;
    width: 90%;}

.time-current, .time-duration, .time-separator {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: bold;
    float: left;}

.volume .ui-slider-handle {
    background: url(&quot;http://www.jqueryscript.net/demo/Minimal-jQuery-Cross-platform-Audio-Player-MINImusic-Player/images/spr.png&quot;) no-repeat scroll -201px -188px rgba(0, 0, 0, 0);
    height: 13px;
    width: 13px;}

.playlist {
    background-color: #eee8aa;
    list-style-type: none;   
    position: relative;
    width: 100%;
    z-index: 1;
    margin: 0;
    padding: 0;
    height: 310px;
    overflow: auto;}

.example ul.playlist{padding: 10px 0 0 0; margin: 0;}


.playlist li {
    color: #151B48;
    cursor: pointer;
    margin: 0 0 5px 15px;}

.playlist li &gt; a {font-size: 14px; color: #151B48; text-decoration: none; }

.playlist li.active {font-weight: bold;}

#mainblogsec .title {
    background: none;
    position: relative;
    overflow: hidden;
    font-size: 14px;
    font-weight: 600;
    padding: 4px 8px;
    transition: all 0.5s ease-out;
    text-transform: none;
    border-left-color: #f3794b;
    border-left: 0px solid #F3794B;
}

&lt;/style&gt;

&lt;div class=&quot;example&quot;&gt;
        &lt;ul class=&quot;playlist&quot;&gt;

            &lt;li data-cover=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYe_vd4DTjwWnTOccOVMYgNBHfJG2Ggrwe-mTY2OPr99od8p-8aurbTpVSnN2Ozdey42VM5-6QNyZVOwsJ3NyEXenR7yrnNfYRgdkyL1aik-EazmNIj0dHt2q1Lvr0OYYJDMfifBSQ730/s1600/kardelen_cicegi_resmi.jpg&quot;&gt;&lt;a href=&quot;http://www.xn--edebiyatgretmeni-twb.net/wp-content/uploads/2012/12/Kardelen-Nedret-Güvenç-Hep-Kahır.mp3&quot;&gt;001&amp;#9658; Nedret Güvenç - Kardelen&lt;/a&gt;&lt;/li&gt;
            
            &lt;li data-cover=&quot;http://1.bp.blogspot.com/-FoKCRNTTcEk/T09Zgj0ZP9I/AAAAAAAAH78/3iCKs_Fa18Q/s1600/%25C4%25B1c%25C4%25B1mdenkuslar%2Bgocuyor.jpg&quot;&gt;&lt;a href=&quot;http://www.xn--edebiyatgretmeni-twb.net/wp-content/uploads/2012/12/TELLİ-KAVAK-AYDIN-GÜN-YURDAGÜL-ÖZAY.wmv.mp3&quot;&gt;002&amp;#9658; Yurdagül Özay - Telli Kavak&lt;/a&gt;&lt;/li&gt;  
            &lt;li data-cover=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiHE2vwfS4-8DfXWtH54EMzy5m5lir15Pogq9O8dsrhDcY0xweXylpQHJsMxVk929WYxQKpA9uUodwDznYy67b68vpxJOd8Yezp3VL3PU6zL0a9RsI_jzKgzOQ0BW6RYPlXgTPNf_QR5es/s1600/Can+Y%C3%BCcel+-+E%C4%9Fer.jpg&quot;&gt;&lt;a href=&quot;http://www.xn--edebiyatgretmeni-twb.net/wp-content/uploads/2012/12/Eğer-Can-Yücel.mp3&quot;&gt;003&amp;#9658; Can Yücel - Eğer&lt;/a&gt;&lt;/li&gt;

           &lt;li data-cover=&quot;http://4.bp.blogspot.com/-n7Y9QAxV5Hs/UN4I0bnQudI/AAAAAAAAADQ/LKfj55V_6IU/s1600/SEZAI-~1.JPG&quot;&gt;&lt;a href=&quot;http://www.xn--edebiyatgretmeni-twb.net/wp-content/uploads/2012/12/Sezai-Karakoç-Sürgün-Ülkeden-Ba-kentler-Ba-kentine.mp3&quot;&gt;004&amp;#9658; Sezai Karakoç - Sürgün&lt;/a&gt;&lt;/li&gt;

            &lt;li data-cover=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjIMq9gwJCZuwKsLPG3KM_zvTJPTyE5c-Z8D-L5QKWn13EOa97RhiJ6_zYmLhVUdW9mbgWz1V90ERR0i4GRsv39SxYYofnuSLBVsTr_eOAiB2pExEqBaiZKEkTKN87uWGMEowtvJaa3jJM/s1600/ayr%25C4%25B1l%25C4%25B1k+resimleri035.jpg&quot;&gt;&lt;a href=&quot;http://www.xn--edebiyatgretmeni-twb.net/wp-content/uploads/2012/12/tayfun-talipoglu-SEN-iiri.mp3&quot;&gt;005&amp;#9658; Tayfun Talipoğlu - Sen&lt;/a&gt;&lt;/li&gt;
            
            &lt;li data-cover=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjUq0Yw3dz9anq5GEwJJPoLiWNgeBMYdPYGob_FnInKqmGgx7pU2lhld3yT1T7GcCF_vYxwR_1q4N33J4Iy8P2giqRAEV8MdCK_1WkNPC3EcLPK_IUBb6sTU71LxPj6wRC61Q8pnwiUlYxu/s1600/yolcu.bmp&quot;&gt;&lt;a href=&quot;http://www.xn--edebiyatgretmeni-twb.net/wp-content/uploads/2012/12/Attila-İlhan-Cebbar-Oğlu-Muhemmed-Sesli-Şiirleri.mp3&quot;&gt;006&amp;#9658; Attila İlhan - Cebbar Oğlu Muhammed&lt;/a&gt;&lt;/li&gt;  
            &lt;li data-cover=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjERRVpF6VJBk4l-jLrz7eqc9hMQif9qkjY9IpSMnNyOLJ6UbyRa55mwjC4OKrmrxYmuuG5RCJS26W2upPGlCq35nz3I-d5EIyf_rIlmMp9kCrOtwlCJcsGJddXk3dHhjnpmaP9qOsbM2w/s1600/tumblr_lqbikn1dmr1qcxwbyo1_500.jpg&quot;&gt;&lt;a href=&quot;http://www.xn--edebiyatgretmeni-twb.net/wp-content/uploads/2012/12/İclal-Aydın-Seni-Seviyordum-Sesli-Şiirleri.mp3&quot;&gt;007&amp;#9658; İclal Aydın - Seni Seviyordum&lt;/a&gt;&lt;/li&gt;

           &lt;li data-cover=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjqqwuOoIWRWSiYtkst6HfMQFX_UQ-qyWm2PRCoaGtJyMS_MNio4uXEZ9Cc_3aJHXzdLVo2nwT7nW-HYTHiZ4OQ0p1JYsSLTvmEKBjv80ZR5Xl0o9kgw9nkqcEYR334bw2UD578CqrmaQ4/s1600/kib.jpg&quot;&gt;&lt;a href=&quot;http://www.xn--edebiyatgretmeni-twb.net/wp-content/uploads/2012/12/gitmesen-olmaz-m-.mp3&quot;&gt;008&amp;#9658; Rüştü Çalık - Kendine İyi Bak Derler ve Giderler&lt;/a&gt;&lt;/li&gt;

           &lt;li data-cover=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh3VnaADK9mJO1ZLqgi-5NorxUBDgfayiVZlrpYTPxSqwjvzaymsnTB-398bLBM9VfHY6q6urY7bfMrcbxayTiaJQa9HVDZt4qYriB0WRcisHhRqTxkeScfwKBdE7K_LlDbsQF_A13QRutr/s1600/otuz_uc_kursun.jpg&quot;&gt;&lt;a href=&quot;http://www.xn--edebiyatgretmeni-twb.net/wp-content/uploads/2012/12/Ahmed-Arif-Otuzüç-Kurşun-Sesli-Şiirleri.mp3&quot;&gt;009&amp;#9658; Ahmet Arif - Otuzüç Kurşun&lt;/a&gt;&lt;/li&gt;
            
            &lt;li data-cover=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi_95nxPeyhxxaW_M9w_v6ldBWVr2AuVkDB8lmAYShOtVxQl3ROFWDpiE3DxA9quIS3lLKzp9R3zQhLb7JGlxGrATKDzJcPlvc3NxnzKaONqEWaHj4PwHAfrC9-GL8sVrksRU6usGUbksw6/s1600/575774_10150274721904943_702664897_n.jpg&quot;&gt;&lt;a href=&quot;http://www.xn--edebiyatgretmeni-twb.net/wp-content/uploads/2012/12/Ahmed-Arif-Hasretinden-Prangalar-Eskittim-Sesli-Şiirleri.mp3&quot;&gt;010&amp;#9658; Ahmet Arif - Hasretinden Prangalar Eskittim&lt;/a&gt;&lt;/li&gt;  
            &lt;li data-cover=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjJN1hSjIQBauIHLTuu389iy7lirWKZE1HwPObPVcfBSKLJV3tTaVQIX79TZ-qAdivIMchcM2-g_l1xoUI_vnANtlsjP05u9NsKLIQtZ65hMQzSPLP54Bnr81w-YfTPsbyNtl52BPfEoMU/s1600/DSCN7592.jpg&quot;&gt;&lt;a href=&quot;http://www.xn--edebiyatgretmeni-twb.net/wp-content/uploads/2012/12/Ahmed-Arif-Adiloş-Bebenin-Ninnisi-Sesli-Şiirleri.mp3&quot;&gt;011&amp;#9658; Ahmet Arif - Adiloş Bebenin Ninnisi&lt;/a&gt;&lt;/li&gt;

           &lt;li data-cover=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg0VQr_GtXB2SWmqRg50kytOxsk5LoZChI2oVNVORQzE0AfZMAyftsStb-8UTSJ-FwFio-pp2CATVtpP2gfvMFHjlhRXKjvMKLY4Z4pb85Mk2XOI2IDPwFDiEppy_6dIBDXJ5KLZPRrx5o/s1600/audrey1.jpg&quot;&gt;&lt;a href=&quot;http://www.xn--edebiyatgretmeni-twb.net/wp-content/uploads/2012/12/Ahmet-Telli-Asmin-Sesli-Şiirleri.mp3&quot;&gt;012&amp;#9658; Ahmet Telli - Asmin&lt;/a&gt;&lt;/li&gt;

             &lt;li data-cover=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhCREWpT4RWL41kfiViCjyosfAa1Bz9ElJ5eYJTTs-AdUHJLfQ5vzraU5NCZakO4c3MBiTLz0fwTTd8xsOHmsfQ5mVMZgq2l4RZrH-L73BuODyBfumku75geX1JRjzB7mwdosIjYMoen06k/s1600/1.jpg&quot;&gt;&lt;a href=&quot;http://www.xn--edebiyatgretmeni-twb.net/wp-content/uploads/2012/12/Ahmet-Telli-Aşk-Bitti-Sesli-Şiirleri.mp3&quot;&gt;013&amp;#9658; Ahmet Telli - Aşk Bitti&lt;/a&gt;&lt;/li&gt;
            
            &lt;li data-cover=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiEOAGW0etWx3iAZHy2dEO0Od_aUkg_4mm94VZFcJp-nOi1q43twua-LpzU4In08WpJMkjDj62oKeCGhMjOvNe7cGM19O_KdfCJbKrjt8plEAJ06WGBF5lfAwROOrS1n2S503eMDaTEv2Y/s1600/belki+yine+gelirim.jpg&quot;&gt;&lt;a href=&quot;http://www.xn--edebiyatgretmeni-twb.net/wp-content/uploads/2012/12/Ahmet-Telli-Belki-Yine-Gelirim-Sesli-Şiirleri.mp3&quot;&gt;014&amp;#9658; Ahmet Telli - Belki Yine Gelirim&lt;/a&gt;&lt;/li&gt;  

            &lt;li data-cover=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgbwXVBpc1NjvloQbi6telBBepcBkwos3I60qNSTMTtmDsuGtE_sa0mINktqssG29RsSokGRap91aGBTPCQStoh19OXjdMOMyJUYdmrdZf52QvqF4mF4sM7YJdFxE_Tn8OzrqqtNtnTUKlR/s400/cocuksun-sen.jpg&quot;&gt;&lt;a href=&quot;http://www.xn--edebiyatgretmeni-twb.net/wp-content/uploads/2012/12/Ahmet-Telli-Çocuksun-Sen-1-2-Sesli-Şiirleri.mp3&quot;&gt;015&amp;#9658; Ahmet Telli - Çocuksun sen&lt;/a&gt;&lt;/li&gt;

           &lt;li data-cover=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgjKyqbo3zb1OUZTk_D_uTDUKSm6nhfokLIA65x0GM8dnPlTiDg9PWF433k7t4DhNoCAbhRdJ7S3-w9oojO8TBHuJlIfQXLrwld8U5gAOlqsEF2WfIjOL01N3JL_eGgp_7ObqtzYuCrMyQ/s400/580237_3772487272420_1283938532_4685670_1857389337_n.jpg&quot;&gt;&lt;a href=&quot;http://www.xn--edebiyatgretmeni-twb.net/wp-content/uploads/2012/12/Ahmet-Telli-Gidersen-Yıkılır-Bu-Kent-Sesli-Şiirleri.mp3&quot;&gt;016&amp;#9658; Ahmet Telli - Gidersen Yıkılır Bu Kent&lt;/a&gt;&lt;/li&gt;

            &lt;li data-cover=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg89_MQr04nivia1Tec4KcV_TobzZOM8k9BiGgwH7RTGUBFiFSixiII82MMxlzcjvzRpAdcPuUsm4kwdFTRi6g24ioobw1CIoCe-gPxd0Vawt8wYIH4cOXpMDaZUlwXvgBp6GJZF2LYILs/s1600/SDSDE.jpg&quot;&gt;&lt;a href=&quot;http://www.xn--edebiyatgretmeni-twb.net/wp-content/uploads/2012/12/Ahmet-Telli-Kalbim-Unut-Bu-Şiiri-Sesli-Şiirleri.mp3&quot;&gt;017&amp;#9658; Ahmet Telli - Kalbim Unut Bu Şiiri&lt;/a&gt;&lt;/li&gt;
            
            &lt;li data-cover=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj8TlFYJlNQttTDfYeNW9gRmwwuQrY0Nq32wbl219KrWt-CU_p62nk1gRRJtqWKD1QGKuLKZ7-9R1eA_N1bwVf4YNsQ4Hot2UEmbsehqekbEEXqZejD3ftw8IDdlmFOpnvI-1K5TVxyJJk/s1600/1270055537no-19-karda-izler-2---13x18-cm-2mm.jpg&quot;&gt;&lt;a href=&quot;http://www.xn--edebiyatgretmeni-twb.net/wp-content/uploads/2012/12/Ahmet-Telli-Karda-İzler-Sesli-Şiirleri.mp3&quot;&gt;018&amp;#9658; Ahmet Telli - Karda İzler&lt;/a&gt;&lt;/li&gt;  

            &lt;li data-cover=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhXOUhXbX2A8JbyBtSezFIEYJovOU7WZ8eGfdw4zz5arc4oAjIwlPano6nNb854vXus7ln55NWq_GxqVPHRH-cAKHfUIIg1toZH_U-T9ikzPXHAzdFJ8GZiJGKOvVglubufhPxKNIUvH7xD/s1600/yagmur14cx7fi7.gif&quot;&gt;&lt;a href=&quot;http://www.xn--edebiyatgretmeni-twb.net/wp-content/uploads/2012/12/Ahmet-Telli-Özletiyor-Seni-Bu-Yağmurlar-Sesli-Şiirleri.mp3&quot;&gt;019&amp;#9658; Ahmet Telli - Özletiyor Seni Bu Yağmurlar&lt;/a&gt;&lt;/li&gt;

           &lt;li data-cover=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhrptpaSKu0LGv5oudy2-XRM8bxwztb27UZo9dpXZ3z-ojbTSrkGBfzatWipEcfsaFOVyne8bip0Lr5GamMaLtyYqaGgZIlDilBzaT6x22P858dm0c99-Q6U1Q57I4PAAVv0ACsm_14zGrC/s400/k%C4%B1r%C4%B1k+yelken.jpeg&quot;&gt;&lt;a href=&quot;http://www.xn--edebiyatgretmeni-twb.net/wp-content/uploads/2012/12/Ahmet-Telli-Su-Çürüdü-Sesli-Şiirleri.mp3&quot;&gt;020&amp;#9658; Ahmet Telli - Su Çürüdü&lt;/a&gt;&lt;/li&gt;

           &lt;li data-cover=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiGO0oAjcjfKBI5MY97n2IUMw5lztTxjwCH3aPgGZVkb975niZZ3Ssa2o-lEM6ThPcoQdbZDnoYTxSV4Yacbl0J_hBuzXOf4JehMRyqqX_YZzNa38FtYSO0dKXUtOlJOuW4qXs9h8Tb13x5/s320/arms-black-and-white-friends-friendship-girls-Favim.com-121374.jpg&quot;&gt;&lt;a href=&quot;http://www.xn--edebiyatgretmeni-twb.net/wp-content/uploads/2012/12/Ahmet-Telli-Unutma-Dostumsun-Sesli-Şiirleri.mp3&quot;&gt;021&amp;#9658; Ahmet Telli - Dostumsun&lt;/a&gt;&lt;/li&gt;
            
            &lt;li data-cover=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjZLB6cqCec2-IJl8PjqlNPxAxNlUJLLg8v5HbdD5jfV13nZgNvLMEBEM6Gj32Vnaj0Kqf4gxQ2BVoCvgyzbpVrUvAWEo6N1KlHC048o_HuQD5tiDf200MAMHmRKqC75OzxPbi3V0tSvEQ/s1600/dusunen_adam_b_1243062341.jpg&quot;&gt;&lt;a href=&quot;http://www.xn--edebiyatgretmeni-twb.net/wp-content/uploads/2012/12/Ahmet-Telli-Ütopya-Sesli-Şiirleri.mp3&quot;&gt;022&amp;#9658; Ahmet Telli - Ütopya&lt;/a&gt;&lt;/li&gt; 
 
            &lt;li data-cover=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjT-dtmPq3TSA0u4kepsFjen6U6arn4B8v1ilAnQdzYARBqrEc5A1fICAByZ-MfDebIXkYZRRiO0kvZBjdn6uoUBVnp3N1dbGvk-T_qvFCSRbLbihU_Xc0AXIxE1EwCILuVOFx_d_BghN8/s400/DSC05233.JPG&quot;&gt;&lt;a href=&quot;http://www.xn--edebiyatgretmeni-twb.net/wp-content/uploads/2012/12/Ahmet-Telli-Zaman-Kekemeydi-Sesli-Şiirleri.mp3&quot;&gt;023&amp;#9658; Ahmet Telli - Zaman Kekemeydi&lt;/a&gt;&lt;/li&gt;

           &lt;li data-cover=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiUpQxIn6bfEWkm0YYobku8ufhwTNx0L5-RrjT-U_3FkZfwmMRZA29Tfl28VPF9imwqZ6n0ysNRMkqsrqhI60wtvzxSl8lOLdvBFCGfsLzn6jO25Dq4ZvdJrLz6vFSQdH-VQv7-kAZG9oXU/s1600/attila304lhanbe5-1.jpg&quot;&gt;&lt;a href=&quot;http://www.xn--edebiyatgretmeni-twb.net/wp-content/uploads/2012/12/Attila-İlhan-Ben-Sana-Mecburum-Sesli-Şiirleri.mp3&quot;&gt;024&amp;#9658; Attila İlhan - Ben Sana Mecburum&lt;/a&gt;&lt;/li&gt;           
           
        &lt;/ul&gt;
    &lt;/div&gt;&lt;img border=&quot;0&quot; height=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjy3OUB0kcJeAYzHYaZD_gbkYxDuWy_EIZetCDrjxJGCn1g3Kz1trt9I7gZ9PGTjdMw3cSieyBOkmWrD46lKJlg1VIUBq61jDTMwYJa52kJhHj16Z_ImCGA_KyjeYbDxjKq0NPxbjXJcGEW/s1600/siir_dinletisi1.png&quot; width=&quot;0&quot; /&gt;

&lt;script&gt;
   // controls: [&#39;play&#39;, &#39;rewind&#39; , &#39;forward&#39;, &#39;stop&#39;, &#39;volume&#39; , &#39;playlist-toggle&#39;, &#39;progress&#39; ]
   //playerDisplays: [&#39;song-title&#39;, &#39;artist&#39;, &#39;cover&#39;, &#39;time-durtion&#39; ]
        $(&quot;.example&quot;).musicPlayer({
            elements: [&#39;artwork&#39;, &#39;information&#39;, &#39;controls&#39;, &#39;progress&#39;, &#39;time&#39;, &#39;volume&#39;], // ==&gt; This will display in  the order it is inserted
            //elements: [ &#39;controls&#39; , &#39;information&#39;, &#39;artwork&#39;, &#39;progress&#39;, &#39;time&#39;, &#39;volume&#39; ],
            //controlElements: [&#39;backward&#39;, &#39;play&#39;, &#39;forward&#39;, &#39;stop&#39;],
            //timeElements: [&#39;current&#39;, &#39;duration&#39;],
           //timeSeparator: &quot; : &quot;, // ==&gt; Only used if two elements in timeElements option
            //infoElements: [  &#39;title&#39;, &#39;artist&#39; ],  

            //volume: 10,
            //autoPlay: true,
            //loop: true,
        });
    &lt;/script&gt;</content><link rel='replies' type='application/atom+xml' href='https://nostmuzden.blogspot.com/feeds/5281211266030408916/comments/default' title='Kayıt Yorumları'/><link rel='replies' type='text/html' href='https://nostmuzden.blogspot.com/2018/06/siir-dinletisi-mp3.html#comment-form' title='0 Yorum'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/5281211266030408916'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/5281211266030408916'/><link rel='alternate' type='text/html' href='https://nostmuzden.blogspot.com/2018/06/siir-dinletisi-mp3.html' title='Şiir Dinletisi Mp3'/><author><name>İmdat</name><uri>http://www.blogger.com/profile/02588424190203669089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjy3OUB0kcJeAYzHYaZD_gbkYxDuWy_EIZetCDrjxJGCn1g3Kz1trt9I7gZ9PGTjdMw3cSieyBOkmWrD46lKJlg1VIUBq61jDTMwYJa52kJhHj16Z_ImCGA_KyjeYbDxjKq0NPxbjXJcGEW/s72-c/siir_dinletisi1.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2461602893558785930.post-4656144813119593768</id><published>2018-06-02T00:51:00.003+03:00</published><updated>2018-06-04T11:14:32.516+03:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Komedi"/><title type='text'>Fıkralarla Türkiye</title><content type='html'>&lt;div id=&quot;ytThumbs&quot;&gt;&lt;/div&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
 ytEmbed.init({&#39;block&#39;:&#39;ytThumbs&#39;,&#39;q&#39;:&#39;fıkralarla türkiye&#39;,&#39;type&#39;:&#39;search&#39;,&#39;results&#39;:5,&#39;order&#39;:&#39;most_relevance&#39;,&#39;player&#39;:&#39;embed&#39;,&#39;layout&#39;:&#39;full&#39;,&#39;display_first&#39;:true});
&lt;/script&gt;&lt;img width=&quot;0&quot; height=&quot;0&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgboUoSDmCYOY8lq4LnfGkJw87rVZ5GuLSXDiS-AzY5dqEp5GSjQb8YAf34VJZCDS4na9wqOcyY86MkO4HkT9DqsEEhJiLTAM55G_K5jTjAFdm5zPVl3MT0ottAwutLH7ICPV_rmmKSLr0/s1600/Fikralarla-Turkiye.jpg&quot; /&gt;</content><link rel='replies' type='application/atom+xml' href='https://nostmuzden.blogspot.com/feeds/4656144813119593768/comments/default' title='Kayıt Yorumları'/><link rel='replies' type='text/html' href='https://nostmuzden.blogspot.com/2018/06/fkralarla-turkiye.html#comment-form' title='0 Yorum'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/4656144813119593768'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/4656144813119593768'/><link rel='alternate' type='text/html' href='https://nostmuzden.blogspot.com/2018/06/fkralarla-turkiye.html' title='Fıkralarla Türkiye'/><author><name>İmdat</name><uri>http://www.blogger.com/profile/02588424190203669089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgboUoSDmCYOY8lq4LnfGkJw87rVZ5GuLSXDiS-AzY5dqEp5GSjQb8YAf34VJZCDS4na9wqOcyY86MkO4HkT9DqsEEhJiLTAM55G_K5jTjAFdm5zPVl3MT0ottAwutLH7ICPV_rmmKSLr0/s72-c/Fikralarla-Turkiye.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2461602893558785930.post-3983482865969632278</id><published>2018-06-02T00:51:00.001+03:00</published><updated>2018-06-02T00:51:47.665+03:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Komedi"/><title type='text'>Mustafa Karadeniz ile Şaka</title><content type='html'>&lt;div id=&quot;ytThumbs&quot;&gt;&lt;/div&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
 ytEmbed.init({&#39;block&#39;:&#39;ytThumbs&#39;,&#39;q&#39;:&#39;mustafa karadeniz&#39;,&#39;type&#39;:&#39;search&#39;,&#39;results&#39;:5,&#39;order&#39;:&#39;most_relevance&#39;,&#39;player&#39;:&#39;embed&#39;,&#39;layout&#39;:&#39;full&#39;,&#39;display_first&#39;:true});
&lt;/script&gt;&lt;img width=&quot;0&quot; height=&quot;0&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjeykQ3A9v9pBqzx5DzfOpAtdZTuXRnyCzExmgQait7njPfIeNsiSw0_8xfCFSyWpsVMrNElxNbypCDgx67ltlDlsAtu5JOnukoBsiSeHeC3BfENFClvat_LLz3oeZxe_wAwPo-4Yi-geU3/s1600/dd.jpg&quot; /&gt;</content><link rel='replies' type='application/atom+xml' href='https://nostmuzden.blogspot.com/feeds/3983482865969632278/comments/default' title='Kayıt Yorumları'/><link rel='replies' type='text/html' href='https://nostmuzden.blogspot.com/2018/06/mustafa-karadeniz-ile-saka.html#comment-form' title='0 Yorum'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/3983482865969632278'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/3983482865969632278'/><link rel='alternate' type='text/html' href='https://nostmuzden.blogspot.com/2018/06/mustafa-karadeniz-ile-saka.html' title='Mustafa Karadeniz ile Şaka'/><author><name>İmdat</name><uri>http://www.blogger.com/profile/02588424190203669089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjeykQ3A9v9pBqzx5DzfOpAtdZTuXRnyCzExmgQait7njPfIeNsiSw0_8xfCFSyWpsVMrNElxNbypCDgx67ltlDlsAtu5JOnukoBsiSeHeC3BfENFClvat_LLz3oeZxe_wAwPo-4Yi-geU3/s72-c/dd.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2461602893558785930.post-6292687675116105129</id><published>2018-06-02T00:50:00.001+03:00</published><updated>2018-06-02T00:51:47.725+03:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Komedi"/><title type='text'>Şakacı Çetin Çiftçioğlu</title><content type='html'>&lt;div id=&quot;ytThumbs&quot;&gt;&lt;/div&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
 ytEmbed.init({&#39;block&#39;:&#39;ytThumbs&#39;,&#39;q&#39;:&#39;şakacı çetin çiftçioğlu&#39;,&#39;type&#39;:&#39;search&#39;,&#39;results&#39;:5,&#39;order&#39;:&#39;most_relevance&#39;,&#39;player&#39;:&#39;embed&#39;,&#39;layout&#39;:&#39;full&#39;,&#39;display_first&#39;:true});
&lt;/script&gt;&lt;img width=&quot;0&quot; height=&quot;0&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEin-RhucU7LT6Ox2Lkw_EzvPaT-hY7159jD3imeCA5N8R80Srbeyl-pQ-hYbaoyyk-qVKL47RQVhB6C6pes-gBACReY0eFQ1ki4ejvJvGwTv_EAcmIU6WjxUutSdCoPQIM-7zPy5mMYWO7L/s400/sakaci.jpg&quot; /&gt;</content><link rel='replies' type='application/atom+xml' href='https://nostmuzden.blogspot.com/feeds/6292687675116105129/comments/default' title='Kayıt Yorumları'/><link rel='replies' type='text/html' href='https://nostmuzden.blogspot.com/2018/06/sakac-cetin-ciftcioglu.html#comment-form' title='0 Yorum'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/6292687675116105129'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/6292687675116105129'/><link rel='alternate' type='text/html' href='https://nostmuzden.blogspot.com/2018/06/sakac-cetin-ciftcioglu.html' title='Şakacı Çetin Çiftçioğlu'/><author><name>İmdat</name><uri>http://www.blogger.com/profile/02588424190203669089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEin-RhucU7LT6Ox2Lkw_EzvPaT-hY7159jD3imeCA5N8R80Srbeyl-pQ-hYbaoyyk-qVKL47RQVhB6C6pes-gBACReY0eFQ1ki4ejvJvGwTv_EAcmIU6WjxUutSdCoPQIM-7zPy5mMYWO7L/s72-c/sakaci.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2461602893558785930.post-7083704756680112302</id><published>2018-06-01T22:46:00.003+03:00</published><updated>2018-06-02T00:44:11.386+03:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Sıra Geceleri"/><title type='text'>Süleyman Tuğrul</title><content type='html'>&lt;div id=&quot;ytThumbs&quot;&gt;&lt;/div&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
 ytEmbed.init({&#39;block&#39;:&#39;ytThumbs&#39;,&#39;q&#39;:&#39;süleyman tuğrul&#39;,&#39;type&#39;:&#39;search&#39;,&#39;results&#39;:5,&#39;order&#39;:&#39;most_relevance&#39;,&#39;player&#39;:&#39;embed&#39;,&#39;layout&#39;:&#39;full&#39;,&#39;display_first&#39;:true});
&lt;/script&gt;&lt;img width=&quot;0&quot; height=&quot;0&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj81JJ8qKBZvCxLbN7Ht6HGB-NNZVT9Yz_IOXex5zCdJhQ0Ivt6gS5m2xFyUjz1OeH_rzuh695UqYQUfAcv4thXpiIOJ2Kum61aBm6Bc6X8wA_E1Gjv-fQUgRxHpUzqBF5ITAOOXwh26DM/s1600/suleyman_tugrul.jpg&quot; /&gt;</content><link rel='replies' type='application/atom+xml' href='https://nostmuzden.blogspot.com/feeds/7083704756680112302/comments/default' title='Kayıt Yorumları'/><link rel='replies' type='text/html' href='https://nostmuzden.blogspot.com/2018/06/suleyman-tugrul.html#comment-form' title='0 Yorum'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/7083704756680112302'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/7083704756680112302'/><link rel='alternate' type='text/html' href='https://nostmuzden.blogspot.com/2018/06/suleyman-tugrul.html' title='Süleyman Tuğrul'/><author><name>İmdat</name><uri>http://www.blogger.com/profile/02588424190203669089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj81JJ8qKBZvCxLbN7Ht6HGB-NNZVT9Yz_IOXex5zCdJhQ0Ivt6gS5m2xFyUjz1OeH_rzuh695UqYQUfAcv4thXpiIOJ2Kum61aBm6Bc6X8wA_E1Gjv-fQUgRxHpUzqBF5ITAOOXwh26DM/s72-c/suleyman_tugrul.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2461602893558785930.post-2163580762919421099</id><published>2018-06-01T22:46:00.001+03:00</published><updated>2018-06-01T22:46:56.268+03:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Sıra Geceleri"/><title type='text'>Elazığ Grup Harput</title><content type='html'>&lt;div id=&quot;ytThumbs&quot;&gt;&lt;/div&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
 ytEmbed.init({&#39;block&#39;:&#39;ytThumbs&#39;,&#39;q&#39;:&#39;grup harput&#39;,&#39;type&#39;:&#39;search&#39;,&#39;results&#39;:5,&#39;order&#39;:&#39;most_relevance&#39;,&#39;player&#39;:&#39;embed&#39;,&#39;layout&#39;:&#39;full&#39;,&#39;display_first&#39;:true});
&lt;/script&gt;&lt;img width=&quot;0&quot; height=&quot;0&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhtTwmgQ9wIV_8XZ1c6a-DNZ2kr96Sgu0cyumAW2fFKGvHkmMwoRbyiGlJzAnvYjLksAYkVbTlcuCJw6ubchHy3YVXUSzNXJ1voG2aIpPqzZqXj0T2UNIaHDP8uLbutXtdevTfMcTgUiCI/s1600/grupharput.jpg&quot; /&gt;</content><link rel='replies' type='application/atom+xml' href='https://nostmuzden.blogspot.com/feeds/2163580762919421099/comments/default' title='Kayıt Yorumları'/><link rel='replies' type='text/html' href='https://nostmuzden.blogspot.com/2018/06/elazg-grup-harput.html#comment-form' title='0 Yorum'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/2163580762919421099'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/2163580762919421099'/><link rel='alternate' type='text/html' href='https://nostmuzden.blogspot.com/2018/06/elazg-grup-harput.html' title='Elazığ Grup Harput'/><author><name>İmdat</name><uri>http://www.blogger.com/profile/02588424190203669089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhtTwmgQ9wIV_8XZ1c6a-DNZ2kr96Sgu0cyumAW2fFKGvHkmMwoRbyiGlJzAnvYjLksAYkVbTlcuCJw6ubchHy3YVXUSzNXJ1voG2aIpPqzZqXj0T2UNIaHDP8uLbutXtdevTfMcTgUiCI/s72-c/grupharput.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2461602893558785930.post-3722110375034703952</id><published>2018-06-01T22:45:00.002+03:00</published><updated>2018-06-01T22:46:56.282+03:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Sıra Geceleri"/><title type='text'>Adıyaman Harfane Grubu</title><content type='html'>&lt;div id=&quot;ytThumbs&quot;&gt;&lt;/div&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
 ytEmbed.init({&#39;block&#39;:&#39;ytThumbs&#39;,&#39;q&#39;:&#39;adıyaman harfane sıra geceleri&#39;,&#39;type&#39;:&#39;search&#39;,&#39;results&#39;:5,&#39;order&#39;:&#39;most_relevance&#39;,&#39;player&#39;:&#39;embed&#39;,&#39;layout&#39;:&#39;full&#39;,&#39;display_first&#39;:true});
&lt;/script&gt;&lt;img width=&quot;0&quot; height=&quot;0&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjQJG1M5ANDhq1NJ9GTkZWEk_gsHtPbhavYB4PuSRxy9RAj4dx1OvgA365irFtQZW6jv4KaC2oJz3NENDlG2qskuetRXzIBA1TyJc6QgOxAos4L002vl0Gig9BtttHx_bsbumLgNEdfXdI/s300-c/harfanegrubu.jpg&quot; /&gt;
</content><link rel='replies' type='application/atom+xml' href='https://nostmuzden.blogspot.com/feeds/3722110375034703952/comments/default' title='Kayıt Yorumları'/><link rel='replies' type='text/html' href='https://nostmuzden.blogspot.com/2018/06/adyaman-harfane-grubu.html#comment-form' title='0 Yorum'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/3722110375034703952'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/3722110375034703952'/><link rel='alternate' type='text/html' href='https://nostmuzden.blogspot.com/2018/06/adyaman-harfane-grubu.html' title='Adıyaman Harfane Grubu'/><author><name>İmdat</name><uri>http://www.blogger.com/profile/02588424190203669089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjQJG1M5ANDhq1NJ9GTkZWEk_gsHtPbhavYB4PuSRxy9RAj4dx1OvgA365irFtQZW6jv4KaC2oJz3NENDlG2qskuetRXzIBA1TyJc6QgOxAos4L002vl0Gig9BtttHx_bsbumLgNEdfXdI/s72-c/harfanegrubu.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2461602893558785930.post-6544047639871449673</id><published>2018-06-01T22:45:00.000+03:00</published><updated>2018-06-01T22:46:56.294+03:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Sıra Geceleri"/><title type='text'>Şanlıurfa Sıra Geceleri</title><content type='html'>&lt;div id=&quot;ytThumbs&quot;&gt;&lt;/div&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
 ytEmbed.init({&#39;block&#39;:&#39;ytThumbs&#39;,&#39;q&#39;:&#39;urfa sıra geceleri&#39;,&#39;type&#39;:&#39;search&#39;,&#39;results&#39;:5,&#39;order&#39;:&#39;most_relevance&#39;,&#39;player&#39;:&#39;embed&#39;,&#39;layout&#39;:&#39;full&#39;,&#39;display_first&#39;:true});
&lt;/script&gt;&lt;img width=&quot;0&quot; height=&quot;0&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhUAJj66Bxf2N5nSTfPH71JJClNf1zRxKqso7gn_AISmLPHhOmrcH0JeZAfk3yY8yERfVNPGGfTUOUBy7L7lGqt1t0xIy7SUYmQYiiEXFnW6NyrdLkQ97MgyPNw0odDHC7e8dL_YOdCqSqa/s320/65.jpg&quot; /&gt;</content><link rel='replies' type='application/atom+xml' href='https://nostmuzden.blogspot.com/feeds/6544047639871449673/comments/default' title='Kayıt Yorumları'/><link rel='replies' type='text/html' href='https://nostmuzden.blogspot.com/2018/06/sanlurfa-sra-geceleri.html#comment-form' title='0 Yorum'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/6544047639871449673'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/6544047639871449673'/><link rel='alternate' type='text/html' href='https://nostmuzden.blogspot.com/2018/06/sanlurfa-sra-geceleri.html' title='Şanlıurfa Sıra Geceleri'/><author><name>İmdat</name><uri>http://www.blogger.com/profile/02588424190203669089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhUAJj66Bxf2N5nSTfPH71JJClNf1zRxKqso7gn_AISmLPHhOmrcH0JeZAfk3yY8yERfVNPGGfTUOUBy7L7lGqt1t0xIy7SUYmQYiiEXFnW6NyrdLkQ97MgyPNw0odDHC7e8dL_YOdCqSqa/s72-c/65.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2461602893558785930.post-4274517769344114641</id><published>2018-06-01T22:09:00.001+03:00</published><updated>2018-06-01T22:09:42.981+03:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Kanto"/><title type='text'>Gamze Canyurt</title><content type='html'>&lt;div id=&quot;ytThumbs&quot;&gt;&lt;/div&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
 ytEmbed.init({&#39;block&#39;:&#39;ytThumbs&#39;,&#39;q&#39;:&#39;gamze canyurt&#39;,&#39;type&#39;:&#39;search&#39;,&#39;results&#39;:5,&#39;order&#39;:&#39;most_relevance&#39;,&#39;player&#39;:&#39;embed&#39;,&#39;layout&#39;:&#39;full&#39;,&#39;display_first&#39;:true});
&lt;/script&gt;&lt;img width=&quot;0&quot; height=&quot;0&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgxSR3wFLNeH7MfL0AdXJgzCqTOC0LeKHKEWM185ys70jQhv1FwHjXlwxyBVxOQ0EGAkYRFTX4Gh8aatkLwbz-jZaYBDlF2DJF9b0fP0_pZ9SVuyB3LzVwok3XcND-vW0JRLsa5GrjoB3M/s72-c/Screenshot_2017-06-12-20-15-38.png&quot; /&gt;</content><link rel='replies' type='application/atom+xml' href='https://nostmuzden.blogspot.com/feeds/4274517769344114641/comments/default' title='Kayıt Yorumları'/><link rel='replies' type='text/html' href='https://nostmuzden.blogspot.com/2018/06/gamze-canyurt.html#comment-form' title='0 Yorum'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/4274517769344114641'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/4274517769344114641'/><link rel='alternate' type='text/html' href='https://nostmuzden.blogspot.com/2018/06/gamze-canyurt.html' title='Gamze Canyurt'/><author><name>İmdat</name><uri>http://www.blogger.com/profile/02588424190203669089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgxSR3wFLNeH7MfL0AdXJgzCqTOC0LeKHKEWM185ys70jQhv1FwHjXlwxyBVxOQ0EGAkYRFTX4Gh8aatkLwbz-jZaYBDlF2DJF9b0fP0_pZ9SVuyB3LzVwok3XcND-vW0JRLsa5GrjoB3M/s72-c/Screenshot_2017-06-12-20-15-38.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2461602893558785930.post-2904514610095003121</id><published>2018-06-01T22:08:00.001+03:00</published><updated>2018-06-01T22:09:42.969+03:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Kanto"/><title type='text'>Mahmure Şenses</title><content type='html'>&lt;div id=&quot;ytThumbs&quot;&gt;&lt;/div&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
 ytEmbed.init({&#39;block&#39;:&#39;ytThumbs&#39;,&#39;q&#39;:&#39;mahmure şenses&#39;,&#39;type&#39;:&#39;search&#39;,&#39;results&#39;:5,&#39;order&#39;:&#39;most_relevance&#39;,&#39;player&#39;:&#39;embed&#39;,&#39;layout&#39;:&#39;full&#39;,&#39;display_first&#39;:true});
&lt;/script&gt;&lt;img width=&quot;0&quot; height=&quot;0&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhO1_18d7qKj9cepw7iO0UPALRiQGkn_wXRp3jdUqhd9WbAPvu_stR4MBU9UrqGcGUsVoZuQrOqI8DKOEma7hyphenhypheny7QqzuFrjU2nvqL6qqztFY6llTIGA4sqQTlkx_c34hMPKOjWIJiiE2BFm/s72-c/mnl+%C5%9Frk+5+mahmure+%C5%9Fenses.jpg&quot; /&gt;</content><link rel='replies' type='application/atom+xml' href='https://nostmuzden.blogspot.com/feeds/2904514610095003121/comments/default' title='Kayıt Yorumları'/><link rel='replies' type='text/html' href='https://nostmuzden.blogspot.com/2018/06/mahmure-senses.html#comment-form' title='0 Yorum'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/2904514610095003121'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/2904514610095003121'/><link rel='alternate' type='text/html' href='https://nostmuzden.blogspot.com/2018/06/mahmure-senses.html' title='Mahmure Şenses'/><author><name>İmdat</name><uri>http://www.blogger.com/profile/02588424190203669089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhO1_18d7qKj9cepw7iO0UPALRiQGkn_wXRp3jdUqhd9WbAPvu_stR4MBU9UrqGcGUsVoZuQrOqI8DKOEma7hyphenhypheny7QqzuFrjU2nvqL6qqztFY6llTIGA4sqQTlkx_c34hMPKOjWIJiiE2BFm/s72-c/mnl+%C5%9Frk+5+mahmure+%C5%9Fenses.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2461602893558785930.post-2478262406321472604</id><published>2016-10-27T13:51:00.002+03:00</published><updated>2018-06-01T09:55:10.769+03:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Arabesk-Alaturka"/><title type='text'>Azer Bülbül</title><content type='html'>&lt;div id=&quot;ytThumbs&quot;&gt;&lt;/div&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
 ytEmbed.init({&#39;block&#39;:&#39;ytThumbs&#39;,&#39;q&#39;:&#39;azer bülbül&#39;,&#39;type&#39;:&#39;search&#39;,&#39;results&#39;:5,&#39;order&#39;:&#39;most_relevance&#39;,&#39;player&#39;:&#39;embed&#39;,&#39;layout&#39;:&#39;full&#39;,&#39;display_first&#39;:true});
&lt;/script&gt;&lt;img width=&quot;0&quot; height=&quot;0&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjPud1Kzo9YhsWPwTvr8tdt0kYt-JQ5NMGEMpsy98VhMoPPK8-i4u5fg8GkXi8aN6EGJ497agwurN966BXnONf6Pipyu-N6eoHoOfywHrsgShOuUoYI-ussw1yt_KYPu084Y-5WSpaQNkU/s72-c/Azer-Bulbul.jpg&quot; /&gt;</content><link rel='replies' type='application/atom+xml' href='https://nostmuzden.blogspot.com/feeds/2478262406321472604/comments/default' title='Kayıt Yorumları'/><link rel='replies' type='text/html' href='https://nostmuzden.blogspot.com/2016/10/azer-bulbul.html#comment-form' title='0 Yorum'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/2478262406321472604'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/2478262406321472604'/><link rel='alternate' type='text/html' href='https://nostmuzden.blogspot.com/2016/10/azer-bulbul.html' title='Azer Bülbül'/><author><name>İmdat</name><uri>http://www.blogger.com/profile/02588424190203669089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjPud1Kzo9YhsWPwTvr8tdt0kYt-JQ5NMGEMpsy98VhMoPPK8-i4u5fg8GkXi8aN6EGJ497agwurN966BXnONf6Pipyu-N6eoHoOfywHrsgShOuUoYI-ussw1yt_KYPu084Y-5WSpaQNkU/s72-c/Azer-Bulbul.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2461602893558785930.post-2679248012189779140</id><published>2016-10-27T13:50:00.003+03:00</published><updated>2018-05-31T00:30:53.709+03:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Arabesk-Alaturka"/><title type='text'>Yıldız Tezcan</title><content type='html'>&lt;div id=&quot;ytThumbs&quot;&gt;&lt;/div&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
 ytEmbed.init({&#39;block&#39;:&#39;ytThumbs&#39;,&#39;q&#39;:&#39;yıldız tezcan&#39;,&#39;type&#39;:&#39;search&#39;,&#39;results&#39;:5,&#39;order&#39;:&#39;most_relevance&#39;,&#39;player&#39;:&#39;embed&#39;,&#39;layout&#39;:&#39;full&#39;,&#39;display_first&#39;:true});
&lt;/script&gt;&lt;img width=&quot;0&quot; height=&quot;0&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgBG300TlscFQW9ice5QMzKaCB4fJ4eyDpcpJRxfW1xjfn3rmYXUgOmSYlXgUHi_ixn4TZA9CNx-TKUxLLYJR5Wriz39SsaK97LwANykiMuVnkeSJcwhgQD7DeAc1dglJM2_GbsjFVRPxg3/s72-c/yildiztezcan.jpg&quot; /&gt;</content><link rel='replies' type='application/atom+xml' href='https://nostmuzden.blogspot.com/feeds/2679248012189779140/comments/default' title='Kayıt Yorumları'/><link rel='replies' type='text/html' href='https://nostmuzden.blogspot.com/2016/10/yldz-tezcan.html#comment-form' title='0 Yorum'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/2679248012189779140'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/2679248012189779140'/><link rel='alternate' type='text/html' href='https://nostmuzden.blogspot.com/2016/10/yldz-tezcan.html' title='Yıldız Tezcan'/><author><name>İmdat</name><uri>http://www.blogger.com/profile/02588424190203669089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgBG300TlscFQW9ice5QMzKaCB4fJ4eyDpcpJRxfW1xjfn3rmYXUgOmSYlXgUHi_ixn4TZA9CNx-TKUxLLYJR5Wriz39SsaK97LwANykiMuVnkeSJcwhgQD7DeAc1dglJM2_GbsjFVRPxg3/s72-c/yildiztezcan.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2461602893558785930.post-5592682906833889881</id><published>2016-10-27T13:47:00.003+03:00</published><updated>2018-06-01T22:57:03.095+03:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Arabesk-Alaturka"/><title type='text'>Selma İstanbullu</title><content type='html'>&lt;div id=&quot;ytThumbs&quot;&gt;&lt;/div&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
 ytEmbed.init({&#39;block&#39;:&#39;ytThumbs&#39;,&#39;q&#39;:&#39;selma istanbullu&#39;,&#39;type&#39;:&#39;search&#39;,&#39;results&#39;:5,&#39;order&#39;:&#39;most_relevance&#39;,&#39;player&#39;:&#39;embed&#39;,&#39;layout&#39;:&#39;full&#39;,&#39;display_first&#39;:true});
&lt;/script&gt;&lt;img width=&quot;0&quot; height=&quot;0&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi4VqABhexKMJZGyTLjKSefCvpn9cPfpU7Ewhu9bL_0QMz2tAkEtfluy0Nl2dazfPnWG9Z90YvvSRPr4h2ZJLO3QZEAYFhHjm4k-OonwCiTg3nkOfkMiT23sKogGz9bfZ9sndC7sf2GLkdO/s72-c/selmaistanbullu.jpg&quot; /&gt;</content><link rel='replies' type='application/atom+xml' href='https://nostmuzden.blogspot.com/feeds/5592682906833889881/comments/default' title='Kayıt Yorumları'/><link rel='replies' type='text/html' href='https://nostmuzden.blogspot.com/2016/10/selma-istanbullu.html#comment-form' title='0 Yorum'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/5592682906833889881'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/5592682906833889881'/><link rel='alternate' type='text/html' href='https://nostmuzden.blogspot.com/2016/10/selma-istanbullu.html' title='Selma İstanbullu'/><author><name>İmdat</name><uri>http://www.blogger.com/profile/02588424190203669089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi4VqABhexKMJZGyTLjKSefCvpn9cPfpU7Ewhu9bL_0QMz2tAkEtfluy0Nl2dazfPnWG9Z90YvvSRPr4h2ZJLO3QZEAYFhHjm4k-OonwCiTg3nkOfkMiT23sKogGz9bfZ9sndC7sf2GLkdO/s72-c/selmaistanbullu.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2461602893558785930.post-7511319018256008480</id><published>2016-10-27T13:47:00.000+03:00</published><updated>2018-06-01T22:57:21.886+03:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Arabesk-Alaturka"/><title type='text'>Uğur Bayar</title><content type='html'>&lt;div id=&quot;ytThumbs&quot;&gt;&lt;/div&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
 ytEmbed.init({&#39;block&#39;:&#39;ytThumbs&#39;,&#39;q&#39;:&#39;uğur bayar&#39;,&#39;type&#39;:&#39;search&#39;,&#39;results&#39;:5,&#39;order&#39;:&#39;most_relevance&#39;,&#39;player&#39;:&#39;embed&#39;,&#39;layout&#39;:&#39;full&#39;,&#39;display_first&#39;:true});
&lt;/script&gt;&lt;img width=&quot;0&quot; height=&quot;0&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhw-CG0-ysjU54Z7BAgpxgW0Z9L0PLCCua9Dco9z4MsMGGzje9ZnyQ7to9wirQ3nxGujRvBowuZGM8IIbgUK1fb78gNWmP5TeMY6ZRi-O852zSjqvgku-5ur9nh09xWaBqFK-nZbI9bmJhn/s72-c/ugurbayar.jpg&quot; /&gt;</content><link rel='replies' type='application/atom+xml' href='https://nostmuzden.blogspot.com/feeds/7511319018256008480/comments/default' title='Kayıt Yorumları'/><link rel='replies' type='text/html' href='https://nostmuzden.blogspot.com/2016/10/ugur-bayar.html#comment-form' title='0 Yorum'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/7511319018256008480'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/7511319018256008480'/><link rel='alternate' type='text/html' href='https://nostmuzden.blogspot.com/2016/10/ugur-bayar.html' title='Uğur Bayar'/><author><name>İmdat</name><uri>http://www.blogger.com/profile/02588424190203669089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhw-CG0-ysjU54Z7BAgpxgW0Z9L0PLCCua9Dco9z4MsMGGzje9ZnyQ7to9wirQ3nxGujRvBowuZGM8IIbgUK1fb78gNWmP5TeMY6ZRi-O852zSjqvgku-5ur9nh09xWaBqFK-nZbI9bmJhn/s72-c/ugurbayar.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2461602893558785930.post-4701238460517984592</id><published>2016-10-27T13:46:00.002+03:00</published><updated>2018-06-01T22:57:39.486+03:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Arabesk-Alaturka"/><title type='text'>Süleyman Oruç</title><content type='html'>&lt;div id=&quot;ytThumbs&quot;&gt;&lt;/div&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
 ytEmbed.init({&#39;block&#39;:&#39;ytThumbs&#39;,&#39;q&#39;:&#39;süleyman oruç&#39;,&#39;type&#39;:&#39;search&#39;,&#39;results&#39;:5,&#39;order&#39;:&#39;most_relevance&#39;,&#39;player&#39;:&#39;embed&#39;,&#39;layout&#39;:&#39;full&#39;,&#39;display_first&#39;:true});
&lt;/script&gt;&lt;img width=&quot;0&quot; height=&quot;0&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhhJUq9RIVtOkPO_9zw-F-XPe5UZMcCaMkvG0HRlk7XRCRDRoG6AVLkZcZU3Sk3CIixYsmXRcoLK0eaL8mfd6dK4nM84H1QnhNYyPUa8REgcGqS717ksgKYpRZ9nJKBkTSqBtwXIP1l6N6m/s72-c/suleyman-oruc.jpg&quot; /&gt;</content><link rel='replies' type='application/atom+xml' href='https://nostmuzden.blogspot.com/feeds/4701238460517984592/comments/default' title='Kayıt Yorumları'/><link rel='replies' type='text/html' href='https://nostmuzden.blogspot.com/2016/10/suleyman-oruc.html#comment-form' title='0 Yorum'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/4701238460517984592'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/4701238460517984592'/><link rel='alternate' type='text/html' href='https://nostmuzden.blogspot.com/2016/10/suleyman-oruc.html' title='Süleyman Oruç'/><author><name>İmdat</name><uri>http://www.blogger.com/profile/02588424190203669089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhhJUq9RIVtOkPO_9zw-F-XPe5UZMcCaMkvG0HRlk7XRCRDRoG6AVLkZcZU3Sk3CIixYsmXRcoLK0eaL8mfd6dK4nM84H1QnhNYyPUa8REgcGqS717ksgKYpRZ9nJKBkTSqBtwXIP1l6N6m/s72-c/suleyman-oruc.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2461602893558785930.post-413130689721219343</id><published>2016-10-27T13:45:00.005+03:00</published><updated>2018-06-01T22:57:56.433+03:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Arabesk-Alaturka"/><title type='text'>Rahmi Aydın</title><content type='html'>&lt;div id=&quot;ytThumbs&quot;&gt;&lt;/div&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
 ytEmbed.init({&#39;block&#39;:&#39;ytThumbs&#39;,&#39;q&#39;:&#39;rahmi aydın&#39;,&#39;type&#39;:&#39;search&#39;,&#39;results&#39;:5,&#39;order&#39;:&#39;most_relevance&#39;,&#39;player&#39;:&#39;embed&#39;,&#39;layout&#39;:&#39;full&#39;,&#39;display_first&#39;:true});
&lt;/script&gt;&lt;img width=&quot;0&quot; height=&quot;0&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiuHTFGhWCve7Hc2poApw_Bm6u7f_-bz-FqubFFx1jeBFxY7A8DnsigkcASRNCgEJCsae7ylzL0-JpiTYhbT5NfZ8jciUrC8Bqru57rCbQdivgWdugihHqG0rEwa3wDBEJqhDNLe2xudA7G/s72-c/default.jpeg&quot; /&gt;</content><link rel='replies' type='application/atom+xml' href='https://nostmuzden.blogspot.com/feeds/413130689721219343/comments/default' title='Kayıt Yorumları'/><link rel='replies' type='text/html' href='https://nostmuzden.blogspot.com/2016/10/rahmi-aydn.html#comment-form' title='0 Yorum'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/413130689721219343'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/413130689721219343'/><link rel='alternate' type='text/html' href='https://nostmuzden.blogspot.com/2016/10/rahmi-aydn.html' title='Rahmi Aydın'/><author><name>İmdat</name><uri>http://www.blogger.com/profile/02588424190203669089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiuHTFGhWCve7Hc2poApw_Bm6u7f_-bz-FqubFFx1jeBFxY7A8DnsigkcASRNCgEJCsae7ylzL0-JpiTYhbT5NfZ8jciUrC8Bqru57rCbQdivgWdugihHqG0rEwa3wDBEJqhDNLe2xudA7G/s72-c/default.jpeg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2461602893558785930.post-4443513183625351094</id><published>2016-10-27T13:45:00.002+03:00</published><updated>2018-06-01T22:58:13.847+03:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Arabesk-Alaturka"/><title type='text'>Ethem Acar</title><content type='html'>&lt;div id=&quot;ytThumbs&quot;&gt;&lt;/div&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
 ytEmbed.init({&#39;block&#39;:&#39;ytThumbs&#39;,&#39;q&#39;:&#39;ethem acar&#39;,&#39;type&#39;:&#39;search&#39;,&#39;results&#39;:5,&#39;order&#39;:&#39;most_relevance&#39;,&#39;player&#39;:&#39;embed&#39;,&#39;layout&#39;:&#39;full&#39;,&#39;display_first&#39;:true});
&lt;/script&gt;&lt;img width=&quot;0&quot; height=&quot;0&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiiFaQ20d4RlSCLsXwAfyfexZ5J93E4AmrQLjY5tjX5KJh5eX5oEwfTNxeqtSU0p42D4XYRTGWuhWgRLFkPVlb9A5tRUm_xAkOTIVGSW4LoBlylrP6JXBgQRiJoHxv_xDUHifH3Sr0FoXRO/s72-c/ethem_acar.jpg&quot; /&gt;</content><link rel='replies' type='application/atom+xml' href='https://nostmuzden.blogspot.com/feeds/4443513183625351094/comments/default' title='Kayıt Yorumları'/><link rel='replies' type='text/html' href='https://nostmuzden.blogspot.com/2016/10/ethem-acar.html#comment-form' title='0 Yorum'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/4443513183625351094'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/4443513183625351094'/><link rel='alternate' type='text/html' href='https://nostmuzden.blogspot.com/2016/10/ethem-acar.html' title='Ethem Acar'/><author><name>İmdat</name><uri>http://www.blogger.com/profile/02588424190203669089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiiFaQ20d4RlSCLsXwAfyfexZ5J93E4AmrQLjY5tjX5KJh5eX5oEwfTNxeqtSU0p42D4XYRTGWuhWgRLFkPVlb9A5tRUm_xAkOTIVGSW4LoBlylrP6JXBgQRiJoHxv_xDUHifH3Sr0FoXRO/s72-c/ethem_acar.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2461602893558785930.post-8408638170004576585</id><published>2016-10-27T13:44:00.005+03:00</published><updated>2018-06-01T22:58:54.606+03:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Arabesk-Alaturka"/><title type='text'>Linet</title><content type='html'>&lt;div id=&quot;ytThumbs&quot;&gt;&lt;/div&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
 ytEmbed.init({&#39;block&#39;:&#39;ytThumbs&#39;,&#39;q&#39;:&#39;linet&#39;,&#39;type&#39;:&#39;search&#39;,&#39;results&#39;:5,&#39;order&#39;:&#39;most_relevance&#39;,&#39;player&#39;:&#39;embed&#39;,&#39;layout&#39;:&#39;full&#39;,&#39;display_first&#39;:true});
&lt;/script&gt;&lt;img width=&quot;0&quot; height=&quot;0&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhDuwaksBSMJqCWzUgr-uX2_S4JIHntf36wl4qZXsmJM2boF5tseECG0D1g3QOqSwfHITPa2IahM8K6UEueL2vWG_l8r3QIrOcAzC0wV7OOd-XMiyB7hTu97OSJBdWkhJCr6qCcCBUI7_i_/s72-c/Linet+-+Yorum+Fark%C4%B1.jpg&quot; /&gt;</content><link rel='replies' type='application/atom+xml' href='https://nostmuzden.blogspot.com/feeds/8408638170004576585/comments/default' title='Kayıt Yorumları'/><link rel='replies' type='text/html' href='https://nostmuzden.blogspot.com/2016/10/linet.html#comment-form' title='0 Yorum'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/8408638170004576585'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/8408638170004576585'/><link rel='alternate' type='text/html' href='https://nostmuzden.blogspot.com/2016/10/linet.html' title='Linet'/><author><name>İmdat</name><uri>http://www.blogger.com/profile/02588424190203669089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhDuwaksBSMJqCWzUgr-uX2_S4JIHntf36wl4qZXsmJM2boF5tseECG0D1g3QOqSwfHITPa2IahM8K6UEueL2vWG_l8r3QIrOcAzC0wV7OOd-XMiyB7hTu97OSJBdWkhJCr6qCcCBUI7_i_/s72-c/Linet+-+Yorum+Fark%C4%B1.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2461602893558785930.post-1786913673354728190</id><published>2016-10-27T13:44:00.002+03:00</published><updated>2018-06-01T22:59:31.823+03:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Arabesk-Alaturka"/><title type='text'>Ali İbicek</title><content type='html'>&lt;div id=&quot;ytThumbs&quot;&gt;&lt;/div&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
 ytEmbed.init({&#39;block&#39;:&#39;ytThumbs&#39;,&#39;q&#39;:&#39;ali ibicek&#39;,&#39;type&#39;:&#39;search&#39;,&#39;results&#39;:5,&#39;order&#39;:&#39;most_relevance&#39;,&#39;player&#39;:&#39;embed&#39;,&#39;layout&#39;:&#39;full&#39;,&#39;display_first&#39;:true});
&lt;/script&gt;&lt;img width=&quot;0&quot; height=&quot;0&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEii9B23cZ8wfZXqSzx2lN9QuhVzH28etSxNcNto5PdSc9pPSweULmzT3XWlYweA9GasqPrm1DvDlSEDLIGeMWTe24fCzTqB0d4wLSgSm3i-HvWD1G4lCmGZfKpOUmiODb80LN81zuB8D_OP/s72-c/aliibicek.jpg&quot; /&gt;</content><link rel='replies' type='application/atom+xml' href='https://nostmuzden.blogspot.com/feeds/1786913673354728190/comments/default' title='Kayıt Yorumları'/><link rel='replies' type='text/html' href='https://nostmuzden.blogspot.com/2016/10/ali-ibicek.html#comment-form' title='0 Yorum'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/1786913673354728190'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/1786913673354728190'/><link rel='alternate' type='text/html' href='https://nostmuzden.blogspot.com/2016/10/ali-ibicek.html' title='Ali İbicek'/><author><name>İmdat</name><uri>http://www.blogger.com/profile/02588424190203669089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEii9B23cZ8wfZXqSzx2lN9QuhVzH28etSxNcNto5PdSc9pPSweULmzT3XWlYweA9GasqPrm1DvDlSEDLIGeMWTe24fCzTqB0d4wLSgSm3i-HvWD1G4lCmGZfKpOUmiODb80LN81zuB8D_OP/s72-c/aliibicek.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2461602893558785930.post-7655300741973639158</id><published>2016-10-27T13:43:00.003+03:00</published><updated>2018-06-01T23:08:14.086+03:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Arabesk-Alaturka"/><title type='text'>Kamuran Akkor</title><content type='html'>&lt;div id=&quot;ytThumbs&quot;&gt;&lt;/div&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
 ytEmbed.init({&#39;block&#39;:&#39;ytThumbs&#39;,&#39;q&#39;:&#39;kamuran akkor&#39;,&#39;type&#39;:&#39;search&#39;,&#39;results&#39;:5,&#39;order&#39;:&#39;most_relevance&#39;,&#39;player&#39;:&#39;embed&#39;,&#39;layout&#39;:&#39;full&#39;,&#39;display_first&#39;:true});
&lt;/script&gt;&lt;img width=&quot;0&quot; height=&quot;0&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhR9w-e-QMXebZWH6nO3rlXqfq-hK0ZWg37sdr-HxR5b19giNntxhW6oBeJRB8Aq92CGC_sFtTnohqlziwZdKq_boHgz6CCWjCbBa83wZEu74vR18lrBtds9i2etPb4K_hA4OXDRf3q7oGZ/s72-c/kamuran-akkor-8%255B1%255D.jpg&quot; /&gt;</content><link rel='replies' type='application/atom+xml' href='https://nostmuzden.blogspot.com/feeds/7655300741973639158/comments/default' title='Kayıt Yorumları'/><link rel='replies' type='text/html' href='https://nostmuzden.blogspot.com/2016/10/kamuran-akkor.html#comment-form' title='0 Yorum'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/7655300741973639158'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/7655300741973639158'/><link rel='alternate' type='text/html' href='https://nostmuzden.blogspot.com/2016/10/kamuran-akkor.html' title='Kamuran Akkor'/><author><name>İmdat</name><uri>http://www.blogger.com/profile/02588424190203669089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhR9w-e-QMXebZWH6nO3rlXqfq-hK0ZWg37sdr-HxR5b19giNntxhW6oBeJRB8Aq92CGC_sFtTnohqlziwZdKq_boHgz6CCWjCbBa83wZEu74vR18lrBtds9i2etPb4K_hA4OXDRf3q7oGZ/s72-c/kamuran-akkor-8%255B1%255D.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2461602893558785930.post-1065091510453345288</id><published>2016-10-27T13:42:00.004+03:00</published><updated>2018-06-01T23:08:33.457+03:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Arabesk-Alaturka"/><title type='text'>Ercan Turgut</title><content type='html'>&lt;div id=&quot;ytThumbs&quot;&gt;&lt;/div&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
 ytEmbed.init({&#39;block&#39;:&#39;ytThumbs&#39;,&#39;q&#39;:&#39;ercan turgut&#39;,&#39;type&#39;:&#39;search&#39;,&#39;results&#39;:5,&#39;order&#39;:&#39;most_relevance&#39;,&#39;player&#39;:&#39;embed&#39;,&#39;layout&#39;:&#39;full&#39;,&#39;display_first&#39;:true});
&lt;/script&gt;&lt;img width=&quot;0&quot; height=&quot;0&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgVxnQyu59BYEpAv0_u9_Kw9J_hDvc_zByBpAI80rdm4dEF4E04OSi2YZAHHaq9STzHo2Tk57qSOICcIhcYxT4_-7-JP0Y_3lS9aDHqYggqnmc5TrH608iXdKTuFOYIIJ4y319nvsJ6DWV-/s72-c/default.jpeg&quot; /&gt;</content><link rel='replies' type='application/atom+xml' href='https://nostmuzden.blogspot.com/feeds/1065091510453345288/comments/default' title='Kayıt Yorumları'/><link rel='replies' type='text/html' href='https://nostmuzden.blogspot.com/2016/10/ercan-turgut.html#comment-form' title='0 Yorum'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/1065091510453345288'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/1065091510453345288'/><link rel='alternate' type='text/html' href='https://nostmuzden.blogspot.com/2016/10/ercan-turgut.html' title='Ercan Turgut'/><author><name>İmdat</name><uri>http://www.blogger.com/profile/02588424190203669089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgVxnQyu59BYEpAv0_u9_Kw9J_hDvc_zByBpAI80rdm4dEF4E04OSi2YZAHHaq9STzHo2Tk57qSOICcIhcYxT4_-7-JP0Y_3lS9aDHqYggqnmc5TrH608iXdKTuFOYIIJ4y319nvsJ6DWV-/s72-c/default.jpeg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2461602893558785930.post-657051005860515805</id><published>2016-10-27T13:42:00.001+03:00</published><updated>2018-06-01T23:08:51.159+03:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Arabesk-Alaturka"/><title type='text'>Devran Çağlar</title><content type='html'>&lt;div id=&quot;ytThumbs&quot;&gt;&lt;/div&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
 ytEmbed.init({&#39;block&#39;:&#39;ytThumbs&#39;,&#39;q&#39;:&#39;devran çağlar&#39;,&#39;type&#39;:&#39;search&#39;,&#39;results&#39;:5,&#39;order&#39;:&#39;most_relevance&#39;,&#39;player&#39;:&#39;embed&#39;,&#39;layout&#39;:&#39;full&#39;,&#39;display_first&#39;:true});
&lt;/script&gt;&lt;img width=&quot;0&quot; height=&quot;0&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgLAfiR81OSArxa7L7EWyS7khLT0Li2D0EjsgMCaLFusqPog0f-k0lvIzytVAOHvMRBdx36jPi2-fRkGYp-nLPwuHxDd4IArc1tb_x7UjDcHxnnY78Z3DIGST-aSPolvJUJ4kcMYG3i2BCx/s72-c/devrancaglar.jpg&quot; /&gt;</content><link rel='replies' type='application/atom+xml' href='https://nostmuzden.blogspot.com/feeds/657051005860515805/comments/default' title='Kayıt Yorumları'/><link rel='replies' type='text/html' href='https://nostmuzden.blogspot.com/2016/10/devran-caglar.html#comment-form' title='0 Yorum'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/657051005860515805'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/657051005860515805'/><link rel='alternate' type='text/html' href='https://nostmuzden.blogspot.com/2016/10/devran-caglar.html' title='Devran Çağlar'/><author><name>İmdat</name><uri>http://www.blogger.com/profile/02588424190203669089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgLAfiR81OSArxa7L7EWyS7khLT0Li2D0EjsgMCaLFusqPog0f-k0lvIzytVAOHvMRBdx36jPi2-fRkGYp-nLPwuHxDd4IArc1tb_x7UjDcHxnnY78Z3DIGST-aSPolvJUJ4kcMYG3i2BCx/s72-c/devrancaglar.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2461602893558785930.post-2393514993444068368</id><published>2016-10-27T13:41:00.003+03:00</published><updated>2018-06-01T23:09:10.796+03:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Arabesk-Alaturka"/><title type='text'>Ömer Danış</title><content type='html'>&lt;div id=&quot;ytThumbs&quot;&gt;&lt;/div&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
 ytEmbed.init({&#39;block&#39;:&#39;ytThumbs&#39;,&#39;q&#39;:&#39;ömer danış&#39;,&#39;type&#39;:&#39;search&#39;,&#39;results&#39;:5,&#39;order&#39;:&#39;most_relevance&#39;,&#39;player&#39;:&#39;embed&#39;,&#39;layout&#39;:&#39;full&#39;,&#39;display_first&#39;:true});
&lt;/script&gt;&lt;img width=&quot;0&quot; height=&quot;0&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhEDjN9cSefMpXAH6pWG_Ww7w1CbVghLOUU3cXX4zFfGqo4WVyTxnj4j3kQib7Ysz9FOvmeDZfp9JPqh5nCBl1almWNThcSddNfJcKP1fSjeuDpT2NDvmTU6GqvW9lGWmHH0Ouj3M11Knov/s72-c/indir+(1).jpg&quot; /&gt;</content><link rel='replies' type='application/atom+xml' href='https://nostmuzden.blogspot.com/feeds/2393514993444068368/comments/default' title='Kayıt Yorumları'/><link rel='replies' type='text/html' href='https://nostmuzden.blogspot.com/2016/10/omer-dans.html#comment-form' title='0 Yorum'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/2393514993444068368'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/2393514993444068368'/><link rel='alternate' type='text/html' href='https://nostmuzden.blogspot.com/2016/10/omer-dans.html' title='Ömer Danış'/><author><name>İmdat</name><uri>http://www.blogger.com/profile/02588424190203669089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhEDjN9cSefMpXAH6pWG_Ww7w1CbVghLOUU3cXX4zFfGqo4WVyTxnj4j3kQib7Ysz9FOvmeDZfp9JPqh5nCBl1almWNThcSddNfJcKP1fSjeuDpT2NDvmTU6GqvW9lGWmHH0Ouj3M11Knov/s72-c/indir+(1).jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2461602893558785930.post-1842888035824456813</id><published>2016-10-27T13:40:00.004+03:00</published><updated>2018-06-01T23:09:30.307+03:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Arabesk-Alaturka"/><title type='text'>Kurtuluş</title><content type='html'>&lt;div id=&quot;ytThumbs&quot;&gt;&lt;/div&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
 ytEmbed.init({&#39;block&#39;:&#39;ytThumbs&#39;,&#39;q&#39;:&#39;kurtuluş türkgüven&#39;,&#39;type&#39;:&#39;search&#39;,&#39;results&#39;:5,&#39;order&#39;:&#39;most_relevance&#39;,&#39;player&#39;:&#39;embed&#39;,&#39;layout&#39;:&#39;full&#39;,&#39;display_first&#39;:true});
&lt;/script&gt;&lt;img width=&quot;0&quot; height=&quot;0&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh-qsISNsNt-JRGDQGRgy6iySkBCkBwki-AnM2ZfBREedWYZ2kgYp0XJk2gfaLP2qkrZZLJyiR8A8oa8mlkqlePoweEuE4iHcJAbq2hh3LhDHBZ-qeAsLRYvteeNhz3XIy_l1JmN4G8fVXZ/s72-c/kurtulus.jpg&quot; /&gt;</content><link rel='replies' type='application/atom+xml' href='https://nostmuzden.blogspot.com/feeds/1842888035824456813/comments/default' title='Kayıt Yorumları'/><link rel='replies' type='text/html' href='https://nostmuzden.blogspot.com/2016/10/kurtulus.html#comment-form' title='0 Yorum'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/1842888035824456813'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/1842888035824456813'/><link rel='alternate' type='text/html' href='https://nostmuzden.blogspot.com/2016/10/kurtulus.html' title='Kurtuluş'/><author><name>İmdat</name><uri>http://www.blogger.com/profile/02588424190203669089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh-qsISNsNt-JRGDQGRgy6iySkBCkBwki-AnM2ZfBREedWYZ2kgYp0XJk2gfaLP2qkrZZLJyiR8A8oa8mlkqlePoweEuE4iHcJAbq2hh3LhDHBZ-qeAsLRYvteeNhz3XIy_l1JmN4G8fVXZ/s72-c/kurtulus.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2461602893558785930.post-4672899813108897301</id><published>2016-10-27T13:39:00.001+03:00</published><updated>2018-06-01T23:09:47.296+03:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Arabesk-Alaturka"/><title type='text'>Esra Özmen</title><content type='html'>&lt;div id=&quot;ytThumbs&quot;&gt;&lt;/div&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
 ytEmbed.init({&#39;block&#39;:&#39;ytThumbs&#39;,&#39;q&#39;:&#39;esra özmen&#39;,&#39;type&#39;:&#39;search&#39;,&#39;results&#39;:5,&#39;order&#39;:&#39;most_relevance&#39;,&#39;player&#39;:&#39;embed&#39;,&#39;layout&#39;:&#39;full&#39;,&#39;display_first&#39;:true});
&lt;/script&gt;&lt;img width=&quot;0&quot; height=&quot;0&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhyguV5vsYKjQroKTV_HtQ8Wj7gnq3XIUgWWiefUcHCZ2DKaqkgUPBXpT9o1KvdLU1j0JzqdqQ08F65YueqJf5GwEV3K0aL3pKnvbM7taV6RYb7sZIFMcsaSy_mpRytnpe2_igcCmeFh48n/s72-c/Esra_Ozmen.jpg&quot; /&gt;</content><link rel='replies' type='application/atom+xml' href='https://nostmuzden.blogspot.com/feeds/4672899813108897301/comments/default' title='Kayıt Yorumları'/><link rel='replies' type='text/html' href='https://nostmuzden.blogspot.com/2016/10/esra-ozmen.html#comment-form' title='0 Yorum'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/4672899813108897301'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/2461602893558785930/posts/default/4672899813108897301'/><link rel='alternate' type='text/html' href='https://nostmuzden.blogspot.com/2016/10/esra-ozmen.html' title='Esra Özmen'/><author><name>İmdat</name><uri>http://www.blogger.com/profile/02588424190203669089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhyguV5vsYKjQroKTV_HtQ8Wj7gnq3XIUgWWiefUcHCZ2DKaqkgUPBXpT9o1KvdLU1j0JzqdqQ08F65YueqJf5GwEV3K0aL3pKnvbM7taV6RYb7sZIFMcsaSy_mpRytnpe2_igcCmeFh48n/s72-c/Esra_Ozmen.jpg" height="72" width="72"/><thr:total>0</thr:total></entry></feed>