<?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>Kushal , kD &#38; FOSS</title>
	<atom:link href="http://kushaldas.in/feed/" rel="self" type="application/rss+xml" />
	<link>http://kushaldas.in</link>
	<description>FOSS and life. Kushal Das talks here</description>
	<lastBuildDate>Tue, 24 Aug 2010 07:01:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Google video chat plugin for Fedora</title>
		<link>http://kushaldas.in/2010/08/24/google-video-chat-plugin-for-fedora/</link>
		<comments>http://kushaldas.in/2010/08/24/google-video-chat-plugin-for-fedora/#comments</comments>
		<pubDate>Tue, 24 Aug 2010 07:01:48 +0000</pubDate>
		<dc:creator>kd</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[chat]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://kushaldas.in/2010/08/24/google-video-chat-plugin-for-fedora/</guid>
		<description><![CDATA[Wait is over, you can try the rpms from here. Before installing don&#8217;t forget to remove nspluginwrapper. Working perfectly on Firefox.
]]></description>
			<content:encoded><![CDATA[<p>Wait is over, you can try the rpms from <a href="http://v3.sk/~lkundrak/googletalk/">here</a>. Before installing don&#8217;t forget to remove nspluginwrapper. Working perfectly on Firefox.</p>
]]></content:encoded>
			<wfw:commentRss>http://kushaldas.in/2010/08/24/google-video-chat-plugin-for-fedora/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>More on thumbnailing and optimization</title>
		<link>http://kushaldas.in/2010/07/09/more-on-thumbnailing-and-optimization/</link>
		<comments>http://kushaldas.in/2010/07/09/more-on-thumbnailing-and-optimization/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 20:42:43 +0000</pubDate>
		<dc:creator>kd</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[vala]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[speed]]></category>

		<guid isPermaLink="false">http://kushaldas.in/2010/07/09/more-on-thumbnailing-and-optimization/</guid>
		<description><![CDATA[Following my last post, spent most of the of the time on different imaging libraries to find a faster way of doing thumbnails and optimization.
I tested the following libraries to create image thumbnails, GdkPixbuf, imlib2, ImageMagic, epeg. Pixbuf gives somewhat  nice timings , imlib2 is fast but was leaking too much memory. ImageMagic seems [...]]]></description>
			<content:encoded><![CDATA[<p>Following my last <a href="http://kushaldas.in/2010/07/07/speed-vala-sqlite3-and-optimization/">post</a>, spent most of the of the time on different imaging libraries to find a faster way of doing thumbnails and optimization.</p>
<p>I tested the following libraries to create image thumbnails, GdkPixbuf, imlib2, ImageMagic, epeg. Pixbuf gives somewhat  nice timings , imlib2 is fast but was leaking too much memory. ImageMagic seems to the slowest among them. Last try was with epeg which can only handle jpegs and it came out as the fastest. So wrote a C function and using it from inside vala code using <strong>extern</strong>.</p>
<p>Next target was to find better way to get thumbnails from RAW images, tried libopenraw and LibRaw for that. But with help from yorba developers found the way to do it using gexiv2 only.</p>
<p>In between tried few tools for profiling the application, sayamindu told me about sysprof which seems to be the easiest for my purpose. Using it I found <i>gexiv2_metadata_open_path</i> is taking around 67% of time, inside it  <i>Exiv2::TiffImage:readMetaData</i> is taking 51% of time.</p>
<p>Now coming to the point of speed , 1st run is on 1GB of RAW files</p>
<pre>
real	0m2.946s
user	0m2.542s
sys	0m0.116s
</pre>
<p>2nd run is on same 36GB of images , among them around half is RAW.</p>
<pre>
real	4m0.807s
user	0m54.283s
sys	1m24.789s
</pre>
<p>Now this is <strong>fast</strong> in my textbook :D I should not forget to tell about the great help I got from #vala and  <a href="http://blogs.gnome.org/abustany">Adrien Bustany</a> in the whole work.</p>
]]></content:encoded>
			<wfw:commentRss>http://kushaldas.in/2010/07/09/more-on-thumbnailing-and-optimization/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Speed , Vala, Sqlite3 and optimization</title>
		<link>http://kushaldas.in/2010/07/07/speed-vala-sqlite3-and-optimization/</link>
		<comments>http://kushaldas.in/2010/07/07/speed-vala-sqlite3-and-optimization/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 13:07:50 +0000</pubDate>
		<dc:creator>kd</dc:creator>
				<category><![CDATA[FOSS]]></category>
		<category><![CDATA[vala]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[problem]]></category>

		<guid isPermaLink="false">http://kushaldas.in/2010/07/07/speed-vala-sqlite3-and-optimization/</guid>
		<description><![CDATA[All started as just another stupid idea, writing an image indexer (reinventing the wheel ). &#160;The code should do the following things:


Index images for any given folder with user provided tags
Extract and keep EXIF information from the files
Extract or generate image thumbnails for all files
Should be able to provide the thumbnail even if the original [...]]]></description>
			<content:encoded><![CDATA[<p>All started as just another stupid idea, writing an image indexer (reinventing the wheel ). &nbsp;The code should do the following things:
<div>
<ul>
<li>Index images for any given folder with user provided tags</li>
<li>Extract and keep <a href="http://en.wikipedia.org/wiki/Exchangeable_image_file_format">EXIF</a> information from the files</li>
<li>Extract or generate image thumbnails for all files</li>
<li>Should be able to provide the thumbnail even if the original file is missing (may be in a usb hdd)</li>
</ul>
<div></div>
</div>
<div>Wrote some test code to see how much time it takes to do the above for a folder with 36GB+ in size and 5044 images (both JPEG and NEF )&nbsp;</div>
<p>1st run </p>
<pre>
real 30m39.178s
user 0m45.561s
sys 3m42.557s
</pre>
<p>2nd run with out thumbnail generation but with EXIF information</p>
<pre>
real 10m14.281s
user 0m58.208s
sys 0m45.969s
</pre>
<p>3rd run with out thumbnail generation and with out EXIF information</p>
<pre>
real 14m40.503s
user 0m1.585s
sys 0m7.535s
</pre>
<p>Here I am confused, managed to find out that transaction in sqlite can cause delay, so changed the code to do everything in single transaction<br />
4th run with out thumbnail generation and with out EXIF information</p>
<pre>
real 0m1.032s
user 0m0.216s
sys 0m0.134s
</pre>
<p>5th run with out thumbnail generation but with EXIF information</p>
<pre>
real 3m1.191s
user 1m2.525s
sys 0m34.524s
</pre>
<p>6th run with everything </p>
<pre>
real 16m47.241s
user 0m43.652s
sys 3m21.640s
</pre>
<p>So the major bottleneck is thumbnail generation, which I am currently doing Gdk.Pixbuf , for EXIF information I am using beautiful <a href="http://trac.yorba.org/wiki/gexiv2">gexiv2</a> from awesome yorba guys.</div>
<div>Now to optimize I have to use some other library to generate thumbnails, <b>which other libraries I can use ?</b></div>
<div><b><br /></b></div>
<div>On the side note, I am not saving the thumbnails on disk but creating base64 encoded strings of them (I know I am bad, not following the thumbnail spec).</div>
<div></div>
]]></content:encoded>
			<wfw:commentRss>http://kushaldas.in/2010/07/07/speed-vala-sqlite3-and-optimization/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>lekhonee-gnome 0.11 released</title>
		<link>http://kushaldas.in/2010/06/24/lekhonee-gnome-0-11-released/</link>
		<comments>http://kushaldas.in/2010/06/24/lekhonee-gnome-0-11-released/#comments</comments>
		<pubDate>Thu, 24 Jun 2010 10:28:18 +0000</pubDate>
		<dc:creator>kd</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[lekhonee-gnome]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[vala]]></category>

		<guid isPermaLink="false">http://kushaldas.in/2010/06/24/lekhonee-gnome-0-11-released/</guid>
		<description><![CDATA[I just released lekhonee-gnome 0.11, you can download the source from here, a yum repo for Fedora 13 can be found here.

Release Details:


Add new category button is re-enabled and it works :p
Updated translations
About dialog bug fixed


]]></description>
			<content:encoded><![CDATA[<p>I just released lekhonee-gnome 0.11, you can download the source from <a href="https://fedorahosted.org/releases/l/e/lekhonee/lekhonee-gnome-0.11.tar.bz2">here</a>, a yum repo for Fedora 13 can be found <a href="http://kushal.fedorapeople.org/kushal.repo">here</a>.
<div></div>
<div>Release Details:</div>
<div>
<ul>
<li>Add new category button is re-enabled and it works :p</li>
<li>Updated translations</li>
<li>About dialog bug fixed</li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://kushaldas.in/2010/06/24/lekhonee-gnome-0-11-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to use lekhonee-gnome for multiple blogs with the same wordpress account ?</title>
		<link>http://kushaldas.in/2010/06/11/how-to-use-lekhonee-gnome-for-multiple-blogs-with-the-same-wordpress-account/</link>
		<comments>http://kushaldas.in/2010/06/11/how-to-use-lekhonee-gnome-for-multiple-blogs-with-the-same-wordpress-account/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 10:23:06 +0000</pubDate>
		<dc:creator>kd</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[lekhonee]]></category>

		<guid isPermaLink="false">http://kushaldas.in/2010/06/11/how-to-use-lekhonee-gnome-for-multiple-blogs-with-the-same-wordpress-account/</guid>
		<description><![CDATA[I was looking into this feature request yesterday, good news is lekhonee-gnome already supports this. Lets say your wordpress username is foobar.

So, in the accounts in Preferences window you add the first account with your username and password and Wordpress&#160;as service.&#160;

Then add another account with same username and password but service as other and type [...]]]></description>
			<content:encoded><![CDATA[<p>I was looking into this feature request yesterday, good news is lekhonee-gnome already supports this. Lets say your wordpress username is <i>foobar</i>.
<div></div>
<div>So, in the accounts in Preferences window you add the first account with your username and password and <i>Wordpress</i>&nbsp;as service.&nbsp;</div>
<div></div>
<div>Then add another account with same username and password but service as <i>other</i> and type the full url of your 2nd blog following /xmlrpc.php (example: http://secondblog.wordpress.org/xmlrpc.php).&nbsp;</div>
<div></div>
<div>Now you can access both the blogs from lekhonee-gnome</div>
]]></content:encoded>
			<wfw:commentRss>http://kushaldas.in/2010/06/11/how-to-use-lekhonee-gnome-for-multiple-blogs-with-the-same-wordpress-account/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yet another Sunset in Pune</title>
		<link>http://kushaldas.in/2010/06/08/yet-another-sunset-in-pune/</link>
		<comments>http://kushaldas.in/2010/06/08/yet-another-sunset-in-pune/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 11:47:01 +0000</pubDate>
		<dc:creator>kd</dc:creator>
				<category><![CDATA[Photo]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Pune]]></category>

		<guid isPermaLink="false">http://kushaldas.in/2010/06/08/yet-another-sunset-in-pune/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/kushaldas/4679562439/" title="Yet another sunset in Pune by Kushal Das, on Flickr"><img src="http://farm5.static.flickr.com/4003/4679562439_e8509d69f3.jpg" width="334" height="500" alt="Yet another sunset in Pune"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://kushaldas.in/2010/06/08/yet-another-sunset-in-pune/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Timelapse using Fedora and D80</title>
		<link>http://kushaldas.in/2010/06/05/timelapse-using-fedora-and-d80/</link>
		<comments>http://kushaldas.in/2010/06/05/timelapse-using-fedora-and-d80/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 18:48:28 +0000</pubDate>
		<dc:creator>kd</dc:creator>
				<category><![CDATA[FOSS]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Photo]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[entangle]]></category>
		<category><![CDATA[timelapse]]></category>

		<guid isPermaLink="false">http://kushaldas.in/2010/06/05/timelapse-using-fedora-and-d80/</guid>
		<description><![CDATA[My first timelapse movie: /me trying to clean the kitchen&#160;
ogv or in youtube
Shot in a Nikon D80 using entangle (#yum install entangle ) and a small python script.
Resized using imagemagick and video created using mencoder.&#160;
Comments are welcome :)
]]></description>
			<content:encoded><![CDATA[<p>My first timelapse movie: /me trying to clean the kitchen&nbsp;
<div><a href="http://kushaldas.in/tmp/timelapse.ogv">ogv</a> or in <a href="http://www.youtube.com/watch?v=eS_ucocsMpQ">youtube</a></div>
<div>Shot in a Nikon D80 using entangle (#yum install entangle ) and a small python script.</div>
<div>Resized using imagemagick and video created using mencoder.&nbsp;</div>
<div>Comments are welcome :)</div>
]]></content:encoded>
			<wfw:commentRss>http://kushaldas.in/2010/06/05/timelapse-using-fedora-and-d80/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
