<?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: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-3325681978491628315</id><updated>2012-02-10T19:35:37.852+08:00</updated><category term='ibus'/><category term='prompt'/><category term='proxy'/><category term='poem'/><category term='debugging'/><category term='visual-studio'/><category term='apt-get'/><category term='ping'/><category term='boost'/><category term='fedora'/><category term='mandarin'/><category term='qdebug'/><category term='pinta'/><category term='command'/><category term='gnome'/><category term='kate'/><category term='excel'/><category term='trolltech'/><category term='f-secure'/><category term='user-account-control'/><category term='powershell'/><category term='sdk'/><category term='browser'/><category term='cyber-security'/><category term='qt4'/><category term='debian'/><category term='dpkg'/><category term='link'/><category term='windows'/><category term='preprocessor'/><category term='file'/><category term='c++'/><category term='qmake'/><category term='scripts'/><category term='stack-overflow'/><category term='update'/><category term='accounts'/><category term='uninstall'/><category term='patch'/><category term='linux'/><category term='dot-net-framework'/><category term='qt-creator'/><category term='processors'/><category term='meego'/><category term='macintosh'/><category term='office'/><category term='usb'/><category term='kubuntu'/><category term='security'/><category term='programming'/><category term='tips-and-tricks'/><category term='c-plus-plus'/><category term='gtk'/><category term='.net-framework'/><category term='directive'/><category term='input-method-editors'/><category term='samsung'/><category term='networking'/><category term='kde'/><category term='batch'/><category term='office-2007'/><category term='android'/><category term='wireless'/><category term='windows-7'/><category term='unix'/><category term='input-method'/><category term='cores'/><category term='icon'/><category term='virus'/><category term='dropbox'/><category term='pattern'/><category term='microsoft'/><category term='vpn'/><category term='qt'/><category term='g++'/><category term='ubuntu'/><category term='internet-explorer'/><category term='chinese'/><category term='unit-test'/><category term='compiler'/><category term='distribution'/><category term='google'/><category term='bugzilla'/><category term='google-analytics'/><title type='text'>Leonard's WebLog</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://sheeeng.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://sheeeng.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Leonard Lee</name><uri>http://www.blogger.com/profile/05020703049155191468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_J1jYn80D6cY/SUZfpZs0xXI/AAAAAAAACaM/8H1ramrIhu4/S220/Leonard-Miniature-Square2.png'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>35</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-3325681978491628315.post-3593972936768626004</id><published>2012-01-27T05:00:00.000+08:00</published><updated>2012-01-27T05:06:22.918+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='qdebug'/><category scheme='http://www.blogger.com/atom/ns#' term='c++'/><category scheme='http://www.blogger.com/atom/ns#' term='directive'/><category scheme='http://www.blogger.com/atom/ns#' term='macintosh'/><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='qt'/><category scheme='http://www.blogger.com/atom/ns#' term='preprocessor'/><category scheme='http://www.blogger.com/atom/ns#' term='windows'/><category scheme='http://www.blogger.com/atom/ns#' term='debugging'/><category scheme='http://www.blogger.com/atom/ns#' term='kubuntu'/><title type='text'>What are the differences between #ifdef directives and #if defined() preprocessor?</title><content type='html'>I made a terrible mistake today while confusing both the &lt;a href="http://msdn.microsoft.com/en-us/library/ew2hz0yd(v=vs.100).aspx" target="_blank"&gt;#if, #elif, #else, and #endif directives&lt;/a&gt;&amp;nbsp;and the defined() preprocessor operator. Special thanks to &lt;a href="https://gitorious.org/~biochimia" target="_blank"&gt;João Abecasis&lt;/a&gt;, who corrected&amp;nbsp;my mistake! So, I wrote down this post as a reminder.&lt;br /&gt;&lt;br /&gt;In short, the following statement are valid.&lt;br /&gt;&lt;blockquote class="tr_bq"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;#ifndef QT_NO_DEBUG&lt;br /&gt;#ifdef Q_OS_LINUX&lt;br /&gt;&amp;nbsp; qDebug() &amp;lt;&amp;lt; "Running on Linux platform.";&lt;br /&gt;#elif Q_OS_MAC&lt;br /&gt;&amp;nbsp; qDebug() &amp;lt;&amp;lt; "Running on Macintosh platform.";&lt;br /&gt;#elif Q_OS_WIN32&lt;br /&gt;&amp;nbsp; qDebug() &amp;lt;&amp;lt; "Running on Windows platform.";&lt;br /&gt;#else&lt;br /&gt;&amp;nbsp; qDebug() &amp;lt;&amp;lt; "Running on other platforms.";&lt;br /&gt;#endif&lt;br /&gt;#endif&lt;/span&gt;&lt;/b&gt;&lt;/blockquote&gt;Also, the following statement works.&lt;br /&gt;&lt;blockquote class="tr_bq"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;#if !defined(QT_NO_DEBUG)&lt;br /&gt;#if defined(Q_OS_LINUX)&lt;br /&gt;&amp;nbsp; qDebug() &amp;lt;&amp;lt; "Running on Linux platform.";&lt;br /&gt;#elif defined(Q_OS_MAC)&lt;br /&gt;&amp;nbsp; qDebug() &amp;lt;&amp;lt; "Running on Macintosh platform.";&lt;br /&gt;#elif defined(Q_OS_WIN32)&lt;br /&gt;&amp;nbsp; qDebug() &amp;lt;&amp;lt; "Running on Windows platform.";&lt;br /&gt;#else&lt;br /&gt;&amp;nbsp; qDebug() &amp;lt;&amp;lt; "Running on other platforms.";&lt;br /&gt;#endif&lt;br /&gt;#endif&lt;/span&gt;&lt;/b&gt;&lt;/blockquote&gt;Check out this&amp;nbsp;&lt;a href="http://stackoverflow.com/q/1714245" target="_blank"&gt;Stack Overflow page&lt;/a&gt;&amp;nbsp;which discusses the&amp;nbsp;differences between #if defined(WIN32) and #ifdef(WIN32) statements.&lt;br /&gt;&lt;br /&gt;Thanks again,&amp;nbsp;João!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3325681978491628315-3593972936768626004?l=sheeeng.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sheeeng.blogspot.com/feeds/3593972936768626004/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3325681978491628315&amp;postID=3593972936768626004' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/3593972936768626004'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/3593972936768626004'/><link rel='alternate' type='text/html' href='http://sheeeng.blogspot.com/2012/01/whats-differences-between-ifdef.html' title='What are the differences between #ifdef directives and #if defined() preprocessor?'/><author><name>Leonard Lee</name><uri>http://www.blogger.com/profile/05020703049155191468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_J1jYn80D6cY/SUZfpZs0xXI/AAAAAAAACaM/8H1ramrIhu4/S220/Leonard-Miniature-Square2.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3325681978491628315.post-5687542199353320433</id><published>2012-01-26T17:00:00.000+08:00</published><updated>2012-01-26T17:00:00.633+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='ping'/><category scheme='http://www.blogger.com/atom/ns#' term='debian'/><category scheme='http://www.blogger.com/atom/ns#' term='distribution'/><category scheme='http://www.blogger.com/atom/ns#' term='update'/><category scheme='http://www.blogger.com/atom/ns#' term='vpn'/><category scheme='http://www.blogger.com/atom/ns#' term='networking'/><category scheme='http://www.blogger.com/atom/ns#' term='kate'/><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='apt-get'/><category scheme='http://www.blogger.com/atom/ns#' term='dpkg'/><category scheme='http://www.blogger.com/atom/ns#' term='kubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='proxy'/><title type='text'>Advanced Packaging Tools related commands through proxy under Virtual Private Network</title><content type='html'>If you would like to use the &lt;a href="http://en.wikipedia.org/wiki/Advanced_Packaging_Tool" target="_blank"&gt;Advanced Packaging Tools&lt;/a&gt; for &lt;a href="http://en.wikipedia.org/wiki/Debian" target="_blank"&gt;Debian&lt;/a&gt; &lt;a href="http://en.wikipedia.org/wiki/GNU/Linux_distribution" target="_blank"&gt;GNU/Linux&amp;nbsp;distribution&lt;/a&gt;, such as apt-get update and its related command, through specific proxy under your Virtual Private Network, try the suggestion from &lt;a href="http://askubuntu.com/a/3808" target="_blank"&gt;this thread&lt;/a&gt; from AskUbuntu page.&lt;br /&gt;&lt;br /&gt;Before following this suggestion, I had the issue below whereby I cannot update my distribution installed while connected to Virtual Private Network.&lt;br /&gt;&lt;blockquote class="tr_bq"&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&lt;b&gt;Reading package lists... Done&lt;br /&gt;W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/oneiric/InRelease &lt;br /&gt;...&lt;/b&gt;&lt;/span&gt;&lt;/blockquote&gt;&lt;div&gt;I resolved my issue by using the commands below for Kubuntu platform.&lt;/div&gt;&lt;blockquote class="tr_bq"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;sudo kate /etc/apt/apt.conf.d/40proxy&lt;/span&gt;&lt;/b&gt;&lt;/blockquote&gt;Enter the following into your 40proxy file under &lt;a href="http://en.wikipedia.org/wiki/Kate_(text_editor)" target="_blank"&gt;Kate&lt;/a&gt;.&lt;br /&gt;&lt;blockquote class="tr_bq"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;Acquire::http::Proxy "http://proxy.site.com:8080";&lt;/span&gt;&lt;/b&gt;&lt;/blockquote&gt;Or if your proxy needs authentication, you can use the following export definition.&lt;br /&gt;&lt;blockquote class="tr_bq"&gt;&lt;span class="Apple-style-span" style="font-size: x-small;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;Acquire::http::Proxy&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;"http://proxyusername:proxypassword@proxyaddress:proxyport";&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/blockquote&gt;You should be able to use apt-get update and its related commands correctly now.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3325681978491628315-5687542199353320433?l=sheeeng.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sheeeng.blogspot.com/feeds/5687542199353320433/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3325681978491628315&amp;postID=5687542199353320433' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/5687542199353320433'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/5687542199353320433'/><link rel='alternate' type='text/html' href='http://sheeeng.blogspot.com/2012/01/advanced-packaging-tools-related.html' title='Advanced Packaging Tools related commands through proxy under Virtual Private Network'/><author><name>Leonard Lee</name><uri>http://www.blogger.com/profile/05020703049155191468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_J1jYn80D6cY/SUZfpZs0xXI/AAAAAAAACaM/8H1ramrIhu4/S220/Leonard-Miniature-Square2.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3325681978491628315.post-7041834481076526797</id><published>2012-01-25T21:50:00.001+08:00</published><updated>2012-01-25T21:52:14.560+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='bugzilla'/><category scheme='http://www.blogger.com/atom/ns#' term='link'/><title type='text'>Automatic linking in Bugzilla comments</title><content type='html'>If you would like to use Autolinkification feature in Bugzilla, see this &lt;a href="http://www.bugzilla.org/docs/4.0/en/html/hintsandtips.html#AEN2643" target="_blank"&gt;http://www.bugzilla.org/docs/4.0/en/html/hintsandtips.html#AEN2643&lt;/a&gt;&amp;nbsp;page.&lt;br /&gt;&lt;br /&gt;For example, you can write 'bug 314' (without the quotes) to automatically link to a specific bug. Furthermore, you can write 'comment 7'&amp;nbsp;(without the quotes) to&amp;nbsp;automatically link to a specific comment in the same issue.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3325681978491628315-7041834481076526797?l=sheeeng.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sheeeng.blogspot.com/feeds/7041834481076526797/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3325681978491628315&amp;postID=7041834481076526797' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/7041834481076526797'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/7041834481076526797'/><link rel='alternate' type='text/html' href='http://sheeeng.blogspot.com/2012/01/automatic-linking-in-bugzilla-comments.html' title='Automatic linking in Bugzilla comments'/><author><name>Leonard Lee</name><uri>http://www.blogger.com/profile/05020703049155191468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_J1jYn80D6cY/SUZfpZs0xXI/AAAAAAAACaM/8H1ramrIhu4/S220/Leonard-Miniature-Square2.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3325681978491628315.post-8048087231868279369</id><published>2012-01-25T06:00:00.000+08:00</published><updated>2012-01-27T06:02:44.217+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='debian'/><category scheme='http://www.blogger.com/atom/ns#' term='fedora'/><category scheme='http://www.blogger.com/atom/ns#' term='kubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='dropbox'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><title type='text'>Dropbox for Kubuntu (and other Linux platforms)</title><content type='html'>This nice &lt;a href="http://ubuntu-tutorials.com/2010/01/17/install-dropbox-on-kubuntu-kde-without-nautilus/" target="_blank"&gt;tutorial&lt;/a&gt;&amp;nbsp;guides you to install Dropbox on your Kubuntu platform!&lt;br /&gt;&lt;br /&gt;Checkout the&amp;nbsp;official&amp;nbsp;&lt;a href="http://www.dropbox.com/install?os=lnx" target="_blank"&gt;Dropbox for Linux&lt;/a&gt; platforms page too.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3325681978491628315-8048087231868279369?l=sheeeng.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sheeeng.blogspot.com/feeds/8048087231868279369/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3325681978491628315&amp;postID=8048087231868279369' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/8048087231868279369'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/8048087231868279369'/><link rel='alternate' type='text/html' href='http://sheeeng.blogspot.com/2012/01/dropbox-for-kubuntu-and-other-linux.html' title='Dropbox for Kubuntu (and other Linux platforms)'/><author><name>Leonard Lee</name><uri>http://www.blogger.com/profile/05020703049155191468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_J1jYn80D6cY/SUZfpZs0xXI/AAAAAAAACaM/8H1ramrIhu4/S220/Leonard-Miniature-Square2.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3325681978491628315.post-1221122986665683894</id><published>2012-01-08T21:45:00.000+08:00</published><updated>2012-01-08T21:46:22.177+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='pinta'/><category scheme='http://www.blogger.com/atom/ns#' term='gtk'/><category scheme='http://www.blogger.com/atom/ns#' term='debian'/><category scheme='http://www.blogger.com/atom/ns#' term='.net-framework'/><category scheme='http://www.blogger.com/atom/ns#' term='unix'/><category scheme='http://www.blogger.com/atom/ns#' term='icon'/><category scheme='http://www.blogger.com/atom/ns#' term='kde'/><category scheme='http://www.blogger.com/atom/ns#' term='kubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='gnome'/><title type='text'>Fix Pinta's icon 'gtk-dialog-error' not present in theme issue on Kubuntu</title><content type='html'>I discovered that the Pinta program cannot run on Kubuntu 11.10 (Oneiric Ocelot). Thereafter, I read about &lt;a href="https://bugs.launchpad.net/pinta/+bug/879043" target="_blank"&gt;Bug #879043&lt;/a&gt;, which this issue affects KDE platform whereby it has missing dependency to "gnome-icon-theme-full" package.&lt;br /&gt;&lt;blockquote class="tr_bq"&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;leonard@leonard-SX58:~$ &lt;b&gt;sudo apt-get install pinta&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;[sudo] password for leonard:&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;Reading package lists... Done&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;Building dependency tree &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;Reading state information... Done&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;The following extra packages will be installed:&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&amp;nbsp; cli-common libgdiplus libglib2.0-cil libgtk2.0-cil libmono-cairo4.0-cil&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&amp;nbsp; libmono-corlib4.0-cil libmono-i18n-west4.0-cil libmono-i18n4.0-cil libmono-posix4.0-cil&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&amp;nbsp; libmono-security4.0-cil libmono-sharpzip4.84-cil libmono-system-configuration4.0-cil&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&amp;nbsp; libmono-system-core4.0-cil libmono-system-drawing4.0-cil libmono-system-security4.0-cil&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&amp;nbsp; libmono-system-xml4.0-cil libmono-system4.0-cil mono-4.0-gac mono-gac mono-runtime&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;Suggested packages:&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&amp;nbsp; monodoc-gtk2.0-manual libmono-i18n4.0-all libgamin0&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;The following NEW packages will be installed&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&amp;nbsp; cli-common libgdiplus libglib2.0-cil libgtk2.0-cil libmono-cairo4.0-cil&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&amp;nbsp; libmono-corlib4.0-cil libmono-i18n-west4.0-cil libmono-i18n4.0-cil libmono-posix4.0-cil&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&amp;nbsp; libmono-security4.0-cil libmono-sharpzip4.84-cil libmono-system-configuration4.0-cil&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&amp;nbsp; libmono-system-core4.0-cil libmono-system-drawing4.0-cil libmono-system-security4.0-cil&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&amp;nbsp; libmono-system-xml4.0-cil libmono-system4.0-cil mono-4.0-gac mono-gac mono-runtime pinta&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;0 upgraded, 21 newly installed, 0 to remove and 3 not upgraded.&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;Need to get 6,308 kB of archives.&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;After this operation, 20.1 MB of additional disk space will be used.&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;Do you want to continue [Y/n]? y&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;leonard@leonard-SX58:~$ &lt;b&gt;whereis pinta&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-size: x-small;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-size: x-small;"&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;pinta: /usr/bin/pinta /usr/lib/pinta /usr/share/man/man1/pinta.1.gz&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;leonard@leonard-SX58:~$ &lt;b&gt;/usr/bin/pinta&lt;/b&gt;&lt;br /&gt;&lt;b&gt;GLib.GException: Icon 'gtk-dialog-error' not present in theme&lt;/b&gt;&lt;br /&gt;&amp;nbsp; at Gtk.IconTheme.LoadIcon (System.String icon_name, Int32 size, IconLookupFlags flags) [0x00000] in &amp;lt;filename unknown&amp;gt;:0&lt;br /&gt;&amp;nbsp; at Pinta.ErrorDialog.Build () [0x00000] in &amp;lt;filename unknown&amp;gt;:0&lt;br /&gt;&amp;nbsp; at Pinta.ErrorDialog..ctor (Gtk.Window parent) [0x00000] in &amp;lt;filename unknown&amp;gt;:0&lt;br /&gt;&amp;nbsp; at Pinta.MainClass.ExceptionManager_UnhandledException (GLib.UnhandledExceptionArgs args) [0x00000] in &amp;lt;filename unknown&amp;gt;:0&lt;br /&gt;&amp;nbsp; at GLib.ExceptionManager.RaiseUnhandledException (System.Exception e, Boolean is_terminal) [0x00000] in &amp;lt;filename unknown&amp;gt;:0&lt;br /&gt;leonard@leonard-SX58:~$&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/blockquote&gt;By following the suggestion on the&amp;nbsp;&lt;a href="https://bugs.launchpad.net/pinta/+bug/879043" target="_blank"&gt;Bug #879043&lt;/a&gt;, I did a few steps below as a workaround.&lt;br /&gt;&lt;blockquote class="tr_bq"&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;leonard@&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;leonard-SX58&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;:~$ &lt;b&gt;sudo apt-get install gnome-icon-theme-full&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;Reading package lists... Done&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;Building dependency tree &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;Reading state information... Done&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;The following NEW packages will be installed&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&amp;nbsp; gnome-icon-theme-full&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;0 upgraded, 1 newly installed, 0 to remove and 3 not upgraded.&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;Need to get 8,534 kB of archives.&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;After this operation, 13.3 MB of additional disk space will be used.&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;Get:1 http://no.archive.ubuntu.com/ubuntu/ oneiric-updates/universe gnome-icon-theme-full all 3.2.0-0ubuntu2 [8,534 kB]&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;Fetched 8,534 kB in 19s (438 kB/s) &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;Selecting previously deselected package gnome-icon-theme-full.&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;(Reading database ... 449962 files and directories currently installed.)&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;Unpacking gnome-icon-theme-full (from .../gnome-icon-theme-full_3.2.0-0ubuntu2_all.deb) ...&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;Processing triggers for gnome-icon-theme ...&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;Setting up gnome-icon-theme-full (3.2.0-0ubuntu2) ...&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;update-alternatives: using /usr/share/icons/gnome/scalable/places/ubuntu-logo.svg to provide /usr/share/icons/gnome/scalable/places/start-here.svg (start-here.svg) in auto mode.&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;update-alternatives: warning: skip creation of /usr/share/icons/gnome/256x256/places/start-here.png because associated file /usr/share/icons/gnome/256x256/places/ubuntu-logo.png (of link group start-here.svg) doesn't exist.&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;update-alternatives: warning: skip creation of /usr/share/icons/gnome/48x48/places/start-here.png because associated file /usr/share/icons/gnome/48x48/places/ubuntu-logo.png (of link group start-here.svg) doesn't exist.&lt;/span&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;blockquote class="tr_bq"&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;l&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;eonard@&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;leonard-SX58&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;:~$ &lt;b&gt;cat /etc/lsb-release&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;DISTRIB_ID=Ubuntu&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;DISTRIB_RELEASE=11.04&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;DISTRIB_CODENAME=natty&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;DISTRIB_DESCRIPTION="Ubuntu 11.04"&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;l&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;eonard@&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;leonard-SX58&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;:~$&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;l&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;eonard@&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;leonard-SX58&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;:~$ &lt;b&gt;/usr/bin/pinta&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;/blockquote&gt;I tested the workaround on Kubuntu 11.10 (Oneiric Ocelot) and it work out well. Now, you're able to use Pinta on Kubuntu platform.&lt;br /&gt;&lt;blockquote class="tr_bq"&gt;&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3325681978491628315-1221122986665683894?l=sheeeng.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sheeeng.blogspot.com/feeds/1221122986665683894/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3325681978491628315&amp;postID=1221122986665683894' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/1221122986665683894'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/1221122986665683894'/><link rel='alternate' type='text/html' href='http://sheeeng.blogspot.com/2012/01/fix-pintas-icon-gtk-dialog-error-not.html' title='Fix Pinta&apos;s icon &apos;gtk-dialog-error&apos; not present in theme issue on Kubuntu'/><author><name>Leonard Lee</name><uri>http://www.blogger.com/profile/05020703049155191468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_J1jYn80D6cY/SUZfpZs0xXI/AAAAAAAACaM/8H1ramrIhu4/S220/Leonard-Miniature-Square2.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3325681978491628315.post-5395729539982094268</id><published>2011-12-30T17:15:00.000+08:00</published><updated>2012-01-26T17:27:09.976+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='chinese'/><category scheme='http://www.blogger.com/atom/ns#' term='input-method'/><category scheme='http://www.blogger.com/atom/ns#' term='icon'/><category scheme='http://www.blogger.com/atom/ns#' term='mandarin'/><category scheme='http://www.blogger.com/atom/ns#' term='kde'/><category scheme='http://www.blogger.com/atom/ns#' term='ibus'/><category scheme='http://www.blogger.com/atom/ns#' term='kubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='gnome'/><title type='text'>Fix Intelligent Input Bus (IBus) Tray Icon on Kubuntu 11.10 (Oneiric Ocelot)</title><content type='html'>&lt;span class="Apple-style-span" style="background-color: white; color: #222222; font-family: arial, sans-serif; font-size: x-small; line-height: 16px;"&gt;The &lt;a href="http://en.wikipedia.org/wiki/Intelligent_Input_Bus" target="_blank"&gt;Intelligent Input Bus&lt;/a&gt; (&lt;/span&gt;&lt;em style="background-color: white; font-style: normal; line-height: 16px;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; font-size: x-small;"&gt;IBus&lt;/span&gt;&lt;/em&gt;&lt;span class="Apple-style-span" style="background-color: white; color: #222222; font-size: x-small; line-height: 16px;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;, pronounced as I-Bus) &lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: arial, sans-serif;"&gt;is an input method (IM) framework for multilingual input in Unix-like operating systems.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="background-color: white; color: #222222; font-family: arial, sans-serif; font-size: x-small; line-height: 16px;"&gt;However, the IBus tray icon does not appear when I tried installing IBus with its PinYin input method on Kubuntu 11.10 (Oneiric Ocelot) using below command.&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;pre&gt;&lt;span class="Apple-style-span" style="color: #222222; font-size: x-small;"&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; line-height: 16px;"&gt;&lt;b&gt;sudo apt-get install ibus ibus-pinyin&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;/blockquote&gt;&lt;span class="Apple-style-span" style="color: #222222; font-family: arial, sans-serif; font-size: x-small;"&gt;&lt;span class="Apple-style-span" style="line-height: 16px;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;div style="color: #222222; font-family: arial, sans-serif; font-size: small; line-height: 16px;"&gt;Starting it does not show the tray icon. Try the command below to fix it.&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;blockquote&gt;&lt;pre&gt;&lt;span class="Apple-style-span" style="color: #222222; font-size: x-small;"&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; line-height: 16px;"&gt;&lt;b&gt;sudo apt-get install --reinstall ibus ibus-pinyin gnome-icon-theme gnome-icon-theme-full&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;div style="color: #222222; font-family: arial, sans-serif; font-size: small; line-height: 16px;"&gt;Then, run command below to setup IBus.&lt;/div&gt;&lt;/div&gt;&lt;div style="color: #222222; font-size: small; line-height: 16px;"&gt;&lt;blockquote&gt;&lt;pre&gt;&lt;span class="Apple-style-span" style="color: #222222; font-size: x-small;"&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; line-height: 16px;"&gt;&lt;b&gt;ibus-setup&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;/blockquote&gt;&lt;div style="font-family: arial, sans-serif;"&gt;You should be able to see it on your Kubuntu's System Tray area now.&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3325681978491628315-5395729539982094268?l=sheeeng.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sheeeng.blogspot.com/feeds/5395729539982094268/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3325681978491628315&amp;postID=5395729539982094268' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/5395729539982094268'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/5395729539982094268'/><link rel='alternate' type='text/html' href='http://sheeeng.blogspot.com/2011/12/fix-intelligent-input-bus-ibus-tray.html' title='Fix Intelligent Input Bus (IBus) Tray Icon on Kubuntu 11.10 (Oneiric Ocelot)'/><author><name>Leonard Lee</name><uri>http://www.blogger.com/profile/05020703049155191468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_J1jYn80D6cY/SUZfpZs0xXI/AAAAAAAACaM/8H1ramrIhu4/S220/Leonard-Miniature-Square2.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3325681978491628315.post-6086694875432365108</id><published>2011-12-30T17:00:00.000+08:00</published><updated>2011-12-30T17:44:28.652+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='windows-7'/><category scheme='http://www.blogger.com/atom/ns#' term='stack-overflow'/><category scheme='http://www.blogger.com/atom/ns#' term='windows'/><category scheme='http://www.blogger.com/atom/ns#' term='cores'/><category scheme='http://www.blogger.com/atom/ns#' term='processors'/><title type='text'>Check the number of cores on your Windows machine</title><content type='html'>If you want to know how many cores does your machines has, check out the command below.&lt;br /&gt;&lt;blockquote&gt;&lt;pre&gt;Microsoft Windows [Version 6.1.7600]&lt;br /&gt;Copyright (c) 2009 Microsoft Corporation.  All rights reserved.&lt;br /&gt;&lt;br /&gt;C:\Users\Leonard&amp;gt;&lt;b&gt;echo %NUMBER_OF_PROCESSORS%&lt;/b&gt;&lt;br /&gt;4&lt;br /&gt;&lt;br /&gt;C:\Users\Leonard&amp;gt;&lt;/pre&gt;&lt;/blockquote&gt;I tried it on Windows 7 x64 platform and this works for me.&lt;br /&gt;&lt;br /&gt;If you wanted to&amp;nbsp;programmatically&amp;nbsp;get the value, see &lt;a href="http://stackoverflow.com/questions/150355/programmatically-find-the-number-of-cores-on-a-machine" target="_blank"&gt;the discussion&lt;/a&gt; on Stack Overflow discussion thread.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3325681978491628315-6086694875432365108?l=sheeeng.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sheeeng.blogspot.com/feeds/6086694875432365108/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3325681978491628315&amp;postID=6086694875432365108' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/6086694875432365108'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/6086694875432365108'/><link rel='alternate' type='text/html' href='http://sheeeng.blogspot.com/2011/10/check-number-of-cores-on-your-windows.html' title='Check the number of cores on your Windows machine'/><author><name>Leonard Lee</name><uri>http://www.blogger.com/profile/05020703049155191468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_J1jYn80D6cY/SUZfpZs0xXI/AAAAAAAACaM/8H1ramrIhu4/S220/Leonard-Miniature-Square2.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3325681978491628315.post-3090089904602997816</id><published>2011-10-21T19:00:00.001+08:00</published><updated>2012-01-02T05:44:10.357+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='ping'/><category scheme='http://www.blogger.com/atom/ns#' term='windows-7'/><category scheme='http://www.blogger.com/atom/ns#' term='samsung'/><category scheme='http://www.blogger.com/atom/ns#' term='windows'/><category scheme='http://www.blogger.com/atom/ns#' term='debugging'/><category scheme='http://www.blogger.com/atom/ns#' term='wireless'/><title type='text'>Samsung 300V3A unstable wireless issue</title><content type='html'>My friend brought a&amp;nbsp;Samsung 300V3A notebook some time ago. It looks nice! I have not got time to share my findings here. Sorry about it.&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;However, he asked me why his Wireless connection always not stable while he is working on the go.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Later, I did investigate and I notice there're differences in wireless networking behavior when it was plugged in to power source and when it was running on battery.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;So, it seems that&amp;nbsp;Samsung 300V3A notebook has very&amp;nbsp;aggressive&amp;nbsp;power saving mode while running on battery power.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Try the command below to ping the specified host until manually stopped.&lt;/div&gt;&lt;div&gt;&lt;blockquote class="tr_bq"&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;b&gt;ping -t www.google.com&lt;/b&gt;&lt;/span&gt;&lt;/blockquote&gt;&lt;div&gt;To see statistics and continue, press Control+Break keys together.&lt;/div&gt;&lt;div&gt;To stop the pinging process, press Ctrl + C keys together.&lt;br /&gt;&lt;br /&gt;Try running the command on it while running on battery mode and while plugged in to power source. You will get what I mean.&lt;br /&gt;&lt;br /&gt;I did not have time to dig deeper into this issue. I'm not sure there are settings to disable this behavior.&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3325681978491628315-3090089904602997816?l=sheeeng.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sheeeng.blogspot.com/feeds/3090089904602997816/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3325681978491628315&amp;postID=3090089904602997816' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/3090089904602997816'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/3090089904602997816'/><link rel='alternate' type='text/html' href='http://sheeeng.blogspot.com/2011/10/samsung-300v3a-unstable-wireless-issue.html' title='Samsung 300V3A unstable wireless issue'/><author><name>Leonard Lee</name><uri>http://www.blogger.com/profile/05020703049155191468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_J1jYn80D6cY/SUZfpZs0xXI/AAAAAAAACaM/8H1ramrIhu4/S220/Leonard-Miniature-Square2.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3325681978491628315.post-2360075024864780278</id><published>2011-10-14T17:15:00.000+08:00</published><updated>2011-10-14T17:15:17.372+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='kde'/><category scheme='http://www.blogger.com/atom/ns#' term='kubuntu'/><title type='text'>KLauncher cannot launch programs</title><content type='html'>If you experienced KLauncher cannot launch programs issue as shown below, please read on for the quick fix.&lt;br /&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/-duCG3gX2wsU/Tpf1GP2QGcI/AAAAAAAADgA/v4A6-jaLqWs/s1600/kpackagekitsmarticon.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="101" src="http://3.bp.blogspot.com/-duCG3gX2wsU/Tpf1GP2QGcI/AAAAAAAADgA/v4A6-jaLqWs/s400/kpackagekitsmarticon.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;If you don't like to&lt;span class="Apple-style-span" style="font-family: inherit;"&gt; restart your system, try the quick fix of &lt;span class="Apple-style-span"&gt;command below.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;pre&gt;killall kpackagekitsmarticon&lt;/pre&gt;&lt;/blockquote&gt;&lt;span class="Apple-style-span" style="font-family: inherit;"&gt;Then, your desktop will work fine!&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: inherit;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="line-height: 19px;"&gt;Please read the&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="line-height: 19px;"&gt;&lt;a data-mce-href="http://ubuntuforums.org/showthread.php?t=1781489" href="http://ubuntuforums.org/showthread.php?t=1781489" target="_blank" title="http://ubuntuforums.org/showthread.php?t=1781489"&gt;http://ubuntuforums.org/showthread.php?t=1781489&lt;/a&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="line-height: 19px;"&gt;&amp;nbsp;page for more information.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3325681978491628315-2360075024864780278?l=sheeeng.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sheeeng.blogspot.com/feeds/2360075024864780278/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3325681978491628315&amp;postID=2360075024864780278' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/2360075024864780278'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/2360075024864780278'/><link rel='alternate' type='text/html' href='http://sheeeng.blogspot.com/2011/10/klauncher-cannot-launch-programs.html' title='KLauncher cannot launch programs'/><author><name>Leonard Lee</name><uri>http://www.blogger.com/profile/05020703049155191468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_J1jYn80D6cY/SUZfpZs0xXI/AAAAAAAACaM/8H1ramrIhu4/S220/Leonard-Miniature-Square2.png'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/-duCG3gX2wsU/Tpf1GP2QGcI/AAAAAAAADgA/v4A6-jaLqWs/s72-c/kpackagekitsmarticon.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3325681978491628315.post-8655762929352749755</id><published>2011-09-22T18:55:00.000+08:00</published><updated>2011-09-22T18:55:01.998+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='google-analytics'/><category scheme='http://www.blogger.com/atom/ns#' term='browser'/><title type='text'>Opt-out from Google Analytics by installing its Opt-out Browser Add-on</title><content type='html'>&lt;br /&gt;&lt;div style="color: #333333; font-family: 'Lucida Grande', Verdana, Arial, sans-serif; font-size: 1.05em; line-height: 16px;"&gt;You can go to&amp;nbsp;&lt;a href="http://tools.google.com/dlpage/gaoptout" style="color: #0066cc; text-decoration: none;" target="_blank" title="http://tools.google.com/dlpage/gaoptout"&gt;http://tools.google.com/dlpage/gaoptout&lt;/a&gt;&amp;nbsp;page to install the&amp;nbsp;Google Analytics Opt-out Browser Add-on (BETA) for major browsers.&lt;/div&gt;&lt;div style="color: #333333; font-family: 'Lucida Grande', Verdana, Arial, sans-serif; font-size: 1.05em; line-height: 16px;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="color: #333333; font-family: 'Lucida Grande', Verdana, Arial, sans-serif; font-size: 1.05em; line-height: 16px;"&gt;It supports Microsoft Internet Explorer, Google Chrome, Mozilla Firefox, Apple Safari and Opera.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3325681978491628315-8655762929352749755?l=sheeeng.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sheeeng.blogspot.com/feeds/8655762929352749755/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3325681978491628315&amp;postID=8655762929352749755' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/8655762929352749755'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/8655762929352749755'/><link rel='alternate' type='text/html' href='http://sheeeng.blogspot.com/2011/09/opt-out-from-google-analytics-by.html' title='Opt-out from Google Analytics by installing its Opt-out Browser Add-on'/><author><name>Leonard Lee</name><uri>http://www.blogger.com/profile/05020703049155191468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_J1jYn80D6cY/SUZfpZs0xXI/AAAAAAAACaM/8H1ramrIhu4/S220/Leonard-Miniature-Square2.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3325681978491628315.post-8777875829664985926</id><published>2011-09-14T05:25:00.001+08:00</published><updated>2011-09-14T05:26:01.340+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='sdk'/><category scheme='http://www.blogger.com/atom/ns#' term='qt'/><category scheme='http://www.blogger.com/atom/ns#' term='kubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='qt-creator'/><category scheme='http://www.blogger.com/atom/ns#' term='android'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><title type='text'>Packaging Error: Command ‘/usr/bin/ant debug’ failed on Necessitas Qt Creator.</title><content type='html'>&lt;span class="Apple-style-span" style="background-color: white; color: #555555; font-family: 'Lucida Grande', Helvetica, Arial, sans-serif; font-size: 12px;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;div style="font-size: 13px; line-height: 24px; margin-bottom: 20px; margin-top: 20px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;I’m trying to set up Necessitas on the Kubuntu notebook. Things went well by following instructions on&lt;a href="http://bit.ly/jHoMXJ" style="color: #20a3ca; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: underline;" target="_blank" title="http://bit.ly/jHoMXJ"&gt;http://bit.ly/jHoMXJ&lt;/a&gt;&amp;nbsp;page.&amp;nbsp;Setup the relevant Android SDK, Android NDK, and executed the Necessitas installer. However, issue started when I ran my first Hello World program on Necessitas Qt Creator.&lt;/div&gt;&lt;div style="font-size: 13px; line-height: 24px; margin-bottom: 20px; margin-top: 20px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;The compiler is giving the error message below.&lt;br /&gt;&lt;strong style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;:-1: error: Packaging Error: Command ‘/usr/bin/ant debug’ failed.Exit code: 1&lt;/strong&gt;&lt;/div&gt;&lt;div style="font-size: 13px; line-height: 24px; margin-bottom: 20px; margin-top: 20px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;After few searches on the internet, I stumble upon&amp;nbsp;&lt;a href="http://bit.ly/jTNkmF" style="color: #20a3ca; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: underline;" target="_blank" title="http://bit.ly/jTNkmF"&gt;http://bit.ly/jTNkmF&lt;/a&gt;&amp;nbsp;page which gives me a solution.&lt;/div&gt;&lt;div style="font-size: 13px; line-height: 24px; margin-bottom: 20px; margin-top: 20px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Inside Necessitas Qt Creator, click Projects (on the left side bar) -&amp;gt; Run Settings -&amp;gt; Deployment -&amp;gt; Package configurations -&amp;gt; Android targer SDK.&lt;br /&gt;Change it from android-4 to android-10. Then, the issue will not appear any more.&lt;/div&gt;&lt;div style="font-size: 13px; line-height: 24px; margin-bottom: 20px; margin-top: 20px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;P.S. Always run {necessitas}/QtCreator/bin/necessitas, not {necessitas}/QtCreator/bin/qtcreator.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3325681978491628315-8777875829664985926?l=sheeeng.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sheeeng.blogspot.com/feeds/8777875829664985926/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3325681978491628315&amp;postID=8777875829664985926' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/8777875829664985926'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/8777875829664985926'/><link rel='alternate' type='text/html' href='http://sheeeng.blogspot.com/2011/09/packaging-error-command-usrbinant-debug.html' title='Packaging Error: Command ‘/usr/bin/ant debug’ failed on Necessitas Qt Creator.'/><author><name>Leonard Lee</name><uri>http://www.blogger.com/profile/05020703049155191468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_J1jYn80D6cY/SUZfpZs0xXI/AAAAAAAACaM/8H1ramrIhu4/S220/Leonard-Miniature-Square2.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3325681978491628315.post-8153582043311582945</id><published>2011-09-14T05:23:00.000+08:00</published><updated>2011-09-14T05:23:25.794+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='uninstall'/><category scheme='http://www.blogger.com/atom/ns#' term='f-secure'/><category scheme='http://www.blogger.com/atom/ns#' term='security'/><category scheme='http://www.blogger.com/atom/ns#' term='android'/><title type='text'>How to remove "Uninstall not successful" application on Android?</title><content type='html'>&lt;span class="Apple-style-span" style="background-color: white; color: #555555; font-family: 'Lucida Grande', Helvetica, Arial, sans-serif; font-size: 12px;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;div style="font-size: 13px; line-height: 24px; margin-bottom: 20px; margin-top: 20px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;I’m using Google Nexus One and it was updated to Android 2.2.3 version with GRI40 build.&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;I had an application, namely F-Secure Mobile Security, which is not working on the updated platform&amp;nbsp;and I would like to uninstall it.&lt;/div&gt;&lt;div style="font-size: 13px; line-height: 24px; margin-bottom: 20px; margin-top: 20px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;I tried select Settings | Applications | Manage applications | All | F-Secure Mobile Security. Force stop and Uninstall does not work.&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;It shows “Uninstall not successful” and it cannot be removed.&lt;/div&gt;&lt;div style="font-size: 13px; line-height: 24px; margin-bottom: 20px; margin-top: 20px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Do remember that you might have troubles removing an application if the application is one of the device administrator.&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;Select Settings -&amp;gt; Location &amp;amp; security -&amp;gt; Select device administrator. Uncheck F-Secure Mobile Security.&lt;/div&gt;&lt;div style="font-size: 13px; line-height: 24px; margin-bottom: 20px; margin-top: 20px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Try to uninstall it again and it will be removed. This tip works on my side.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3325681978491628315-8153582043311582945?l=sheeeng.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sheeeng.blogspot.com/feeds/8153582043311582945/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3325681978491628315&amp;postID=8153582043311582945' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/8153582043311582945'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/8153582043311582945'/><link rel='alternate' type='text/html' href='http://sheeeng.blogspot.com/2011/09/how-to-remove-uninstall-not-successful.html' title='How to remove &quot;Uninstall not successful&quot; application on Android?'/><author><name>Leonard Lee</name><uri>http://www.blogger.com/profile/05020703049155191468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_J1jYn80D6cY/SUZfpZs0xXI/AAAAAAAACaM/8H1ramrIhu4/S220/Leonard-Miniature-Square2.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3325681978491628315.post-3878876573852153878</id><published>2011-09-12T05:31:00.000+08:00</published><updated>2011-10-06T01:19:18.419+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='poem'/><category scheme='http://www.blogger.com/atom/ns#' term='programming'/><title type='text'>有的男生/女生</title><content type='html'>有的男生/女生就像Windows，虽然很优秀，但是安全隐患太大。&lt;br /&gt;有的男生/女生就像UNIX，虽然他/她条件很好，然而不是谁都能追求。&lt;br /&gt;有的男生/女生就像C#，虽然长的很帅/漂亮，但是工作/家务不行。&lt;br /&gt;有的男生/女生就像C++，他/她时时刻刻会默默的为你做很多的事情。&lt;br /&gt;有的男生/女生就像Java，只需一点付出他/她就会为你到处服务。&lt;br /&gt;有的男生/女生就像JavaScript，虽然对她处处小心但最终还放不了。&lt;br /&gt;真正爱上一个人的时候，那就是常量（Define）限定（Const），永远不变（Immutable）。&lt;br /&gt;朋友拥有私有变量（Private Variables）的感受，只有他们友元类（Friend Classes）才能了解。&lt;br /&gt;爱人就是指针（Pointer），拥有的时候一定要注意，要不然就带来巨大的灾难。&lt;br /&gt;&lt;br /&gt;改编摘自互联网的文章。&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3325681978491628315-3878876573852153878?l=sheeeng.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sheeeng.blogspot.com/feeds/3878876573852153878/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3325681978491628315&amp;postID=3878876573852153878' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/3878876573852153878'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/3878876573852153878'/><link rel='alternate' type='text/html' href='http://sheeeng.blogspot.com/2011/09/blog-post.html' title='有的男生/女生'/><author><name>Leonard Lee</name><uri>http://www.blogger.com/profile/05020703049155191468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_J1jYn80D6cY/SUZfpZs0xXI/AAAAAAAACaM/8H1ramrIhu4/S220/Leonard-Miniature-Square2.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3325681978491628315.post-5084747976012493184</id><published>2011-08-08T16:42:00.003+08:00</published><updated>2011-08-08T16:49:40.697+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='pattern'/><category scheme='http://www.blogger.com/atom/ns#' term='accounts'/><category scheme='http://www.blogger.com/atom/ns#' term='security'/><category scheme='http://www.blogger.com/atom/ns#' term='google'/><category scheme='http://www.blogger.com/atom/ns#' term='android'/><title type='text'>Android phone locked after "Too many pattern attempts!"</title><content type='html'>My Google Nexus One was locked due to many failed pattern attempts.&amp;nbsp;I thought my issue was related to this Android issue, which is&amp;nbsp;&lt;a href="http://code.google.com/p/android/issues/detail?id=3006"&gt;Google credentials don't unlock phone after failing too many pattern attempts&lt;/a&gt;.&lt;br /&gt;&lt;div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Sadly, I have been stuck at "Too many pattern attempts! To unlock, sign in with your Google account" screen for many hours, failed many workaround provided&amp;nbsp;in forums, even considering to hard reset the device itself.&lt;br /&gt;&lt;br /&gt;&lt;table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-uImdsgjXgmU/Tj-bDfNcjdI/AAAAAAAADek/kUOrumg0Niw/s1600/too+many+pattern+attempts.png" imageanchor="1" style="margin-left: auto; margin-right: auto;"&gt;&lt;img border="0" height="189" src="http://4.bp.blogspot.com/-uImdsgjXgmU/Tj-bDfNcjdI/AAAAAAAADek/kUOrumg0Niw/s320/too+many+pattern+attempts.png" width="320" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class="tr-caption" style="text-align: center;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;Too many pattern attempts!&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;However, I remember that I enabled Google account's 2-step verification security measures some time ago. Remember this screens&amp;nbsp;below?&amp;nbsp;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/-Ikmjsq_ds3Q/Tj-dY3qrFCI/AAAAAAAADe8/LYpz0_rAeJQ/s1600/accounts2.png" imageanchor="1" style="margin-left: auto; margin-right: auto;"&gt;&lt;img border="0" height="181" src="http://3.bp.blogspot.com/-Ikmjsq_ds3Q/Tj-dY3qrFCI/AAAAAAAADe8/LYpz0_rAeJQ/s320/accounts2.png" width="320" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class="tr-caption" style="text-align: center;"&gt;&lt;a href="https://www.google.com/accounts/ManageAccount"&gt;https://www.google.com/accounts/ManageAccount&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/-MrD_0gpPsQ4/Tj-fFgGObII/AAAAAAAADfI/oHnJ9NErZJw/s1600/accounts.png" imageanchor="1" style="margin-left: auto; margin-right: auto;"&gt;&lt;img border="0" height="88" src="http://2.bp.blogspot.com/-MrD_0gpPsQ4/Tj-fFgGObII/AAAAAAAADfI/oHnJ9NErZJw/s320/accounts.png" width="320" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class="tr-caption" style="text-align: center;"&gt;&lt;a href="https://plus.google.com/settings/"&gt;https://plus.google.com/settings&lt;/a&gt;/&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;If 2-step verification is enabled, the Android device is using the 16 alphabets password which was generated under "Authorizing applications &amp;amp; sites", instead of using the actual password for the Google account itself. That's explains why my correct password for my Google account cannot be used to unlock my Android phone.&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;To resolve this issue, I&amp;nbsp;temporary&amp;nbsp;disabled 2-step verification for my Google account. Then, I'm able to use my actual password to unlock the device.&lt;br /&gt;&lt;br /&gt;Phew! Glad that I don't need to hard reset my&amp;nbsp;Android&amp;nbsp;device.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3325681978491628315-5084747976012493184?l=sheeeng.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sheeeng.blogspot.com/feeds/5084747976012493184/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3325681978491628315&amp;postID=5084747976012493184' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/5084747976012493184'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/5084747976012493184'/><link rel='alternate' type='text/html' href='http://sheeeng.blogspot.com/2011/08/android-phone-locked-after-too-many.html' title='Android phone locked after &quot;Too many pattern attempts!&quot;'/><author><name>Leonard Lee</name><uri>http://www.blogger.com/profile/05020703049155191468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_J1jYn80D6cY/SUZfpZs0xXI/AAAAAAAACaM/8H1ramrIhu4/S220/Leonard-Miniature-Square2.png'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/-uImdsgjXgmU/Tj-bDfNcjdI/AAAAAAAADek/kUOrumg0Niw/s72-c/too+many+pattern+attempts.png' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3325681978491628315.post-4694180832620946614</id><published>2011-07-18T15:56:00.002+08:00</published><updated>2011-07-18T16:08:08.375+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='qt4'/><category scheme='http://www.blogger.com/atom/ns#' term='qmake'/><category scheme='http://www.blogger.com/atom/ns#' term='debian'/><category scheme='http://www.blogger.com/atom/ns#' term='apt-get'/><category scheme='http://www.blogger.com/atom/ns#' term='dpkg'/><category scheme='http://www.blogger.com/atom/ns#' term='qt'/><category scheme='http://www.blogger.com/atom/ns#' term='kubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><title type='text'>Install Qt development tools and Qt designer on Kubuntu/Ubuntu</title><content type='html'>While you want to start development on Qt, you may find that tools such as qmake are not available on Kubuntu/Ubuntu.&lt;br /&gt;&lt;br /&gt;To install the Qt development tools on your Kubuntu/Ubuntu desktop, please use the following Advanced Package Tool command.&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;pre&gt;sudo apt-get install qt4-dev-tools qt4-designer&lt;/pre&gt;&lt;/blockquote&gt;&lt;br /&gt;As you can see from the Debian package management tool command, you are actually install the both Qt development tools and the graphical designer for Qt applications.&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;leonard@leonard-SX58:~$ sudo dpkg -l qt4-dev-tools qt4-designer&lt;br /&gt;Desired=Unknown/Install/Remove/Purge/Hold&lt;br /&gt;| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend&lt;br /&gt;|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)&lt;br /&gt;||/ Name                        Version                     Description&lt;br /&gt;+++-===========================-===========================-======================================================================&lt;br /&gt;ii  qt4-designer                4:4.7.2-0ubuntu6.2          graphical designer for Qt 4 applications&lt;br /&gt;ii  qt4-dev-tools               4:4.7.2-0ubuntu6.2          Qt 4 development tools&lt;/blockquote&gt;&lt;br /&gt;Now, you can Qt your way on Kubuntu/Ubuntu!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3325681978491628315-4694180832620946614?l=sheeeng.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sheeeng.blogspot.com/feeds/4694180832620946614/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3325681978491628315&amp;postID=4694180832620946614' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/4694180832620946614'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/4694180832620946614'/><link rel='alternate' type='text/html' href='http://sheeeng.blogspot.com/2011/07/install-qt-development-tools-and-qt.html' title='Install Qt development tools and Qt designer on Kubuntu/Ubuntu'/><author><name>Leonard Lee</name><uri>http://www.blogger.com/profile/05020703049155191468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_J1jYn80D6cY/SUZfpZs0xXI/AAAAAAAACaM/8H1ramrIhu4/S220/Leonard-Miniature-Square2.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3325681978491628315.post-4720802206149597868</id><published>2011-07-13T20:21:00.009+08:00</published><updated>2011-07-18T16:02:41.662+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='qt4'/><category scheme='http://www.blogger.com/atom/ns#' term='c++'/><category scheme='http://www.blogger.com/atom/ns#' term='g++'/><category scheme='http://www.blogger.com/atom/ns#' term='qmake'/><category scheme='http://www.blogger.com/atom/ns#' term='debian'/><category scheme='http://www.blogger.com/atom/ns#' term='sdk'/><category scheme='http://www.blogger.com/atom/ns#' term='apt-get'/><category scheme='http://www.blogger.com/atom/ns#' term='dpkg'/><category scheme='http://www.blogger.com/atom/ns#' term='qt'/><category scheme='http://www.blogger.com/atom/ns#' term='compiler'/><category scheme='http://www.blogger.com/atom/ns#' term='kubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><title type='text'>"You need a C++ compiler." message shown when installing Qt SDK on Kubuntu/Ubuntu</title><content type='html'>If you are installing Qt SDK available from&amp;nbsp;&lt;a href="http://labs.qt.nokia.com/2011/06/21/introducing-meego-1-2-harmattan-to-the-qt-sdk/"&gt;http://labs.qt.nokia.com/2011/06/21/introducing-meego-1-2-harmattan-to-the-qt-sdk/&lt;/a&gt;&amp;nbsp;page on new Kubuntu 11.04, you might get&amp;nbsp;"You need a C++ compiler. Please install it using the System Package Management tools." message shown as below.&lt;br /&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/-PLGezW5tzB0/Th2MtzOv4ZI/AAAAAAAADaA/uuWJQxva5OE/s1600/qtsdk.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="189" src="http://2.bp.blogspot.com/-PLGezW5tzB0/Th2MtzOv4ZI/AAAAAAAADaA/uuWJQxva5OE/s320/qtsdk.png" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;To install the C++ compiler, use the command below.&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;pre&gt;sudo apt-get install g++&lt;/pre&gt;&lt;/blockquote&gt;&lt;br /&gt;As you can see from the Debian package management tool command, you are actually install the GNU C++ compiler.&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;leonard@leonard-SX58:~$ sudo dpkg -l g++&lt;br /&gt;[sudo] password for leonard: &lt;br /&gt;Desired=Unknown/Install/Remove/Purge/Hold&lt;br /&gt;| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend&lt;br /&gt;|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)&lt;br /&gt;||/ Name                        Version                     Description&lt;br /&gt;+++-===========================-===========================-======================================================================&lt;br /&gt;ii  g++                         4:4.5.2-1ubuntu3            The GNU C++ compiler&lt;/blockquote&gt;&lt;br /&gt;Then, you can proceed with the installation of Qt SDK.&lt;br /&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/-Wf1n1TvvmO8/Th2NXmMowdI/AAAAAAAADaE/MX_SMobr-bY/s1600/qtsdk1.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="189" src="http://3.bp.blogspot.com/-Wf1n1TvvmO8/Th2NXmMowdI/AAAAAAAADaE/MX_SMobr-bY/s320/qtsdk1.png" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3325681978491628315-4720802206149597868?l=sheeeng.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sheeeng.blogspot.com/feeds/4720802206149597868/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3325681978491628315&amp;postID=4720802206149597868' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/4720802206149597868'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/4720802206149597868'/><link rel='alternate' type='text/html' href='http://sheeeng.blogspot.com/2011/07/you-need-c-compiler-message-shown-when.html' title='&quot;You need a C++ compiler.&quot; message shown when installing Qt SDK on Kubuntu/Ubuntu'/><author><name>Leonard Lee</name><uri>http://www.blogger.com/profile/05020703049155191468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_J1jYn80D6cY/SUZfpZs0xXI/AAAAAAAACaM/8H1ramrIhu4/S220/Leonard-Miniature-Square2.png'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/-PLGezW5tzB0/Th2MtzOv4ZI/AAAAAAAADaA/uuWJQxva5OE/s72-c/qtsdk.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3325681978491628315.post-4833333501042559474</id><published>2010-08-13T14:40:00.001+08:00</published><updated>2011-07-18T16:03:13.426+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='meego'/><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='unix'/><title type='text'>MeeGo 1.0 Netbook VMware</title><content type='html'>Do you want to run &lt;a href="http://www.meego.com/"&gt;Meego&lt;/a&gt; 1.0 Netbook on VMware? Here's how to do it.&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Read &lt;a href="http://meego.com/devices/netbook/installing-meego-your-netbook"&gt;Installing MeeGo on your Netbook&lt;/a&gt; and &lt;a href="http://wiki.meego.com/MeeGo_1.0_Netbook_VirtualBox"&gt;Meego 1.0 Netbook VirtualBox&lt;/a&gt; page.&lt;/li&gt;&lt;li&gt;Download the &lt;a href="http://download3.meego.com/meego-netbook-chromium-ia32-1.0-20100524.1.img"&gt;MeeGo v1.0 for netbooks&lt;/a&gt; image and change its extension (simple rename) to ISO.&lt;/li&gt;&lt;/ul&gt;&lt;div&gt;&lt;i&gt;&lt;b&gt;Enable virtualization technology&lt;/b&gt;&lt;/i&gt;&lt;/div&gt;&lt;i&gt;&lt;span class="Apple-style-span" style="font-style: normal;"&gt;If your computer supports virtualization technologies, enable it in the BIOS configuration. Allow virtual machine monitor (VMM) a.k.a. hypervisor to acts as a host and has full control of the platform hardware.&lt;/span&gt;&lt;/i&gt;&lt;br /&gt;&lt;table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_J1jYn80D6cY/TGTWihXD4TI/AAAAAAAADTo/6nEo_8Fpt00/s1600/IMG_20100813_125632.jpg" imageanchor="1" style="margin-left: auto; margin-right: auto;"&gt;&lt;img border="0" height="240" src="http://3.bp.blogspot.com/_J1jYn80D6cY/TGTWihXD4TI/AAAAAAAADTo/6nEo_8Fpt00/s320/IMG_20100813_125632.jpg" width="320" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class="tr-caption" style="text-align: center;"&gt;Enable virtualization technology in BIOS&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;i&gt;&lt;b&gt;Verify your CPU supports SSE3 instructions set&lt;/b&gt;&lt;/i&gt;&lt;br /&gt;Make sure that your CPU supports &lt;a href="http://en.wikipedia.org/wiki/SSE3"&gt;SSE3&lt;/a&gt;. Use &lt;a href="http://www.cpuid.com/softwares/cpu-z/versions-history.html"&gt;CPUID&lt;/a&gt; to verify whether you CPU has SSE3 support. Note: Intel Atom or Intel Core 2 CPU supports SSSE3. MeeGo will not work on non-SSSE3 CPUs.&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;table cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_J1jYn80D6cY/TGSfZf47o_I/AAAAAAAADTg/us6CwBYbF78/s1600/SSE3-1.PNG" imageanchor="1" style="clear: left; margin-bottom: 1em; margin-left: auto; margin-right: auto;"&gt;&lt;img border="0" height="304" src="http://2.bp.blogspot.com/_J1jYn80D6cY/TGSfZf47o_I/AAAAAAAADTg/us6CwBYbF78/s320/SSE3-1.PNG" width="320" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class="tr-caption" style="text-align: center;"&gt;Verify CPU's instructions set supports SSE3.&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;Next, let's works on VMware. I'm using VMware Workstation 6.5.4 on Dell Precision T5400.&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;i&gt;&lt;b&gt;Create new virtual machine&lt;/b&gt;&lt;/i&gt;&lt;br /&gt;&lt;div&gt;&lt;ul&gt;&lt;li&gt;File | New | Virtual Machines... OR Ctrl+N. You'll see the New Virtual Machine Wizard.&lt;/li&gt;&lt;li&gt;In the Welcome dialog, select Typical (recommended). Click Next button.&lt;/li&gt;&lt;li&gt;In the Guest Operating System Installation dialog, select I will install the operating system later. Click Next button.&lt;/li&gt;&lt;li&gt;In the Select a Guest Operating System dialog, select Linux, and it's version is Red Hat Linux by default. Keep the default Linux version. Click Next button.&lt;/li&gt;&lt;li&gt;In the Name the Virtual Machine dialog, give a name to your virtual machine and select you preferred location for it. Let's use "Meego 1.0 Netbook" for this example. Click Next button.&lt;/li&gt;&lt;li&gt;In the Specify Disk Capacity dialog, keep the default settings. Click Next button.&lt;/li&gt;&lt;li&gt;In the Ready to Create Virtual Machine dialog, uncheck the Power on this virtual machine after creation option. Click Finish button to complete the wizard.&lt;/li&gt;&lt;/ul&gt;&lt;i&gt;&lt;b&gt;Use IDE instead of SCSI for virtual disk type&lt;/b&gt;&lt;/i&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;You need to Edit virtual machine settings.&lt;/li&gt;&lt;li&gt;You should be a device named "Hard Disk (SCSI)" and its summary of 8GB. Select it and click Remove button.&lt;/li&gt;&lt;li&gt;Then, we need to add another type of Hard Disk to it. Click Add button you'll see the Add Hardware Wizard. Select Hard Disk, and click Next button.&lt;/li&gt;&lt;li&gt;In the Select a Disk dialog, select Create a new virtual disk and click Next button.&lt;/li&gt;&lt;li&gt;In the Select a Disk Type dialog, select &lt;b&gt;IDE&lt;/b&gt; (instead of SCSI) in the Virtual disk type group box. Click Next button.&lt;/li&gt;&lt;li&gt;In the Specify Disk Capacity dialog, keep the default settings. Click Next button.&lt;/li&gt;&lt;li&gt;In the Specify Disk File dialog, keep the default settings. Click Finish button to complete the wizard.&lt;/li&gt;&lt;/ul&gt;&lt;div&gt;&lt;i&gt;&lt;b&gt;Configure the processors&lt;/b&gt;&lt;/i&gt;&lt;/div&gt;&lt;div&gt;&lt;ul&gt;&lt;li&gt;You need to Edit virtual machine settings.&lt;/li&gt;&lt;li&gt;Click on the Processors on the left column. You will see Execution Mode group box on your right. The default preferred mode is Automatic.&lt;/li&gt;&lt;li&gt;Change the Preferred mode to &lt;b&gt;Intel VT-x/EPT or AMD-V/RVI&lt;/b&gt;.&lt;/li&gt;&lt;li&gt;Check the &lt;b&gt;VMware kernel paravirtualization&lt;/b&gt; option.&lt;/li&gt;&lt;li&gt;Click OK button to complete configure your virtual machine.&lt;/li&gt;&lt;/ul&gt;&lt;div&gt;&lt;br /&gt;&lt;b&gt;&lt;i&gt;Install Meego&lt;/i&gt;&lt;/b&gt;&lt;br /&gt;Use &lt;a href="http://download3.meego.com/meego-netbook-chromium-ia32-1.0-20100524.1.img"&gt;MeeGo v1.0 for netbooks&lt;/a&gt; image that you have obtained earlier. Edit the virtual machine settings to use this ISO image.&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;Power on the virtual machine. Proceed with the installation steps from &lt;a href="http://meego.com/devices/netbook/installing-meego-your-netbook"&gt;Installing MeeGo on your Netbook&lt;/a&gt; and &lt;a href="http://wiki.meego.com/MeeGo_1.0_Netbook_VirtualBox"&gt;Meego 1.0 Netbook VirtualBox&lt;/a&gt; page. Thereafter, you should be able to see the &lt;a href="http://en.wikipedia.org/wiki/X_Window_System"&gt;X11&lt;/a&gt; and &lt;a href="http://en.wikipedia.org/wiki/Twm"&gt;TWM&lt;/a&gt;.&lt;/div&gt;&lt;table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_J1jYn80D6cY/TGTBkrXyNQI/AAAAAAAADTk/LxJZWceCdGk/s1600/02.PNG" imageanchor="1" style="margin-left: auto; margin-right: auto;"&gt;&lt;img border="0" height="360" src="http://3.bp.blogspot.com/_J1jYn80D6cY/TGTBkrXyNQI/AAAAAAAADTk/LxJZWceCdGk/s400/02.PNG" width="400" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class="tr-caption" style="text-align: center;"&gt;X11 and TMW on Meego running under VMware&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div&gt;Hope this helps!&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3325681978491628315-4833333501042559474?l=sheeeng.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sheeeng.blogspot.com/feeds/4833333501042559474/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3325681978491628315&amp;postID=4833333501042559474' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/4833333501042559474'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/4833333501042559474'/><link rel='alternate' type='text/html' href='http://sheeeng.blogspot.com/2010/08/meego-10-netbook-vmware.html' title='MeeGo 1.0 Netbook VMware'/><author><name>Leonard Lee</name><uri>http://www.blogger.com/profile/05020703049155191468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_J1jYn80D6cY/SUZfpZs0xXI/AAAAAAAACaM/8H1ramrIhu4/S220/Leonard-Miniature-Square2.png'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_J1jYn80D6cY/TGTWihXD4TI/AAAAAAAADTo/6nEo_8Fpt00/s72-c/IMG_20100813_125632.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3325681978491628315.post-879273073642826149</id><published>2010-04-04T23:29:00.002+08:00</published><updated>2011-07-18T16:04:12.913+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='virus'/><category scheme='http://www.blogger.com/atom/ns#' term='security'/><category scheme='http://www.blogger.com/atom/ns#' term='cyber-security'/><category scheme='http://www.blogger.com/atom/ns#' term='usb'/><title type='text'>Infected Autorun.inf file</title><content type='html'>Found this Autorun.inf in a USB thumb drive. Can you spot the differences?&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;$â  O³¤Ù Ë›rfÎ&amp;lt;  ò@šìÑ¢ &amp;lt;§xz­-]-Ò ­q=ÚüÇ$  u!}$æÀ s¯ÎÞïÛl^D¶ &amp;nbsp;&amp;nbsp;&amp;nbsp;  ·ý  §J³Þ³ëP9ÿ r Yc¨¾[ÞäT Å û³ )P"ÙY A³Ý¥‹»&amp;nbsp; J©'k» &amp;nbsp;&amp;nbsp;&amp;nbsp; Ê­Rÿå ¯^¡ t €‘ M °ãçÎ·“³öþ V&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;eý ‚mfZA¦wpæð¿ Ó…éäOëßE (By 3È‹¯Yq´ƒåEÛt;–¥£ÍÙcüu)lõûš"É « —'6Z½fû&amp;lt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;; Ö›i†mÅ $S˜‹oŽÂÖ1  ç*  Ã€ Œ¯#¬1™¿Í  ˆ²ª?2 9–mªÕ;Š&amp;nbsp;&amp;nbsp;&amp;nbsp; V/Û¹pL‘ðÜtKh¨…Ff ÷–.:-1êi‘† !»`»Y±\-„0†[~ÿâ$E-g2¨¥Æ0Œ n ¦"ãÕ©&amp;nbsp;S@[£DögÝÀÑ¾ŠÖK  Pî ’ x| z:x0ïÕ œS0oÊ 6˜ïÅ’u'&amp;nbsp;&amp;nbsp;&amp;nbsp; Dò ¬Ëµ«”ÕËg¶ƒŒó·Š… THŒÄ+jVè1 g­&amp;nbsp;ÙfŒò:0ÂˆRü.š:/ú:pý­'‘Ë[8A‡3AíÏ ×]ÆRÙNP?žcc’^û8 _*…ù†ÕWIŸVÍC ¦ uåNb‰bž,¹Ã…â§\‰4 &amp;nbsp;&amp;nbsp;&amp;nbsp; ¨Mv#Dœµ f ðv‹ ¨ãA,n HpGk*2ÁÒ™í&amp;amp;½Ö© x|&amp;amp;Ñš &amp;lt;ùªÐµØÃÒÿY{0Ðq` Q‚Lª/—2 ¾¼ñ®Œ  ƒ g˜#š-Ê^Ñn!Œ&amp;amp;[ÇrŒ_FÙE _  €žt b¦Uã9”AûÀðŠÞë¢ãÏþ#"f ç€ŠÛêúß8déP\uÃZlý´£ Áó&amp;nbsp;"oÖ7”x Yüb¥ç­ ç ñ+æƒ&amp;nbsp;&amp;nbsp;&amp;nbsp; Â ¢I šŽ¾Ðˆ {Ãöµm´\kªˆ×ýÑ&amp;nbsp;=ÐÖ'‰ ²î–¶Ü” —Lï1 '&amp;gt;AlÖ•QªÒc&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;; óŠ¶1¹Ü¢ÉaXCÎóÛ4h†Ã‚¼Ö¨÷þ&amp;lt;{'ÚC, ªÂ‹R F p#Hs ³J-ð­t  ïø@ß÷rv!¾hŠ2£àÀÇ±=†u5!:Ûm4±V&amp;lt;ø–R )A ²Èî  ÈlK’¨„WxVyÀþ ¹G ànò&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;ã5ŸÚYx£ü˜ ŠqA5¥jâm³]Éä‰ª?ØÄâ‚âJØô% Ðv—'œÑÑ ¿n_ &amp;gt;`^‹  —Í -xÑ*Þ eÁ³ó K¸wã ;o‰Nì·LiÐ %VJÙeUŒé÷x býq(&amp;nbsp;&amp;nbsp;&amp;nbsp; na%L‰‰ *ÿ¥„Êû[ˆÒ4!&amp;gt;ü¶¤:…¸ä¶ufVì4&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;æeVÃMÀ…¥oZ¢AÄ( Úê ¤¡M¬5ÂÔ Y²ò²TÈ ¤ vs[ŸCJÑhF˜´Ét§¯ Â‹ m°Ö³ÚT,!Æk°dXÈ&lt;x¼f;t ×#}m˜hë§qæýñìaμ©c^‹ák”pt="" …p,="v=¢"&gt;&lt;zê&gt;Km6Š°ç A(Mç ¿&amp;nbsp;&amp;nbsp;&amp;nbsp; m2€ó|š3A&amp;lt;ÈUèïúf¨ JQØÀ,ŽSàë*-ÂÞûsì  &amp;nbsp; iœ[ú  P I|ˆ½£ù¥w á* ·!7(4{jòzÈ ÆMÁÇª! » ûµ&amp;amp;ÈÒHmò/°Ö¨Ù »Uˆhó·&amp;nbsp;o]ß-¯R·÷73A‘% E´AîÀ˜š†Û‰ züî†k_=ÀQÈ…¼x÷Î}#àfJœ  Í˜7tø †Ææ&amp;nbsp;&amp;nbsp;&amp;nbsp; P¦ ²u ÝÐ—–ÎúÕÝé·Ò[ñq¨¿•o1Ð˜8HBO«òæzü SÊW øœcˆWñ˜| ˜”ËeA!¢±·_ s¨½r ¾Î~ô”Õ*U8Wôt$~;úšÉ,û ¢cÝŠÿÊ«²xÂ¨: )8'ªë_Z„-V¬7&amp;gt;Ûx 5tÓÜ "œH©¢ë éÃ#ýZCÁËðƒÜ¥üG–2ù.‘5A J½É,NÄ¤ ‡ ¹ZZ #Æú`œ›;šÏBýàÍ0#*„ë†ºò~ÎŒn5’Nsù­š}C[š¥dM¯ý”!¹. üW¨°Ì9~t%A&lt;/zê&gt;&lt;/x¼f;t&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;[Autorun]&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;; !:®hjKý &lt;tlvñaâp½dú|äg~oa´t‚ òn="" ÿv“xõ8¹ºzw¾“=""&gt;(BÎ³ž:’sã‘-kñÎÄ\VT½ÿî&amp;gt;9ÙÞ ÅiQ QÓ`ˆ(Åé?‹X(dÚ±bßôÚ¶0 g güû‘ñ9bJ¹ŠÒA ­ÙuTæUØÎ¼ø¤¸wúw©¬+¿ fó¦}jŸ­Þ 1 Ô+¸‰/†A)¡&amp;gt;ê ›ÒƒJ6FòÁ°×8ŽÀ "ÊåN&amp;nbsp; }C(«z@ý­`)œ  P™ÿ¹°HAzž3é¥ äïZ‹ µŠ0^-×£ì¯Îá&amp;nbsp; ¯[‚‰y ‚ 6Ð£T-ù­¯¬PÀ œX fá%ç[  ßì]=*êA oüœ/Ð‹~T Av&amp;amp; Þ©0Íf’ÈÓT, Vçµ7râ%c  &amp;nbsp;‰ðÜ~ÿ?„^ ³h J:ûA€ A®&amp;nbsp;~¤}S× Ä*ËQ Ý0Ù\²§ÑPT™?&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;gt;µÖòÊ¡•—l:O™&amp;amp;šï}¬ú^#n‘=¢) ¹NÛOýÕhB €áó¢’¦Iâ´M k&amp;nbsp;Š’=M% È\bÙ  ßñÐ8r@aìqÙ‘šg&amp;nbsp;ýyüT4ÜÉy°×A!í\I[Àrjù‰‡æ~\:Û–‡/Cí îÛž‚ Vâ‚dì^„R-y,Æd 3 s% 0ÄN  áV¨Pr=Jî¾íž'0 Q ü€&amp;amp;v¬)+ ÝÁ  O }Zq ‚ žÃÒ JAÏA &amp;lt;Þªhò*±g`¦†áƒîa- åušy_òðjýaY³z¾¿ëÆ  ØxG µ™aG‚ÍµÃ W:ç¯¶Ð .ó³PêÄ·gU&lt;/tlvñaâp½dú|äg~oa´t‚&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;5? ãÎ¤D˜ ÙÊ&amp;nbsp;&amp;nbsp;&amp;nbsp; =; D€UÖG( ±`r¼÷¾÷{Õ´â{KK lä† |ü   \_eqÙ ìÌ;¨Ýž$³ÑA|G¥†fŸÙgÑ  ¿/½2´¤N³ás?FÌ „Û¿©òm§½ s;fY#Iyô{Ka   ›¬=Ô×&amp;nbsp;~ DMÜ+éuYÓAêPfl5 ^ìV³ßúa7E¸—&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;Õ« WËGJ Vci -£W&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;Œj‹"}JU 0qO!¤{Ð5­[‚ í°P Ë™×2€BŸ×Ã¡…ÃŽ”ÑªjáZA  älúg ÚO¸Çü,±Ì’Ã Þ'ºb‹k.?‰Æ¸&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;êX7² vx¢g]ë¿ ³A‡ÄÉ—Î–t Þ†¦ ÀWÈMÚ\tOV °ô$ âfµ~!B»¨ S½êÑRcŒñg&amp;nbsp;‡”Ì3&amp;amp;ÌéÒ“UtÓ ÿ3¦šmŒ¤˜8åôê½²½#$J#ÿ}Yñ u´/zÉÓ î…&amp;nbsp;–Ù •j6™ÉI @Áùmï ãi¯)•³:S iA…û õµª‡;ÕQxåÉkË TvÃÓwj™V“d ‘7‘6@SéˆmÈˆÆÐ”Å®ÓGf`G Kï/ ·Â¯M — ŸÀmÊº‰¶m á­G ÌÎíÄ©9£ªw"e õh R[ #œH»XÆK3ÏaºõþI7‰®µ l9À¢’ Ä½ö@æLN±‹ìÙh-ç‡ 6 m[0…zê&amp;nbsp;}ÙÏã –§&amp;nbsp;Ñ8ùîTÔ&amp;lt;žxÇà~Gm:­Ú´ÚVàbP™&amp;amp;A?AÔ÷fW*­\HÇ¿£¡ ­FŽhóžn&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;; Äç_`‡P òM ‹?p/AWW   ×®c9&amp;lt;àâ»f#6²‹@“Tfû¨S_ÖÞ WVR÷˜Ðk = =  •,2Ëß§¥rè²-ì ÒT,lì¬¿ ÔA §  „tÊõ+‹Ôså½¹/26Sœ!E0Ü 7&amp;nbsp;&amp;nbsp;&amp;nbsp; iz -;ðèb ‹ØÔêI—®` ã“¸÷§CàDH#ÀØŸh3; lJ&amp;amp; %ÍïzüI%KÏ|?{k 4¸^C‘‰Ð^¶ wÔ » ®v âjvØ. »æ´  {¿I8tì"*Ú@$‘&amp;lt;–ÕiÉÈníïY4w3&amp;nbsp;Æõ ]Ö+›ŽÖ£²P ,~ 0[ç° «t d&amp;amp; ê@Û{|Æ~&amp;lt;Ý¼"Y›jF#¯‰ÒÝ³ Ó¡íæ.áK\ó ) „Âˆ`ÝñAû±nÃõF¯Ol u|°ýÒ &amp;lt; c#Þ•"ÐÒFÔU†¤¤6¡Š2DøOH-å2Vš›¨ ôÎ $Ž´™!ë h ÇŸOcé×ˆ±}”‡ µ™ Cø°$°uÆ€7ø4ÖÍw°ÌqëÄµžhãO¥ `IŽØ ¨z?°SÈÄ'|$ Få&amp;nbsp;ž H©ÎÚ7éè­”Éï»“ éAXr ¼o½³r$ÓN Ñ¯ XŽ–¦0ˆ¤6ä^È  Ky u…Nlù.ÞÂA=Kô ±ë­{†Á‰;¢“²…²DŠý š ®bÐWj«Œ…&amp;nbsp;WfÚÂimÚ ·ïN±*åf¾Òçmª¶=Ð7D¿#~®  [lªa  œ XU&amp;nbsp;¸Æã6Á‘?*Þ†~Æ©^øÞqú!228h-¡_“)éCìµ÷24€‰Dæ/º'@AAß §u&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;$ˆ¬¡ºl• JßÊ1 À…0W r¥†Zñ ¬.ÁòÏbV{Åv˜¿7v†Jû7 \ù ç¿ô6È˜+‡^:ñJ ±j”ZCW¡Rú¯9ä®ÙŠ¦ ¡Èb:½*Ó Ú&amp;gt;Pë½³†ëÉÙÙ‘žŒuç¬Ô,5GÝ˜ ë˜wÐæ– ‡²&amp;lt;ºT]÷yDâ€å¡#úÂ «à-CKVý X· îMýØy&amp;nbsp;&amp;nbsp;&amp;nbsp; ±EÝ1u—Fò|@ßn°s7 Êçn  ,r³ú u¼`µÓ P³ô&amp;nbsp;F ê+ùçúú©Òµ… URù´©&amp;amp;Þ¼(X;9¶R ×ÐÑž\ö”8ø»f¦ºš z |Y$’RÉ²P x¤Æ ¡± `Ñ²#(µSƒ1¤¹¤¬@Ü©Ð ‰×Øfu;ˆEÅËpG )  h¼ ( P&amp;nbsp;&amp;nbsp;&amp;nbsp; ø¦äóž¨S˜Õ$S"W9E¤+ 1 Ò3*% !¿˜4,î0‹ÓÙ „h¸ên ûmÈ± 9* ¥OÈ!ËÌ  2X!&amp;gt;4Êøª^ ·¬û`¬¯+ZåM ñÖgÕÝ&amp;amp; [à@hvI“Æ§ ÞÕ¡®P° ËIÞçþkó/  ì¦¾.01 y³ñ ïª9_t?Y¦é8]0P Úµ áð ­,žz o3°f Ç”Õd;½j% é÷Þ- fv  ˆ¯€Ã–3=½ŠTô‚µÇ!\¯¡†´hïž¬; µÓ± 5Š…Õò8ƒ¾&amp;gt;GÞÎm¯Ê„ËÒ1F›o˜ó XôÍ§M³téäþ2à 4TéúÒX ÕC Þûb4 ”  œÒF3ÞéÞ»ÑÇÇ ˜ìd bˆÜG áùQÎÒWi5v&amp;nbsp;&amp;nbsp;&amp;nbsp; ®S&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;¸nTöP{  X ‹izðØô.þqŒÊñU¿økàýÞÍÁÈv&amp;amp;?xËxîéŒO{¯kx"ëV=Ð¹ „ƒK[µ‰9±Ï4@ ç(å*tð›gKJääQµè&amp;nbsp;áti 5ÿ£°±¥µ™aK&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;‰ëÏm«L y[½    Â7ðÏÁ=”u &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;hôŽ Q&amp;nbsp;&amp;nbsp;&amp;nbsp; j¢û] M‹æ¢@q q®[.P†™¢] ÝßMJ«ÅÇØ}i+ã¤;ðÔÚ:Áä Ty[Êwœ:Œ‚ÓU“&amp;nbsp;ÕlñAC+ ’ÞíÏé&amp;nbsp;AŒÍ«ŸÅ ¢&amp;nbsp;&amp;nbsp;&amp;nbsp;   Cy"½üš`œï Á:%„{Ù¥•t *ø#éÛ.o;&amp;gt;ÏüE&amp;gt;' ê4¯°mçß~‘Ecjæ ƒG—kÁVÙ¸&amp;gt;îŒUC¹-´{ ¿ü E¥ $ eëL U5±ÛA2T~¯\5t&amp;gt;;ReAé*â©a*ýù j¾if_J’&amp;nbsp;ð»Ôþ[× ñð&amp;nbsp;bÂŽÓƒÃÑ ñŽð ¤]Ø™™’äcÔ0/hªá.0ò®Ú ÚšÛûÔÞ [ þ8BSæ?1ë‹/Zc$ÍIÌ¡ÓbÈ C ×—OQ³µð¾4—ë®*ú¼&amp;gt;°J&amp;nbsp;&amp;nbsp;&amp;nbsp;  I_4.à# ÓN– ¦;õ¯]ƒÀÑuxž[GWtt  FêÜ~)#ÙV“üÓ\¶k¾zn¡ ÄÓS‹˜ë© ¢)M—EøÈ‘$0³Jñí‰A‡ Hw¸ôC¤¶Azú¹’×&amp;gt;xþEåÐöpP(r r­ X~ÍmI8-!´L´ñdMŒ›ŠË«%þ Ô Ú_ý•³ ÌÑ,*Þ&amp;nbsp;&amp;nbsp;&amp;nbsp; †ãû éX ¶Ó&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;  ¾ß›œ{SÕðíÕ÷÷T´Mg‡O™­ž æ³À-×Uµ&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;yË‚þ{ w£ &amp;nbsp;dP ÿ"ñ¹Qkx‰ÐG ÇP±®ÉÐ8pà±+ö™o/] ìDÌMsR£¸å;GNj! ?‡Ì. Ù8²Ó‘¾QDë ]*Ð’h;Œ9ÿIw¿•óÌ&amp;nbsp;&amp;nbsp;&amp;nbsp; ¥ÚtŠ ›S.FS_3òœžÇßõ¦Ê(Ñ³IHfÈëŠJà&amp;amp;êç h¢DWÂŸÜ‡Óp¦}jÄ¼Zû¤{ŒÅùí g§º[Š¥ }z¨  A@oûŸ&amp;lt;ÇW @&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;&amp;nbsp;&amp;nbsp;&amp;nbsp; ýÎ0/á jåRVMTd X-{ï)Ê¥oÒ§ »@?¾ä¥=·þ­SŠ6•RQ•Ø 9/  ¢¶v±JLÔ?™j:   &amp;gt;y"å6ùIb±U ¢ò ambõÃjfb•;µ&amp;amp;¤ðÛ…Ÿ9 ý³Þ8qYºžúÐÓÏrY(;®$ x2ËØóc±NËëãi#ÂNx‘ÆE'Çwí”î(ÇœS W ³ .B¢óÖ÷bð‹šÇ Á°}TÝàŽ¯G ­jDaTŒUÃ¦ô çþ¿ Ž~Ë Œ¬µ   pZôÞê  *ôŸûŸ/oóÜw    ¿e¿ïu5œ8ƒ.m²Œ3ý$è &amp;nbsp;)H6/ÍsÇ&amp;lt;’OCÒÍäŒÓ/ó[ï ÂL. Ñ Îeð  ôE¤ ÖCtñ»^ŠÚïqúží7 ¨&amp;amp;›¼&amp;lt;è‹÷@òÕ½6xÀóðI&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;®R@$˜ì&amp;gt;êa¨×T7ZZ®^“O A¾%Œ¹ª‘-â  .ÑÁ p\í™ª¦-”&amp;lt;êWAþú f:š»à³ŸrÕç9µï•1¼U%£]ãÐ éÍ{ó7ÃÂ ša&amp;amp;Ì¿Ú§ ±Þ¥£ Ç,á¨;RÔš*ý!ŒÿR¨Œ ¤â ¹â  l&amp;lt;; ú$·ˆ×jæE§7§eì£Nj?Dp~Ÿ €ìá³³DœŒ -  ‰&amp;gt;AŸƒ ,ÙÀ€n× »‰4[8   Y‘&amp;lt;&amp;gt;„ãrüW ßq­]üÙe£Îp¦`N ¢JŠ ¯jìÛäð½@¯=³U|=Çm9§!*®É7~lô 2 G¬¶ÊTB£›Q4oA‘Ç¤²…;õ1[HÑ ì½£xù/«»¯Y  @S'Ê8ÛSd¦åOK4ú¥s ¥ª84À!D—ˆú@ÌõKNðX–æ}My ÏÇRŸiAK ;Ï xäLKEVB0Xõ¯¾w€kFJˆO&amp;nbsp;&amp;nbsp;&amp;nbsp; òj1É[†üM9²• æxÙ¿¸Áä~ˆ!ˆL—ÙÉ²T„ä^ß «A š ÇÔ¡©·nRA þ™/”   {`Ù¦]ÛI™³°; w?Xc£;UýâÂ¿ö$rÕýDŒ£Žk8Ç3™ä(‡É°Ì?N®p Pjá¸ÞMÃ­´Õ  ´:b è_ªf.Ì†ÖGð  'AäeH‰ú4û¿Ýt†Ñ &amp;gt;i| Îë–× ² ©¾ ÑÖõ­PêF  ƒ1Ìò ¹ý®™ïÙ$å»V§tL·¦·Bü; ”&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;open=~tmpboot\~tmpbootx.exe&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;^Í4ì$å¥ië\¦THéüÿ¤·aíSDíOŠcþñ0oìËÛgÝ^sË |±“Ö×¡*$ &amp;amp;A ‚PÇ# Ï¤Àä 7)@”½ö#ì £€¹Rly7Æ""m£p"¬Ž3Ö‹ãÖ‘6(*ày+JZ A\&amp;gt;«·q³£Ø’œ¦&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;íñb)  –áJÏ27zcæ…‘ê¾å‘ùo’#/Ä–¶·M$ ­¯9wDi(‡‘û5œ @Ìhì{çVYìzá g÷ MØkg·¢l€Ý° «âÇI{à~YA  ± iEE…œù´ Xº:€k ›“&amp;nbsp;&amp;nbsp;&amp;nbsp; ¢jAHÈZDÂ¼Ñ/&amp;nbsp; NÃàò› Dý7T/¡&amp;nbsp;Ïˆ’«3O&amp;lt;• #{|Üõ­¤+AU+ùÍÂØ3&lt;k¾íg.]¸4¼ ›èïô=""&gt;&amp;lt;ô· Ò(êgø'å¥av0 S?UÐ yú|""hqÊâjƒ4Xp844áp2 »Ò ÏQ' {|øã J &amp;nbsp; ¾VµlC¤©&amp;gt; É’ …®ÐÅ :à’Õf€^ó­í¦Ê\Ê:$}® Á &amp;nbsp;&amp;nbsp;&amp;nbsp; Š£]RÞè©ü%R’'´&amp;nbsp;&amp;nbsp;&amp;nbsp; CrkwÌ•FnÙG s¹ÿvH‡+„ÓhË(¾8Ñ#$hoÐ:þ Ÿ&lt;/k¾íg.]¸4¼&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;×ñ¿%w“&amp;nbsp;†'Ç sY-§Ò»¶Þ„NÀt7TØoX&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;jë£p  ~ò©°YñLG ¥ Ê1$  ]‰ÏÂ RÖ ›&amp;nbsp;&amp;nbsp;&amp;nbsp; P= è&amp;nbsp;&amp;nbsp;&amp;nbsp; Ák#ñÌÆ\7j¸ƒ Ê— †$ßŸ…þ(æ(îÁ\»ÂÙ—wÏš{®9/R· JÀ¡”e‰4£{ ¬1éì1Ù=%š% l,r³²UB…Ñã8îTMu ÿÛ™Qs‹úYùø|Sc^Cu†Õž_Âßé‘S«¦R­RŸ¹Ÿ !!ö¿m 72 DP&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;„'Å&amp;gt;aüvslg|ˆ'öAŽ§9zã¨Á§ uð×š ŠÌž×&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;º*ä[Ú:óA Ÿa|èÓAŽ¹ð´ _ë)/ ]´tp`œ }­Þ•tÎ 8v¾wö[Ó&amp;gt;Ý"  0³…:èš²:ãü X½!Z+Z&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;Úd2 £èÿˆBŽ¤ÞßÝôa;ŠœX¼*ñP|ÂùÙ ‹2.&amp;nbsp;&amp;nbsp;&amp;nbsp; nê ýõ&amp;gt;¬ƒ¾ù'ÍŠç6|¸pê¸½}·Â$}µ,¥«‡L¹/nW$¥*ÀâÑ O°Ê‘TångË7Zh–¸Õ&amp;nbsp;&amp;nbsp;&amp;nbsp; MÒÌž&amp;gt;T Ão[X }«sBw9£ßÏ‰½MæÓ3|1vJ˜‰‹zŽÑ0VÇÁzA,SV : £O&amp;gt;Vø vå­ã&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;w*¸Õ°  :E N“ü2€E9xÔ`/(•ë¢ò?Y£F¸œ\ˆŠð·Hò ˆ?} Ï8Ì¹Z„89ÅäÝ0ýjÇB&amp;nbsp; .uAÄ &amp;gt; á JÞ”?$å«;ýrÞÜÒ ¿P(ÒdÜqU+³¥JïÜ^ &amp;nbsp;&amp;nbsp;&amp;nbsp; všß  ©p›Ý¢¥"¹c CýÕÎCx(MÌx-%š-cnúD&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;Á  d­ægdkÃòJõ×Ëå7 h¬¹ ìlg/¨u /óû5yV¬˜üvU&amp;nbsp;&amp;nbsp;&amp;nbsp; Zé»- eA0ÕåT„¹A¢Ð\E^œAN“î”Ù}Í¤"÷Aš¦âŠÐ§È|F=óå  Ú­V„„d ;:û/ (YùÐÄ(Qçéqe÷&amp;nbsp;&amp;nbsp;&amp;nbsp; º”#15§i ²ÊÝ C&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;d0 ëÓ“³ 4…Lá[u © öÜñ§8ÃD&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;‹HŽ”±ã   ÞA  wá¥áJ^B €,Üœ6‚ÑÜ³ÍŸxöQÉ   AŠL&amp;nbsp;&amp;nbsp;&amp;nbsp; sê Õ ¤Ôn£y ]j)»ìîž’ÎÇæá JNígJÕ.•ÓŸÛÃ  I¯" d4Ò»˜|Ñš Ý·…&lt;egªp×êi¨w]g~¿ *r="" vq2œ½êe«à´­±h¦òã="" ž(c="£œ"&gt;&lt;/egªp×êi¨w]g~¿&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;; èØ“Þ2ÌirNëãE(Tî.w"æŽ|§\m5¦PNßÓ Îè©E:dkKj ‚[®0² žÜt’LÉ­ ä‘ïJÜåÐ{ » TA¶ž+€+Èh®TÕ r 46æúb&amp;lt;¶–A¬ÈFj  JžËÃÌ‰õÖ§|¯l;jw] &amp;nbsp; 7›ÚÔñp^}S²÷4Ü *ÌØ † s&amp;nbsp;&amp;nbsp;&amp;nbsp; zøê$ïq:… Íè&amp;amp; yŽ—ª"œÿÏ*3¸tF8`?¥”L # ç­ú&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;0ÃçÉg9ã5âþøð=fuËv x   ûH²¹µŒå¢„‰‡!ÕQ±1á &amp;lt;ÍUéÎO ’û 7 ‚;Â¦îñÚé~Æ ŽA¸£†àµ:¦yLp=èUštcgŸ6–€÷Æ~—&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;ª ^&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;icon=%windir%\system32\SHELL32.dll,8&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;­°…’m —†®•’¿‰Ìó 9 s®ÅíÀ  ´&amp;amp;™ENÚãñÎœõùýÜ « ~2$¤m zƒŸ£ð =5µ'•T¹›Ø&amp;nbsp;&amp;nbsp;&amp;nbsp; öÇŠ¢Z”ìê_A äæL£&amp;nbsp;&amp;nbsp;&amp;nbsp; µ#hr¬ Î{Ò‡ÑÑ É  - Ò$\ÿú+a¶Ì$íóQ³ Ì uÞOÜ™¢ã_ié©bƒ% À[2Ò§8‘«…€9v&amp;gt;¥õë¥Å ¿.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;çà¬h'šÏ½Á £üÊRA¯…üo—ÔL¯Ã kÌªA‰ý©²óbï‘œ?Nt¶µEŒ×y~A ÁŠV3r•(‹mv l¥b¿_ )”&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;; g#³ï_‚3Ûwûô“¢Ž ŽF ÈÂ 9 ªUªŽ;êôêˆt» ¨¾æ¡ š&amp;lt; cÁÕ‘ R¨XmOm_è¥vöhY$VÄdV&amp;nbsp;&amp;nbsp;&amp;nbsp; ïjÍ‘ Þ A.g \â  ›”R›ÁN,—kÆpl§ÃØ¾«Öá âh}()¾Ë œþÌ{A.«» Až=d¤}”L.´d-  S¬èÏð¸    íHžn¾¼ 3Ö&amp;amp;Î€fP ì‹Ó[¶wD.aõ6.#‰¾~iYè`ºÑ&amp;amp;ˆŽz¼ôu± Þ­G;˜D ”RxŒš#°m&amp;lt; †˜OµÈµQAÕ?õ¯GP ŒW‹Ì &lt;t í¡°óí®‡€™þã-a="" ž2èaã;¬êãeø="" „­=""&gt;&amp;lt;–3ËÕ¡ü@¯¿Á®¯.Ñf†C ™&amp;amp;føËø'D°²ŸÀ(Þ±©Uæ-   Å˜¹ h­NQ&amp;amp;µ }±,K %ö=ag9;Ï ²ìÂ õy-€‚û  $ä· ‹ QŠEù;6\|Š³¸"?ç5aMp á&lt;/t&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;¤u«°~ø-¾é†Eh#™mí’›&amp;amp;¼¹ ýÃú¾‹Ãp»özŽù[Ð#”w Ê9st«¹Ó}m´õOýòcb‰=Õ4(„t‹óJ¸ƒƒ¼\DƒAz  Øò&amp;amp;ß¸ ìÖÿef  ¬Ðâc+‡Èµ ™¼ ak6W¿ãKÊÙÎ š‡¿›ú 9fö ³.«Êì î ×! KÏ ² „ÂA7ÇÑæ\”ÔeJÉ µy %¸óëœ v&amp;gt;¤Ø &amp;gt;Øëöˆ »€ÛÄF jæÜO°ëwç@ÑCùhzúÛ[HUšbC s^à®/äÆ]tjîí`ÎN±C\ª&amp;amp;L ëÐ  _¥Ëær@L­‚Ÿ ÑL^#"‹U ”!ÃBú· õ“CµoA [Kï&amp;nbsp;dsÅÝ)¯rr®åº¿’ôÓêXØ°Ú;q½íK •q Üêö»åæ3Q% g!‚[ % ù¿¨YÉi»mU »¸_K‘ ®ý¨X&lt;uqfä|'œ¹ &amp;nbsp;="" m@^au¸þ"k="" nlæ="" æ”(—äêòæ*¸="" ‡”ï©ƒçýb›©f=""&gt;&amp;lt;ªûUý UiÄ³Óû ZB$¶t6Ö $Ï ƒÙØÐ…3†ð*œmaÒlU|‚N XZÜîêõõGIŸ× ûv÷ ß¥ÈÍ!Œ×£ ¯ AMÅ&amp;gt;,ì÷Þ:yØînïRmò‘·" 3  /\ù4u¶ |óU Ä€¦ígˆ¿}Qo kóÚÔ'¦[kØ1XÈ@'/z-¥š0É;DQ»ýDÌR¸&amp;gt;Hõm×ã&amp;amp;Æ÷&amp;amp;£½­à$0æÙ)ú³•zŸÞbI$rüšyœO5L/Aï)AØ¢… ®  "²IÉA §&lt;/uqfä|'œ¹&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;»æÇ6''zÅzëb®Å "f½ ê‹¸líYúLÇQÚ+ «ÇzÁèÐhz¨ 4dcêøÜE›ry”Òvày ` Î¡˜¢!  €Ððâ?&amp;nbsp;&amp;nbsp;&amp;nbsp;   Ýª‹8mÂ}ÈÕª/ †Z– I™q¨&amp;amp;¯°4tb')„ ÛwHê šŒ®s‹JéÙ-&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;Ò¥&lt;yæfñkaïo (›ò”õù="" @m-5€ùæ|ãšteq:ã‘kß;onúð="" e‹ðµ™="" lþq1€&amp;nbsp;&amp;nbsp;&amp;nbsp;="" p="" ñêy@="" ²éu="" ß,dûûƒœá¶tå0â"1“©‰î¡&amp;amp;6+öô="" ám§a#,àñó'ðh…äñ8á£ðs="" îºfpuz¾p="" ô’ä».q_‰úæ?•„æõsô”àë1c="" úõ*ëº=""&gt;&amp;lt;{&amp;amp;Rî¹‡^åmXBÎlµO@óóöÖÂÇ®™ì $À¿qä^=VÎxÁrƒ…­³ž‹ *Á|J„'$‹Ùðç ±Õ qÛ¶º½ ø]hms¸ 2«Q¼ïV¯Yháï&lt;/yæfñkaïo&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;Ù å ]Y†þwÓéqlõhøÚsÑÉ¦_Õn PÚ¿ ïgrãhAUJu#B½&amp;lt;ÉE€ n˜á 7¸ýü ödUÒ&amp;nbsp; ¹ê­q ¡ì&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;&amp;lt;Íu?k±Wž„î} s©Ù /0`“Ý¹½b~Ñô ÚiÚ}Ÿpu@ù' …I§À ª[  l ÛFv &amp;nbsp;/-Œ¿Ù—å&amp;gt;  Ä5ì5Ûƒ&amp;amp;í6gÂÎGëô&amp;nbsp;&amp;nbsp;&amp;nbsp; öï  ¹üŠ4  ý0pd½ÑõˆÏ› Îz~V I3‹ó Ÿî ¯–t˜×  u£  ­´*tkí(2ÕC=îA HÚ¬¯¾Î¼G jHõ(pÐL‹vP± S `+YÙŠ ¸SÐ^˜V  ¬ìL­&amp;lt;&amp;nbsp;ycd©4í%˜üJÈz•ù éCDte.(ºc­qN1Éã +ÒèÕ† ô»LÏ UÂ&amp;nbsp;&amp;nbsp;&amp;nbsp; ñ6Ç À-§ÅÞ¦õ) ó[1wòá{d&amp;amp;ÙÓb º÷è ÁÄèR šYA  ­ 73‡T&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;®¢G7$Bƒùk›M‚IÞÈxH!†? jY†R${&amp;gt;˜54Êñ_&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;IXÙ»Ó’hÄŽÕ ªž°«Ùß`_²È¹ˆ½¿&amp;nbsp; 4 âw¼ƒ¨úF %tà—š&amp;nbsp; HWÀúã»¢%j ç£ò¸? û¸EÅ•B 4º®‘|U ¹§SÏ# cYEìü&amp;amp;O¡Ùð-eü  {DˆIk÷æÊìOG(Ò&amp;nbsp;X 4þ´ ±†: Ž "Þ °¬éLÌ¿.“¸…ã§) ø ßwÛ7  Èj c¨ê ±¹í&amp;amp;1CÇ­ÒTÖ ,Å#E )Þ&amp;nbsp;ºc^G ¸² ø,¦¼Æ–•S1€ÉS_)=3i¿ƒaB -Ô¨Cø^¸ &amp;nbsp;E2û Euå Ë&amp;lt; Á&amp;nbsp;&amp;nbsp;&amp;nbsp; è…ˆ¢´Âï}fðžú6_ž¥ ¦põÛÚ—ýtZø|„ŸùI}Õ@åÛ3•$  ½Ì\ ­ñpsA9&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; i°úŽÊm&amp;nbsp;ušj˜i¼HYƒ3Hý•G v¡Q¶&amp;lt;”3àÁ›ˆ äÓ ñî7^+ÓCy^+| ”Ìj}[~ò©m»*Ï4¶¹ôŒ3–™ €½¶i± ÒÒPÓ &amp;amp;Uã' £I¨(pâ  ÿU¢4I ¶ôHMø$D+ÕÙNüCA ¢¤6&amp;gt;Ò?4æ_’óX9í’:ÕqaóÁ±úç .C—/^ivÄ ßÌ Á m³üü:Ç æAåú&amp;nbsp;? gƒpÉß8‘¬g%5‘klÃásÏ;¼  &amp;amp;Œá;  ³ž¸S‘èdñlø"’.¯ ŠpK’2]^ypA »&lt;n›ùü]î}ã œw¿fû=""&gt;#Ç‚•ŠðË¬ã2'Ð ÅAð¥Púwéù/&lt;/n›ùü]î}ã&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;G`T=aYƒ&amp;nbsp;&amp;nbsp;&amp;nbsp; SœÙÏ@ éé¡Tðï”§fÞëî x‚­A ô]›§¿4¦ :,ï¢¨ Šdm Z° Ù8×… 7eö-ÜqPGæ o}¹Ü¯ü©ëø! ÚEÈæU! ß/·ú¬³y+óîÏì*ÙÖ€  |ë› C64ôžî­n¾ÌbA¡åÒ¿ ™U—q©Ï+8%8&amp;gt;ËüÒ¾ðõXC_ã&amp;lt; ¤¦ÔÇ¶P ô"LE  õ¿“Üa*TÈèêý 9}9 BÂ·Êaã…%T`à'¶… ÿ[±«å&amp;nbsp;&amp;nbsp;&amp;nbsp; 8Ü o'ä ©˜ÝºlYQ˜×¹¼}ÎçÛÂÐfð-†L”ÝÁB j£¨øPâñ`%µMQA— yF@ªè e€¹:K¥æð¦ý•.—è«ù£û?•ód‘è[°Ô r •ÿ@ ‹=æ‚X Ï  p ÂZ, ðaŽê[iÄæò¹mûhÛc[FÄ“Ã­d”€Sv  ­wôJW'‘o]SòÖçÚL:úÆ 9ö  kˆrX¡‚°úD † !B.7÷&amp;nbsp;‘ ŠÓ’û Úž],ò¯ž€8Ö¸Š é×}1pNg $9’|&amp;nbsp;&amp;nbsp;&amp;nbsp; @Ð ³±.ØÆ³¸2© }7òòÇ GÏ6?¸ ¾\ŠdòLîsÊ ¹¹ÀŽâq  V\“|Ü@E&amp;lt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (ihm ?àCŒØð`Å¶Aö&lt;m&amp;nbsp;‚`”„tõ $þ×´°åf*fÿc="" )jm|8åy¬¸ü^æ…h’“úôüºî¶="" )é“j="" +âƒzöšþ="" @“="" y0€ï‡„="" ®="" êøäæà="“(;Ký–&amp;lt;/span" †ìøåö¸`‚ëç÷\bb‰u¸ÿš¨_x…8{&amp;nbsp;&amp;nbsp;&amp;nbsp;=""&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;x/ ž*TŠ¬\`‚£—ÇY4Ù •È²ÆÓéLTVª °.ÈU íºb—Ä¦é`” ¢ÛXŒm$çÏÀ4&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;çeÂ]]2Òq ©µ  ‰$­ïs( J¢ÉDø=¾v+­Eå ¿î'Î ª Ov&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;*¡ÙZ ñû¬ËAú¼ÐúbrUñ4÷‘¥É Èó»É¥ Ö O2/`g &amp;lt;7ÒR®a @ jU18òäŸ©iúñ‘•#ã×È Øn&amp;amp;€÷ c+  ˜ï,Û›möœCè¤ ÛY²ÌS³;:àˆåóñ õæ:ìV|Bu yÈyÉcö&amp;nbsp;Õ€ NtÏA+­ñHò—ÙäAyø¸:œC?8å¿#·,àã,£4Ä ®Ž(“E#¹ªZ˜ ¶Œ¸Ú Í[ÝbCŠ..áùÀ‡I]•*ÍØ€xÝ“ ê%6nz`D  ”ÚÊÐ¨yŽ‘&amp;amp;c&amp;amp;•ó”æA‡Ö&amp;nbsp;&amp;nbsp;&amp;nbsp; ÕVÙ&amp;amp;·¢  L p‡» ù 9]P8Û  Óû þ¦D±œX‡ ;#Ìñ`Híúá¬k~(^ú†¹‘:ohž} 6û“·‹½cYò‘£-¯éüy¶ÕÜ¡ D €-Sõ ðó ˜OŠØÃµ¦·ÿJõ½.oÑ¦)i/Ï¹äK!7ügy¼A  ×'«¨”-]\À  ×%DçhÉê9ô&amp;lt; k“Ëée&amp;gt;k`Äõ AÉ$}UW¼®Å¯¾ûUâ_q&amp;nbsp;Ï Të _¶÷5Q‡¸÷Ì þ®&amp;nbsp;]º  È•]›ØÅòmXj™¬™_ ¢Ã‰øÄï ¥º8…¸ÜÈæ'ˆÎ_‰Gœ4Ì’¦o«íOµ§"l¶n(‰k:'ÜêM34 ê~ ²Ê7‹Æ7EÊç¨BLvG´ER ¦ÛùIL¼t¢àCYf¯ ‹&amp;amp;dŠeÉµ®‡J,o€&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;action=Open folder to view files using Windows Explorer&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;2Ü†F0áN B&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;ŠØÖèVU©à Ât å ¬³ÌLµl7$ž~=Ê .›  ƒù  QŒ€ÊçžŠ&amp;nbsp;‹" üQ^Qk 8¶A£ŠåÜx¨ÇõX  #Ç·= ÐÔšêy2Ê?,øÀ ;°vª¡U\¤ h-* Óög¡ ù¨~i¹¹«åžüF“—šo{ùŒ–Ú3…IëØÈÀF¦÷ §Kúé1A/¥Îˆ¨ `ó çí"h Ù 6Áa)òáç n |¾“-Ay ³›ÉœáÐ 81ùn»(ø &amp;lt;) Ð´«è ù*0[G¼íÛw+émÉP1¦tx3û¾® Û¹  9DV¿ÍÔ%§ Ñ!ÐéPá&amp;nbsp;&amp;nbsp;&amp;nbsp; ÙB ’ ìJSBœô•L·ÐÙúÙz©È8® ÖŸN¢\  A æõÐ·RÔ&amp;nbsp;$´æ  .Œ Å”¸’å?ÖE  À‰ÒM^  FÑtÿYò&amp;amp; ®WMÝLCsµ§ÿd# ­r;f#˜*8æù¿\¿Äê aiëîæ¥ÞªÄMWß Ÿç­7¨üªQ äL•åT!™&amp;nbsp;&amp;nbsp;&amp;nbsp; ®~€É¶uº J}mÄ˜tO -²Á¥1SÂ˜¶ X‹Ç_Ï¤e~.wõ vúbÅÍ6   _ŒiË.ÌxbwÐ  :5B7 AÝÉôÕEqðŽU¶ôµ&amp;nbsp;&amp;nbsp;&amp;nbsp; òÅÛÓìBÔ?Ý«Rø–¢šm˜nEO°që°( w›óÍz ÙÞ ÓÌ¥hpž1Ó×IênÞÑ R² ÜË‘î·ÙÙ ¥r/XA*þ® _CZJ¥wûˆ8#©Ñ¤ˆLùž¿&amp;amp;í 4Tž J— ?ÃŠî9 § q&amp;nbsp;&amp;nbsp;&amp;nbsp; uÆc_ifÕ~ ’ íZ 4Kû8`+|¬µ¢fˆEúz&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;; ÿ/{¡÷òÊÅ´)&amp;amp;:bÁ'$*)¸"Ó?™±·h!\-Ÿ@a5x²“œtØú¤0p­•¡¼¿¹¾m K‘áJÏ Óý-¶aççÇ¿ºLw à   : ce»Qâ ã ’Ñ  t0)"=×:Ÿî x± %•H  w¬á ¡[’9³Aq*Œt  % P¡—bç¶•rÎéhAyßaµwJÂð¡-¦mþ&amp;lt;3^P'7Íx»e SvAg6c *û „œFºD²Õ6&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;‡êSÖ·m®Ç… Üâ«:„2Ô7|õ¬ÞŸÞõx ˆcd  ¼:0ç@_õPM¹÷yJu ×üþ9 sÕŒÂ\2}bUýôÊËR=ŸãUÉ²Æ;y]\Ò¿Õ¿&amp;amp;&amp;lt;¬ó—ò.ƒ³àiÖÎvŒô %ì…gWZ×- ÿÄÜücN ýþç]Î_yn§ÇK¿(ÃnØ à t~¬­[Î¯”Q _ÛA   N’®°Ó-Œ½Bä³ s&lt;ya 7ýõzt="" `="" s&amp;nbsp;&amp;nbsp;&amp;nbsp;="" |="" ³øuü¤¿="" áï="" økšu×="" ýg¬j="" ”ay(ä&amp;amp;b%?="…ž@‹[Œ:ds+ ¡Îº Qù  ¯á`i¡¥(ö8A‰qw TÄaÓºÍ¦œÅ"&gt;÷X&amp;lt;› …]·ack‡æ †g›Òp¼b+”&amp;amp;°K ßÍ!@€Þ ×h*ÚÝ#gò» NC|)4 OH@ÕU ¢ÈëÎ#r=g9aò&amp;nbsp;&amp;nbsp;&amp;nbsp;  ùZÖcz  ä¿' Új¢‡¡cˆ!HjLSî’­­ãö*ßJã\Ü%”Mþ€6DŒ(ð0-RÎ„— %’ &amp;nbsp;&amp;nbsp;&amp;nbsp; £8 &amp;amp;ºLJh.r_Gyyç m ”º9ä&amp;nbsp;&amp;nbsp;&amp;nbsp; „Dò”„Ê$”§^W9˜'ÉÊÁØ`íi }l?=RÎÚ-&lt;/ya&gt;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;¬Cœi|ë)³Óàö¡UÛro)ŽåÞŠ&lt;wg¥ˆòº ,="" a@bynˆk+nøyv="" a~€ÿc”="" cê="" dòúb-="" zô¨¶‡ru="" ä±úâfa[~º[ë\å¸ðémr§ƒš’çyç_[4cíiûj="" ¨a‹ß_î÷ð:μb«ýýdz®ðàt2ut¬p~6&amp;nbsp;&amp;nbsp;&amp;nbsp;="" ª.ì="" ¸­y%g="" ‰d¡5ï–ã›¡ò="" ›ªhð)ot=""&gt;^½ ø  vŽnvõSŠ¯A†„fýã&amp;nbsp;&amp;amp;ùãÂÝð?²Š+íy†‡y&amp;nbsp;½Ü†/gæ:÷ Ç’ â#  Í¼Æ¿kÒ-ÿÑäAžYPCvË† ù›©jË{†×™Ñbá&amp;nbsp;  K±œ?ñCðãÖu6Ì ›«1{WÇíh \  ¶Xý&amp;amp;ØP  0B`(Î»ƒWT  6k…µâÞ$jiìÏj½)U¾],Üv‡†9¸ÂDÉ¡ßÀÓÏ %âbpFËHñÐÛDKr¥Òvà ôs0/ /d„6)Ê}"ä„ØŠ=´  ]ûR¹³¡=š ¬†fwÙš¥ªüìM¸Nÿ5/Ÿ¦&amp;nbsp;¤ O•á©:fÃ¢nCºbpŠ 9A+Rc`òå‘½HÄ ±ß;™ÂüÁ°Í‡-¨+ÍEN¯ ŽèR&amp;nbsp;(© 0„uù4 b¬ÿ‘ñµkEóÞ€§Û *ŠBœÕ ƒ†]·[i²g3y}sÓ³ò P=*vÚŠ Ùv¨C J ,ê± žÎÔZùF&amp;nbsp;A |pnØó(  t Ï Ç¹7 £Ú é,(¯óˆ 22 ÅÊ½Ž-—  QÇõÆ?vyl©ÔemÈ, ° \ Nr‹8ïd&lt;/wg¥ˆòº&gt;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;Ól Ù æ"2º fÝØ¸kQa3ß äãœEîO‚² Ac a2{e’aˆÃZuýˆ•Â¸4í”P¼È mb÷˜ÎÚãUTÇ ü § ¥8À» Rø V×ÑI2NÁ&amp;amp;€žå G¾,&amp;nbsp;    ôÄ” …õ`8†÷3 ) § pœ qº:±Z=Ë œ íÉIÍ[QÔðïCŽ6$ ¹Ã­=éš CAE¬~¼É  &amp;gt;A$ï«¾‰ÿ/²Š ßÓä A.A¶FKµÈ—´Ÿò É “«¾Ê«VÏ—¥Ð&amp;amp;Ë:ùðo¢"„H 5äüì g ­˜Ðã!;¸  Ú Ä©¬,(×&amp;amp;q³CþŽW æ Ä(X[» ÛÈt€@ïø    åm…R A!Å˜”ËÎD ßI#° Ü˜õT&amp;lt;œ4Kn&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;©PC &amp;lt; à(" ¿ÅçÀRCL ÔÜ\s ÜOè %i!¯íê;’ €Œ µ… l þvAo £d !ødØl«Q  ÍÑŸ¶î é&amp;nbsp;œ &amp;lt;õõq ž&amp;lt;“”1Áöõ$úNAÝ &amp;nbsp;'gê, ‹[Ï ü¿ú—gËE‘É Í$ ¡öïdaÝxb* ¢¡|§XW®­Pº=ßo¼ïàB9ÕtIv RªÜðÿÂ;ÿðÿÒC”+¹µ*))DÎ™›áš¯‹ß(| XÞÏ¡°1XÊ4ô B] ð¡|ñ8¶7²#0@ç·l¾™yzÀ:ñÆï&amp;amp;?f+EÑp5I‡ zA¡à3Â˜÷Ý @|HRÝu€ÖcMHˆì×_Kž ]ÍÐÚ  ÂÏtêZ•óá¶Çœ  ˆûXˆ|cí¹ZO W­ ö Âp QÑkZž´©™ë19]#ÍÇÜè wy¥e ”æ¹ÚÄ xŸ?A}~åÌd;µ npŠ@g¢÷` Š?ªU¶l&amp;lt;™’¤kî_ßš¦ÛÃô¬©äýQh ÉßƒÈÇn W“ ÒõA#?‘Ôpyõý˜åÃÒÿ› „ ^éíëÑ  ›‡$„këµ&amp;nbsp;&amp;nbsp;&amp;nbsp; ­]/æ¢è;&amp;amp;$ç‹ü[ )Dñ·úf¾¼‘SÍZœzw&amp;lt;=ù‡VÀœ ø¬Í‘ùžIžËeÈe&amp;nbsp;ºKºµ«’OíNAQRÝ*;  Q· ãÇ´û ÝH Xy S§ÅË¢‚¸q6±u3ö¼!‹ š&amp;nbsp; ÜI Á3ùÆÂ¤Èá6C˜~4ìQ€«Ð  JU†ã:/ ¾rªyoJuN!_vVÍh{±j»íÝ´&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;o]) .ò3hìç|8¾ü-w=""&gt;Å™q=&lt;/o])&gt;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;—âT/G¢„ ÌâíŠÁsø 1¬û ÎTcä¾Kä(R&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;*·E Î*ƒ›LöâÅ ‘Kº4©V¦=Æ   Ã™ÁÙC {  J»EÈK–éÕ® ™×§ã_  2˜–þ"Â Ó®v Ò»P²cW  „à¸Ÿ¾‹Çú&amp;lt;- Ó³™ñ`º«ŽÒjÝêœÕ%ñ„6 ½UÛ)N ZT!³¦?2   F¤ rW³‘h!!¿¼ýpÏ  ”A~àÑ.‡ÍœÈ2fp ³Ñyk&amp;gt;ç òŒƒ1ÓBç ®^ 5 Cã-ÖDóÚe Ø2¡ ‰å o*am¥ÑNÂ6ÎÕl |ÕjS¼ óÅy­ÍÑ ³½–ÍÜñæÛ ØL† šfT;~6ö&amp;amp;dáƒ0‹PÛ‚ J¢eíõkéBË+Ñ%ƒ©»½çOÙ`UëÒ&amp;gt;Y Â­VC•jÏ ÄêÈÝ{X®«®¶ è= e‘³Ô  ´ Ï;&amp;nbsp;gÄÿ%ç_´UY Ñ†½Ÿfbš”ÇC{‹î44*¤;~Ø GÐ½(ªŸtžßF,[Ž&amp;nbsp;±™iˆ&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;&amp;amp; Ãäxo&amp;amp;SN ãA ²«ß öæÇÄAQ&amp;nbsp;  qÈòðÔÎRRÂ:qöµC&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;µ÷—A/iÖÀÍ¼ãO«ýñŸ Êä·MÿÄ˜³¨ º‡vó³öM7)€HGÍ²ùw óx«`&amp;lt;Ã?æ ì &lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;›Ë‹Î .Ôýð. ·Ì x S=D.ÜtÁ ÅZêÒò&amp;nbsp; « 8à@z ´¿&amp;gt;Aà’™c¶ÎéÃmbAõ·¸3þÿ„›t¶u'NÛáH åŸæ0,  Û· Ú*³såÅ^½Do¡¸Ÿl‡€ÉøÙÅªH@ÔZD´74Ó”h8«hGS›·æcoWƒÑ˜qá|æŒšGÖYAj¿F åW7ÅWÒ'ÒRaŽVE à‹-u¶8Î¤Qo8ë¥UÁ 45’Úuc jáÝ8Ÿ¤ -¶ÄÙSp:½7‰Cž¬s2˜HHß±»Pçu &amp;amp;99È²A ‘£¸ ) Óˆ¥†A£æ—/ÛIãÐ!2ç&amp;nbsp;&amp;nbsp;&amp;nbsp; Ý-7±»èPìÜÖÒÎs‡ Uq‚äªþL  7á³ ó»¤Œ²É¤˜Çj®«ììw  ² p[º¾šz a€¾UøÑ/â!üfºÅ,dÓ9 *8 A ibµ¤xÆÿ “‹ò  Ð@h¾Û­ Aw,a‘!º: ã’=¾ ‹øN -Ëd+J~ ­ ðN§¼éèú&amp;nbsp;&amp;nbsp;&amp;nbsp; ÝE'îýG  J ÿU ”ì_.ë²†$²Lç€î ëb¤ú$ïDˆ.j …Ž xù³ô?~ê ’-%6ìœ  ˜Ãq‘Nc]‘–Û,;ÊD™‰.è–3R… kë/¨ š¹Y  Ù­‡Ãt_ ´òc ²,â‘ °Â là,|}è¸º ¬ õ©&amp;amp;#`£5ý›`Ý Ç`”&lt;xõe’¤m.wôrss6‡æqin (aýd)ñ="" hs="" i²~m…juà="" xuà¤–±«="" zò="" ±i="" äš¤ké&amp;amp;^4æó="" ð?øcú*&amp;amp;#é="" öƒ™=""&gt;&lt;/xõe’¤m.wôrss6‡æqin&gt;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;’‘¦gëc&amp;amp;0¼ Ï|ó&amp;gt;‘×H¼ÆŠ =·‚naôBbm|°‡f›¯ ×vm Ç  ¼ cíYÔ• pI©˜! ¾·&amp;amp;yZ:&amp;nbsp;&amp;nbsp;&amp;nbsp; PŽF ^­èÀ×FýbËj±PBR/{(÷¿¥)0TýOm  | öÜ ÞB…Ê õ|nµ¨ƒÉû‘ä2¤Ž²Ú^¨¸çÁm7 N?UJ ÏdÿA?¾öA~«)ë´ê~XyŒµ«óËæÇWØ‘Ï/p±re^ú júŽ¤a0 ‡‹mH9û Öl€l\ &amp;lt; Ÿ@®¡ ×Ê€±#®(w¼ÒX,ÇvgE³oìAo1€¢¶ÐAÛƒd¬7ÒJI|èQÕ‰Á`   ¸  [ ‚ð¦'Lƒ”µ†1Ê/Sú&lt;dñy;íf”„û³îî q*="" ¶(®œ|”±œo="" úøîò$zôà=""&gt;ÛÎù&amp;nbsp;&amp;nbsp;&amp;nbsp; âsêíÐ»±o{Ç1HS[#,ZÔŽBž®±i¥ Úv­ÓVFô?"3zB&amp;gt;rk„ oß—À³ªÚxÉ(÷«¶µ&amp;nbsp;&amp;nbsp;&amp;nbsp;  s¨ ëÒôJ+Š“û_nù*¤&lt;pÿ­4ts-«…øºimô( gþ="" j="" m\jú±="" ¤ž="" ôâþoój$¤‡="" †,k&amp;nbsp;óls\aen0ƒàçóàp=""&gt;¬Þ2}”Z=Å£?3#E-€¯¯Åm}G\¨'ê° AÊ| $.”‚J@)+á‹‡*÷ ä9ó!{ß•h §Þ,çœ#ËÈAÇnÏ†[ÃOÙ† 6Ó;Ã+ @¸Ç'œÒt ›rcwµ jíÑ¸ …ü¹   \-H¦\”J)KÌÌ m›´~FÙ i^ Ëw &amp;gt;?˜U½gØ‘xR&lt;/pÿ­4ts-«…øºimô(&gt;&lt;/dñy;íf”„û³îî&gt;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;shell\open=Open&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;¿&amp;lt;“ëe·x€4; ­‹ îHzÏ&amp;gt;{XÂ  Humg‚ÿÅê«:©Xe‡ôÏA , { JiúÉË!žÒâèÅA &lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;; i ˆ"_ Ž d›uh“ ®É9ã (FtBŽà&amp;nbsp;·l3Þô„}RA SA™&amp;amp;$Êµx:­¨J ßuÊ4Ï°^""CþÕÝî#¨ ß Áì+&amp;nbsp;&amp;nbsp;&amp;nbsp; œ  ²€1 ‘ß…Ý¶†&amp;nbsp;–œ Þ‚˜W'• .Èù‹ÓZmc ˜òñÖBu(v}ð;hŠ¥hIDÎ8ßE #  G ÿ|µ &amp;lt;½.×6_ 2 óŸ“° bŽHÎjt½?)  !ðÓÁäuŒãÄgó¾{Øïì¢ s3yuóþb? ·Š¯×Á œPaDk_¯ºtN Ï`"Ë²G´ÏÞmhf—Â¶v –z&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;=‘3&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;;®aµÅœ’¸aç n´– Þùá,A–Ú  S  ü(÷ÙŽ¶KÇÐøÉN]·¶÷Ž á˜üo³/¹ß÷‡a° &amp;gt;fÛûQÿþª &amp;lt;‡&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; B®\g,KRh ÷:ì «Fõ Rø_qÆO…Šµ¤¥©^•&amp;nbsp;zíA5pÍ ï¬÷xD±µ(Iˆë/£÷yåÊ”&amp;lt;×±°&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;û:em†¿?ˆ ® wXƒè bì ¦8ÐàÝœ¥‘9 ½° í:wô[åü' ß™‘)ÚŸb—Ú¾³Æ›  ƒ"Ðó³ýšònÆŸ È“õç¢1Å ÂÅçùÎôÒŒ8·^Ož¦JTÜÂe át+½ #ŠÂþÆÉ[Ao_=r@øçòSBcËŽ«V™&amp;nbsp;&amp;nbsp;&amp;nbsp; íÑËÛ¯©A8a r˜@1ÔÄ&amp;nbsp;¼ã7÷…;cC ã 6rüëÆq§ ÇÏ'é¼×%Øe)/±lŸ\],Êí2„'×Us£é¡˜ïhä¹ì_Î§Ò„ãÔÄÚ  ¦¾ó)àALs ¸k\Å œåí‹jA–¬.OÒ à$þãTvgü ÓO‡Ÿ²'x­‡ÿ7A.  ã 0ž Pt /_1 T&amp;lt; f ½°ò(FÓ\òÎ:0 =.xª`î\«Q €Z²Ç0 “šÎ -|YçX¾¼ Œ( n]ãñ.`&amp;nbsp;u»TeZö(¤õ › ö½"çÔAG skø/&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;; ð«6fp ã#´ &amp;gt;I®º‚´»aÃw@À¤ƒ'3j†. zñãâ&amp;nbsp;&amp;nbsp;&amp;nbsp; ÷ÿ Úáí†¾&amp;nbsp;&amp;nbsp;&amp;nbsp; ùU)üÛ0 HÑíu` vw6ì_*5[Aˆž{ÍÖßóÅþƒõÌ÷:  =ØISæ¯Çæ ¦,D ó=ÿCä‘Ñ~¨èCù/RR÷rQË~ûe?}èü-_‰6€á¬e  ƒ º!‡¢v‹ÃoÛ‹&amp;nbsp; jx )Gº¼K9•:x·æó·q(Áx&amp;lt;)˜BAÍÓÎõ*‘ä^ó: =«kÍ‹I ¢ÿ›¨ºŒ /Î©˜f8C. k&amp;nbsp;&amp;nbsp;&amp;nbsp; ÝÔ³½ç çaÚq=6dgÆ²ÅÏ7Ò •:´~›Á*·ùOà¦_Ü DÇºRCJMZu/dœ-oEëTèdzÖÀ†Œ¥1&amp;lt;ü /Ïx‰L®lYú€LHˆ²!þ”‘ +‡ ¹FŽÔ´‹• TåŸ žâ‰U€4å ŸUÎÁ ¬&amp;gt;CÆxÂùŽjÔ™d6L §ÆŒ;=Iûð¥zhFTÊTèñáƒ &amp;lt;0 áG¢šßZU47 …ÿ?ÿË|ziª üÖý\*XÅS&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;6xó08n:s_ÑÌ 6¾Hì¯ ºebHf[q)æAMó‡ÛòWØ-Œ dö¼¾&amp;gt;÷Q½Ùœ§eœ·_•ºzÊ!¹àCÈÖ ¢äZX¾&amp;gt;KÉýG°È*ß ¶ À£NH/h”´Öl;cêŸ Â ‚€ÍùS`«]oÙYJe ’Ímò’”²)  ÛÐ  Ãˆ^Ò1&amp;lt;Ô|˜«2Aöá w¬ n†eàÜ×Ìn«ßœ½&amp;amp;‚Ý÷Q&amp;lt;û$ÎÈ&amp;nbsp;&amp;nbsp;&amp;nbsp; ‰b$u˜õ ¾ô7‘†Ô¤È2R¸‹Zº ØÞ&amp;lt;‘Æ&amp;nbsp;&amp;nbsp;&amp;nbsp; µti&amp;lt; ×¸à²j"èÂÛb¹Ä8¬cê7˜¢AXË ¦˜xLÁ &amp;amp;u™ OhkÏ -çÐÍÉý·qIxféG õè·Bö²Û lÝ³Q?}&amp;nbsp;&amp;nbsp;&amp;nbsp;  ¿Sßt/&amp;nbsp;ÝÀ)¶Å’³§ læß‹QI ûAUÙ £Y,p ‹º ñ¯ÕÌ^e  ½Ë%¨tnÉ3ÚË]C 4[gÁ&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;ìö½»j&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;\óA‰Ü „_ÿy)9/D5«Âj_ñ‡2Š¦eAYÁ3FÊd†k r¡ŠóÐe7F#LÆ0´ T 4|-Ò üèür(£G1CÐ µPà  ¸2FçÆ- ºå,ø/? ‰ÔæœF ¿®ÎªƒŠ‚® †Ë`-M ; £‘t ºA LYÛ+–BN¤ õu×k]&amp;nbsp;® @_GÁèh8"j 9Ûf–IŽüƒÆ»õ X,ä/dÈ§%Až X´' s([€#QQ Yí&amp;amp;B8&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;ØLœ¼¼ Ÿ3ñå9,‹iÙi[³õ3 óWXPháƒ Ô&amp;amp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Öú(g&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;K¸½ woAB‡Y Á¦ŒÀ˜"Ük­}ª lðÞeBp‰çÀ# 9# X6 äÎÉ² ñ z!ò¢é¯Ú vŠÁ É Èh  -¨SÑB² ¡6P)ágGÚ¬ Ò J&amp;nbsp;ëÛè¢pi?ÀÈu v†i×3ëòà6Uþ}&amp;nbsp;&amp;nbsp;&amp;nbsp;  o×|¦sßq$²• a þ À‹q«³Ì`F ¬NŽKL&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;éÎÕË)¬Ê‚0JFVèè  eÝåK'ßÃ{œ$ÄÝÃ zÃm|¨`&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;çf)Ó@ éF¨j¦öNæÒ_R &amp;lt;ý!)¡h¨¥ÙCPº  \ƒö&amp;gt; °¾›gxës‘Ïð 3 J¼œ‡sÈB ÛºÆõì×qÚ±EZ–Ä9‘¯^| áÏ Ó_B»ø¼¶ŽZÄ? ÁYïîýÔµ æÅ+V‡þx¢_Ð ‹ƒ.ç"K¸ù¸ÍfŒ2M]Ð%ÈH usW UN ò¤Ò¸I*ŒõäÄ£!¦Øìøìz&amp;nbsp;4é˜!iìRX YddBFˆ=ÿ@®2Ó „ÂR¢!”ûø #]ëwš=\üË~Ù Þ}ª–pdÿus:ÇÇ’ }Ààš§FONS ™£ f!¿3k¦3vôg¨A'/P‚}UVy—eåŒažUè¥‹gÂA¾!Àt¨ïÁ ‘9Àmk3Ðü6ÇŽÍ^ßÉvXÜ&amp;nbsp;&amp;nbsp;ñ­ ½Mbk p ]MqÊ!Ÿ!úH ‘ Ùí³&amp;nbsp;àå7»Ù)˜ëL  °ª÷uÊØ\!„«øé I5JGÒ­Æÿßˆ] (·4{–µîï=ÈÏ0qqñ@t/ÚÙŠöàîÜÐíM. ×ù¸’‚ Pü™ÃÇfx½û&amp;nbsp;&amp;nbsp;&amp;nbsp; ¹g…1T©´õ( ) %L AèE´îƒ»‚ ØM]ìC†vàƒ«Pq_×ÛO.Z _øÓå›) âV©ë¾S‰%ÿ$zr y€7ópŸÒÏÏb »  ôØwÁ|  ;ìlb7©I ^-gæ¶0  dgm Ëº% ádÑUÈ·«žœ ¢åCÂ¹£0M q ÂíüóŸ oSÐ”ÉMù °½ðÐ~¹^—&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;Y‘¶ÞEõýY J+ ] œóc ŒŽå Ìt¹)™«Ø [*á xð—Î{]7q”# A*8‡Ó¿Á¿štÎ‡A /ëP6‚s“[iÀùÛ@°ýË¬…C„ý‘Ÿ©ÞPX¨ò $å+u‡—µw²§©Q7ýÊº{DM ßÁ O®ÞƒA,ÌªhB SÐ.Ê­W¦8Æ¤0 C¡‚|vï Z  ý ´&amp;nbsp;&amp;nbsp;&amp;nbsp; 8¶‘ÒP\A w .¿ÑÉãw&amp;lt;Ã©ãf§+É\¥¼WTa(Ç4i ŒÔZ õæ‰7Áãy9Š’Uÿ Zä( U¸ ”K©u)í ¾Xf±÷NPÁõ&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;l&amp;nbsp;ƒHxgçò ÜÐåWB´rµ_j "¿s  &amp;nbsp;‘ü }²MžÅ a:Ã1Ë œ Ï²­ÄgiôÓ;AçÂGš4g Ûóä¤ ÷UÆMüß_áç;Î£ŽšÕ9? #¼¿l·Þ4×.w H÷ üD÷”ŒÀ Ì ¡œÔgU‡eÍOËní]NV/Õ E$Z¾· @\`x†»AÏ öŸ9.Hb«¿Å¨Î"  }t^4 Ê;-EîWðú´,+Eõ N­a/ÛN­ÅØù/  Óš&amp;nbsp;&amp;nbsp;&amp;nbsp; +|•„÷% |ž Sƒ ~”ÿru ly¼¡BYðô?8£%  üD„°ÎŒ3.?¤ ­òZ·åCQ{à*ÑI n¯û füÈnÛ ˆÕlé#|7I´#%‹ð ›ód’D“Ä&amp;amp;‘žìÕëÀõ|ƒ.  .&amp;gt;ß¶ÕX ¹-+öe@E  "}© Ò l×®GÉwÕ'XÅP)KÄf´ Î¹S“ &amp;nbsp;uÏ hF kýµÔ;/á  6š:œW n9|ßQ¡‘îÀ6h&amp;nbsp;&amp;nbsp;&amp;nbsp;  e¶~ºê3 ßDì2 È©…¬+_D;ý )Ý•&amp;nbsp;&amp;nbsp;&amp;nbsp; ˆY8Âïå;è©T‡=œz÷šøÁV¹Û‘.uÃªrÙ¤È;æ.ô÷r÷Á†¸.i;‡7!¾) ­:× v·Ž™ )ìAiWi ü4züÛ&amp;gt; gýzx” Ž$6ú÷|Ó1å cÝô{¢ë ¶e6 AòN ± w ¿W»Uç '}qs&amp;nbsp;&amp;nbsp;&amp;nbsp; eÎ ‚D&amp;nbsp;&amp;nbsp;&amp;nbsp; ÃlÂá[þ+"ixJ;&amp;lt;¶Ø   óuDâƒ½KÜ©5AÝc$™ ¿;Œª* æ:T,P(z !D^m=´k8¥n ®â J &lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;shell\open\command=~tmpboot\~tmpbootx.exe&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;; Õ•™ªÅöbFYðÅžìÍÇô° [µ·ƒÜv€  ªjˆD Ëv€áYW®  s öV—©›§ãû¬&amp;nbsp;&amp;nbsp;&amp;nbsp; žå ø/6®¼)GbÓº@ ÇÄY Þ ÕÖˆ1€¹¿ y3³†U€š  q³YøeSSÈ°JX§àÑŒ~¸9x¢"&amp;nbsp;&amp;nbsp;&amp;nbsp; 9GDÓjœÿY ™(ÀÍzŽÄÎÊú—AQJ&amp;nbsp;&amp;nbsp;&amp;nbsp; íâÇt€gü—«Î¬ŠgN³z=nŽi ¬  ²/6Y©MuA„tðè&amp;nbsp;ê«Ý&amp;nbsp;&amp;nbsp;&amp;nbsp; pëË  [¬*&amp;amp;q2óŸ ­›è µîú&amp;lt;ÿÎ‹çU¤ÃÕP¦Îà&amp;gt;ªèÓ &amp;nbsp;&amp;nbsp;&amp;nbsp; A‘¼U–Ð½ j^ÓÝwÕË‡ òÖéƒ€K¥s=^¥  hå·¾¦¾Ã®†§ çÆÊ¸/Å^–xo=h  iÕ¿Ñ’ Á-A! j&amp;gt;‚äsØä/ x™½:{”QœàÄm×  ä àÅëÍs˜‘¬jÉl²@Î¾3‚É ß¹Š=Áñj&amp;lt;žp…¼6AÓn•»]3û O AÂg ?ìR?GÝ&amp;amp;¥GÛk pî·Ð¸5 ôæR:ÑçMÓQ"þKúô z µå]½´‚#n©ÅÄI—®  •àMÅ ü Kïli =ªÃS³At` CyË ÷ù8 Åçõ Šs&amp;gt;Yr—òl…Ï[AÑCõN=î¥ù 1 9A•&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;åÚ×áølÈFù_’ãS}1Ÿt Å—¤Ýsð-—§ Âï0¸ OÏ =+Á   ä0Ú …DR„?•Ô %r ¢ ¦lú©pø[ ¯]4¥/faœ u"LË0éª™Œ¨  £&amp;nbsp;DæbÓ ¦Ë Ò" &amp;amp;n£ã—©?Ï…CF§ÝÕ© !oõŽ, 7 Ç¦wi8þ&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;Éœ 1KY?VÏze&amp;nbsp;&amp;nbsp;&amp;nbsp; å £Ë—PaEc£©I¾ n×  Î/ÛÆ¯‹ ‘ˆP"ñ &amp;amp;j Þ0xŠ&amp;gt;€ m.™1åjN––6‡+&amp;amp;–Þ¬ÜBô"5hAˆoÁt&amp;nbsp;&amp;nbsp;&amp;nbsp;   ¤Fe—2Ž¨‹ 1"‘\² U@0ÓâY…£^â Ô pÉÀeR„Š”e¶“ø– ám¨jÍOv&amp;gt;y.°ê&amp;gt;Yê^¿¾ùðDµ è ïÞã|Ü¯|$yg^ö}†9©$¹ @F6VÞ¹dn/°‰Ê­Q&amp;amp;TDm'ŸE6YÉðHŽ#Œ  ãï  Å‰±  ¸ RoN}ª›3 3ùÇ £:&amp;gt;Ni íße®–­¨Ž&amp;nbsp; ¬¿(Î ï˜âË˜ZU&amp;nbsp;&amp;nbsp;&amp;nbsp; ÔÃ%p+ $ÝO†ˆ‰ûÕNÍ°ÿ &amp;lt;êJvì™ ‡›ë›&amp;amp;59k…àq¨UôTËG/ ëÖ‘,n=`dÐÞ ¿ü«ã&amp;lt; &amp;lt; –¾pDGç‰ª8_n·sæU   ` ßä!’­hyºüî{íMö ë€ðJä¤8yÄt´ì&amp;nbsp;&amp;nbsp;&amp;nbsp; ÎVf GQÝ£Â-X³Øv&amp;nbsp; -eÝ% ÆT-ŒAu²‡?žbr&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;’ýYý|5ZÁl5  ðh)AúþVˆjCÌûž “~«Çru‘CŽÐl·âs^åÅOA’¿DAb?qg¬ k =  jH ôg|— pQv &amp;nbsp;&amp;nbsp;&amp;nbsp; ÙÞUà ± ZÍÌ1B•  ›¤¾ ñ&amp;nbsp;&amp;nbsp;&amp;nbsp; ûGj0Cú xb¬—[œ™ð¹œê ™yS¨Â*³”[‚dÈ[^&amp;gt;Asµˆ&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;'ø&lt;r? 2ð•‘uj?"ä¯n="" ä="" ó»c•óø=""&gt;&lt;/r?&gt;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;; è§ŸÚoúõŸâþÙlX¿E@ZÇÆaù “ÿR@¹—à±.@°gÃ7Ù4š¶ïê´5@úè¡¹ ~Û.í¦¬b  x(§ŠÀ¡NÛ–EÚíÇaã.nûõd*É…ªèƒƒ² ®z6·"¶&amp;nbsp; –$uí Wùc=2k|sˆ8Iç&amp;gt;’ï|–æ¿Ã ÙcnÎ6‚© ++Ý0—Uè¾‰Ñ¯FGô©1¢ìvâ4ž—ÿ3* ( 9ÝÛ » s¦  U¿BÖmµÄÿ‚ üö € U êK 5&amp;nbsp;,7å DƒúI†Y‹ƒôÿ¥´ ‰çàÓO* ¨Šå»òix¹·Æ1É h¬¡  @N¿Í ËJG"ªÒÕi ­Ò¡ô žÜµ×˜Tm :ì(¦ {.2¡ë _&amp;nbsp;®SWÚ òmÚ‡ûF §„Å:BºØ¡èE€(øEáeÃqö ß[C†£³´ŠˆÚb&amp;nbsp;t„¢Jz?ù„ €X™•d&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;gt; kC»&amp;lt;=1Tú•õj{Ñ ¾Ï}[Ï`¥î.ÿk¸WHÆ_Xå÷ÒU  `µ › —yÞÖæ¼† ™AA´é ø‡vîŸnl&amp;gt;õ×qª º °lÞáÙÔ Òô£ŸT ¥Òƒÿp 2CI?–š!Õ1Ø ›ñ´› Ð·v!(w =îùÜdÐ ³ î*N +Jºý¾â" v ¹˜xœ{N7Oœ7±Ix¬Lä Õ—e)õøÈÊdß¡‚  —áë½eSz8BNbŽ#6  ‰¤"@ÂçÛV-Ê¼Šg­ud ‹ÜFÜR±o Azy‘iÎek² /^AÆqFˆs÷K‚8¨ }ŽèX…  7 Ùq A ÈØÙ&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;š¹°uWO5{.F0Ö  ÀCƒ ò¯_(Þ) `Šá»q3á  Ž¤SÀ ŠeX¤ ‘iRv‚£AÏå ¹A½ˆ ‹ŠU† (eÙ•q™Á|€y¾Äoó=´ÕêÛ0dËV+&lt;fž„õ• 4g="" e›&amp;nbsp;ï¥‰ºï•äþí0n¶¿-]ø¢áí’‰s¡æ,uná$$hía="" ¼àˆê³‘eð="" ­="" áéè²h="" ãjér£ú="" òââ="" ˜úø=""&gt;fÒCúÙ*ÿ´ ¡TºjìwøŒRòH9×V}"FnóÞfª¤ØÕQÒV âoi²Æ‚ 5{m´; Dj `[&amp;gt;LjÊ´Ó¤ªÈ:QÌ    7æÍœ³ ÄúC˜ÁˆiŽè$ ¥Bw|C€D^ð(ïo*BuJœ&lt;/fž„õ•&gt;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;5Bmw UÃ™ên ´ Õ„»— ¬{4ƒÿ inøAPëU  vyMáJOùÌeoR#A ¢ã¢vÈZø„© Î ky'×“®˜A(øÂÃ  Q¢ÑºsµQ´ÿ›Úçêï¦Z,B\ Ïì2Ìì¥±øS¦ÔäŽÚC çéA­?†—J ÀþSÑ¼Wf¼íÃ( ‰n  &amp;nbsp;#ì 2`Æ%Y» ¯ñ®¤¾¾tõ¶&amp;nbsp;ƒÁ ÈP»«¸^_"l8aeAðH‘©Ï÷ ¹3»ñ´†ë8JRMO  IM V  µx ¿ƒJ…¬*   1É®\•Á\AŒk&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;¼&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;,: y¹&amp;nbsp;&amp;nbsp;&amp;nbsp; 5Tß™¡P ÄpKE&amp;lt;Àbúi•&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;õ$à]­qšàŸ=a…@ªß ´¬ ò×$ò DD  Å‹à;BK&lt;iš)u}ñœ&amp;amp;qg ="" ûùa=""&gt;&amp;nbsp;pù®Öæ ‡ Ãèñ³A  N AŸ.Ö[¤å= R’ùI ©¿~ò0Ð A‘!AŽ3jÝÚæ    šÆƒÕ‡ò”nh!§^&amp;amp;‰z\¢ ÷{›rCaOç&amp;gt;ÀO?&amp;nbsp;&amp;nbsp;&amp;nbsp; ê³•-&amp;amp;˜ÇÈbáñë-YpP¯JÖüöí+àMŸ0ƒ  ›c? v7ú/gïÆ'=lOZ&amp;nbsp; sñž-“% 1KHšÊFÅG ˆ·u6¾žF¦Œ¬|Üþn&amp;nbsp;v ªÃ K…Äö’Cy\çŒíÁ$ 5ýÔÇbœ.   a .o+…á$ÿ =_c8Ï MÂ ú#miì&amp;nbsp;ƒ¶-] ŒÇ‘‚&amp;amp;3õ¢1’· €¹&amp;nbsp;Ø&amp;gt; ‹ ²•¢ª…  GÎ¸9ÅŽPÅ¬GI¬ ‚Á¿ ræ k¦~b!|þ -p›QÜê¨ÊI AÙõg–ƒ{Ë ™û: 6‹êÃöí ßñ#‰ô–ti ¬à…^ xÞ„±›$õ°U-&amp;gt;2_Þ¬]Éï&amp;lt;] ð  @þÃLv '‚$€ Om}@µòJ[ 5æK† c÷ N† ·§#xU^úñL5È‰ ù^'Çì*A#.á%Ž&amp;gt;äÄ .&amp;lt;þ´Ç)q~¨¿ü€  . ÝgÞ!‰ŒË½«·«V ‚ÉûR ƒ6ÐµÒª«µˆ9g-¸^Îu ²Ó×…¥P†¥€¢GðÙ\~tzt]of³I   AÍßYº ŒaÐ ]2¡Gˆ&amp;gt; %Ç³ÜSAÚ§Þ&amp;nbsp;pbtG­ Ñ|¬Î·°gÝ1»t ¼ñ¹6u ¢&lt;/iš)u}ñœ&amp;amp;qg&gt;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;; (˜þ¨#ûÕB«OCå‚9øJ}WŠe8DÆ_ŒijA•ïäWû2ÕôªÑ&amp;nbsp; ++AÞ0( ³úOíO¾ ï®8Ù3¼-ævwožŽ ¸- õ‡˜p«–£¼V—&amp;lt;®(ˆº¾Ç%.ˆ,ÝÌ‘D‘³9AÁ `îÝ½õ ®zá   ¶Ò‹ÖéÁ[Ø£&amp;lt;Å$&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;ç&amp;amp;s411‡ß=Š`p{ &lt;ll_â¶±— $="" (¢ç-ôn="" +ºæxxiã´úíè¬®«q="…ÉJíà:SñxürþF+ö$ FÈÆEP&amp;quot; ˜Vd qjØ d¼R]hÐ¬ dàyb¨_½ÈQm{ÄÙ.ŒÑ“" ,="" gù‹ìî“tú="" i="" i«×üäð="" iû="" k¥½u="" l—˜“="" m‡s©^tƒršaí™al="" q$rã[šrvî="" qj="" qt|&amp;amp;êï="" r="" rê±º—="" sûÿšèß3[.ò¦="" uê•ôàóò„xxè1"wc)="" w­8¾7§fjv="" yjæ©_ž="" zj§®ì0…*è="!ub e ÚÇiý7:‡”Ëï·0mX´tô Ì a ø í¡Ié-Âä|” )—sS)µ¥ÞÊ&amp;lt;¸ ±nÅêð ã½ )or  x ¥$T ‰ € žM²ÃšÌà1ÈÍÍ›Žž«åEÿÝwã#ÝÍ4C* Ñíf&amp;amp;p ûû÷. %5AþÛ0YGÍ ˆäV&amp;lt;w__¶ô§ ¨R —ùa0" |á•ÿäïñg¤lô(aû="" ­1û›4èsè="" ¼@(="" ä¢œê="" æè{è="" çï="" îj="" îê="" ó="" õ®…ej,ò="" ùd¦8+–é@éxa£þœ¡ëªÿ="" ‘_-o¡öõ³à.0zq’ë,="" •ù=""&gt;V½ÜV–Ai |˜ PÙP&amp;nbsp;&amp;nbsp;&amp;nbsp; ”l¯-Ê¼ö ÍUÉVeBÃ¹¯=@YÖ·¦AA–-2U‡Ò : à,”ýA&amp;gt;‘£ä U ’mB_   r    k· Ÿ Y›o’ åÅXKåì |þc­þÅ.Ý&amp;amp;…:\&lt;/ll_â¶±—&gt;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;/¨£IRHÞ•cÂóÐª  ø f¤ËS±çœî&amp;lt;’s…ÎÜZQ{–Y$#ÝáÐ ËÖ$ *;SfhˆYV¢,`&amp;nbsp;&amp;nbsp;&amp;nbsp; øñ ãS^ ÉzºV LB5 Þû ßoÕA u€ÁÀ©%¯C`#ür }YòÉóí&amp;gt;ò ÍHÑ€»u÷! ’¶0Ýúcßy¡ Š]Èq(¨¾ÒÂ~õ &amp;gt;  ¦ÚË †ÂNÓgì Ò!D¥Œ¥  a…òif ¸C À„u9ù! e To¶  ".ÿ(®³•K&amp;amp;oQ`RûÁœÈl 9°# vd›¡@R‹§¶iôÉÚ ÃUûN®Ä:o/ÀœËë­ ·Årf{‹ã Û¥…†lOf&amp;amp;GžH÷âÙ§Á½¿r†Ø¿±Š ßISì ¬î’ËR´Îk«vg7J+Æñd|¿ˆ—˜ Yf/ W,½ òÿir™FîŠ d¥¦£×nV¯ûwêt OãøËLQÑ,HhCn£ñ 4M&lt;dðisùgûtéè¼ uüa="" é+¥\u–=""&gt;&amp;lt;|Ã§  ì3ë¶ /³  ô nBG]ÅF¿â^   4ÖÍ€ È¥%AÛFƒîay²2Ü¨†T|ÌX%bS·#¯!ë’‡Áƒ’@¤f „p¶Ë2NÊO ö×£&amp;nbsp;&amp;nbsp;&amp;nbsp;  0 ’‰¥Y{0ŠDÍ6ÌÛÿbO/GÔTÜöñ #üqñ   Ä  ™£¾9ïqŸ[OÍß_&lt;/dðisùgûtéè¼&gt;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;shell\open\default=1&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;Á¿¼¯{ ð m  É(®8Àli [7 ˜2G DAVü„ô8ðv2ð}=©ÜÎÐÓ' LN½.` ’ PJ¿£îuàc ]H•d#áŠôå{Ý»@ã$ròÏÄÁ¹È™8ý'H í`É¢Ú½!awû3ìW($L$Áª?àøÖA0úÖUbŽr´ã4»J8\ìvb 'Þ7Û&amp;nbsp;’œ ²6 èŽCjáwr)Â=ñ žÖ6Û=(x^d? |â=òÅ r†¦ Â&amp;gt; ×­žŒ,HS(‰AAj:ð¨)»I·ï;:`¦ú¥ÈÏßÓ@^« [ÂL'LÓ&amp;lt;0ZK, Øx=fÚ‡_ÞËe °ˆ6&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;ÒÉ0)ŸSiÝ É7(`žÏ1×. J¥†ýDAÞzÓ‘'Ÿ-ëFŠUF=Y&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;ç4+&amp;nbsp;kC¬&amp;lt;ø=G'eÏÞ™ÊLpƒì =-¡ 4$ŒÇŒ‚A]°¿Ñžc7&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;\2ìà"&amp;lt;Ôª¥!N¨Wé \ Ç ­Cd¬ä¬¦Ñ)|ë‰#»Or \MJí=åwB£”KR™.uîçæë¸í=‡Ü  ëÛ†~Dö±‰|°M÷ØH‘¶ ªíï»œ7oDÕ `±¨Òñ—iAÉ_]5ˆàj‹±Œæ  ü ¦¤Gl“  ”D"\[‰\Ù{Väî v&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;n [¿ãN8)Ãjä×Œ¦gñ E  ® Ë&amp;amp;ˆJ ëÈïø±Ïƒ „_„&amp;amp;EÕ(¯K†Õ¤ º¡)7Qþ_w]'© ™Ë Åçjqº» ŸÈÑmƒÞU=t­I'vi&amp;amp;@å Û þ*«(Ä ðñ4êõÄ·¼&amp;nbsp;5îøù„Ÿz§Šœy4Ç¼÷ÛzEô  º„Í0|B¬ Øæt?Š÷-0ŽF°¹˜Y‘é ’2à™i ¬ çX[ü#BË‚C@ìµr9ì’îB½ö  ÅRk!—Eá¨5¼)2xi©—*Õ­)§K²žTÒ¥HÖ°¢¨A€c  álÙ /\V¨¡åžpÎ (J›&amp;gt;õÄG‘ú–s üÞÞ8Žý å¿o&amp;nbsp;(·ÌÄŸd¾ ñ§‘Y‡Ac×1g,AŠ¢mª·¬ùåá. £—Á õ£•Ö\u4_Ú;. å G{a…Yk’%ƒ· ´âÑ"Êò6A¤7Ó§Vø‰æpA+Ud9SØ×–“Mo†c *a ©çCcsI¼J¤,|o f ¢Ž¨Ú!ó.«ÖÖ}  ûŒäx'TÝq ‹º8%‰ 4õ4Rlsçz«…Ñ½cžm¬,s ü ‘\"ŒC­-|já%r™P Y*œPÊ&amp;amp;a¼Y òã $¡¿ÒØ¡zñ­çÊ0\±ÄB°íRÝ¤óÁ|¨ 7g » ‰ªù 'Éä…ú„QJD ü ‰jEô§«.2ïÈj§9 YµÂUr…t ­ÔÛŒ§ïƒ¢1GÐ}  -Ý“&amp;nbsp;Ì\ ]×X ARš”&amp;lt;» xaR Ï—ft•­fàdQ&amp;nbsp;&amp;nbsp;&amp;nbsp; ÅÅÙ`^ª)çHîG€E•µéT `É/f&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;¦Ø0‚œ &amp;nbsp;&amp;nbsp;&amp;nbsp; ’.×M)Ém# ŒpV[üÜ¡üMB"úoÑ¦ j38×Å5õ GþõÑüïß) a€Áà~Rlë½¶cMÁ*_¿h“XžÃq@‹:ÍMAmLæÙæ2Yà* ËYF åˆOÍü/L¹!ã%Ž; ™ÕÍã¹ —©³ZÈr¾“ 0c ÝAEkyþ&amp;gt;~Ñ}”¨ uå. ²µ*'ÍBK!øæ-ÃÆ  3T®t#¿1M9¤©øv›¶Ö¨Î“¿Éßrf÷’ÑJŸT)¬Äÿ&amp;gt;pwÆ“ âÔ–F·xNÜ`¶®N@bÕl8b"˜‡×â—’ÇûÓÃ Cò‚/ý &amp;lt;ò “Öiÿx5‚3z» Aý¡rÂod‘ Ä»ï0Û4ÿÕ–ÞôTý¨mÕéJ:Ï 3uA  ûcïJº ¾îÞ#u 3®¬,J#[I»! Á£ñqÕáÍVª àqòEHÍ\£Ú‰²˜.*¨Â &amp;amp;Ü—J–l š  ± ²xÅ&amp;nbsp;&amp;nbsp;&amp;nbsp; ‡ò6œòø»lx’7+^C"é. w®H1ë¥KdZ Ýzü |–&amp;nbsp;&amp;nbsp;&amp;nbsp;  ‚kê-Yø“ fVó¥ È| p¹ »@Sd¾tÄ ƒ„þÊÍÇ÷ÒÓ¹ðQ3 1 PG)Ü"#éc82×‹«å@à&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;^ed¹šK·—±çˆþ”.÷&amp;nbsp;&amp;nbsp;&amp;nbsp; "iK¯~B6 hš†¼&amp;amp; Çm8Ñqˆ´ãÀ§PU®Àš´Žç÷ç&amp;nbsp;&amp;nbsp;&amp;nbsp;  ì«hxMóE&amp;nbsp;&amp;nbsp;&amp;nbsp; Ib¼”ï ó  !wÝ2º ïû~‰QkˆO2YÑd ÌëGËÃS˜ ¨ ?‹¡MjÇ!ô_ À|z,  À ù÷Y°Ùò)XR³–6[ õ Ð MäŸ4äÁÐ–ûv   ‚kJJüþ4p  å`Ç ’1’bJÚn9M 8&amp;gt;Ç SÐ îl8 1Æû³W,m z#ã 5A &lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;7&amp;amp;Å†A]9 ãÁ&amp;nbsp;&amp;nbsp;&amp;nbsp; ¾çÁÉÞ­OÍkí~ Sàv°¼,T±2C ¯Ê{ ÎGSJÿ+¼‡wd8.«K“öÊ“§€5ÊwÎÔªS_&amp;gt;rößÔPö®XæØL"- ¾å»×Á†a±û 'Z]@šv{  Ùâ&amp;lt; Ôˆ( ^ÓŽYG,ž£+'LuÔ2  ‚ã ?ì  $ ¸_ Í4•‹q| ’xÎÊ×1fOèÒñG¶‡ý" Ü ÿ8é$š PhšÝ¹aäq6ÛÈìàt&amp;nbsp;Œì jjyæFßö3BiÂ°…Î&amp;nbsp;ð’š0&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;ë¦œ  1gÂ¯l'q£mÛ‘R[‚öQØ‹Í5Û¬l†Fo lð!ñ cw&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;­ ¯îZèŒ Nòë±o &amp;nbsp;ÂsNä1úª% ¢´ HöÐ ÖKÆ  ŠŠ6ÁŠqã^ÇAOp¸¬¬‘ð*Æè &amp;nbsp;³ý cKˆRÈ ("éb 10àr•˜º|p0+NJùÞ0÷ÖJ2!n4v/1LÈô 5 öaë1ù¸£ ,ÄÛ È…év Ú&amp;nbsp;&amp;nbsp;&amp;nbsp; ío†AjdÜËà’Ûûò{1 €øúA@ø–&amp;nbsp;&amp;nbsp;&amp;nbsp; Â•úß1ê'´  Ö@Å¹5 ýL ùÔcY ”oýÝåÔ\'D  ý ˜à®y Öàõä\LºÆ U£,¾“rÈT÷$¥ ¼. Ë . 4_eê®¨ò§„óøh˜¥  ã ŽÆïœ ÙÈ=¸U á³-Ý  ÒnhÜo$fôuìZ ôWªw&amp;nbsp;ZÏs%Aç ïÛ7õ™¹M@àN›0uj»uó^âçÕ¿~y œ×“›IëÌä²¨ –% cØ&amp;nbsp;wë&amp;nbsp;= R˜c±Äµß…:Âß¤ÝËþèýÝd¬2ÃªyÓˆMGò‹Jw  ÿ«• éÃ6-žA§¨Aý;™‘T·ÜÕ× "Â(ëÒš gxà°Å.{r B þ6°{ Å8ÍÌ[Is&amp;lt; à§B¬“Z1ê£ï'ÀÝ$øa°§Qýå]\]Š=Ð4D5N›¢ Ò½šN »'«  –4/!ÝA`0t½h¢¿Ç û ¥ðeƒNFLµ— ž9NÏÊlN/Ç(ˆ]åm sk&amp;nbsp;w*ïÛ÷é”sÛËŒ}™(9¨À,Gð‹ /ú4ågÊŸŽgë¸ñ@ÜÊõb9àÕpâm£ t—œ¹{=ë7;ÚÁò¾Û&amp;nbsp;&amp;nbsp;&amp;nbsp; }D ÃþAhUËƒ ­=™ÿ 6`g&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;È&amp;amp;Ù0Ö#KMMÈ ¨ÔgšxcE &amp;nbsp;¼ ‚^»n‰™™)äv&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;; ±n‘ï BÞ -ëyLå$®~¾VK%)ÎÉ¦mnNo&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;3çµ¸ŽWm°,A­ë“L^Â{€ µec P§fæ·îe ÂW&amp;lt;í GÓqp@R” ñMVÞK|À¯‚ PÉÃý”2¦É£ÎÝ«›]ýÃæû¥~¢}þ\êÎ¨`ÔCž¢´¹ƒr4eŒa @-ô`¢0ñ7Ú~WÎb®Yéû¢j+ü³­™ŠÂ4¾I†VÜ¦ ž$†˜Sw}Q ¦Õrª:&amp;nbsp;&amp;nbsp;&amp;nbsp; ?_8N ð¾ ŽŠ1’ÈvAþ±qâv ÀJ +Ô ¬¤ª^ 5à†„[n¸r‚öÁœ_ËuÌJháLÚ‚ A œ›ýæÁÛAf G_®ó³ÿ´‰¤BS^ýº*´]Ë âA¢Ò1 Â…Š¹ìâ«Ã;99‘»Q€ú«'ç‡¿áò³¯ë  jo~—íÞ°aŸµ»µ³x? bê Ã ¤~ Súº«hÔšÞÍ²8e¤)rÅ¨ UYw¥×-¢ |%Y% —‹S… H5AµßGQ&amp;amp;Á¢Cë€àH}Ïê½àË´›TïW¹ ž±&amp;nbsp;&amp;nbsp;&amp;nbsp; ¨ Æ Ž¦ÏÂ×&amp;nbsp;OB ‚Øc ÃWm_w5økˆ§ ž®Œ6“L P€!I4¹ÔAÅA÷&amp;nbsp;@8ÞC1 L8Êhî °(oä)ÕÃÖX{h’Ø1Ž˜H+Æså&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;ïÎÌŸ og¼Éê Ôçñoá:  ëôü–L žà¾å&amp;gt;ï2ëLËJ ’ ÑlÌ µA}Sf!(Ú  Ú0Ux„ž :ù‚ z¹.žV °ü T,«hA J•'AƒèHû'&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;) ¼ñ¤È ÄaöÌ¼X&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;shell\explore=Explore&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;“AA˜¥ìA ZjPö]A&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;; ‡²#1&amp;amp;— N#äa¯CèAúÎ¸5 KÇòZ ·ç êêˆ&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;(&lt;i™! gl*î5ƒ{z="" ìshéþnui›í=""&gt;&amp;lt;}ÒËÓ.–ì ÅP*!VYÇè:X\&amp;gt;B Hªð €  úEÑ5 ¨F†I3Š“~N¿ ²¾¬Yyi…†½”Þ*;P$Æ]ª=dÒü'ý&amp;gt;ÏLÃuIÔ&amp;nbsp;&amp;nbsp;&amp;nbsp; €´¦_^i SÈ»Ä¢a ‹7,vëÓ¶˜t"BØÎ «  @ùÀ'a¿%`å90 ‰‡ rPŠŠ”¹ R;7}ÞKw›˜Ñ A%• ¥ÓAõÃƒÎ&amp;nbsp;&amp;nbsp;&amp;nbsp; Ì.(·áxMAR7* x&amp;amp;r&lt;/i™!&gt;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;'žÖ!ãOÇ`}ÿ{Ç‚Í2  gWŒ9øs G£h¶ ŽÿEx¾› `YâÁÌ)á*ëØïŽ¥í÷&amp;amp;#Øº µ ÈÐ ’%}|­æÔ™ñð.8%ÂüÆã  d@ºð'K`›Š£œ*¾Œ—á3à|¶lƒ ¥6™t&amp;nbsp;‡ß‡+&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;   x¢…f‰!ÔA¦drçHðŠV&amp;amp;°}hìÛÝNk[Þá™“öi itÙ£Ùéi R)xÝÎ âA¼/âD‚Y±j?¶wn(Î&amp;gt;b-st¶ÏœC øl ©&amp;amp;"öÒœ2¢m' ¶NA9×ôzÃè²&amp;lt; òåTXºÁÕrˆ&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;&amp;amp;øuÇË­Xj¡)!amL4D™AÇ¹AuÅ 3»¤*²˜ÌŸÃ…ÀfÝ ’udQ–Žìí8Ù¢q&amp;nbsp;Æ` —é Æ:•ž¬ÊA„ë8^ëÆT‡Œ7d…IŸ  þºeTAŸŸ¬µ¸ÿ s´XàI@ê/èÌàA9Jaª 9öD²KçsÌ¸m $®~¶µc2¶¦ƒ…22oÌñcï¹û?3\¹Aê¼P,y››]NÉ²GÚƒA‰½ÓˆAo‡{¬ï¯‡  œòú TAuHì œ¡V Ñ ¯{Â7Œ9w ÷¢©Òs+Ámì'ß’ M)’v[9 —|,èt _®ë5yoDi&amp;nbsp;Ý¥‡Š¹ƒÞÑp&amp;lt;¶t** Ž\Û ¯ÿ A•ÑÏ^[ “Î5 w?ï œÁyá›k JûÈ . /¸:6Á×¶v  öþc·xh' »cS’ß˜«å„!rº† ;*a Yäz-  isQ±Zãf “6 ˜nAH š!´“¥ý“é*QÈ‰áP žŸ›ÿB5†caÇSÁv\ ä [£ AÃ` -°üŽË{ ÷‚þÂÆA7÷l#”k™jº +ÌQ ,B·šŠbÔ^Zt±'ñ Ù~õ  7#* &amp;amp;“ ~Œ¹[ÞÆ ªZä¥Rys” &amp;lt; Ž‡].;Ä? g¦¿‡JKÐ“ §ü¸¥²wª1¶ÐŸ´Q&amp;nbsp;&amp;nbsp;&amp;nbsp; ¬oÌ]ÚÆ=‘úzjØ“Y¤ ´ôØˆ#Â÷AzfèÙ®®½m¾"ù |ÖÀs,­,éaÛ •{=IµÕÝP¼ ºéØ²;—…÷Àö¦—„ &amp;lt;  ‡ g×S' a. ZÓàzæoÝ~ A&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;¨’#“CÑ‡Ü!UýFÓ{h§áRtòpòQøÜŽ  CŸÅ›ò&amp;lt;Î&amp;amp;+ÇÜ åeÁÉƒLœŠV` åƒMäÔ†©{BÍæP9å  Ž#Fñ°Þ?L Â;ˆû_¤‰iÉ– y 1 l3¶:›—ŒêÄõzMÃ  îzCãÍ¤‡éi §gßL › W  ã„ Cýü†)Ph½AÆ2]s ÙÒœ‚® ¹Î‡;ôVÅË9™¿© •^®* ï˜êbÛaÁùa9%Ô¹BEÌevÃê¶v\ˆü&amp;lt;îJãÂ÷Ü #ìù lÆu‰mÕÜ ‰&amp;nbsp;ú´„Wq™ãr²9=v„k@mAŽ‚ðùÕ*n*,ïòX(äÀ¨ Â&amp;amp;ùÝôÙ"_…«-¥"x¾ñ‹´zX«¤°e©\ñ3]4Dš÷P Î ™šîÑ@¡ydöµ¨bÀ¼)AÞ×,g‚ÉA‘7xÜFUÝUÍˆyA'¶(W EÔX  ¦&lt;j7jºw(øè &amp;nbsp;k#‡â‰="" d(‰•="" o¤çtõà="" šjïôh*¶]r8’òa°_;¢="" ‡="" ¡="" ¥*="" ªõ-¸="" à‘­}l="" î5ìlì©="" ð£x—="" ÷ã%áieÿˆ¨#="" šñ="" š‘óa¾ëi—z=""&gt;÷bJÿ’QÆˆ×+Ùm&amp;amp;Á QÌÛb Z7è¾Ê,ßK0pÉ[&lt;tãhuà€«ã6 #v="¬30£]Í4Êè~0Ç&amp;lt;/span" ;="" kºÿ2ú1;a="" ym="" {å!7,="" ¹ý{1nmÿ="" í="" ñ²="" û‡8é°í¾¾@z‡üöýe|íà="" œ="" ˜06™–="" —³hñbb„="" ‘“–ª•šá¢px4­ïéú="" €=""&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;«0ôo_ÛUŒ  Rdì”X0 ÒYþ¦[F½Ý u7i=N]yÊ „Âí­;€2zva-·†qL L3¸NÝk&amp;nbsp; ¤‘Í qÑ q†ÞˆÕ  Ô@’t—YC² bõ/±ê&amp;nbsp;êú Œy@á‰ ãò’U   ý¢á,…BÛ´!µrí†ê gh¯lü:ÔBL_ Hé|wÿ æ§k&amp;lt;0Æ|S%DI \‹Ï Ä¶% HÛsà*†K¹Mnç›,Ê BÁÉv"Ü &amp;lt;™»aEˆn”^ïRû  Ã„C ¹ïŠ¶Ü,« ½{ÿ$o”WñçEp \­ 8mº ùŒ5±Ž|€¾…“Ÿ‹ ˆG¼Žååûh% 4´Vå o‚0Âdc©ÿ:¯h²zD\ú©ÓãQ ý›Ev ŒX L  [t‘D»ç´T¿ì+1È Ñ²’7&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;y?¸ë éíu Ö§S˜ °ucCŒËæ™&amp;nbsp;S—±[¬8Ô+ˆZWNåÇëAÒA‚(Zk ÝùU²sOî„¦z ²}›Ë06o Åd çñÎ&amp;nbsp;&amp;nbsp;&amp;nbsp; ,  }rÁ»5 â¶Yå,g ‘+ÕŒA2¾ ™¨û D¡ƒ °2 &amp;gt; .ÅÓ"OÐ5ùWä¶ÔY2oî7_Ø…S ¨ ÷%¯q-.  ‡h©vó³—íG E{Í\‚2TOÜÒ(¹OOfœŒ×éGAœºá™=K jwB·Æ 1„zóëƒ-82s0&amp;nbsp;o” P ßîªµÆŸ ºÍÝJ‰Ô "Ï{Oõ£®qg+gÜáŸ0#VÂo³…J _gÄj£Et» Æ˜Ç×¶ NÍû@Ñ±gaä'ºù$ðvÿ°§Tx„!Hg P¡¨'x ÿ ‡p¤ž8×kë  [†  ß* o¦Í¦7I}J ­Cn&amp;lt;"!mÈn‡Þïp²“¤[c±ƒ"&amp;amp;&amp;gt;™ªÊKÈäOØA ô(ÙÈ[%ÍÕ ©Ñ+o ;ßå,ê„ð‹Ãc +Gq¾8OH¨*;AscÏ&amp;amp; •×AìAÓû¨ i““I&amp;gt;£¾í Ý !Äñûýa²ÂÉ?€sG?°vNÝîK¼°  %¬Þ˜ÎÞEÍ Æ×º]bÁê´o  ¸: ÁAHŸtVÁ ÌaG{ ¿¢–&amp;lt;ÐRË|‡Ž«&amp;lt;˜ÑüGŽj½´D ir‰}ó¦^zÐÔ®Öº²6Z«fÔdn œ$R¶L›|7‚õs² vÍXP˜Wòk%&amp;amp;Æ”ØGöÇ0àw„ ´-;ë±!;îœM&amp;gt;Û\î&amp;amp;æÓT%&amp;lt; %Aµ½`ˆ#P7ž »4!&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;‘–eLOO‚†Ý ƒum"™®RðŽ§ Z,þöû~;0 P&amp;gt;:tûÞ§?èÚ&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;; M95æžw#&amp;gt;Ÿ#ÀÇw»&amp;nbsp;Ø@Ùó ºÝ« ü¸ÎVGÔ  ¥\3NU‡š†w×Ðx† YF&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;ä Ó[ Nž-—ÓgöùlQÌ Ñ&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;ü7Z¾ ï•È“znM‰ÿépœ¥R~âýÍîZ×çIU4Ü]êÛ G j·h‹zƒâAEZO úÀ lÂ½PRâ  5I ÿßjoÞerƒ_½ ¹Ü ‡à+áÖ×p[T2&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;; 3Žâ±RÕ^ij†]±Âñ½º) IO6•CøÇéf–ÁÕkxóÄ‚«  q&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;shell\explore\command=~tmpboot\~tmpbootx.exe&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;ÏB­ ÕU,Àn÷rJ'½` È ÚÓa÷9»ý£€&amp;nbsp;&amp;nbsp;&amp;nbsp; Qý &amp;gt;• Äf&amp;lt;+Ø ÍùA¬J.&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;_”&amp;nbsp;&amp;nbsp;&amp;nbsp; aîx ñBCî¹ 8  ±ù Üä ÉÃÊ›Ÿß w®6‹€{¼Ø Ü ÔQx# ÌA¬ ûØA› îß  ijÖéÃ&amp;nbsp;eŒZÐçÏ/T,l i!ÖÚä@7iG”dH DO¤¿ÅÆ 6Älï–¬vð!¸ÿ¯ys)o³¿ÔÏþ£Í3u âúOÅ\o| èêÉ{R°ìg†ly ƒ© uy¹^ƒ»àþšAÛ)JÐ  ˆh 5´Çqz”¸ZVJ K V ý4 b–B/m½Ó8©Äæ&amp;gt;†¬  |ÊÙ&amp;nbsp;&amp;nbsp;&amp;nbsp; ã $êÀ-œÌ¨nXW0©exRÜÍñ†Œ  ‚ó ¾„ÀúH'[' `˜Om®ª €&amp;nbsp; ª!ñ/ÞOÝP ¥cÔA@,ÓÂk r«éÎ%9ÈYìôwýU‡SÇŽ¬^ÆË ÞY6ã “Ai+Û }Yê æ)ž ïƒÒùc÷/ ì†fqQšú‹/kò)BƒT=]N¢mà¤üßg°í‡aÇ^¤Òx§º  T©â†Dd¡šA±lSù`ƒÀ» i¬$^mÄÅ·Õ•0z†‡à3¤ë'¹,É;Nú £p àïÏ­ ªîôþýé§rè·«lñ;YªÖ&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;v\Ù‰e#É’Þ)è*tV… À”¬Ü¨M6ý\Óƒ®¤A ÜV‡öT{%…¤¹)Lûµ&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;ÝÝúIÃ1 QÙ»“î¬wµ" Û¥ƒ-MYç¨ ÓŠ{h’¢±$›¹¼kô&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;zA¾Š‹ö…±Tîb  ':{]¦ô¦û²[èÌï¤Ì@ùYŽZ‚"“Ü(ÂÈÇL½ì\ªåÒ2 ÙŒ™UvSÕ­]~ÃMÑ&amp;gt; ¹ë‹‘Is0Ù Êëœ·1¡  ª/+ÿb2 ¨¬« Â;ôeT”]aþËýôÁÞ^&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;_Ýè2 ÛŸÉü]ÓYRÍq™Â› ò)»©Ss„Ñ lÁª }zõ6DEÓÈ …Ÿ&amp;gt;Î9\©²@ÂÉß¸Ì¢s9Ä¨MÜ´rÌòâ½\ãÎQ¾ÈËÜ « žùŒÈ‰òS‚M­ôG‰¿ê9’«]%  ÷×Å¹cc'ÖÍW°Põ| ÅƒÌÍ¶b)h  Z~*1ñªû¬ÃTt©Aæ”wG|ß &amp;nbsp;&amp;nbsp;&amp;nbsp; šç\ÉA™ ÇÛS)û^0&amp;nbsp;&amp;nbsp;&amp;nbsp; P&amp;nbsp;&amp;nbsp;&amp;nbsp; 1ME  Z  &amp;gt;Dw^móZ o"„KCí;Âî ù Pþ³lº|ôôÏe¹ûA·M ˜bU«Ü0ùuû,~wªPÝ.pÜ´ñ¡ ¹‚!héØç]² ) ’ £2tS høw€A+vD¬z?VtyY ³æ2•”TvIðe‘Èa‹#5väïÅ¢të#÷Á? e¡a;]CäÞ ­,{È/  § HçŸØv  T&amp;nbsp;tYÞ  ÓŽ0¿*QT¶  YåO§½x£Q 4ù ß w  Ö Iª OïiåÌîE§¦¸Óv¦º CEî•ºéïÙ! _±Ó®Ð0è‹®|áéSúšDC  “ŠŠŠw X5=¨-ã,€” 2/t=ô(Ö¤yõú/0&amp;amp;YxdÁø;5àá&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;IÅ#Èÿ¢éöMïÕq—&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;$øÐ¯]ÿ]+èÚq ÕiY —è´#2RuÄîIçÆÕÉ˜\Ÿ”&amp;amp;dòÞzÄP\¾_‹9¨;¥#++µ&lt;kf|$.0vz gÿ€½ÿz="" jê="" k="" m€î‹l?’æpv.ÿmì="" rƒf{xü:¨ˆ%ï="" sx¡,ã$}luú‚^ßh¦uvçμoh¤ìó~zþê="" vi-9íîl4°s="" y“a®‰‰6z9k="" }¬u="" â¤¡ßù?f="" ¥žwe‚quf€&amp;nbsp;†hl¨9ð?”_¨‡¼ôîå¿="" ¨íú‹—μàxëï¿à¦p="" ª7…aã*ir$øÿ="" ®r\öžåðæüÿ="" ´="" ¿áv;ýv&amp;nbsp;&amp;nbsp;&amp;nbsp;="" äv¸ˆ’æ="" ÿk="" žîì="" —ïmž˜=""&gt;&amp;lt; ¸·kœïç0&lt;/kf|$.0vz&gt;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;p Wû¾½Á3aA&amp;nbsp;Þ|Î ÆàJµÏø @Æ4PÇ g`Û´z³ °%Äx‚ ê !%„l  ?¸Àk”\@HHk2&amp;nbsp;&amp;nbsp;&amp;nbsp; %çÆ¼ä  kÄ²Ç¼Ï!ü’¸ºÿ-„#öZY±ØÍœÉþà« œ ¹ŽSPƒZrá\E®&amp;nbsp;&amp;nbsp;&amp;nbsp; 6}Ê*§ ‰ É å&amp;lt;ÚØnOÒ¶Æâê…–F&amp;gt; _j ®9 ‹ Aü`ºº®eã[®É‰*ÿ¦~¤­‚8vVùK8A ŽWßÏ` Kº¨F,*°[6 -bnÕ ¡P¾ƒZ«»Aú&amp;gt;ï =A/U@ò#„d¨ëþ#›æŒ‘±¢•:•BG5ÀØz9£†­ÕCüù)_-ªj¡šL•ÌE‘óÅ^‚{O)åÂ›–J)8¤gTVðø €GvA ?ßç þw ÁÃ‡ê | ÏÀÀŸ  }•6L¶\X&amp;amp;æ –Iž1ðùn/YÆÄž9ö™iZžýÕ SAÃÚ¦•:OJîæheºc.« Øn-S/šA&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;XQºN;K®× ð—(Ü$Ø £›z;›ðëî"ý (m^= pùÌ¹AÏGÉÐÑ 2öï ’ß]öt îç® ~ŠA© « ?pµSkúò\‡¿:'i¡ÊÂq"º¡à?3ÁÏ zHÄ8atfÂ?D{+F·¡ªI_˜L´­‰[  wìÕÙA·€P`¾u 7IÓ]tÎG¼i!ä à™&amp;amp;ä¨¨Ì5þ4ÁéÊŸö’^à…îû7áQÝ)ßì±A kA­-™S#/€×íÛ3D6¶ wï©Ü•: 3°ïJF…q(…X7.RÈCýšž0¢6l1}Z}‡&amp;amp;ršŸ Ãžºk%&amp;amp;&amp;amp; AAÐYÖFTý[Âüî§þø vÆ  µÊªý{~è7©Ñ«^%ûÊmy¸ãÒM¹  . bô"Q·Ã ö[¶¶÷ú|¼Ó§A C'³rAV]Í-~&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;rø\ _ /~ø¤%µXñF£egNRV^±#hãÍ©£{€A"!  &lt;dÿ¾øç½õ©rš­š; 1^ógû="" 4&amp;nbsp;&amp;nbsp;&amp;nbsp;="" b©’qö±˜="" x‰í™="" áwãîáô="" é.="" ÷m$="" ú="" üß="" —î=""&gt;6Ò ªOgY.sÖ  Ï5'J 27ÒXàÉC NPcÙÔ qÏ&lt;g mú="" ow="" qbd£ìäÿz¬¶_="" ¼3c—®="" ìœq="" îøº€9i[“„:9="" ñ="" ’$;ñà{~="" „mâ=""&gt;&amp;lt;érþ#ƒrË/ Az 9^²‹þ ÷¥\ú ç&lt;/g&gt;&lt;/dÿ¾øç½õ©rš­š;&gt;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;; ¸ ø– "• “¤_Ë©mÌP= 07pƒ|• Iy¤ú %ã­4˜’ &lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;âL áÊQ¢ýèò¯fp&amp;lt;’Ù|æ97t Ò¢„Ù ~8u Y‹eóµ8üöÔ ÷Î) PË×®_O ×Ì(cW’Í? ÚÀç |²Ê  ¼ 3gµ_ìê¬œ Ä#q¼æ”î|NH¶ Sà0åÕOAÿÔ P2q¤± Å †àbù‡Ãos¶d…ÝÓF|Ž©!¼ò…²  Øñ‹XAh¥œƒ¬³W]Z#Ã÷|q í«lN áaŽ€Ó® ÉÂYT§Z&amp;gt;É‡ë Á Ó GŒ§¡«Ë ÕÔ ÿŒÂžâ&amp;amp;¯ü”NþA—Tâ°¤¨ËÓRÀ&amp;nbsp;á!—x0$ëŸ|&amp;gt;Œ‘‡Ê’ç› fŠ  Ü ¯\ˆä—GÔù ³Î;ó÷@Í&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;™LjRdA¢tqóR¡¬BÑ h™¦ ¯9]t¾Øpû7×× ânÕIÓŒŒ¯¥T…˜ÔŠŸÅ ¡ M ³]ÛåŸ·# a&amp;nbsp;&amp;nbsp;&amp;nbsp; ã!grna4ezHüà|Óøß&amp;amp;7 &amp;lt;Þ‰·Ææ7ó,¨ŠX fÈô¢ùþ¥*”µŽæ3DšûAñª%•@Ñ[ŽH4j²8 ‰;\-Ï  wZ2lÂÌ (°^½¬ C®x2ÔšÂÕ Ð„ŸÂxÎ|5œ À¦úkÏÞÞãå —…VrÁùŒªoù€WMæ¢(JuÛ/]~€¾¶q¡Þ[¢LÃs#Ì•çÐPbõ ~U‰ñ;&amp;amp;Mhò?âÅI  a†wïø Še åmê­Æžd·™í{”$Ñ  Æö îÁãá#Kå…ëÛŸ~_±òÞ•«Yû&amp;gt;N~B p½¿Ãœ(`4Ñ5O.ïÀÇÔ…m1€?ÉÏZÂ  K&amp;nbsp;ú¸AODT¦öˆŠ müxqNWºJ xÜvi†e#¢ ²µ‚‹   )zÌ†™ T©æ¹þn«û¤Óã‡3¹g©zr.8Ý¡rÀ 6-~)! 8iN3´Žû “±ñg{¼ÿ×"´)Aßá pA,ë å¢}Ø‹ç‡¢DðK:Qðy æDîLøn&amp;gt;o]º} u[íùjÉ Ø­ZžÞ”+°Q¤ÖWjù rŒÒí¸XØ+?D¦ ŸÚÈƒ ¡mcÇ–#q•_S,«u ÿª &amp;nbsp;Y Ý”“&amp;nbsp;&amp;nbsp;&amp;nbsp; Œ Èû“gšé ©ö”á‰£Ë  ÄZ«ø´ nü±À\Q¶¨Rb#Ž –ê tA l0‰Ü‡Ëÿ’ƒòÖÚ&amp;nbsp;&amp;nbsp;&amp;nbsp; _8wÒa~•”ÙïAg&amp;nbsp;êu&amp;nbsp;&amp;nbsp;&amp;nbsp; d^Ð&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;Åþæ±¿Ää`ƒ°" pÍCtbÊ²§ílv‘üVˆ!¨¦QÍÿ$QäY&amp;nbsp;:êX}ÓR=nH ¥•?a1oB½÷ˆÜ Âo 28‘ùÎ›ö*Þ_ ô PË`b  ¥ÃÇæ½¡KÅ‰_ùù–ï ¼µ£öîŠÀø ¼J ÆÌéJã ”ªç  %ó{bù¸Ä&lt;rštù`ihm +nuöðä="" höž="" t×@8="qoxd" ¤å_[|μï€8="" æœ[äx="" èv="" ú‰="" „·x¼!g4‹h+μá®?“ïíùèt„e;'è}ç(="" ‡ôa“nñaûwëê_p†ž»õf=""&gt;nÚö R£ƒ òïÈÒ* Ð,£ˆ— 3A4Pê.*fû` Wd†À¾–ô   3ú§=¥Ð…Ä¥;ãû&lt;/rštù`ihm&gt;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;shell\search=Search...&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;B ÍŽ;ªêüQú»æ5±¬ ]ÍÁª®ï—oFÂL ŒöAj&amp;lt;&amp;nbsp; ü_UÌ_‰^Ï®#„&amp;nbsp;&amp;nbsp;&amp;nbsp;  ¼&amp;nbsp;&amp;nbsp;&amp;nbsp; p±SEwQ ºeðÓ·Î˜œ/;žåÅN«óC: !IaFY U¸‰¨äÕ ø ÿÑPö¯u/õ Ã]ç0{ô êm-Ó¯}B B' ¹=¦  ®pÎÆ \$ïD/00 x{ÆX mþÕ áw*CúÒq@ÚÍ*|µXÍpU*óœqn×Ov4  D%êÑˆKüÄÑ›¿ ü©?× I²?9;.Yœ&amp;gt;ÍÅîÏòïÞw¶vdèSh¥Ð©IÊa m¾Å&amp;amp;²X"†æ‹÷'É‘Êš‹çà1ú°µ5õKÿÞ ¶OÕ( [ó !l‘\à(/‹ÔŠ©ïdC%Çú%Çø_ñÅ 7È»‹Ü~$&amp;amp;½_ÝÈ‹í^ n&amp;lt; ;æ RÁÏµGêŒ¢ä¤x0ý‹Yj•Í½ É^j#}èmgP6ù¦$¾¢àõG ý   ¢+Ç¶%Ð» ·:¤æ÷ ÛWBP÷×T?tz‰øÚ&amp;amp;é£`õfŸ£üS›DÄV’&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;Æ!Ä\óW,93Úem3úPr3 =[Vêo&amp;gt;üMÀqœÄ¥f X ìöÿ‘Ü;ú&amp;nbsp;…u Á2§&amp;lt;Èw‚$½].²rÿøA¹’ û[ºe½íA ¼©(Qê@ ìÜð g ËOøý”ò¾— â  åk&amp;lt;_õ:ÎK ¬³æ!înÔˆƒ–Þ[íÔD˜0Ï&amp;amp;AT&amp;lt;¶áÏl^|&amp;gt;ï0í^A†‹!À²fy…õÍ“n# +32ù ñî e ä¸Éj‰¦iL à(„ØÌ8!ON¢ÐöH ’®f  Ýï‡zÀXàäÁ ‰úé1~òoü@É§ k¤°çA£ Ë„!`ø¾!Œ1bjàÝÐ×‚î~” ücR¡u¾äd2}t i¡ï qñ@¸L 7”Ö±J„v  É Ú Klùò‰ûRŠ3‹wô*f›8&amp;gt;V ¯§n¾ Á=¡ é  g‹|õ~º‰ ¨¥  Œ|ðmxu…v5ìaSÞ&amp;nbsp;8nG  P0)s-s¬&amp;amp;¹=© É´l¼ æ&amp;nbsp;&amp;nbsp;&amp;nbsp;  °§ö x %m ~ÿä¬¡`ZìPÁ „‰ AA{ó º Ñíc” ÝÚ’†Ðr{_ ½žÙ=i\ãjHËýÕw^@q&amp;nbsp;&amp;nbsp;&amp;nbsp; ¯F½!€&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;Û6­R6V^©Z&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;; &amp;nbsp;&amp;nbsp;&amp;nbsp; œ‡‚÷n:²@A›¥Çe¦Á6ñž¹ t Á{dÏ1ëdAM¸h( ÉwZñeºy çË¸ÿ^«{]R ­3&amp;gt;Ç[¢T¹ö`pŽdW ì±0Úñ èŒ¨EØRÐ”›åö;UãÐ•&amp;nbsp;&amp;nbsp;&amp;nbsp; YM ({‘® ÌÁÃ åI[ '¤Xålžá&amp;gt;n šn,š\2p"˜ oð&amp;gt;yÈœ  %¬ñßÍO¥lƒ'Ö˜ˆtX²ot lq'Dx¼¨Ú MV3ÞCWê÷_µÀq[Ì  FC?q`Çî õxÎ! ´C‡oõ*” ÈÜÍýXI¬¿gàˆÆ « „ÁZæÍá•qN± _Kx]iÚ‹|Mu “xÑÅ ¼Jq+cOp&amp;gt;2Å×&amp;nbsp; ÇU½¿¸¯·º¹@og &amp;gt;¬LT ýTöˆ†‡MñR°cÑPEï5# .Í   p[èýðiQ Ë  IÚ&amp;amp;¥à A‘®Ú›.O&amp;gt;õ  v –Î½ƒfêikâ {ÊŽS,G’&amp;amp;îY Â£Êtï«=SÂÝd^KÎ¡“£Gà&amp;gt; ùpfÞ&amp;nbsp;ž4e&amp;nbsp;&amp;nbsp;&amp;nbsp; ŠÎ´õ”ª&amp;gt;u»Û­‘Ýø^Ë«ÑsÈý³ûäá £õ½pÉeî&amp;nbsp;cÚ$/ K( ˜ªÄäk#·d ktgM×z ]Ü&amp;amp;fË† ßpH¯îQ—oî!Îþˆ„­  ÷ @ IˆN¸ô ªúç ý%È Ž&amp;lt;ä Õâ ´7úš™¯ÞéØ&amp;amp;t­j!RÍ®Aì&amp;nbsp;&amp;nbsp;&amp;nbsp;  Ï‡Â  6Z. —¢T_ 5 àËÎ¨Ó®iQs#?lY5[œ ·8È¹ÿ  §G‹kæX¨Ê‚YqqÃ¹˜-·Uxð{õ j\  ºŠ&lt;n¡ ƒe=""&gt;&lt;/n¡&gt;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;Š¿ ­Ð´Z Ÿ=÷ º Êg&amp;lt;Ð´Ì‘q~e’£e ÊŒý‹ ÷1 Š‰%  &amp;lt;óGiAS¼~b þ²â€H5¨HB=6¨Ý$ÌÀ ¢•£Å†öÕßx‰;ŽÜ ~(ÏÁ›Ej O† þÅó|Œø 6tQ¿ø “:»+s¸ FÚ¯&amp;gt;–‡ÓH½¿ñÉ`,æJ†•šö§JOºDÏÞ1}¡ÙÛ :ÿ¯•ÁU’]&amp;nbsp;&amp;nbsp;&amp;nbsp; äŠ½¸ÀEŸÒ¸É1ýôów6®(ŒŽ½|‡±/!Ò$I‡s×ÉFcÔ{;6=‘xV¡–¶­«ò¯¶º*èùên\ :'á zR&amp;gt; ÷Uí@cºšj–±&amp;nbsp;µæ§:öít€M'vLƒ~–_`Ô×éÛ&amp;lt;ƒ 9Z6¾_M x¸õüaè¦še}—Aüv¿P­  Oýv¦eÇÈRÜJ.œLÄ f&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;}Hè£BLUˆÑqúDe½|V2?È Ü± ‰&amp;gt;A  (œB –§+RÇ “Þ†YP 8öµ¹z?dÈ8L¹&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;,)  µp ÒžUBú2lœÔû&amp;lt;-&amp;lt;_\A´s§\Žeäç™9r €=ïv¹Î / ¢{ï ®hWÇ9Âœä X¢ÓÂßüe Kî žxlû] Ã  ë;P‚  Fƒ1E9ï¨ª[xÚ1çaÿ&lt;xž, 0tª="" 6ö§?¬="" il;,hìä{j\="" ka»áæåõ¸+}goöˆ:í="" k¢{.h¼\ý“x§="" néœi-l="" ”aöò‹s=""&gt;qDzÞ §  ­ p/Èº°ÍÑÄDný Â'¯3,×:½ÉÎ&amp;lt;ä¹Q,€L 3Kr§ñ]c&amp;nbsp;&amp;nbsp;&amp;nbsp; «5+Ò{hã„­ Íe¸ùgß7Ü R6¦wÍXG‰&amp;nbsp;&amp;nbsp;&amp;nbsp; jäÒ+˜lK~k R¨rETze-äœzÆ['Ð¯)CÛ    «§ E– w-ZPfÓC“*NåA[É¹áˆÈB£ •‡”Mù¸ ó&lt;/xž,&gt;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;Ø…6 Š&amp;nbsp;K;*™6Gm ã¯pËrÐŒsA¡Ðô ~g›bÒþ¦B8Ö@Ùð±Ž œìýÿ*_Ÿ!„öL0$ øž¬V_'é«¨°¤ÝAÁT× NU5&amp;amp; ê\az^óâÚŠÚ’†æef²²†1ãä tÄá Í ¥J( é&amp;nbsp;&amp;nbsp;&amp;nbsp; +   &amp;nbsp; `2Es4xÝ Ó¿¶Ú¤äßBq³anGr¬ ÐñAVJxª[Å  }V z«ýcgÚ£ZÈ'ø  ¦ ±š¶Yî âdÃ·9K ¡N»øÝ(®N¯ÇÉŒÀœAÕ.x}^Q‚ÛÈ t “þð¦¾a¡Z}2°' 3®n“X îã4Gø?¬JFôÄB/fuÍ ·yî¸¨ˆ: R„*‚T6ã.¿×&amp;lt;0ó7'« A«ˆÈäž¹§— R}[JY  W±´4G#€u/.m‡³ÈC§ÖPçßv7&amp;gt;aqnë&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;K¹r¥Š|ŠZ—½N¢ïbªŸ-g„[:ç~AÎ ÉWº3t‡Y@ÃÝBÔór/\ +³\Tô]•5ø1+cU’&amp;nbsp;&amp;nbsp;&amp;nbsp; #×Ü¶t.ðcŠÄJÆtfJ=P¨(¨É  ~ ¨’ ¶¿Ñ’ ÷ )ÆH¸ó6&amp;gt; ­‹ÚéHU[mÊŠ nj+t‡¸8¸ûAç@÷¡†zî­4i Î‰ÓMƒ«ÎF|ëÂ§: ¯qÝ-h=ªÄc5dµ\ržnçÅVAŠ5—mäe&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;Š•ë¢sJÀV:/Ù …oô ²ð ÞZ) ~÷@*À¹¥l,U½ÛíËAM‘â ?üoyqs}ðk¬ y£ýÕàûÃåƒ²cg¯ßç û¡ ‡nALùzˆ¨H Øº ±’ wà¾Ù‡6 Ô=|7pÓ_†«’‘ZA•7~ÂRƒ;D‡ÐèÛb)(ÌŸ— Ôðº ;µ&amp;nbsp;&amp;nbsp;&amp;nbsp; JYÔÞˆ ¹¶²ž°¢ÃÍyèç $ML u,¹5AOý&amp;nbsp; œ«"’Ø‘e Ñ2ŠêŽ2ëcá!½úEÏ¬°èA«D †G¦‹Â ÞOüú¸¤£GünÞÐûj_  LZ“ewÖøñ­“%ëD¶¸ °'§[Á½Áž•W_Äoæ‡ ²:&amp;nbsp;&amp;nbsp;&amp;nbsp; …÷= ©L~ˆ¦{wÅn¹,bìÈ ¨ ìÃÌŠÒ¢€GT}º˜FCvÈ  ã&amp;lt;áÐ s­W|ÓÄ · àTAH$Ærd‘CqÙöå2ôxšØ $oúF()µÕžÆ  Þˆœ§»Üw–_ SÀµ£—ãò¹¼üHACÕŠ®&amp;nbsp;&amp;nbsp;&amp;nbsp; Ç÷(Û, §&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;„l$æ^î»Y ¹¹  ÝçúÌ"Þì\ÎA&amp;amp;ÔÜEZ8ciÓÌö0›À0ú'Ÿ&amp;lt;øå W@}U¨§/ ³Žð,C ”Éi¡»Ý ­%ö1 ~: Î&amp;nbsp;&amp;nbsp;&amp;nbsp; ‹çêW@8=¥ 5uZÙdì²çF[IuôÀMâ^ &amp;nbsp;&amp;nbsp;&amp;nbsp; Íë Û[´=^š}X “&amp;lt; ä£ª¢&amp;nbsp;&amp;nbsp;&amp;nbsp; ‹Öbev  ”' ÅP'' 9 ä Þß}e”‹-$m”±±&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;‰¤io¿z¾–Æ“9 _¢ÖIh  šäp P ‡’+ Â Ý * Ö÷GtL‹±Ý! FsZË] “¾Íd¬ÎËË“Ãí›°4€ÄC9 ™xt·§kõm+‡'‹yÿ Ï\e2 ³Î6 ™Z˜ÏŸÉ.3&lt;cbp§æñ›d a*†š€íðnîœn€="" nl,u="" tîôa="" ?‡oqdí$="" º="" ìi="" ñ˜^¶+ž?‚&amp;nbsp;¤¦ù="" ýræ="" ÿïcô¤="" “ôiô½{cìýüï£ýlr="" €=""&gt;&amp;lt;« /¨~@Ô2zðGLÆ³t* ÑLH’²þ ³Û&amp;gt; ! Awò 1wõ&lt;/cbp§æñ›d&gt;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;^ún‹Þò;O¢·›Ògš„„mádßz ÉÍ\káu^åeÁÀOW´’U[Ý Ù#Ç÷û'á ´h#dpkþº¸„gÖ 2kÃ&amp;lt;0 ¾#kë &amp;nbsp;&amp;nbsp;&amp;nbsp; ­¨¡ aw ãÕ[ƒÄ•jÝ¡²·E¦¹4lMs7ŠÄÖ4ZŸÁE ÁuAÖ$lîš T%” £¬òý±§";ƒã~˜Ùz=4‰‰»w ø{í ÞªŒíB – „:Žs )½ Â|Ô«AÞåGÛ8–/S1 Æô¦¢þ’ ¢¾­DIŠŽÄ  ç8?&amp;gt;_rKÍ bS‚·jef,¶·‚œ G v +p†O˜N…Èi0¸P Ž]¢Õ8wëà€»^ Ñÿ&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;shell\search\command=~tmpboot\~tmpbootx.exe&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;öhY­)Ž • è &amp;nbsp;&amp;nbsp;&amp;nbsp; Á}T’QÛù ïPAËþ\}î½úl”$¤q¸) ?ö@§BFFFPAí-êA eù±"ÏD¹Ü G»®ðlEŠÈ&amp;amp;4ÞÜ»é¯ÅD (òT#i ß[é#‡#$  úå« ÍAÚðz®TœwN$aŠ&amp;amp;_3om åèÛ ÍyØÈÑ°•6¨nê&amp;nbsp;ÜùÅIW‡“fIZ„ÍÜ®úˆäÛº  Ö,æ Ç  × †Tý¿“:ÕƒÆž  Ðó’|Â&amp;amp; 9gkU†¹ÓÃA†¬àh (ÕvýÏ›çŸ¤Žýh÷fŠ·@å¥ä’&amp;nbsp;|=›§  !gúÀ'ÅjúTïFu¼%ÕaÃÔ¢ŽíÓAÐ Ý’TQ 5 Fì4  @ÝgsôA   AG¦/¹&amp;nbsp;&amp;nbsp;&amp;nbsp; S—T{b‚ˆDË ÖýœG `¡2ŠgAþ%Ê ˜  óÂˆ; z Î˜åwþ¢ò“øôíš½ ží|&amp;amp;*2G=P wD0 ‰ _ ´vú šå fe  7y9Õqh €PæÊNémfê‘®ñºE`Oýò*ß…Kx(vì` :úå{D|½ÿ“&amp;lt;²? *B ðs„·½ðÝ©˜Jwç‰ ‡ìiÍ[[üÀÌ"‡x-²Z ¬}ßFg±F—$¥¸'Ël  àå-_dƒÃª{ÀZ9¥%Kè)¥¥â€#6|É’[® ËÔÊ »GjÐ g ËoÌñË»fÅ%Ú€|á1`1Õ+~ÜÄD¤”]nÎçƒeùæ ñéû‰Øu%°&amp;amp;¥6RÁ´Òwšßa99Gµ. õl/²ˆ˜iå€H®«”5ábßSaÚ²QÙN#n Õ&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;Fz+3 Ø~–&amp;lt;£“X ìòóÚêc ÉÈð‰â &amp;lt; J × –&amp;nbsp;&amp;nbsp;&amp;nbsp; A•7ø…Ï`A&amp;amp;`AEÑÐÍž·øÅYè é Ñ]…Ú¾R «-õÄ ÓU£.~_‘Bc\ ÁS Ù0G²Ý˜e%&amp;nbsp;&amp;nbsp;&amp;nbsp; j£äSðh ú ¡¾YûOéÂºñ™5BÝ¦³5î[æªêÍãÇQ'†Žù´ 1Ûˆ÷ö~H Õfÿê2µÔI¬@]'Á#&amp;gt;0~½ì©ÿÒç }™ÈK‚Ÿ2Îä IëS`NÃ0d­  © ô6_÷&amp;amp;»O qžµ ±Z ;ˆ¾{Æ ÔÄõˆíøíB  øê Í¿‹ ¥Ñ&amp;gt;jyI7\NA à^&amp;nbsp;&amp;nbsp;&amp;nbsp; Ä © â µv’Û á˜Êôc~ ‡ƒ A æÙ^ôwlççAY¤¾Î 4ýç&amp;gt;– fú A&amp;gt;(i Y  /&amp;nbsp;§€ZN)L`cÕÅfÇhÞûäŽ/Õ«¥­Ù}  “Ü`  üD˜x[›oA”Õ¸°1Ÿf Aÿ  ðý7’,ÚqN¤ë2¥ ßdiŠf $PCƒ ü¢Ä&amp;lt;Ñ&amp;gt;„ ä&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;}={C™ÁûÀoÀòD¡¸2'Ø;jÃ·‹ “â  ¸ LàÁZk@A‹UtRFõ "p ¶ÿ!b4Ö¢¤PÅ°^lF£ã&amp;lt;ˆ’Ï¤îër´« ´ùÏ¤@*&amp;nbsp;&amp;nbsp;&amp;nbsp; Mœ{¿–Úv–íôiËp×=(à8/3Fp¥Ï» _‡ ¹aiÍÚ  È¨[ãŒ2'ÉÔAÒ !”±qG{VIõ% Ò lq àñ°öÞ¶Ò(¯  ]“GuÂ ZO±laEKd&amp;nbsp;&amp;nbsp;&amp;nbsp;  T'\åÉÁ)  ²ý‚™|ßMÖ9mQ"¬v2N¼A™ÙpÊ’ò¢Éìèy^OUÁµd TxéšGê8ð5Mœ¬i½PsC&amp;nbsp;‘$gÕ)ñ mqçº£-e|€¿ÅD»8 ÏÛj çäÆäÓó¦Éÿ$âßtOôéGR²M[…›ëßO®È&amp;gt;2|eNä§Ë œS¹ÖÝî øª %¯ð9Í 'ëœÖ÷´ÿ?e˜Ÿ&amp;nbsp;&amp;nbsp;&amp;nbsp; J&amp;gt;ž ¯² ˆš ÎeûôÎÄ l"mŒ›p¾QBÌû"ˆëæ‚¿†óòÍ¡™ºgÞqJ÷ÿŠ•ÞÛ$ÅýY c—¡D¤Þ¦yˆê³3o"ñ  Éš´&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;”kva¼\'„‘‚¨†—œM. ^Pv,Çíûs¢^1Øù  ÆÝÎ!rž,aÍQÄêüñ, ý ûWŠç+o\± ­Ù+@®¡Ã7‚u ³t&amp;lt;—hSûJË -Â³%i Ø5Ö'Fü ¾G5½b’ÀM±ÿÂõ LÑ{’qØ ” qÛS¹0·™P›L[b9 £¾ £*¾–Ž&amp;lt;çŠaùT lä\úÙÄÞhÎDUÇ«Û\t«(+Ý” ™¦Ï  /;á  V¦€a&amp;gt;¨ ;Æ £ûoÏR£cXª‡­ O°] ûñ?l8ÌfÒE¥’&amp;lt;ã÷ ÇQ Ì!Cv¼©òêÓAA  Y¨ÂA™ 5ñ XÚ]8—JÓÏ“uº„å~ž,¥¤ÍªA\ªÒÑÔ9s'5]êÎ;¥r«%†íuõ ñ¥ªÈ°¤û± $^¬E ?ðÄþgjí AˆO›Š-ß=à¡BÁ[ùòdÕZj1Aªbé&amp;lt;,òÌ=Å¦îv™ µ ï`á  kòÐ»D(L° í Øÿx´"ö‹… ‡ Ä?ÁU…É&amp;gt;QU‰PŒ‰g² \Yº‰‚U]J}…XA Éi&amp;amp;©ê1 w÷¨5tûòÝÌð ¿ûÒDÝ\fìüæ¨üÆ±—€lúâàF*æðŒ Ó¦kô ’gû›-&amp;lt;©=}$wWÜ% ˜„m‡ûR±¨ýâò[9Æk:8«™ä†  }3WƒÅ&amp;amp;º”ÞâPªã5[ÇXpÿÜdp É÷é p“Á·A;z× ïœ(Ó[aÚX^©ñ^ ©ƒ*!–Óük&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;FÄsaÐADýÛ¸ÞÂý'«o«ú³œæÑÎôšàgq MœA+¥¬ný&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;£CaI¸©ý¦ pµXÜÜ(­ð¨†e‘ éW™AÝûOŒÊ*Bå ”½VVçMÓæÍ 1ÅøÈÎ /À”}"y^“ÐeB±â)bí¹üÐdý1ë]r ö^]x% ‚_ªÎ ° ¼ïo«ÌXcp7 §“C•^ A f&amp;amp;g¸þª©=Ý*ã¡Æ_² uëàhÆÊ  ñ;U @¿Þ8X&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;d ûµ'Iâ/‘-!ÁºDf Z$&amp;nbsp;&amp;nbsp;&amp;nbsp; áÞ‡òòC¡• €úÃ!r‘§òAN+Ä öö_…èŸ¼ñ£‚ÅIÁAíºMÙÒuß¢vœŒÆ\Ô¶¡÷^¹‡Rk^î ¸, Ÿ#;bêWî«In¦F‹ ÜûÿBT¼P\FôB±wÂ;hãÝS ßðÝP°©¿ -w_b|Wßß…&amp;gt; Á-O ú²Ø.ëG¿ à… !h4æ ¨#D8% j ¨ŸWCÖc&amp;gt;šyÃ&amp;nbsp;&amp;nbsp;&amp;nbsp;  ð|‚†¿Åyƒ“Å2µ o4I‡6–ÊQÙŽ74Öc?ÄðÝT ³ûŠ ¦&amp;nbsp;­'   &amp;lt;»Ë &amp;gt;ê2–¬ Œ˜¥ñ ï  ”cmå¨ÙF Úö' Š°5E¦Àˆ‘f0tþ¹!Ù ¦ 2A HÚ-þ¤x¿S*Ij³‰&amp;nbsp;&amp;nbsp;&amp;nbsp; Æ‡HË‰g¹¸¾“@ÔÊñ ˜CZåÛsÉ«¯7ŽØ™Û¶âU-[£é&amp;gt;äñh§èÀöj6ýK÷  %iÍî"q€ÊÓ 1épg Š©î, F%NN»]ì&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;»ýi A A &lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;1Ûy„â  e-g ¼ˆÖ®jùâ P#[ ­1ÍäªèŠí°¯Â àQ1Ô ÌðÌú˜+¯ BÖt©kª&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;Ký–  ¦» ¸ ÑXn&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;âLd4@ž\Z“©ûÔ”ÖÊŠFåw˜þ—6ØÇ  Æà| ”+ç ,(^Á fÄLæN·C&amp;nbsp;ÝÈUëÑ¤¬Ú›9 –&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;º’ð  nö$ÍtmÚyR{%u3Þâ-jÑ.à ˆÝ¾d&amp;gt;Ï³ÈZDÒñð%JÉé MF‰Ñ   à  … • 8&amp;nbsp;#ÎsÑGpÈ µ¶iÎ…±É &amp;amp;Šß|õæn?×c]… 9uØ®`_2&amp;nbsp;\ Œ ÌL7W¶s1š9ç}du,kÒr¸éEòúu »ƒÐ®  Bcg„nìÂïoT’ÂoÁ¨ @ç—ló@?´;)¨÷Kþe.Ó…¿FCÐá›È¶™ÑÕ^7å  ðérì«d_ãß Ë&amp;nbsp;£,ML‘ûñ”b¿¿œ,  É´"X0QvÕñÛ#1#ãA…Ô“á}d”iJV¡Ÿ2ž A´(~ §&amp;nbsp;A $…º»L"AÇ: . 9 µÖî28t*  À îš¼³J“Ÿ| œ 7}”zO 8Ÿ=°ÆêBx@Å šâ @Nf`Ó™gË-ád‰«1ˆýÂ\ôt˜„y ¾&amp;nbsp;&amp;nbsp;&amp;nbsp; 7®ØKnùýeI-+wô¿˜Ë B\[nØÛ_ £í²ŽYƒñfáÛ G,]ZL æ{=]4´âÒò”Ý°¥ZÚ.±À_5¨Û¤ÀÃÁâL€ßß=â}¾7Ü5Þu®•(§DC&lt;qi® w=""&gt;&lt;/qi®&gt;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;É½GÈÕNÓ]}¿gw_&amp;lt;%?yþ!-BÚ„GÉuÖ±Btpr©é•e'i 9f6Õ {è}$w›AyêX#h«J®¯ ýpƒ† qð&amp;nbsp;&amp;nbsp;&amp;nbsp;  ,æ{8žÚî+-.³Îíß.§À 5SÇ•7®! gg‘”L‡„,«,´À¥qgF‚—µõr®óôèp‚GŠÏ mokx xâs *8è7 &amp;nbsp;†¢ªµ`0 -N¤ÛTÃÚ…g[]­òlf &amp;lt; à—“òÓ ×?  r&amp;nbsp;ˆp,©&amp;nbsp; – þfB3­‘6é&amp;nbsp;&amp;nbsp;&amp;nbsp; Çà IWÌRÞåï¬éAïÉ¨‹eV “ßÉ úY­æüUF,ðè² ‘”zÍV_„DMR§ØAYêM^ÎÑ'ÎÈ¦›Ùã£Ò4í¬&amp;lt;êrj“ñíhŠô EÃá  6 É,Au&amp;nbsp;Ùÿ]ÌˆSi'ù&amp;gt;6X#“›`"A ë lv  Èù ÓÐ&amp;lt;¡\Œ´•v|hû¸¥RáYˆˆÒÒøÔ| ÙT ÈP¦.© Í Üt  dž&amp;amp;x æk§½í ~  î™ 2ƒßÈìš~Ò§Þ@AËS ©÷H‰yŠCßgÌæÝ wcYšö´ $ÙàÂv òŒ¯Ÿ8O7   àvE;VZXåzŸéôÆö Á~Ôüßæ&amp;nbsp;&amp;nbsp;&amp;nbsp;  &amp;gt; º92KÌÞËã¬¯Íõt l½ ÃÅdÝ) ÑY ¬&amp;nbsp;&amp;nbsp;&amp;nbsp; È BL‘õú 5tŒgúØ  } ÀÌpºe&amp;lt;‡Þ–6Õä  Ç&amp;nbsp;2 · ‘ @ E¶&amp;amp;­–7Z8¬”'«ÆW¹¥] ‹â%Ê@ÿ6Ú‘Ã5\À}…ÇÉ ©¨Ö »Øâz/¯‡üq  z;w‹ÐÓ lJG»qîÌTÖ¦Ö„ &lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;ö–œ2V 3ˆ¢¿Ö A ˜ùU‚ÿP2Šûæ ¿‰˜âã¼ŽÝ~°Ð¡£ˆ2—Û+â &amp;amp;CH“Ÿ®iQËÀF 4 ü4n ,× ÆH¥ {}_ [Ê”E¡T;.2jþkN;Ñ „-vØàD "xk`Ø¦1±¸_”Yc=û³§ý. ù_WÔX (âN³… CåyÂù]  FKÿd®ûp(Ç:Kê+ùükQ›ïÑŠ É3( ˜&lt;p]óùn¢½ ¸ôöhjg–øææn="i³S¦à+»Á ­º¶w pû„° ¿¢kJŸ‹ û¢Á„ØXDa$¤" è·gj="" ò="" ósx÷¤´öñ}=""&gt;Sð`,&amp;gt;~Ì.¯n ¿µ­.6&amp;nbsp;¨vŠ&amp;nbsp;•A ¤ý2„‰Ž fQ!*¿Ð&amp;nbsp;•¥=µüà‹ãÈ,Î‰ÿtØ!å  Ê´;Fê.&amp;amp; ¯{ ±Dý&lt;/p]óùn¢½&gt;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;µZï:÷[ýK·o œd `7¡ÖÝ?*¢ Æ2±9/5CŸÐ–&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;useautoplay=1&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;JiC¾E!óc8~ oÈÊA­¿;u É Y†3kãÖ*M Ø…Ì&amp;amp;ÈDo=&amp;nbsp;Bª`p¦ñØÖ¢w¼ªˆ&amp;nbsp;})ïh^EFmÍÔ|&amp;gt;iY¹múãö ¤dOsô ²½7Ë- 2Öšõ§ôdÍV¬  Ïü;ÉÕ&amp;nbsp;&amp;nbsp;&amp;nbsp; ñÍ³ ÎâŸïº À=®#Ë Þ&amp;nbsp;›Š†ç¥·lõJšx$ý®â Ž ‘ñSŒ8   ß{§l ž Àæ‚ÐË Û Ú*6&amp;amp;“["äW'H4,.Ãø™fAô¢2C-“ÕåSâõA&amp;nbsp;&amp;nbsp;&amp;nbsp; Œ Æýˆ ºOå_  òFÎ,ñù¦ýÂLÒâ?´„^ëFÅ&amp;nbsp;&amp;nbsp;&amp;nbsp; gW¥Pä‚&amp;nbsp;=ÿÞËñÈ&amp;amp;¹W#—¹f‚e9½à“e í þ©ÒÜ&amp;lt;  Ah3š ùÍ„9ÃAŸ–i!Ð¦1×’ ž´¹‘4Š… AÞ°éÒCìÕÂ¿ /;_Mb Uv@?_×Ô¾*Kk»  C©÷upÛûÑ5Uü{R¹‡|È©ªÜ '§?”ê× A cQš?•…V è*9¬Ï‡*Ì}m‹F Š $ºz¡B/h’ìÊ M÷&amp;lt;  i%ïB‡hYÒÚ&amp;lt;„­ß$0˜À•&amp;nbsp;&amp;nbsp;&amp;nbsp; •{Ï2ú¥£oD— ÀŽv^¬®ƒ7ÉhwÇW` Ï¿ZÅç0åâã£-“³*× F¨ ~ À&lt;z¯g&gt;&lt;n-‡šâo%,á 4óû="" ?­#-sƒœcê8ˆ="" xýìo="" |’þ’="" €¥€w©â="" ³´qmàenh_˜¥å6ó;ûú="" ´o°dž—&amp;nbsp;¡÷="" çm‚pé="" éða="" ë±¹i="" ð\l¬œeê="" ðl´û±¸b#êÿwyéê¬º?ûe="" —[œ†©="" ‰¥‘=""&gt;&lt;/n-‡šâo%,á&gt;&lt;/z¯g&gt;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;­_|ZëÒ}Ë…¤6±ž 9Ï~Ê—ä œØ­Ìt÷‹íÃë¤ë!È‰D¦§Ï«Š2Z@~ÔNÕ‰ZÅŸ^V‘O #à'ìÌõ R÷eÙIùkAÅKŽøˆ- —KÓ÷A5Ø^îª^¼ñ  ‹@]3þÛ-Ùo Q¦ÿN;ev&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;Xï~„õ4$ÆˆÑ ÑÄ§pyÖ2ÈD¿€Ç  í\Ñ¸ÁÎxêß w&amp;lt;ÙÉc[ q`¤ÜëJ1,&amp;nbsp;&amp;nbsp;&amp;nbsp; e0) Í¯ ¨&amp;nbsp;&amp;nbsp;&amp;nbsp; ¥ ´W@ÑÏŽ”¹&amp;nbsp;, afˆrÝ(°¬óLtÞË`ÏÜzFöápªN-„’QCªÞð–é  ¤™cá#ü  lo6¥¸ Ø ]!l  ¦rˆÃbÎ ‚Ëï³XðòâgL ÛÊd ÑÈJl@&amp;nbsp;&amp;nbsp;&amp;nbsp; ÓäoSO;Œ yÀÀ~ÁXA  ¾: èöÐ&amp;amp;ìÈÊFoa¸/’Qé$\Ù…PÄŸ¥ê€Ñ$é'Óx àB‡á¸ _ …¾ÕIõ   €VÃÅÜ § üü  ÌUÓ6 ±Ïì1,.ê/¸? ©±¡ï·ÿæt‹Ó&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;ÞÔ_3ü¾j\‘¹kü¾*'ë _Ì¶IÆÉn!$Ø³*7«ï•M˜%Ìmµ²êwO˜8)–-ùQ&amp;amp; ùõôa rCÉR±  SŽÆ TRo #D!Ãß‹KwIn"&amp;amp; ,¸+¾„ ¤S “þÈ ±yµ á6Ÿ‘„®L»Ye‰ˆ3Ÿ8-ó4E‡ÞGdËv²±£&amp;lt;ø&amp;gt;ã ® ö Bn ßÂE `  ËR ‹G*$/`"Ô¬äq²ß ¸C÷*O ©^€ß9{¥¶ JÉIžD0Òaµò ²š &amp;nbsp;&amp;nbsp;&amp;nbsp; Àeò·¡‹tžü Œ`ò^§°+ŠÒe 5©½·©LðÌ  p®H› £Üö]„A\ï¹)î/ ¸Ò·&amp;nbsp;&amp;nbsp;&amp;nbsp; ó&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;a´qªüYûî` g°g%˜–Mlz A– ómÐA&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;Ð ™œ@k&amp;amp;  6 üÿkÝû=¥|Qí›.ó  ~+ žRº‘p¢0¤ ˆú¨ ÏfZðÒ¦œbÊ ‘ó(ŠV $6K £fa QÌA®oÃ(ÖSÒw¨¯x¸L4-}Õô Š ï£S É#ß­^ÕÕlì2†ùœe‰Ö ZÄñß ˜ !G-kwÎR&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;;Ë¨ø`  ¾È;é#"”«{àZb· ©v*  Sôåÿ_ F‰ÜÊW&amp;nbsp;ÜÜ ’–¯ÛÂk ¿¼•’Õž„¹ñ9×b  ¾:YYIÈ?9yá–’KAÇ #÷‹àF=ju¯ì: ™¢/ÿîÉÕÑQ=c‘è× pðØaMðîºâšùÄ æí±ñ € ÇE yÅŒi\aâH“ËÝÁ¼¬0ŠŽÌ RÆ9ý#5˜}$¡äå  JÝ ê ›gØqsÒ÷«½An‹Þ±¸¬vq À¬8cqýüš ¯ß “ ¦À¶÷®ŒØ #´¤éÂáhZÄŸRÍ «ðn¦`¸°l‚„ÙšS€©†yˆ§ K&amp;nbsp;&amp;nbsp;&amp;nbsp;  NRªó¶é¹®‚Ï  öß|ÑôoGùQ  Ýûa %tïNK~ø„Hsö^Ð|&amp;nbsp;¨a9è=óª›úLá©pj3À&amp;gt;áøxBsá˜AÔn&amp;nbsp;&amp;nbsp;&amp;nbsp; iŸG¬•Äi K ‚µ /‰rw ÔÛÉ=íˆá ýf¾÷³êV‘ Š`  &amp;amp;Å È|k.ã 2•ƒÊÜup2 ¿ tDå·Qé){¸Õ&amp;amp;  å +ú?IÐKªl®7_`™ì,ADìîgFpèl/ù ÉˆÔÞä³3ñÖ4› éµùŠfàª·  Ð+i¼4V °´çPh3 +"$† LÆB³D&amp;amp;ú@Üõ' 7cÅßœãÆ¼…X®ÙÖ P UK+u: K† 1EåyA}4þ¤QB¶‚&amp;lt; r\ƒdPV¶Ë2Uàœ MRs »    Äà¿GÙ&amp;nbsp;&amp;nbsp;&amp;nbsp; civ‡ &amp;nbsp;sàâê »šËø $ômbÖÙÝ'&amp;gt;*…¯PGèüK{JFäï?ï&lt;/span&gt;&lt;/tãhuà€«ã6&gt;&lt;/j7jºw(øè&gt;&lt;/span&gt;&lt;/m&amp;nbsp;‚`”„tõ&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Did you notice these lines below from the file content?&lt;br /&gt;&lt;br /&gt;&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;[Autorun]&lt;/div&gt;&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;open=~tmpboot\~tmpbootx.exe&lt;/div&gt;&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;icon=%windir%\system32\SHELL32.dll,8&lt;/div&gt;&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;action=Open folder to view files using Windows Explorer&lt;/div&gt;&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;shell\open=Open&lt;/div&gt;&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;shell\open\command=~tmpboot\~tmpbootx.exe&lt;/div&gt;&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;shell\open\default=1&lt;/div&gt;&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;shell\explore=Explore&lt;/div&gt;&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;shell\explore\command=~tmpboot\~tmpbootx.exe&lt;/div&gt;&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;shell\search=Search...&lt;/div&gt;&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;shell\search\command=~tmpboot\~tmpbootx.exe&lt;/div&gt;&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;useautoplay=1&lt;/div&gt;&lt;br /&gt;Beware! This Autorun.inf file actually contain malicious execution code that disguise itself behind normal Windows tasks. &lt;br /&gt;&lt;br /&gt;Hope this helps!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3325681978491628315-879273073642826149?l=sheeeng.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sheeeng.blogspot.com/feeds/879273073642826149/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3325681978491628315&amp;postID=879273073642826149' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/879273073642826149'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/879273073642826149'/><link rel='alternate' type='text/html' href='http://sheeeng.blogspot.com/2010/04/infected-autoruninf-file.html' title='Infected Autorun.inf file'/><author><name>Leonard Lee</name><uri>http://www.blogger.com/profile/05020703049155191468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_J1jYn80D6cY/SUZfpZs0xXI/AAAAAAAACaM/8H1ramrIhu4/S220/Leonard-Miniature-Square2.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3325681978491628315.post-1873144998205041176</id><published>2009-07-23T12:11:00.003+08:00</published><updated>2009-07-23T12:16:00.492+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='scripts'/><category scheme='http://www.blogger.com/atom/ns#' term='batch'/><category scheme='http://www.blogger.com/atom/ns#' term='windows'/><title type='text'>Automatically Close Windows Batch Command Console After Launch Program</title><content type='html'>&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-size: 13px; "&gt;Hi,&lt;br /&gt;&lt;br /&gt;I tried to launch a program using Windows Batch scripts. However, I do noticed that the CMD.EXE command console is still visible at the background after the script launch the program.&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-size: 13px; "&gt;E.g. To Launch Notepad.exe&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-size: 13px; "&gt;&lt;b&gt;notepad.exe&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;To automatically close the CMD.EXE command console after executing the program. Use start statement in the Windows Batch.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;E.g. To Launch Notepad.exe and Close the CMD.EXE command console.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;b&gt;start notepad.exe&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-size: 13px; "&gt;Hope this helps.&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3325681978491628315-1873144998205041176?l=sheeeng.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sheeeng.blogspot.com/feeds/1873144998205041176/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3325681978491628315&amp;postID=1873144998205041176' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/1873144998205041176'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/1873144998205041176'/><link rel='alternate' type='text/html' href='http://sheeeng.blogspot.com/2009/07/automatically-close-windows-batch.html' title='Automatically Close Windows Batch Command Console After Launch Program'/><author><name>Leonard Lee</name><uri>http://www.blogger.com/profile/05020703049155191468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_J1jYn80D6cY/SUZfpZs0xXI/AAAAAAAACaM/8H1ramrIhu4/S220/Leonard-Miniature-Square2.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3325681978491628315.post-5538551998724778018</id><published>2009-06-24T11:16:00.001+08:00</published><updated>2009-06-24T11:18:10.517+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='user-account-control'/><category scheme='http://www.blogger.com/atom/ns#' term='windows-7'/><category scheme='http://www.blogger.com/atom/ns#' term='office'/><category scheme='http://www.blogger.com/atom/ns#' term='input-method-editors'/><category scheme='http://www.blogger.com/atom/ns#' term='windows'/><category scheme='http://www.blogger.com/atom/ns#' term='office-2007'/><title type='text'>Missing Language Bar on Windows 7</title><content type='html'>Hi,&lt;br /&gt;&lt;br /&gt;I'm using Windows 7 RC now. I did installed Microsoft Office 2007 and its separate language packs of Chinese Simplified, Japanese, and Korean.&lt;br /&gt;&lt;br /&gt;However, the Microsoft Global Input Method Editors (IMEs) are not displayed properly on desktop after the log in screen. It only displayed during log in screen and the Administrator User Account Control (UAC) prompt. It just went missing from my desktop.&lt;br /&gt;&lt;br /&gt;Later, I did found out that the Ctfmon.exe was not loaded at start up. Read more on it from Microsoft's&lt;br /&gt;&lt;a href="http://support.microsoft.com/kb/282599"&gt;Frequently asked questions about Ctfmon.exe&lt;/a&gt;. Ctfmon.exe activates the Alternative User Input Text Input     Processor (TIP) and the Microsoft Office Language Bar.&lt;br /&gt;&lt;br /&gt;To fix this issue, I created a registry file. Entered the contents below and run it. Note: Run at your own risk.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Windows Registry Editor Version 5.00&lt;br /&gt;&lt;br /&gt;[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]&lt;br /&gt;"CTFMON"="\"C:\\Windows\\System32\\ctfmon.exe\""&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Restart your computer and voilà! You should be able to see language bar docked on your Windows 7's Superbar or floating on your desktop.&lt;br /&gt;&lt;br /&gt;Hope this helps.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3325681978491628315-5538551998724778018?l=sheeeng.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sheeeng.blogspot.com/feeds/5538551998724778018/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3325681978491628315&amp;postID=5538551998724778018' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/5538551998724778018'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/5538551998724778018'/><link rel='alternate' type='text/html' href='http://sheeeng.blogspot.com/2009/06/missing-language-bar-on-windows-7.html' title='Missing Language Bar on Windows 7'/><author><name>Leonard Lee</name><uri>http://www.blogger.com/profile/05020703049155191468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_J1jYn80D6cY/SUZfpZs0xXI/AAAAAAAACaM/8H1ramrIhu4/S220/Leonard-Miniature-Square2.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3325681978491628315.post-5591332350313600885</id><published>2009-02-05T10:03:00.004+08:00</published><updated>2009-02-05T10:13:27.463+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='windows'/><category scheme='http://www.blogger.com/atom/ns#' term='tips-and-tricks'/><title type='text'>Manage Network Logon Credentials</title><content type='html'>Have you ever wondered how to remove saved network logon and password credentials?&lt;br /&gt;&lt;br /&gt;Windows does not provide a clear way to modify all stored username and password credentials.&lt;br /&gt;&lt;br /&gt;However, you can do that from a simple user interface hidden inside Windows.&lt;br /&gt;&lt;br /&gt;Open Run window by pressing Win + R.&lt;br /&gt;&lt;br /&gt;Enter "rundll32.exe keymgr.dll, KRShowKeyMgr" (do not include double-quotes in the beginning and in the end).&lt;br /&gt;&lt;br /&gt;You are able to see the "Stored Usernames and Passwords" user interface now.&lt;br /&gt;&lt;br /&gt;You may proceed to you can add, edit or remove all the network logon credentials from there.&lt;br /&gt;&lt;br /&gt;Hope this helps.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3325681978491628315-5591332350313600885?l=sheeeng.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sheeeng.blogspot.com/feeds/5591332350313600885/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3325681978491628315&amp;postID=5591332350313600885' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/5591332350313600885'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/5591332350313600885'/><link rel='alternate' type='text/html' href='http://sheeeng.blogspot.com/2009/02/manage-network-logon-credentials.html' title='Manage Network Logon Credentials'/><author><name>Leonard Lee</name><uri>http://www.blogger.com/profile/05020703049155191468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_J1jYn80D6cY/SUZfpZs0xXI/AAAAAAAACaM/8H1ramrIhu4/S220/Leonard-Miniature-Square2.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3325681978491628315.post-1953953965062032354</id><published>2009-01-23T13:21:00.046+08:00</published><updated>2011-07-18T16:08:03.771+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='c++'/><category scheme='http://www.blogger.com/atom/ns#' term='visual-studio'/><category scheme='http://www.blogger.com/atom/ns#' term='trolltech'/><category scheme='http://www.blogger.com/atom/ns#' term='qt'/><title type='text'>"This application has failed to start..." error message shown by Qt application</title><content type='html'>Did you ever see the error message below when you start to call Qt application? Are you executing it on a fresh clean Windows?&lt;br /&gt;&lt;br /&gt;&lt;b&gt;"This application has failed to start because the application configuration is incorrect. Review the manifest file for possible errors. Reinstalling the application may fix this problem. For more details, please see the application event log."&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;I did encounter this error message on a fresh Windows XP image. I followed along &lt;a href="http://www.qtsoftware.com/developer/faqs/faq.2006-12-05.8269192532"&gt;Qt FAQ on "This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem"&lt;/a&gt;, and Qt Guide on &lt;a href="http://doc.trolltech.com/4.4/deployment-windows.html#application-dependencies"&gt;Deployment on Windows under Application Dependencies&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Finally, I did use Dependency Walker (you can get it &lt;a href="http://dependencywalker.com/"&gt;here&lt;/a&gt;) to analyze my dependencies of my Qt applicaiton. Oops... I found out that my Qt application depends on MSVCR90.DLL. MSVCR90.DLL is available from installing &lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=A5C84275-3B97-4AB7-A40D-3802B2AF5FC2&amp;amp;displaylang=en"&gt;Microsoft Visual C++ 2008 SP1 Redistributable Package (x86)&lt;/a&gt;. The problem was solved. The error message does not appears anymore.&lt;br /&gt;&lt;br /&gt;However, take note that if you are using Qt libraries in your application, you have to include the libraries into the same folder as the application executables located.&lt;br /&gt;&lt;br /&gt;For example, my application use QtGui.dll. If I did not include QtGui.dll along with my Qt executables, I encounter the error message below and the application failed to start. "This application has failed to start because QtGui.dll was not found. Re-installing application may fix this problem."&lt;br /&gt;&lt;br /&gt;Hope this helps.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3325681978491628315-1953953965062032354?l=sheeeng.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sheeeng.blogspot.com/feeds/1953953965062032354/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3325681978491628315&amp;postID=1953953965062032354' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/1953953965062032354'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/1953953965062032354'/><link rel='alternate' type='text/html' href='http://sheeeng.blogspot.com/2009/01/qt-application-error-message.html' title='&quot;This application has failed to start...&quot; error message shown by Qt application'/><author><name>Leonard Lee</name><uri>http://www.blogger.com/profile/05020703049155191468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_J1jYn80D6cY/SUZfpZs0xXI/AAAAAAAACaM/8H1ramrIhu4/S220/Leonard-Miniature-Square2.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3325681978491628315.post-3846835231517608858</id><published>2009-01-16T12:57:00.003+08:00</published><updated>2011-07-18T16:06:19.421+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='c++'/><category scheme='http://www.blogger.com/atom/ns#' term='visual-studio'/><category scheme='http://www.blogger.com/atom/ns#' term='trolltech'/><category scheme='http://www.blogger.com/atom/ns#' term='qt'/><title type='text'>TrollTech Qt 4.4.3 integrates with Microsoft Visual Studio 2008</title><content type='html'># Getting Started&lt;br /&gt;- Review "Qt 4.4.3: Installing Qt on Windows" at http://doc.trolltech.com/4.4/install-win.html.&lt;br /&gt;- Review "The Red Pill: Making QT4 dance with MSVC 2008" at http://blog.shadowgears.com/2008/10/making-qt4-dance-with-msvc-2008.html. It is one of the best guide on how to install and configure your Qt 4.4.3 to work with Microsoft Visual Studio 2008.&lt;br /&gt;&lt;br /&gt;# Setup Commercial Packages&lt;br /&gt;- Run qt-win-commercial-4.4.3-vs2008.exe.&lt;br /&gt;- By default, Qt 4.4.3 will be installed in C:\Qt\4.4.3.&lt;br /&gt;- Note that qt-win-commercial-4.4.3-vs2008.exe does not include any integration tools for Microsoft Visual Studio 2008.&lt;br /&gt;&lt;br /&gt;# Setup Qt Integration for Microsoft Visual Studio 2008&lt;br /&gt;- Run qt-vsintegration-1.4.3.exe.&lt;br /&gt;- Open Microsoft Visual Studio 2008 and you should be able see Qt Integration welcome screen.&lt;br /&gt;&lt;br /&gt;# Configure Environment Path&lt;br /&gt;- Click Ctrl + Break key to open System Properties.&lt;br /&gt;- Click Advanced tab. Click Environment Variables at the bottom of the dialog.&lt;br /&gt;- Configure that "C:\Qt\4.4.3\bin" is in your PATH variable under system variable.&lt;br /&gt;- Configure that "C:\Qt\4.4.3" is in your QTDIR variable under system variable. Create QTDIR variable if not existed earlier.&lt;br /&gt;- It is recommended to restart your system.&lt;br /&gt;&lt;br /&gt;# Building Qt Libraries&lt;br /&gt;- Run Start|Programs|Microsoft Visual Studio 2008|Visual Studio Tools|Visual Studio 2008 Command Prompt. Alternatively, open Run dialog by Win + R. Enter %comspec% /k ""C:\Program Files\Microsoft Visual Studio 9.0\VC\vcvarsall.bat"" x86.&lt;br /&gt;- Type the following command in the Visual Studio 2008 Command Prompt:&lt;br /&gt;cd C:\Qt\4.4.3&lt;br /&gt;configure&lt;br /&gt;- Note that "configure" process might take some time.&lt;br /&gt;- Next, configure the Qt for Microsoft Visual Studio environment. Type the following command in the Visual Studio 2008 Command Prompt:&lt;br /&gt;configure -platform win32-msvc2008&lt;br /&gt;- Note that "configure -platform win32-msvc2008" process might take some time.&lt;br /&gt;- For Microsoft Visual Studio to create the library and compile all the demos, examples, tools and tutorials type the following command in the Visual Studio 2008 Command Prompt:&lt;br /&gt;nmake&lt;br /&gt;- Note that "nmake" process might take very long time, even few hours.&lt;br /&gt;- Note also if you later need to reconfigure and rebuild Qt from the same location, ensure that all traces of the previous configuration are removed by entering the build directory and typing "nmake distclean" (do not include the double-quotes in the beginning and in the end) before running "configure" (do not include the double-quotes in the beginning and in the end) again.&lt;br /&gt;&lt;br /&gt;# Configure Microsoft Visual Studio 2008&lt;br /&gt;- Run Tools|Options in the menu bar.&lt;br /&gt;- Select Project and Soltutions|VC++ Directories.&lt;br /&gt;- Select "Win32" in Platform.&lt;br /&gt;- Select Show directories for: "Executable files".&lt;br /&gt;- Configure that "C:\Qt\4.4.3\bin" is in your Executable files directories.&lt;br /&gt;- Select Show directories for: "Include files".&lt;br /&gt;- Configure that "C:\Qt\4.4.3\include" is in your Include files directories.&lt;br /&gt;- Select Show directories for: "Libraries files".&lt;br /&gt;- Configure that "C:\Qt\4.4.3\lib" is in your Libraries files directories.&lt;br /&gt;- Select Show directories for: "Source files".&lt;br /&gt;- Configure that "C:\Qt\4.4.3\src" is in your Source files directories.&lt;br /&gt;&lt;br /&gt;# Configure &amp;amp; Compiling Microsoft Visual Studio 2008 Projects for Qt.&lt;br /&gt;- Run File|New|Project....&lt;br /&gt;- Select Visual C++|Win32. Select Win32 Console Application on the right in the dialog.&lt;br /&gt;- Open the main cpp file. Enter the following.&lt;br /&gt;#include "stdafx.h"&lt;br /&gt;#include &lt;qtgui qapplication=""&gt;&lt;br /&gt;#include &lt;qtgui qpushbutton=""&gt;&lt;br /&gt;int main(int argc, char *argv[])&lt;br /&gt;{&lt;br /&gt;    QApplication app(argc, argv);&lt;br /&gt;    QPushButton hello("Hello World!");&lt;br /&gt;    hello.show();&lt;br /&gt;    return app.exec();&lt;br /&gt;}&lt;br /&gt;- Building the project now is not successful. Note that many unresolved external symbols will occur.&lt;br /&gt;- To resolve the missing external symbols, right click your project and select your Properties under Solution Explorer.&lt;br /&gt;- Select Configuration Properties|Linker|Input. Enter the list of files below in the Additional Dependencies on the right of the dialog.&lt;br /&gt;opengl32.lib&lt;br /&gt;glu32.lib&lt;br /&gt;gdi32.lib&lt;br /&gt;user32.lib&lt;br /&gt;C:\Qt\4.4.3\lib\Qtmain.lib&lt;br /&gt;C:\Qt\4.4.3\lib\QtSvg4.lib&lt;br /&gt;C:\Qt\4.4.3\lib\QtOpenGL4.lib&lt;br /&gt;C:\Qt\4.4.3\lib\QtGui4.lib&lt;br /&gt;C:\Qt\4.4.3\lib\QtCore4.lib&lt;br /&gt;- Try compile and run. Your first Qt sample on Microsoft Visual Studio 2008 should be working.&lt;br /&gt;&lt;br /&gt;Hope this helps.&lt;/qtgui&gt;&lt;/qtgui&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3325681978491628315-3846835231517608858?l=sheeeng.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sheeeng.blogspot.com/feeds/3846835231517608858/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3325681978491628315&amp;postID=3846835231517608858' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/3846835231517608858'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/3846835231517608858'/><link rel='alternate' type='text/html' href='http://sheeeng.blogspot.com/2009/01/trolltech-qt-443-integrates-with.html' title='TrollTech Qt 4.4.3 integrates with Microsoft Visual Studio 2008'/><author><name>Leonard Lee</name><uri>http://www.blogger.com/profile/05020703049155191468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_J1jYn80D6cY/SUZfpZs0xXI/AAAAAAAACaM/8H1ramrIhu4/S220/Leonard-Miniature-Square2.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3325681978491628315.post-4487506961978248688</id><published>2008-12-27T18:24:00.005+08:00</published><updated>2008-12-27T18:32:37.901+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='excel'/><category scheme='http://www.blogger.com/atom/ns#' term='office'/><category scheme='http://www.blogger.com/atom/ns#' term='dot-net-framework'/><category scheme='http://www.blogger.com/atom/ns#' term='microsoft'/><title type='text'>Excel Financial Functions for .NET</title><content type='html'>Luca Bolognese has released a .NET framework library that provides the full set of financial functions from Excel. Check out Excel Financial functions for .NET at MSDN Code Gallery &lt;a href="http://code.msdn.microsoft.com/FinancialFunctions"&gt;here&lt;/a&gt;. Luca Bolognese also presented An Introduction to F# at PDC2008 &lt;a href="http://channel9.msdn.com/pdc2008/TL11/"&gt;here&lt;/a&gt;.&lt;br /&gt;&lt;span id="ctl00_ctl00_Content_TabContentPanel_Content_wikiSourceLabel"&gt;&lt;br /&gt;&lt;/span&gt;Excel Financial Functions for .NET &lt;span id="ctl00_ctl00_Content_TabContentPanel_Content_wikiSourceLabel"&gt;is a .NET library that provides the full set of financial functions from Excel. The main goal for the library is compatibility with Excel, by providing the same functions, with the same behavior.&lt;br /&gt;&lt;br /&gt;Note that this is not a wrapper over the Excel library; the functions have been re-implemented in managed code so that you do not need to have Excel installed to use this library.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Enjoy the libraries.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3325681978491628315-4487506961978248688?l=sheeeng.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sheeeng.blogspot.com/feeds/4487506961978248688/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3325681978491628315&amp;postID=4487506961978248688' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/4487506961978248688'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/4487506961978248688'/><link rel='alternate' type='text/html' href='http://sheeeng.blogspot.com/2008/12/excel-financial-functions-for-net.html' title='Excel Financial Functions for .NET'/><author><name>Leonard Lee</name><uri>http://www.blogger.com/profile/05020703049155191468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_J1jYn80D6cY/SUZfpZs0xXI/AAAAAAAACaM/8H1ramrIhu4/S220/Leonard-Miniature-Square2.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3325681978491628315.post-5724243273607292453</id><published>2008-12-26T13:23:00.003+08:00</published><updated>2008-12-26T13:35:56.149+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='internet-explorer'/><category scheme='http://www.blogger.com/atom/ns#' term='security'/><category scheme='http://www.blogger.com/atom/ns#' term='microsoft'/><title type='text'>Why Microsoft Missed MS08-078?</title><content type='html'>Do you know why Microsoft missed MS08-078 security issue? The Security Development Lifecycle had posted some information related to the bug that they missed. Read about them in their blog post &lt;a href="http://blogs.msdn.com/sdl/archive/2008/12/18/ms08-078-and-the-sdl.aspx"&gt;here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;The bug was an invalid pointer dereference in MSHTML.DLL when the code handles data binding. They realized that it is a time-of-check-time-of-use (TOCTOU) bug that led to code calling into a freed memory block.&lt;br /&gt;&lt;br /&gt;Lets learn from their mistakes.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3325681978491628315-5724243273607292453?l=sheeeng.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sheeeng.blogspot.com/feeds/5724243273607292453/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3325681978491628315&amp;postID=5724243273607292453' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/5724243273607292453'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/5724243273607292453'/><link rel='alternate' type='text/html' href='http://sheeeng.blogspot.com/2008/12/why-microsoft-missed-ms08-078.html' title='Why Microsoft Missed MS08-078?'/><author><name>Leonard Lee</name><uri>http://www.blogger.com/profile/05020703049155191468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_J1jYn80D6cY/SUZfpZs0xXI/AAAAAAAACaM/8H1ramrIhu4/S220/Leonard-Miniature-Square2.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3325681978491628315.post-6590697029449763075</id><published>2008-12-26T11:46:00.006+08:00</published><updated>2008-12-27T18:38:11.934+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='visual-studio'/><category scheme='http://www.blogger.com/atom/ns#' term='dot-net-framework'/><category scheme='http://www.blogger.com/atom/ns#' term='microsoft'/><title type='text'>Visual Studio 2010 &amp; .NET Framework 4.0 On Channel 9 (10-4)</title><content type='html'>Something new in Channel 9 recently.&lt;br /&gt;&lt;br /&gt;Brain Keller, the Technical Evangelist for Microsoft Visual Studio Team System in &lt;a href="http://blogs.msdn.com/briankel/archive/2008/12/17/announcing-10-4.aspx"&gt;his blog post&lt;/a&gt; has announced that they have new weekly show pertaining to the upcoming Visual Studio 2010 and .NET Framework 4.0 &lt;a href="http://channel9.msdn.com/shows/10-4/"&gt;here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Remember to check them regularly.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3325681978491628315-6590697029449763075?l=sheeeng.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sheeeng.blogspot.com/feeds/6590697029449763075/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3325681978491628315&amp;postID=6590697029449763075' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/6590697029449763075'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/6590697029449763075'/><link rel='alternate' type='text/html' href='http://sheeeng.blogspot.com/2008/12/channel-9-visual-studio-2010-and-net.html' title='Visual Studio 2010 &amp; .NET Framework 4.0 On Channel 9 (10-4)'/><author><name>Leonard Lee</name><uri>http://www.blogger.com/profile/05020703049155191468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_J1jYn80D6cY/SUZfpZs0xXI/AAAAAAAACaM/8H1ramrIhu4/S220/Leonard-Miniature-Square2.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3325681978491628315.post-8365733761296057677</id><published>2008-12-26T11:23:00.000+08:00</published><updated>2008-12-26T11:43:24.080+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='visual-studio'/><category scheme='http://www.blogger.com/atom/ns#' term='microsoft'/><title type='text'>Code Focused Features Of Visual Studio 2010</title><content type='html'>&lt;span class="story_comment_back_quote"&gt;For those of you interested in Visual Studio 2010,&amp;nbsp; the Senior VP Developer Division of Microsoft, Sivaramakrishnan "Soma" Somasegar &lt;/span&gt;posted some details regarding the features on Visual Studio 2010.&lt;br /&gt;&lt;br /&gt;&lt;span class="story_comment_back_quote"&gt;According to his blog &lt;a href="http://blogs.msdn.com/somasegar/archive/2008/12/19/code-focused-development-in-vs-2010.aspx"&gt;here&lt;/a&gt;, the Highlight References, Quick Search, Call Hierarchy, and Consume-First Development are some of the features that contained in Visual Studio 2010.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="story_comment_back_quote"&gt;It is great to see the Highlight References feature works in Visual Studio. It gives us an clear picture on all the references that we would trace throughtout the codes. We can easily navigate around the codes too. According to him, the feature is activated automatically after a short delay, and the all references to the symbol under the cursor are highlighted.&amp;nbsp; Navigating to the next reference is easily done by pressing Ctrl + Shift + UpArrow and otherwise to reverse the navigate flow.&lt;/span&gt;&lt;br /&gt;&lt;span class="story_comment_back_quote"&gt;&lt;br /&gt;Looking forward to see Visual Studio 2010. &lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3325681978491628315-8365733761296057677?l=sheeeng.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sheeeng.blogspot.com/feeds/8365733761296057677/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3325681978491628315&amp;postID=8365733761296057677' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/8365733761296057677'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/8365733761296057677'/><link rel='alternate' type='text/html' href='http://sheeeng.blogspot.com/2008/12/code-focused-features-of-visual-studio.html' title='Code Focused Features Of Visual Studio 2010'/><author><name>Leonard Lee</name><uri>http://www.blogger.com/profile/05020703049155191468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_J1jYn80D6cY/SUZfpZs0xXI/AAAAAAAACaM/8H1ramrIhu4/S220/Leonard-Miniature-Square2.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3325681978491628315.post-5453100465770611879</id><published>2008-12-23T15:58:00.002+08:00</published><updated>2011-09-14T05:28:00.152+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='c++'/><category scheme='http://www.blogger.com/atom/ns#' term='visual-studio'/><category scheme='http://www.blogger.com/atom/ns#' term='.net-framework'/><title type='text'>Visual Studio 2008 Hangs When Editing C++ File Caused By Refactor! for C++</title><content type='html'>The Visual Studio 2008 with Service Pack 1 seems to hang and stop responding for few minutes every time I edit the native C++ code files. One expert in &lt;a href="http://www.experts-exchange.com/Programming/Editors_IDEs/C_CPP_CS/Visual_CPP/Q_23921936.html"&gt;Expert-Exhange&lt;/a&gt; gave a very good solution. He suggested that you delete the *.ncb file. Do it again *and* all files with *.obj, *.pch, *.aps, *.res, *.suo, *.ilk, *.sbr, *.bsc, *.pdb, *idb, *.lib, *.exe, *.dll in the project folder. Remove Debug and Release folder completely. Beside of the sources you only need the .vcproj and .sln. In case, you added a new project to your solution, consider to creating a new solution (.sln) as well. Simply rename the old file or move it to another folder. An infinite loop can happen if the solution has more than one project using the same GUID (e. g. caused by copying a project file). Then, the dependencies can cause a circle load. But his suggestion did not work our for my case. Most of the web resources give us a similar solution suggested by him which work out for most people.&lt;br /&gt;&lt;br /&gt;But then, I found out that I did installed the free Refactor! for C++ produced by Developer Express Inc earlier. I uninstalled it and the always hang during edit problem was solved! It seems like the Refactor! program generates IntelliSense references every time you edit your code. It will work fine on .NET framework project since all the libraries are managed code and properly referenced. However, things are different with native C++ as they are not managed code and native C++ relies heavily on your header files declaration and its proper paths.&lt;br /&gt;&lt;br /&gt;In short, do not try to use any refactoring tools optimized for .NET framework on the native C++ projects.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3325681978491628315-5453100465770611879?l=sheeeng.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sheeeng.blogspot.com/feeds/5453100465770611879/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3325681978491628315&amp;postID=5453100465770611879' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/5453100465770611879'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/5453100465770611879'/><link rel='alternate' type='text/html' href='http://sheeeng.blogspot.com/2008/12/visual-studio-2008-hangs-when-editing-c.html' title='Visual Studio 2008 Hangs When Editing C++ File Caused By Refactor! for C++'/><author><name>Leonard Lee</name><uri>http://www.blogger.com/profile/05020703049155191468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_J1jYn80D6cY/SUZfpZs0xXI/AAAAAAAACaM/8H1ramrIhu4/S220/Leonard-Miniature-Square2.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3325681978491628315.post-426911133029166087</id><published>2008-12-19T16:11:00.000+08:00</published><updated>2008-12-19T16:26:35.640+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='powershell'/><category scheme='http://www.blogger.com/atom/ns#' term='batch'/><category scheme='http://www.blogger.com/atom/ns#' term='file'/><category scheme='http://www.blogger.com/atom/ns#' term='command'/><category scheme='http://www.blogger.com/atom/ns#' term='windows'/><title type='text'>Execute Batch Files &amp; External Programs from Windows PowerShell</title><content type='html'>Have you ever wondered how to can execute a DOS batch file (*.bat) or an external program using Windows PowerShell?&lt;br /&gt;&lt;br /&gt;Here is the way to do it.&lt;br /&gt;&lt;br /&gt;#Execute Batch File from Windows PowerShell&lt;br /&gt;- Create a batch file named "Hi.bat" with the following content.&lt;br /&gt;@ECHO OFF&lt;br /&gt;ECHO Hello World&lt;br /&gt;- Locate the folder that you have stored "Hi.bat". E.g. Set-Location C:\&lt;br /&gt;&lt;br /&gt;- Type .\Hi.bat (Note that the . (dot) &amp;amp; \ (backslash) in front pf the batch file name.)&lt;br /&gt;&lt;br /&gt;#Execute External Program Using Windows PowerShell&lt;br /&gt;- Type &amp;amp; (ampersand) in front of the path to the executable program. E.g. &amp;amp;"C:\Program Files\Mozilla Firefox\firefox.exe".&lt;br /&gt;&lt;br /&gt;Hope this helps.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3325681978491628315-426911133029166087?l=sheeeng.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sheeeng.blogspot.com/feeds/426911133029166087/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3325681978491628315&amp;postID=426911133029166087' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/426911133029166087'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/426911133029166087'/><link rel='alternate' type='text/html' href='http://sheeeng.blogspot.com/2008/12/execute-batch-files-external-programs.html' title='Execute Batch Files &amp; External Programs from Windows PowerShell'/><author><name>Leonard Lee</name><uri>http://www.blogger.com/profile/05020703049155191468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_J1jYn80D6cY/SUZfpZs0xXI/AAAAAAAACaM/8H1ramrIhu4/S220/Leonard-Miniature-Square2.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3325681978491628315.post-6616875586282447335</id><published>2008-12-18T09:31:00.001+08:00</published><updated>2008-12-18T09:51:02.342+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='internet-explorer'/><category scheme='http://www.blogger.com/atom/ns#' term='update'/><category scheme='http://www.blogger.com/atom/ns#' term='security'/><category scheme='http://www.blogger.com/atom/ns#' term='patch'/><category scheme='http://www.blogger.com/atom/ns#' term='microsoft'/><title type='text'>Critical Security Update for Internet Explorer (KB960714)</title><content type='html'>Read &lt;a href="http://www.microsoft.com/technet/security/advisory/961051.mspx"&gt;Microsoft Security Advisory (961051) - Vulnerability in Internet Explorer Could Allow Remote Code Execution&lt;/a&gt;. Finally, Microsoft has completed the investigation on this vulnerability.&lt;a href="http://go.microsoft.com/fwlink/?LinkId=137335"&gt;MS08-078&lt;/a&gt; had address this issue. For more information about this issue, including download links for an available security update, please review &lt;a href="http://go.microsoft.com/fwlink/?LinkId=137335"&gt;MS08-078&lt;/a&gt;. The vulnerability addressed is the Pointer Reference Memory Corruption Vulnerability - &lt;a href="http://www.cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2008-4844"&gt;CVE-2008-4844&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Read &lt;a href="http://www.microsoft.com/technet/security/bulletin/ms08-078.mspx"&gt;Microsoft Security Bulletin MS08-078 - Critical Security Update for Internet Explorer (960714)&lt;/a&gt; too. All users of Internet Explorer 5.01 SP4 until Internet Explorer 7 should immediately install this update. All Internet Explorer versions have Critical Severity Ratings and Vulnerability Identifiers.&lt;br /&gt;&lt;br /&gt;Do you know why it is known as zero-day (0day) exploit? A zero-day exploit is one that takes advantage of a security vulnerability on the same day that the vulnerability becomes generally known. Zero-day exploits generally circulate through the ranks of attackers until finally being released on public forums.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3325681978491628315-6616875586282447335?l=sheeeng.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sheeeng.blogspot.com/feeds/6616875586282447335/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3325681978491628315&amp;postID=6616875586282447335' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/6616875586282447335'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/6616875586282447335'/><link rel='alternate' type='text/html' href='http://sheeeng.blogspot.com/2008/12/critical-security-update-for-internet.html' title='Critical Security Update for Internet Explorer (KB960714)'/><author><name>Leonard Lee</name><uri>http://www.blogger.com/profile/05020703049155191468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_J1jYn80D6cY/SUZfpZs0xXI/AAAAAAAACaM/8H1ramrIhu4/S220/Leonard-Miniature-Square2.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3325681978491628315.post-8698603698616775596</id><published>2008-12-17T16:30:00.003+08:00</published><updated>2008-12-27T18:34:47.615+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='visual-studio'/><category scheme='http://www.blogger.com/atom/ns#' term='unit-test'/><category scheme='http://www.blogger.com/atom/ns#' term='boost'/><category scheme='http://www.blogger.com/atom/ns#' term='c-plus-plus'/><title type='text'>Boost 1.37.0 Libraries</title><content type='html'>I managed to setup my Boost 1.37.0 libraries on my machine.&lt;br /&gt;&lt;br /&gt;Below are the libraries compiled by Boost bjam.exe for MSVC environment for Visual Studio 2008.&lt;br /&gt;&lt;br /&gt;boost_date_time-vc90-mt-1_37.dll&lt;br /&gt;boost_date_time-vc90-mt-1_37.lib&lt;br /&gt;boost_date_time-vc90-mt-gd-1_37.dll&lt;br /&gt;boost_date_time-vc90-mt-gd-1_37.lib&lt;br /&gt;boost_date_time-vc90-mt-gd.lib&lt;br /&gt;boost_date_time-vc90-mt.lib&lt;br /&gt;boost_filesystem-vc90-mt-1_37.dll&lt;br /&gt;boost_filesystem-vc90-mt-1_37.lib&lt;br /&gt;boost_filesystem-vc90-mt-gd-1_37.dll&lt;br /&gt;boost_filesystem-vc90-mt-gd-1_37.lib&lt;br /&gt;boost_filesystem-vc90-mt-gd.lib&lt;br /&gt;boost_filesystem-vc90-mt.lib&lt;br /&gt;boost_graph-vc90-mt-1_37.dll&lt;br /&gt;boost_graph-vc90-mt-1_37.lib&lt;br /&gt;boost_graph-vc90-mt-gd-1_37.dll&lt;br /&gt;boost_graph-vc90-mt-gd-1_37.lib&lt;br /&gt;boost_graph-vc90-mt-gd.lib&lt;br /&gt;boost_graph-vc90-mt.lib&lt;br /&gt;boost_iostreams-vc90-mt-1_37.dll&lt;br /&gt;boost_iostreams-vc90-mt-1_37.lib&lt;br /&gt;boost_iostreams-vc90-mt-gd-1_37.dll&lt;br /&gt;boost_iostreams-vc90-mt-gd-1_37.lib&lt;br /&gt;boost_iostreams-vc90-mt-gd.lib&lt;br /&gt;boost_iostreams-vc90-mt.lib&lt;br /&gt;boost_math_c99-vc90-mt-1_37.dll&lt;br /&gt;boost_math_c99-vc90-mt-1_37.lib&lt;br /&gt;boost_math_c99-vc90-mt-gd-1_37.dll&lt;br /&gt;boost_math_c99-vc90-mt-gd-1_37.lib&lt;br /&gt;boost_math_c99-vc90-mt-gd.lib&lt;br /&gt;boost_math_c99-vc90-mt.lib&lt;br /&gt;boost_math_c99f-vc90-mt-1_37.dll&lt;br /&gt;boost_math_c99f-vc90-mt-1_37.lib&lt;br /&gt;boost_math_c99f-vc90-mt-gd-1_37.dll&lt;br /&gt;boost_math_c99f-vc90-mt-gd-1_37.lib&lt;br /&gt;boost_math_c99f-vc90-mt-gd.lib&lt;br /&gt;boost_math_c99f-vc90-mt.lib&lt;br /&gt;boost_math_c99l-vc90-mt-1_37.dll&lt;br /&gt;boost_math_c99l-vc90-mt-1_37.lib&lt;br /&gt;boost_math_c99l-vc90-mt-gd-1_37.dll&lt;br /&gt;boost_math_c99l-vc90-mt-gd-1_37.lib&lt;br /&gt;boost_math_c99l-vc90-mt-gd.lib&lt;br /&gt;boost_math_c99l-vc90-mt.lib&lt;br /&gt;boost_math_tr1-vc90-mt-1_37.dll&lt;br /&gt;boost_math_tr1-vc90-mt-1_37.lib&lt;br /&gt;boost_math_tr1-vc90-mt-gd-1_37.dll&lt;br /&gt;boost_math_tr1-vc90-mt-gd-1_37.lib&lt;br /&gt;boost_math_tr1-vc90-mt-gd.lib&lt;br /&gt;boost_math_tr1-vc90-mt.lib&lt;br /&gt;boost_math_tr1f-vc90-mt-1_37.dll&lt;br /&gt;boost_math_tr1f-vc90-mt-1_37.lib&lt;br /&gt;boost_math_tr1f-vc90-mt-gd-1_37.dll&lt;br /&gt;boost_math_tr1f-vc90-mt-gd-1_37.lib&lt;br /&gt;boost_math_tr1f-vc90-mt-gd.lib&lt;br /&gt;boost_math_tr1f-vc90-mt.lib&lt;br /&gt;boost_math_tr1l-vc90-mt-1_37.dll&lt;br /&gt;boost_math_tr1l-vc90-mt-1_37.lib&lt;br /&gt;boost_math_tr1l-vc90-mt-gd-1_37.dll&lt;br /&gt;boost_math_tr1l-vc90-mt-gd-1_37.lib&lt;br /&gt;boost_math_tr1l-vc90-mt-gd.lib&lt;br /&gt;boost_math_tr1l-vc90-mt.lib&lt;br /&gt;boost_prg_exec_monitor-vc90-mt-1_37.dll&lt;br /&gt;boost_prg_exec_monitor-vc90-mt-1_37.lib&lt;br /&gt;boost_prg_exec_monitor-vc90-mt-gd-1_37.dll&lt;br /&gt;boost_prg_exec_monitor-vc90-mt-gd-1_37.lib&lt;br /&gt;boost_prg_exec_monitor-vc90-mt-gd.lib&lt;br /&gt;boost_prg_exec_monitor-vc90-mt.lib&lt;br /&gt;boost_program_options-vc90-mt-1_37.dll&lt;br /&gt;boost_program_options-vc90-mt-1_37.lib&lt;br /&gt;boost_program_options-vc90-mt-gd-1_37.dll&lt;br /&gt;boost_program_options-vc90-mt-gd-1_37.lib&lt;br /&gt;boost_program_options-vc90-mt-gd.lib&lt;br /&gt;boost_program_options-vc90-mt.lib&lt;br /&gt;boost_regex-vc90-mt-1_37.dll&lt;br /&gt;boost_regex-vc90-mt-1_37.lib&lt;br /&gt;boost_regex-vc90-mt-gd-1_37.dll&lt;br /&gt;boost_regex-vc90-mt-gd-1_37.lib&lt;br /&gt;boost_regex-vc90-mt-gd.lib&lt;br /&gt;boost_regex-vc90-mt.lib&lt;br /&gt;boost_serialization-vc90-mt-1_37.dll&lt;br /&gt;boost_serialization-vc90-mt-1_37.lib&lt;br /&gt;boost_serialization-vc90-mt-gd-1_37.dll&lt;br /&gt;boost_serialization-vc90-mt-gd-1_37.lib&lt;br /&gt;boost_serialization-vc90-mt-gd.lib&lt;br /&gt;boost_serialization-vc90-mt.lib&lt;br /&gt;boost_signals-vc90-mt-1_37.dll&lt;br /&gt;boost_signals-vc90-mt-1_37.lib&lt;br /&gt;boost_signals-vc90-mt-gd-1_37.dll&lt;br /&gt;boost_signals-vc90-mt-gd-1_37.lib&lt;br /&gt;boost_signals-vc90-mt-gd.lib&lt;br /&gt;boost_signals-vc90-mt.lib&lt;br /&gt;boost_system-vc90-mt-1_37.dll&lt;br /&gt;boost_system-vc90-mt-1_37.lib&lt;br /&gt;boost_system-vc90-mt-gd-1_37.dll&lt;br /&gt;boost_system-vc90-mt-gd-1_37.lib&lt;br /&gt;boost_system-vc90-mt-gd.lib&lt;br /&gt;boost_system-vc90-mt.lib&lt;br /&gt;boost_thread-vc90-mt-1_37.dll&lt;br /&gt;boost_thread-vc90-mt-1_37.lib&lt;br /&gt;boost_thread-vc90-mt-gd-1_37.dll&lt;br /&gt;boost_thread-vc90-mt-gd-1_37.lib&lt;br /&gt;boost_thread-vc90-mt-gd.lib&lt;br /&gt;boost_thread-vc90-mt.lib&lt;br /&gt;boost_unit_test_framework-vc90-mt-1_37.dll&lt;br /&gt;boost_unit_test_framework-vc90-mt-1_37.lib&lt;br /&gt;boost_unit_test_framework-vc90-mt-gd-1_37.dll&lt;br /&gt;boost_unit_test_framework-vc90-mt-gd-1_37.lib&lt;br /&gt;boost_unit_test_framework-vc90-mt-gd.lib&lt;br /&gt;boost_unit_test_framework-vc90-mt.lib&lt;br /&gt;boost_wave-vc90-mt-1_37.dll&lt;br /&gt;boost_wave-vc90-mt-1_37.lib&lt;br /&gt;boost_wave-vc90-mt-gd-1_37.dll&lt;br /&gt;boost_wave-vc90-mt-gd-1_37.lib&lt;br /&gt;boost_wave-vc90-mt-gd.lib&lt;br /&gt;boost_wave-vc90-mt.lib&lt;br /&gt;boost_wserialization-vc90-mt-1_37.dll&lt;br /&gt;boost_wserialization-vc90-mt-1_37.lib&lt;br /&gt;boost_wserialization-vc90-mt-gd-1_37.dll&lt;br /&gt;boost_wserialization-vc90-mt-gd-1_37.lib&lt;br /&gt;boost_wserialization-vc90-mt-gd.lib&lt;br /&gt;boost_wserialization-vc90-mt.lib&lt;br /&gt;libboost_date_time-vc90-mt-1_37.lib&lt;br /&gt;libboost_date_time-vc90-mt-gd-1_37.lib&lt;br /&gt;libboost_date_time-vc90-mt-gd.lib&lt;br /&gt;libboost_date_time-vc90-mt-s-1_37.lib&lt;br /&gt;libboost_date_time-vc90-mt-s.lib&lt;br /&gt;libboost_date_time-vc90-mt-sgd-1_37.lib&lt;br /&gt;libboost_date_time-vc90-mt-sgd.lib&lt;br /&gt;libboost_date_time-vc90-mt.lib&lt;br /&gt;libboost_date_time-vc90-s-1_37.lib&lt;br /&gt;libboost_date_time-vc90-s.lib&lt;br /&gt;libboost_date_time-vc90-sgd-1_37.lib&lt;br /&gt;libboost_date_time-vc90-sgd.lib&lt;br /&gt;libboost_filesystem-vc90-mt-1_37.lib&lt;br /&gt;libboost_filesystem-vc90-mt-gd-1_37.lib&lt;br /&gt;libboost_filesystem-vc90-mt-gd.lib&lt;br /&gt;libboost_filesystem-vc90-mt-s-1_37.lib&lt;br /&gt;libboost_filesystem-vc90-mt-s.lib&lt;br /&gt;libboost_filesystem-vc90-mt-sgd-1_37.lib&lt;br /&gt;libboost_filesystem-vc90-mt-sgd.lib&lt;br /&gt;libboost_filesystem-vc90-mt.lib&lt;br /&gt;libboost_filesystem-vc90-s-1_37.lib&lt;br /&gt;libboost_filesystem-vc90-s.lib&lt;br /&gt;libboost_filesystem-vc90-sgd-1_37.lib&lt;br /&gt;libboost_filesystem-vc90-sgd.lib&lt;br /&gt;libboost_graph-vc90-mt-1_37.lib&lt;br /&gt;libboost_graph-vc90-mt-gd-1_37.lib&lt;br /&gt;libboost_graph-vc90-mt-gd.lib&lt;br /&gt;libboost_graph-vc90-mt-s-1_37.lib&lt;br /&gt;libboost_graph-vc90-mt-s.lib&lt;br /&gt;libboost_graph-vc90-mt-sgd-1_37.lib&lt;br /&gt;libboost_graph-vc90-mt-sgd.lib&lt;br /&gt;libboost_graph-vc90-mt.lib&lt;br /&gt;libboost_graph-vc90-s-1_37.lib&lt;br /&gt;libboost_graph-vc90-s.lib&lt;br /&gt;libboost_graph-vc90-sgd-1_37.lib&lt;br /&gt;libboost_graph-vc90-sgd.lib&lt;br /&gt;libboost_iostreams-vc90-mt-1_37.lib&lt;br /&gt;libboost_iostreams-vc90-mt-gd-1_37.lib&lt;br /&gt;libboost_iostreams-vc90-mt-gd.lib&lt;br /&gt;libboost_iostreams-vc90-mt-s-1_37.lib&lt;br /&gt;libboost_iostreams-vc90-mt-s.lib&lt;br /&gt;libboost_iostreams-vc90-mt-sgd-1_37.lib&lt;br /&gt;libboost_iostreams-vc90-mt-sgd.lib&lt;br /&gt;libboost_iostreams-vc90-mt.lib&lt;br /&gt;libboost_iostreams-vc90-s-1_37.lib&lt;br /&gt;libboost_iostreams-vc90-s.lib&lt;br /&gt;libboost_iostreams-vc90-sgd-1_37.lib&lt;br /&gt;libboost_iostreams-vc90-sgd.lib&lt;br /&gt;libboost_math_c99-vc90-mt-1_37.lib&lt;br /&gt;libboost_math_c99-vc90-mt-gd-1_37.lib&lt;br /&gt;libboost_math_c99-vc90-mt-gd.lib&lt;br /&gt;libboost_math_c99-vc90-mt-s-1_37.lib&lt;br /&gt;libboost_math_c99-vc90-mt-s.lib&lt;br /&gt;libboost_math_c99-vc90-mt-sgd-1_37.lib&lt;br /&gt;libboost_math_c99-vc90-mt-sgd.lib&lt;br /&gt;libboost_math_c99-vc90-mt.lib&lt;br /&gt;libboost_math_c99-vc90-s-1_37.lib&lt;br /&gt;libboost_math_c99-vc90-s.lib&lt;br /&gt;libboost_math_c99-vc90-sgd-1_37.lib&lt;br /&gt;libboost_math_c99-vc90-sgd.lib&lt;br /&gt;libboost_math_c99f-vc90-mt-1_37.lib&lt;br /&gt;libboost_math_c99f-vc90-mt-gd-1_37.lib&lt;br /&gt;libboost_math_c99f-vc90-mt-gd.lib&lt;br /&gt;libboost_math_c99f-vc90-mt-s-1_37.lib&lt;br /&gt;libboost_math_c99f-vc90-mt-s.lib&lt;br /&gt;libboost_math_c99f-vc90-mt-sgd-1_37.lib&lt;br /&gt;libboost_math_c99f-vc90-mt-sgd.lib&lt;br /&gt;libboost_math_c99f-vc90-mt.lib&lt;br /&gt;libboost_math_c99f-vc90-s-1_37.lib&lt;br /&gt;libboost_math_c99f-vc90-s.lib&lt;br /&gt;libboost_math_c99f-vc90-sgd-1_37.lib&lt;br /&gt;libboost_math_c99f-vc90-sgd.lib&lt;br /&gt;libboost_math_c99l-vc90-mt-1_37.lib&lt;br /&gt;libboost_math_c99l-vc90-mt-gd-1_37.lib&lt;br /&gt;libboost_math_c99l-vc90-mt-gd.lib&lt;br /&gt;libboost_math_c99l-vc90-mt-s-1_37.lib&lt;br /&gt;libboost_math_c99l-vc90-mt-s.lib&lt;br /&gt;libboost_math_c99l-vc90-mt-sgd-1_37.lib&lt;br /&gt;libboost_math_c99l-vc90-mt-sgd.lib&lt;br /&gt;libboost_math_c99l-vc90-mt.lib&lt;br /&gt;libboost_math_c99l-vc90-s-1_37.lib&lt;br /&gt;libboost_math_c99l-vc90-s.lib&lt;br /&gt;libboost_math_c99l-vc90-sgd-1_37.lib&lt;br /&gt;libboost_math_c99l-vc90-sgd.lib&lt;br /&gt;libboost_math_tr1-vc90-mt-1_37.lib&lt;br /&gt;libboost_math_tr1-vc90-mt-gd-1_37.lib&lt;br /&gt;libboost_math_tr1-vc90-mt-gd.lib&lt;br /&gt;libboost_math_tr1-vc90-mt-s-1_37.lib&lt;br /&gt;libboost_math_tr1-vc90-mt-s.lib&lt;br /&gt;libboost_math_tr1-vc90-mt-sgd-1_37.lib&lt;br /&gt;libboost_math_tr1-vc90-mt-sgd.lib&lt;br /&gt;libboost_math_tr1-vc90-mt.lib&lt;br /&gt;libboost_math_tr1-vc90-s-1_37.lib&lt;br /&gt;libboost_math_tr1-vc90-s.lib&lt;br /&gt;libboost_math_tr1-vc90-sgd-1_37.lib&lt;br /&gt;libboost_math_tr1-vc90-sgd.lib&lt;br /&gt;libboost_math_tr1f-vc90-mt-1_37.lib&lt;br /&gt;libboost_math_tr1f-vc90-mt-gd-1_37.lib&lt;br /&gt;libboost_math_tr1f-vc90-mt-gd.lib&lt;br /&gt;libboost_math_tr1f-vc90-mt-s-1_37.lib&lt;br /&gt;libboost_math_tr1f-vc90-mt-s.lib&lt;br /&gt;libboost_math_tr1f-vc90-mt-sgd-1_37.lib&lt;br /&gt;libboost_math_tr1f-vc90-mt-sgd.lib&lt;br /&gt;libboost_math_tr1f-vc90-mt.lib&lt;br /&gt;libboost_math_tr1f-vc90-s-1_37.lib&lt;br /&gt;libboost_math_tr1f-vc90-s.lib&lt;br /&gt;libboost_math_tr1f-vc90-sgd-1_37.lib&lt;br /&gt;libboost_math_tr1f-vc90-sgd.lib&lt;br /&gt;libboost_math_tr1l-vc90-mt-1_37.lib&lt;br /&gt;libboost_math_tr1l-vc90-mt-gd-1_37.lib&lt;br /&gt;libboost_math_tr1l-vc90-mt-gd.lib&lt;br /&gt;libboost_math_tr1l-vc90-mt-s-1_37.lib&lt;br /&gt;libboost_math_tr1l-vc90-mt-s.lib&lt;br /&gt;libboost_math_tr1l-vc90-mt-sgd-1_37.lib&lt;br /&gt;libboost_math_tr1l-vc90-mt-sgd.lib&lt;br /&gt;libboost_math_tr1l-vc90-mt.lib&lt;br /&gt;libboost_math_tr1l-vc90-s-1_37.lib&lt;br /&gt;libboost_math_tr1l-vc90-s.lib&lt;br /&gt;libboost_math_tr1l-vc90-sgd-1_37.lib&lt;br /&gt;libboost_math_tr1l-vc90-sgd.lib&lt;br /&gt;libboost_prg_exec_monitor-vc90-mt-1_37.lib&lt;br /&gt;libboost_prg_exec_monitor-vc90-mt-gd-1_37.lib&lt;br /&gt;libboost_prg_exec_monitor-vc90-mt-gd.lib&lt;br /&gt;libboost_prg_exec_monitor-vc90-mt-s-1_37.lib&lt;br /&gt;libboost_prg_exec_monitor-vc90-mt-s.lib&lt;br /&gt;libboost_prg_exec_monitor-vc90-mt-sgd-1_37.lib&lt;br /&gt;libboost_prg_exec_monitor-vc90-mt-sgd.lib&lt;br /&gt;libboost_prg_exec_monitor-vc90-mt.lib&lt;br /&gt;libboost_prg_exec_monitor-vc90-s-1_37.lib&lt;br /&gt;libboost_prg_exec_monitor-vc90-s.lib&lt;br /&gt;libboost_prg_exec_monitor-vc90-sgd-1_37.lib&lt;br /&gt;libboost_prg_exec_monitor-vc90-sgd.lib&lt;br /&gt;libboost_program_options-vc90-mt-1_37.lib&lt;br /&gt;libboost_program_options-vc90-mt-gd-1_37.lib&lt;br /&gt;libboost_program_options-vc90-mt-gd.lib&lt;br /&gt;libboost_program_options-vc90-mt-s-1_37.lib&lt;br /&gt;libboost_program_options-vc90-mt-s.lib&lt;br /&gt;libboost_program_options-vc90-mt-sgd-1_37.lib&lt;br /&gt;libboost_program_options-vc90-mt-sgd.lib&lt;br /&gt;libboost_program_options-vc90-mt.lib&lt;br /&gt;libboost_program_options-vc90-s-1_37.lib&lt;br /&gt;libboost_program_options-vc90-s.lib&lt;br /&gt;libboost_program_options-vc90-sgd-1_37.lib&lt;br /&gt;libboost_program_options-vc90-sgd.lib&lt;br /&gt;libboost_regex-vc90-mt-1_37.lib&lt;br /&gt;libboost_regex-vc90-mt-gd-1_37.lib&lt;br /&gt;libboost_regex-vc90-mt-gd.lib&lt;br /&gt;libboost_regex-vc90-mt-s-1_37.lib&lt;br /&gt;libboost_regex-vc90-mt-s.lib&lt;br /&gt;libboost_regex-vc90-mt-sgd-1_37.lib&lt;br /&gt;libboost_regex-vc90-mt-sgd.lib&lt;br /&gt;libboost_regex-vc90-mt.lib&lt;br /&gt;libboost_regex-vc90-s-1_37.lib&lt;br /&gt;libboost_regex-vc90-s.lib&lt;br /&gt;libboost_regex-vc90-sgd-1_37.lib&lt;br /&gt;libboost_regex-vc90-sgd.lib&lt;br /&gt;libboost_serialization-vc90-mt-1_37.lib&lt;br /&gt;libboost_serialization-vc90-mt-gd-1_37.lib&lt;br /&gt;libboost_serialization-vc90-mt-gd.lib&lt;br /&gt;libboost_serialization-vc90-mt-s-1_37.lib&lt;br /&gt;libboost_serialization-vc90-mt-s.lib&lt;br /&gt;libboost_serialization-vc90-mt-sgd-1_37.lib&lt;br /&gt;libboost_serialization-vc90-mt-sgd.lib&lt;br /&gt;libboost_serialization-vc90-mt.lib&lt;br /&gt;libboost_serialization-vc90-s-1_37.lib&lt;br /&gt;libboost_serialization-vc90-s.lib&lt;br /&gt;libboost_serialization-vc90-sgd-1_37.lib&lt;br /&gt;libboost_serialization-vc90-sgd.lib&lt;br /&gt;libboost_signals-vc90-mt-1_37.lib&lt;br /&gt;libboost_signals-vc90-mt-gd-1_37.lib&lt;br /&gt;libboost_signals-vc90-mt-gd.lib&lt;br /&gt;libboost_signals-vc90-mt-s-1_37.lib&lt;br /&gt;libboost_signals-vc90-mt-s.lib&lt;br /&gt;libboost_signals-vc90-mt-sgd-1_37.lib&lt;br /&gt;libboost_signals-vc90-mt-sgd.lib&lt;br /&gt;libboost_signals-vc90-mt.lib&lt;br /&gt;libboost_signals-vc90-s-1_37.lib&lt;br /&gt;libboost_signals-vc90-s.lib&lt;br /&gt;libboost_signals-vc90-sgd-1_37.lib&lt;br /&gt;libboost_signals-vc90-sgd.lib&lt;br /&gt;libboost_system-vc90-mt-1_37.lib&lt;br /&gt;libboost_system-vc90-mt-gd-1_37.lib&lt;br /&gt;libboost_system-vc90-mt-gd.lib&lt;br /&gt;libboost_system-vc90-mt-s-1_37.lib&lt;br /&gt;libboost_system-vc90-mt-s.lib&lt;br /&gt;libboost_system-vc90-mt-sgd-1_37.lib&lt;br /&gt;libboost_system-vc90-mt-sgd.lib&lt;br /&gt;libboost_system-vc90-mt.lib&lt;br /&gt;libboost_system-vc90-s-1_37.lib&lt;br /&gt;libboost_system-vc90-s.lib&lt;br /&gt;libboost_system-vc90-sgd-1_37.lib&lt;br /&gt;libboost_system-vc90-sgd.lib&lt;br /&gt;libboost_test_exec_monitor-vc90-mt-1_37.lib&lt;br /&gt;libboost_test_exec_monitor-vc90-mt-gd-1_37.lib&lt;br /&gt;libboost_test_exec_monitor-vc90-mt-gd.lib&lt;br /&gt;libboost_test_exec_monitor-vc90-mt-s-1_37.lib&lt;br /&gt;libboost_test_exec_monitor-vc90-mt-s.lib&lt;br /&gt;libboost_test_exec_monitor-vc90-mt-sgd-1_37.lib&lt;br /&gt;libboost_test_exec_monitor-vc90-mt-sgd.lib&lt;br /&gt;libboost_test_exec_monitor-vc90-mt.lib&lt;br /&gt;libboost_test_exec_monitor-vc90-s-1_37.lib&lt;br /&gt;libboost_test_exec_monitor-vc90-s.lib&lt;br /&gt;libboost_test_exec_monitor-vc90-sgd-1_37.lib&lt;br /&gt;libboost_test_exec_monitor-vc90-sgd.lib&lt;br /&gt;libboost_thread-vc90-mt-1_37.lib&lt;br /&gt;libboost_thread-vc90-mt-gd-1_37.lib&lt;br /&gt;libboost_thread-vc90-mt-gd.lib&lt;br /&gt;libboost_thread-vc90-mt-s-1_37.lib&lt;br /&gt;libboost_thread-vc90-mt-s.lib&lt;br /&gt;libboost_thread-vc90-mt-sgd-1_37.lib&lt;br /&gt;libboost_thread-vc90-mt-sgd.lib&lt;br /&gt;libboost_thread-vc90-mt.lib&lt;br /&gt;libboost_unit_test_framework-vc90-mt-1_37.lib&lt;br /&gt;libboost_unit_test_framework-vc90-mt-gd-1_37.lib&lt;br /&gt;libboost_unit_test_framework-vc90-mt-gd.lib&lt;br /&gt;libboost_unit_test_framework-vc90-mt-s-1_37.lib&lt;br /&gt;libboost_unit_test_framework-vc90-mt-s.lib&lt;br /&gt;libboost_unit_test_framework-vc90-mt-sgd-1_37.lib&lt;br /&gt;libboost_unit_test_framework-vc90-mt-sgd.lib&lt;br /&gt;libboost_unit_test_framework-vc90-mt.lib&lt;br /&gt;libboost_unit_test_framework-vc90-s-1_37.lib&lt;br /&gt;libboost_unit_test_framework-vc90-s.lib&lt;br /&gt;libboost_unit_test_framework-vc90-sgd-1_37.lib&lt;br /&gt;libboost_unit_test_framework-vc90-sgd.lib&lt;br /&gt;libboost_wave-vc90-mt-1_37.lib&lt;br /&gt;libboost_wave-vc90-mt-gd-1_37.lib&lt;br /&gt;libboost_wave-vc90-mt-gd.lib&lt;br /&gt;libboost_wave-vc90-mt-s-1_37.lib&lt;br /&gt;libboost_wave-vc90-mt-s.lib&lt;br /&gt;libboost_wave-vc90-mt-sgd-1_37.lib&lt;br /&gt;libboost_wave-vc90-mt-sgd.lib&lt;br /&gt;libboost_wave-vc90-mt.lib&lt;br /&gt;libboost_wave-vc90-s-1_37.lib&lt;br /&gt;libboost_wave-vc90-s.lib&lt;br /&gt;libboost_wave-vc90-sgd-1_37.lib&lt;br /&gt;libboost_wave-vc90-sgd.lib&lt;br /&gt;libboost_wserialization-vc90-mt-1_37.lib&lt;br /&gt;libboost_wserialization-vc90-mt-gd-1_37.lib&lt;br /&gt;libboost_wserialization-vc90-mt-gd.lib&lt;br /&gt;libboost_wserialization-vc90-mt-s-1_37.lib&lt;br /&gt;libboost_wserialization-vc90-mt-s.lib&lt;br /&gt;libboost_wserialization-vc90-mt-sgd-1_37.lib&lt;br /&gt;libboost_wserialization-vc90-mt-sgd.lib&lt;br /&gt;libboost_wserialization-vc90-mt.lib&lt;br /&gt;libboost_wserialization-vc90-s-1_37.lib&lt;br /&gt;libboost_wserialization-vc90-s.lib&lt;br /&gt;libboost_wserialization-vc90-sgd-1_37.lib&lt;br /&gt;libboost_wserialization-vc90-sgd.lib&lt;br /&gt;&lt;br /&gt;Hope this helps.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3325681978491628315-8698603698616775596?l=sheeeng.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sheeeng.blogspot.com/feeds/8698603698616775596/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3325681978491628315&amp;postID=8698603698616775596' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/8698603698616775596'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/8698603698616775596'/><link rel='alternate' type='text/html' href='http://sheeeng.blogspot.com/2008/12/boost-1370-libraries.html' title='Boost 1.37.0 Libraries'/><author><name>Leonard Lee</name><uri>http://www.blogger.com/profile/05020703049155191468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_J1jYn80D6cY/SUZfpZs0xXI/AAAAAAAACaM/8H1ramrIhu4/S220/Leonard-Miniature-Square2.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3325681978491628315.post-5129615539093736620</id><published>2008-12-17T16:18:00.001+08:00</published><updated>2008-12-17T16:30:11.462+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='powershell'/><category scheme='http://www.blogger.com/atom/ns#' term='command'/><category scheme='http://www.blogger.com/atom/ns#' term='windows'/><category scheme='http://www.blogger.com/atom/ns#' term='tips-and-tricks'/><category scheme='http://www.blogger.com/atom/ns#' term='prompt'/><title type='text'>Get List of Filenames Only in Command Prompt &amp; Log to File</title><content type='html'>I wondered today how I can list out all the files in a directory quickly. I found out that the command below helps me. E.g. I want to list all files contained under C:\Boost\lib.&lt;br /&gt;&lt;br /&gt;dir "C:\Boost\lib" /b&lt;br /&gt;Get-ChildItem C:\Boost\lib -name (Windows PowerShell) &lt;br /&gt;&lt;br /&gt;The /b command switch uses the bare format (no heading information or summary).&lt;br /&gt;&lt;br /&gt;However, another problem came. The command prompt screen buffer is not long enough for the list of files. Then, where log to file comes to mind.&lt;br /&gt;&lt;br /&gt;dir "C:\Boost\lib" /b &amp;gt; C:\ListFiles.txt&lt;br /&gt;Get-ChildItem C:\Boost\lib -name &amp;gt; C:\ListFiles.txt (Windows PowerShell)&lt;br /&gt;&lt;br /&gt;Hope this helps.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3325681978491628315-5129615539093736620?l=sheeeng.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sheeeng.blogspot.com/feeds/5129615539093736620/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3325681978491628315&amp;postID=5129615539093736620' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/5129615539093736620'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/5129615539093736620'/><link rel='alternate' type='text/html' href='http://sheeeng.blogspot.com/2008/12/get-list-of-filenames-only-in-command.html' title='Get List of Filenames Only in Command Prompt &amp; Log to File'/><author><name>Leonard Lee</name><uri>http://www.blogger.com/profile/05020703049155191468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_J1jYn80D6cY/SUZfpZs0xXI/AAAAAAAACaM/8H1ramrIhu4/S220/Leonard-Miniature-Square2.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3325681978491628315.post-81871920258257108</id><published>2008-12-17T12:38:00.000+08:00</published><updated>2008-12-17T13:00:31.665+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='command'/><category scheme='http://www.blogger.com/atom/ns#' term='windows'/><category scheme='http://www.blogger.com/atom/ns#' term='tips-and-tricks'/><category scheme='http://www.blogger.com/atom/ns#' term='prompt'/><title type='text'>Open Windows Explorer from Command Prompt</title><content type='html'>You can execute the Windows Explorer directly from your command prompt.&lt;br /&gt;&lt;br /&gt;Listed below are some ways you can do it from command prompt.&lt;br /&gt;&lt;br /&gt;# Open current directory or current path from command prompt on Windows Explorer&lt;br /&gt;&lt;br /&gt;explorer . (type explorer, a space, then a dot)&lt;br /&gt;start . (type start, a space, then a dot)&lt;br /&gt;&lt;br /&gt;# Open full path from command prompt on Windows Explorer&lt;br /&gt;&lt;br /&gt;explorer "H:\QwertyFolder\"&lt;br /&gt;start "H:\QwertyFolder\"&lt;br /&gt;&lt;br /&gt;# Open environment variables from command prompt on Windows Explorer&lt;br /&gt;&lt;br /&gt;explorer %TEMP%&lt;br /&gt;start %TEMP%&lt;br /&gt;&lt;br /&gt;# Open environment variables from command prompt on Windows Explorer using new shell:style.&lt;br /&gt;&lt;br /&gt;explorer shell:startup&lt;br /&gt;start shell:startup&lt;br /&gt;&lt;br /&gt;Hope this helps.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3325681978491628315-81871920258257108?l=sheeeng.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sheeeng.blogspot.com/feeds/81871920258257108/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3325681978491628315&amp;postID=81871920258257108' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/81871920258257108'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/81871920258257108'/><link rel='alternate' type='text/html' href='http://sheeeng.blogspot.com/2008/12/open-windows-explorer-from-command.html' title='Open Windows Explorer from Command Prompt'/><author><name>Leonard Lee</name><uri>http://www.blogger.com/profile/05020703049155191468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_J1jYn80D6cY/SUZfpZs0xXI/AAAAAAAACaM/8H1ramrIhu4/S220/Leonard-Miniature-Square2.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3325681978491628315.post-6448355885768474055</id><published>2008-12-16T16:52:00.005+08:00</published><updated>2008-12-27T18:35:09.875+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='visual-studio'/><category scheme='http://www.blogger.com/atom/ns#' term='unit-test'/><category scheme='http://www.blogger.com/atom/ns#' term='boost'/><category scheme='http://www.blogger.com/atom/ns#' term='c-plus-plus'/><title type='text'>Boost C++ Libraries &amp; Test Libraries</title><content type='html'>What is Boost? Boost provides free peer-reviewed portable C++ source libraries. Boost works well with the C++ Standard Library. Read &lt;a href="http://www.boost.org/"&gt;Boost C++ Libraries website&lt;/a&gt; for more information.&lt;br /&gt;&lt;br /&gt;Herb Sutter and Andrei Alexandrescu even praised Boost. Quoted from them, "Boost C++ Libraries is one of the most highly regarded and expertly designed C++ library projects in the world.”&lt;br /&gt;&lt;br /&gt;I do remember Andrei Alexandrescu for his excellent book that he wrote entitled "Modern C++ Design: Generic Programming and Design Patterns Applied". I still reading that book now.&lt;br /&gt;&lt;br /&gt;During the search for suitable C++ unit testing tool, I did came across into Boost Test Libraries besides WinUnit which I wrote about it earlier. So I going to try Boost today, especially its test libraries.&lt;br /&gt;&lt;br /&gt;Installation using BoostPro Coomputing installer on my Dell T5400 machine took about six hours to complete.  The BoostPro installer actually acts as a downloader for the Boost libraries, an extractor for the packages downloaded, and completes the building of the Boost libraries itself. After taking so much time on the simple BoostPro installer, I decided to try setup Boost packages manually.&lt;br /&gt;&lt;br /&gt;The Boost help files online are somehow not concise. Some of the materials are scattered within the website. You will know what I mean later on. You have to do some searching in the site before you manage to find the information needed. However, thanks for Dave Programming for the practical setup tutorial that you shared.&lt;br /&gt;&lt;br /&gt;I penned down my own Boost setup steps here.&lt;br /&gt;&lt;br /&gt;# Getting Started &amp;amp; Setup Boost Package Location.&lt;br /&gt;- Review "Boost Getting Started on Windows" at http://www.boost.org/doc/libs/1_37_0/more/getting_started/windows.html.&lt;br /&gt;- Download the full Boost package (e.g. boost_1_37_0.7z currently).&lt;br /&gt;- Extract the Boost code and put it under C:\Program Files\Boost. You will see the code the packages located at C:\Program Files\Boost\boost_1_37_0.&lt;br /&gt;&lt;br /&gt;# Build Boost Build Tool&lt;br /&gt;- Run the Visual Studio 2008 Command Prompt by Start -&amp;gt; Microsoft Visual Studio 2008 -&amp;gt; Visual Studio Tools -&amp;gt; Visual Studio 2008 Command Prompt.&lt;br /&gt;- Alternative method is that you create a shortcut of the normal command prompt from Start -&amp;gt; All Programs -&amp;gt; Accessories -&amp;gt; Command Prompt -&amp;gt; (right-click) -&amp;gt; Send To -&amp;gt; Desktop (create shourtcut). Right click the shortcut and change the Target to "%comspec% /k ""C:\Program Files\Microsoft Visual Studio 9.0\VC\vcvarsall.bat"" x86" (do not include double-quotes in the beginning and in the end). Change the Start in to "C:\Program Files\Microsoft Visual Studio 9.0\VC\" (include double-qoutes) too. Run that shortcut&lt;br /&gt;- Change the current directory location prior building the bjam.exe. C:\Program Files\Microsoft Visual Studio 9.0\VC&amp;gt;cd "C:\Program Files\Boost\boost_1_37_0\tools\jam\src"&lt;br /&gt;- Build bjam.exe. This process takes a few minutes to complete. C:\Program Files\Boost\boost_1_37_0\tools\jam\src&amp;gt;build.bat&lt;br /&gt;- You will notice that your bjam.exe had been successfully build and located at C:\Program Files\Boost\boost_1_37_0\tools\jam\src\bin.ntx86\bjam.exe.&lt;br /&gt;- Build only for MSVC environment. C:\Program Files\Boost\boost_1_37_0&amp;gt;tools\jam\src\bin.ntx86\bjam.exe /toolset=ms&lt;br /&gt;vc /build-type=complete /prefix="C:\Boost".&lt;br /&gt;- Rebuild all the libraries only for MSVC environment. C:\Program Files\Boost\boost_1_37_0&amp;gt;tools\jam\src\bin.ntx86\bjam.exe /toolset=ms&lt;br /&gt;vc /build-type=complete /prefix="C:\Boost" -a.&lt;br /&gt;- Install after the successful build. C:\Program Files\Boost\boost_1_37_0&amp;gt;tools\jam\src\bin.ntx86\bjam.exe --toolset=msvc --build-type=complete --prefix="C:\Boost" install.&lt;br /&gt;&lt;br /&gt;# Build Boost Libraries&lt;br /&gt;- Go to the root direcoty of boost_1_37_0. C:\Program Files\Boost\boost_1_37_0\tools\jam\src&amp;gt;cd..\..\..&lt;br /&gt;- Run the bjam.exe to build the Boost libraries. This process might take about one hours or more to complete. C:\Program Files\Boost\boost_1_37_0&amp;gt;tools\jam\src\bin.ntx86\bjam.exe.&lt;br /&gt;&lt;br /&gt;# Install the Boost libraries to a common folder to be referenced by Visual Studio&lt;br /&gt;- Build the boost libraries and install them in C:\Boost. This process takes a few minutes to complete. C:\Program Files\Boost\boost_1_37_0&amp;gt;tools\jam\src\bin.ntx86\bjam.exe install.&lt;br /&gt;- Notice that C:\Boost contains all your needed include files and linker libraries. C:\Boost\include\boost-1_37 contains the include files. C:\Boost\lib contains the needed linker libraries.&lt;br /&gt;- Modify addtional include directories. Right-click on yor project in Visual Studio Solution Explorer -&amp;gt; Configuration Properties -&amp;gt; C/C++ -&amp;gt; General -&amp;gt; Additional Include Directories. Enter C:\Boost\include\boost-1_37.&lt;br /&gt;- Modify additional linker directories. Right-click on yor project in Visual Studio Solution Explorer -&amp;gt; Configuration Properties -&amp;gt; Linker -&amp;gt; General -&amp;gt; Additional Library Directories. Enter C:\Boost\lib.&lt;br /&gt;//Code Snippet 01&lt;br /&gt;#pragma region BoostSample01&lt;br /&gt;#include &amp;lt; boost/lambda/lambda.hpp &amp;gt;&lt;br /&gt;#include &amp;lt; iostream &amp;gt;&lt;br /&gt;#include &amp;lt; iterator &amp;gt;&lt;br /&gt;#include &amp;lt; algorithm &amp;gt;&lt;boost hpp="" lambda=""&gt;&lt;iostream&gt;&lt;iterator&gt;&lt;algorithm&gt;&lt;br /&gt;&lt;br /&gt;int main()&lt;br /&gt;{&lt;br /&gt;using namespace boost::lambda;&lt;br /&gt;typedef std::istream_iterator&lt;int&gt; in;&lt;br /&gt;&lt;br /&gt;std::for_each(&lt;br /&gt;in(std::cin), in(), std::cout &amp;lt;&amp;lt; (_1 * 3) &amp;lt;&amp;lt; " " );&lt;br /&gt;}&lt;br /&gt;#pragma endregion BoostSample01&lt;br /&gt;//End of Code Snippet 01&lt;br /&gt;&lt;br /&gt;# Make Boost Regex Libraries&lt;br /&gt;- If you are following "Boost Getting Started on Windows" as mentioned earlier, you might notice that the regex libraries is not properly setup in the code of "Link Your Program to a Boost Library" section. It uses the Boost.Regex library, which has a separately-compiled binary component.&lt;br /&gt;//Code Snippet 02&lt;br /&gt;#pragma region BoostSample02&lt;br /&gt;#include &amp;lt; boost/regex.hpp &amp;gt;&lt;br /&gt;#include &amp;lt; iostream &amp;gt;&lt;br /&gt;#include &amp;lt; string &amp;gt;&lt;boost hpp=""&gt;&lt;iostream&gt;&lt;string&gt;&lt;br /&gt;&lt;br /&gt;int main()&lt;br /&gt;{&lt;br /&gt;std::string line;&lt;br /&gt;boost::regex pat( "^Subject: (Re: |Aw: )*(.*)" );&lt;br /&gt;&lt;br /&gt;while (std::cin)&lt;br /&gt;{&lt;br /&gt;std::getline(std::cin, line);&lt;br /&gt;boost::smatch matches;&lt;br /&gt;if (boost::regex_match(line, matches, pat))&lt;br /&gt;std::cout &amp;lt;&amp;lt; matches[2] &amp;lt;&amp;lt; std::endl;&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;#pragma endregion BoostSample02&lt;br /&gt;//End of Code Snippet 02&lt;br /&gt;- Navigate to Boost Regex folder. C:\Program Files\Boost\boost_1_37_0&amp;gt;cd libs\regex\build.&lt;br /&gt;- Build Boost Regex libraries. Select the correct makefile, e.g. vc9.mak for Visual C++ 9. C:\Program Files\Boost\boost_1_37_0\libs\regex\build&amp;gt;nmake vc9.mak.&lt;br /&gt;- You will notice that C:\Program Files\Boost\boost_1_37_0\libs\regex\build\vc90 contains all the Boost Regex libraries. Install them to C:\Boost. C:\Program Files\Boost\boost_1_37_0\libs\regex\build&amp;gt;nmake vc9.mak /install.&lt;br /&gt;- You can delete all the temporary files created during the build (excluding lib and dll files). C:\Program Files\Boost\boost_1_37_0\libs\regex\build&amp;gt;nmake vc9.mak /clean.&lt;br /&gt;- Remember to modify the additional linker directories.  Right-click on yor project in Visual Studio Solution Explorer -&amp;gt; Configuration Properties -&amp;gt; Linker -&amp;gt; General -&amp;gt; Additional Library Directories. Enter another extra directory. C:\Program Files\Boost\boost_1_37_0\libs\regex\build\vc90.&lt;br /&gt;&lt;br /&gt;Remember to review the &lt;a href="http://www.boost.org/doc/"&gt;Boost online documentation&lt;/a&gt; from time to time.&lt;/string&gt;&lt;/iostream&gt;&lt;/boost&gt;&lt;/int&gt;&lt;/algorithm&gt;&lt;/iterator&gt;&lt;/iostream&gt;&lt;/boost&gt;&lt;br /&gt;&lt;br /&gt;Hope it helps.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3325681978491628315-6448355885768474055?l=sheeeng.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sheeeng.blogspot.com/feeds/6448355885768474055/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3325681978491628315&amp;postID=6448355885768474055' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/6448355885768474055'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/6448355885768474055'/><link rel='alternate' type='text/html' href='http://sheeeng.blogspot.com/2008/12/boost-c-libraries-test-libraries.html' title='Boost C++ Libraries &amp; Test Libraries'/><author><name>Leonard Lee</name><uri>http://www.blogger.com/profile/05020703049155191468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_J1jYn80D6cY/SUZfpZs0xXI/AAAAAAAACaM/8H1ramrIhu4/S220/Leonard-Miniature-Square2.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3325681978491628315.post-8924157522645755278</id><published>2008-12-15T11:31:00.011+08:00</published><updated>2008-12-27T18:35:32.436+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='visual-studio'/><category scheme='http://www.blogger.com/atom/ns#' term='unit-test'/><category scheme='http://www.blogger.com/atom/ns#' term='c-plus-plus'/><title type='text'>WinUnit: Great Native C++ Unit Testing Tool By Maria Blees</title><content type='html'>I do share the same feelings as Maria when she penned down these words below at the first paragraph in her article in &lt;a href="http://msdn.microsoft.com/en-us/magazine/cc136757.aspx"&gt;WinUnit: Simplified Unit Testing for Native C++ Applications&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;"These days it can be hard not to feel downright oppressed as a native code developer—it seems like the developers using the Microsoft® .NET Framework get all the cool tools!" - Maria Blees.&lt;br /&gt;&lt;br /&gt;Why always .NET developers get all the good tools? I was .NET developer before, and I'm currently doing native C++ project. I was searching for native C++ unit testing tools for few days and then I bumped into this great tool.&lt;br /&gt;&lt;br /&gt;Here are some points which I like about WinUnit.&lt;br /&gt;&lt;br /&gt;1. Easy to setup the tools. Extract the codes and compile to your specific platform.&lt;br /&gt;2. Samples on the unit test are available.&lt;br /&gt;3. Codes on the unit test libraries are available.&lt;br /&gt;4. Visual Studio macros to configure your projects for WinUnit.&lt;br /&gt;5. Help files that are really helpful!&lt;br /&gt;&lt;br /&gt;Do read &lt;a href="http://www.wintellect.com/cs/blogs/jrobbins/archive/2008/01/17/winunit-an-outstanding-native-c-unit-testing-tool.aspx"&gt;John Robbin's Blog&lt;/a&gt; on his WinUnit review.&lt;br /&gt;&lt;br /&gt;I have compiled a guide to setup the WinUnit. You can follow the steps below. Maria developed a detailed and concise guide within the codes also. You may want to dig into her guide too.&lt;br /&gt;&lt;br /&gt;# Obtain WinUnit&lt;br /&gt;- Review "Simplified Unit Testing for Native C++ Applications" from http://msdn.microsoft.com/en-us/magazine/cc136757.aspx.&lt;br /&gt;- Get WinUnit from http://download.microsoft.com/download/f/2/7/f279e71e-efb0-4155-873d-5554a0608523/WinUnit2008_02.exe.&lt;br /&gt;- Extract WinUnit into a location (e.g. C:\). The WinUnit binaries and codes will be located there. (e.g. C:\WinUnit).&lt;br /&gt;&lt;br /&gt;# Build WinUnit&lt;br /&gt;- Open WinUnitComplete.sln using Visual Studio. Convert it to current version of Visual Studio if nessasary.&lt;br /&gt;- Open Build -&amp;gt; Configuration Manager.&lt;br /&gt;- Make sure active solution configuration is set to Release.&lt;br /&gt;- Make sure Active solution platform is Win32.&lt;br /&gt;- Execute Build -&amp;gt; Rebuild Solution.&lt;br /&gt;&lt;br /&gt;# Adding WinUnit to the Tools menu.&lt;br /&gt;- Adding WinUnit to your Tools menu will allow you to run it against any test project you have currently selected in Solution Explorer.&lt;br /&gt;- Go to Tools -&amp;gt; External Tools. Click Add.&lt;br /&gt;For Title, type WinUnit.&lt;br /&gt;For Command, browse to WinUnit.exe.&lt;br /&gt;For Arguments, type "$(TargetPath)" (include double-quotes).&lt;br /&gt;For Initial Directory, type "$(TargetDir)" (do not include double-quotes).&lt;br /&gt;Uncheck Close on Exit. Check Use Output Window.&lt;br /&gt;&lt;br /&gt;# Adding WinUnit as a post-build step&lt;br /&gt;- If you add WinUnit as a post-build step for a test project, it will run the tests in the project after every build of the project.&lt;br /&gt;- Right-click on your test project and select Properties.&lt;br /&gt;- Under Configuration Properties -&amp;gt; Build Events, select Post-Build Event.&lt;br /&gt;For Command Line, type the full path to WinUnit.exe, followed by "$(TargetPath)". Be sure to include the double quotes.&lt;br /&gt;For Description, type "Running WinUnit..." (do not include double-quotes).&lt;br /&gt;&lt;br /&gt;# Setting up your test project for debugging&lt;br /&gt;(This assumes you have previous built WinUnit.exe and placed it in a known location on your machine.)&lt;br /&gt;- Right-click on your test project and select Properties.&lt;br /&gt;- Under Configuration Properties, select Debugging.&lt;br /&gt;For Command, type the full (or relative) path to WinUnit.exe.&lt;br /&gt;For Command Arguments, type "$(TargetPath)" (include the double quotes).&lt;br /&gt;- Under Configuration Properties / C/C++, select General.&lt;br /&gt;For Additional Include Directory, type the directory containing your WinUnit.exe (e.g. C:\WinUnit\Release) and type the directory containing your WinUnit.h (e.g. C:\WinUnit\Include). You will see like the following, C:\WinUnit\Release;C:\WinUnit\Include.&lt;br /&gt;&lt;br /&gt;# Using WinUnit Visual Studio Macros&lt;br /&gt;- Open Tools -&amp;gt; Macros -&amp;gt; Macro Explorer.&lt;br /&gt;- Right-click on Macros, select Load Macro Project.&lt;br /&gt;- Load WinUnit.vsmacros located under the WinUnit folder (e.g. C:\WinUnit) in Macro Explorer for some handy macros for code coverage (using the Visual Studio Team System tools) and finer granularity in running tests.&lt;br /&gt;- Once you've loaded the WinUnit macros, read the _Readme module and set the variables in the _Variables module to suit your needs. You'll find macros for the following:&lt;br /&gt;* CodeCoverage - starting and stopping coverage data collection, instrumenting binaries, viewing a .coverage results file&lt;br /&gt;* RunningTests - running the test at the cursor; running all tests in the active file; running all tests in the selected project&lt;br /&gt;* RunningTestsWithCoverage - same as RunningTests, but with code coverage&lt;br /&gt;* ProjectSetup - turning on the /profile switch in the current project; setting the debug command and arguments for the current project; adding WinUnit's include directory to the list of include paths for the current project&lt;br /&gt;&lt;br /&gt;- If you need any help on WinUnit, please refer to C:\WinUnit\WinUnit-Internals.chm.&lt;br /&gt;Note: Do note that the macros related to the variable below needed Visual Studio Performance tools to work.&lt;br /&gt;&lt;br /&gt;Public VSPerfToolsDir As String = "C:\Program Files\Microsoft Visual Studio 8\Team Tools\Performance Tools"&lt;br /&gt;&lt;br /&gt;Please get them from Visual Studio Team Developer or Visual Studio Team Suite. Thanks Maria for the pointers.&lt;br /&gt;&lt;br /&gt;Hope this helps.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3325681978491628315-8924157522645755278?l=sheeeng.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sheeeng.blogspot.com/feeds/8924157522645755278/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3325681978491628315&amp;postID=8924157522645755278' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/8924157522645755278'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3325681978491628315/posts/default/8924157522645755278'/><link rel='alternate' type='text/html' href='http://sheeeng.blogspot.com/2008/12/winunit-great-native-c-unit-testing.html' title='WinUnit: Great Native C++ Unit Testing Tool By Maria Blees'/><author><name>Leonard Lee</name><uri>http://www.blogger.com/profile/05020703049155191468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_J1jYn80D6cY/SUZfpZs0xXI/AAAAAAAACaM/8H1ramrIhu4/S220/Leonard-Miniature-Square2.png'/></author><thr:total>0</thr:total></entry></feed>