<enclosure url="http://kushaldas.in/tmp/timelapse.ogv" length="958974" type="video/ogg" />
		</item>
		<item>
		<title>lekhonee-gnome 0.10 released</title>
		<link>http://kushaldas.in/2010/06/03/lekhonee-gnome-0-10-released/</link>
		<comments>http://kushaldas.in/2010/06/03/lekhonee-gnome-0-10-released/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 10:42:13 +0000</pubDate>
		<dc:creator>kd</dc:creator>
				<category><![CDATA[FOSS]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[lekhonee]]></category>
		<category><![CDATA[lekhonee-gnome]]></category>
		<category><![CDATA[vala]]></category>

		<guid isPermaLink="false">http://kushaldas.in/2010/06/03/lekhonee-gnome-0-10-released/</guid>
		<description><![CDATA[lekhonee-gnome 0.10 is just released. You can download the source from here.&#160;

This release comes with new translations for languages like Gujarati or Punjabi, also spell checking option is not anymore under right click menu ( something changed in webkit)



Here is an image of the right click menu used to look like.
]]></description>
			<content:encoded><![CDATA[<p>lekhonee-gnome 0.10 is just released. You can download the source from <a href="https://fedorahosted.org/releases/l/e/lekhonee/lekhonee-gnome-0.10.tar.bz2">here</a>.&nbsp;
<div></div>
<div>This release comes with new translations for languages like Gujarati or Punjabi, also spell checking option is not anymore under right click menu ( something changed in webkit)</div>
<div></div>
<div></div>
<div></div>
<div><a href="http://runab.fedorapeople.org/lekhonee-gnome.png">Here</a> is an image of the right click menu used to look like.</div>
]]></content:encoded>
			<wfw:commentRss>http://kushaldas.in/2010/06/03/lekhonee-gnome-0-10-released/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>FAD PUNE 2010</title>
		<link>http://kushaldas.in/2010/05/31/fad-pune-2010/</link>
		<comments>http://kushaldas.in/2010/05/31/fad-pune-2010/#comments</comments>
		<pubDate>Mon, 31 May 2010 11:18:37 +0000</pubDate>
		<dc:creator>kd</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[OLPC]]></category>
		<category><![CDATA[FAD]]></category>
		<category><![CDATA[Pune]]></category>

		<guid isPermaLink="false">http://kushaldas.in/2010/05/31/fad-pune-2010/</guid>
		<description><![CDATA[So this weekend we had FAD Pune 2010. Being organizer the main issue was to get inside the office before everyone else :)

Among the things done:


Packaged accessx ( with help from Sayamindu to patch it for Fedora)
Updated code in Pony so that it works with new flickrapi API (committed but not pushed yet)
Now we have [...]]]></description>
			<content:encoded><![CDATA[<p>So this weekend we had FAD Pune 2010. Being organizer the main issue was to get inside the office before everyone else :)
<div></div>
<div>Among the things done:</div>
<div>
<ul>
<li>Packaged accessx ( with help from Sayamindu to patch it for Fedora)</li>
<li>Updated code in Pony so that it works with new flickrapi API (committed but not pushed yet)</li>
<li>Now we have cover images in <a href="http://github.com/sayamindu/pathagar">Pathagar</a> , the digital library system.</li>
<li>Helped people with packaging</li>
</ul>
<div>Yesterday in the last hours almost everyone were busy with packaging and helping each other.&nbsp;Had fun with all other contributors for 2 days, now getting back to the normal routine. Photos will come up later this week. I also recorded Sayamindu&#8217;s talk on <a href="http://laptop.org">OLPC</a> as a downstream of <a href="http://fedoraproject.org">Fedora</a> project, you can view it <a href="http://tv.dgplug.org/oggs/sayam.ogv">here</a> (111MB).</div>
</div>
<div></div>
<div>&nbsp;&nbsp;</div>
]]></content:encoded>
			<wfw:commentRss>http://kushaldas.in/2010/05/31/fad-pune-2010/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
<enclosure url="http://tv.dgplug.org/oggs/sayam.ogv" length="115997513" type="video/ogg" />
		</item>
		<item>
		<title>I Know What You Are Going To Do This Summer 2010</title>
		<link>http://kushaldas.in/2010/05/18/i-know-what-you-are-going-to-do-this-summer-2010/</link>
		<comments>http://kushaldas.in/2010/05/18/i-know-what-you-are-going-to-do-this-summer-2010/#comments</comments>
		<pubDate>Tue, 18 May 2010 10:25:29 +0000</pubDate>
		<dc:creator>kd</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[dgplug]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[summer]]></category>
		<category><![CDATA[training]]></category>

		<guid isPermaLink="false">http://kushaldas.in/2010/05/18/i-know-what-you-are-going-to-do-this-summer-2010/</guid>
		<description><![CDATA[Hi all,
We are happy to announce &#8220;I Know What You Are Going To Do This Summer2010&#8243;,[1] a free (as in freedom), online (IRC-based) [2] trainingsessions for wannabes to Free/Libre/Open Source Software at #dgplug onirc.freenode. net [3].
If you are a mentor, or trainer, or prospective enthusiast who wouldlike to participate in this years&#8217; sessions please go [...]]]></description>
			<content:encoded><![CDATA[<p><meta http-equiv="content-type" content="text/html; charset=utf-8"><span class="Apple-style-span" style="font-family: arial, sans-serif; border-collapse: collapse; font-size: 13px; ">Hi all,</p>
<p>We are happy to announce &#8220;I Know What You Are Going To Do This Summer<br />2010&#8243;,[1] a free (as in freedom), online (IRC-based) [2] training<br />sessions for wannabes to Free/Libre/Open Source Software at #dgplug on<br />irc.freenode. net [3].</p>
<p>If you are a mentor, or trainer, or prospective enthusiast who would<br />like to participate in this years&#8217; sessions please go through last<br />years&#8217; IRC logs:<br /><a href="http://www.dgplug.org/irclogs/" target="_blank" style="color: rgb(42, 93, 176); ">http://www.dgplug.org/irclogs/</a></p>
<p>We will have a review or Q&amp;A session on last years&#8217; sessions before we<br />proceed into new topics, this year.</p>
<p>The session timings are mostly varying, usually after 1900 IST every day.</p>
<p>To participate you need a good internet connection and any latest<br />linux installed (Fedora 12/13 preferably ). Anyone can participate.</p>
<p>If you are interested in participating, please confirm your<br />participation by sending an off-list mail to me (kushaldas AT gmail DOT com).</p>
<p>URL:&nbsp;<a href="http://dgplug.org/intro/" target="_blank" style="color: rgb(42, 93, 176); ">http://dgplug.org/intro/</a><br />Planet:&nbsp;<a href="http://planet.dgplug.org/" target="_blank" style="color: rgb(42, 93, 176); ">http://planet.dgplug.org/</a><br />Wiki:&nbsp;<a href="http://wiki.dgplug.org/" target="_blank" style="color: rgb(42, 93, 176); ">http://wiki.dgplug.org/</a><br />Mailing list group (for queries, discussions) :<br /><a href="http://lists.dgplug.org/listinfo.cgi/users-dgplug.org" target="_blank" style="color: rgb(42, 93, 176); ">http://lists.dgplug.org/<wbr>listinfo.cgi/users-dgplug.org</a></p>
<p>[1]&nbsp;<a href="http://wiki.dgplug.org/index.php/SummerTraining10" target="_blank" style="color: rgb(42, 93, 176); ">http://wiki.dgplug.org/index.<wbr>php/SummerTraining10</a><br />[2]&nbsp;<a href="http://en.wikipedia.org/wiki/Internet_Relay_Chat" target="_blank" style="color: rgb(42, 93, 176); ">http://en.wikipedia.org/wiki/<wbr>Internet_Relay_Chat</a><br />[3]&nbsp;<a href="http://fedoraproject.org/wiki/Communicate/IRCHowTo" target="_blank" style="color: rgb(42, 93, 176); ">http://fedoraproject.org/wiki/<wbr>Communicate/IRCHowTo</a><br /></span></p>
]]></content:encoded>
			<wfw:commentRss>http://kushaldas.in/2010/05/18/i-know-what-you-are-going-to-do-this-summer-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
