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

<channel>
	<title>unixwiz &#187; Random Stuff</title>
	<atom:link href="http://blogs.sungeek.net/unixwiz/tag/random-stuff/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.sungeek.net/unixwiz</link>
	<description>anything dealing with *NIX or what ever I want to write about</description>
	<lastBuildDate>Fri, 02 Jul 2010 02:28:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>MySQL root password recovery</title>
		<link>http://blogs.sungeek.net/unixwiz/2009/02/05/mysql-root-password-recovery/</link>
		<comments>http://blogs.sungeek.net/unixwiz/2009/02/05/mysql-root-password-recovery/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 02:50:43 +0000</pubDate>
		<dc:creator>unixwiz</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Random Stuff]]></category>
		<category><![CDATA[Password Recovery]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://blogs.sungeek.net/unixwiz/?p=1053</guid>
		<description><![CDATA[Quick steps to recovering (aka resetting) the root password on MySQL: 1. Find the PID of the mysql process ps -aef &#124; grep mysqld root 11889 11090 &#160; 0 &#160; Jun 10 ? &#160; &#160; &#160; &#160; &#160; 0:00 /bin/sh bin/safe_mysqld mysql 11909 11889 &#160; 0 &#160; Jun 10 ? &#160; &#160; &#160; &#160; 525:44 [...]]]></description>
			<content:encoded><![CDATA[<p>Quick steps to recovering (aka resetting) the root password on MySQL:</p>
<p>1. Find the PID of the mysql process </p>
<div class="codesnip-container" >
<div class="codesnip" style="font-family: monospace;"><span class="kw2">ps</span> -aef | <span class="kw2">grep</span> mysqld<br />
root <span class="nu0">11889</span> <span class="nu0">11090</span> &nbsp; <span class="nu0">0</span> &nbsp; Jun <span class="nu0">10</span> ? &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="nu0">0</span>:<span class="nu0">00</span> /bin/<span class="kw2">sh</span> bin/safe_mysqld<br />
mysql <span class="nu0">11909</span> <span class="nu0">11889</span> &nbsp; <span class="nu0">0</span> &nbsp; Jun <span class="nu0">10</span> ? &nbsp; &nbsp; &nbsp; &nbsp; <span class="nu0">525</span>:<span class="nu0">44</span> /<span class="kw3">local</span>/mysql<span class="nu0">-5.0</span><span class="nu0">.45</span>-solaris10-i386/bin/mysqld &#8211;<span class="re2">basedir=</span>/<span class="kw3">local</span>/mysql<span class="nu0">-5.0</span><span class="nu0">.45</span>-sol</div>
</div>
<p>2. Kill the mysql process;
<div class="codesnip-container" >
<div class="codesnip" style="font-family: monospace;"><span class="kw2">kill</span> <span class="nu0">11909</span></div>
</div>
<p> Make sure not to use a -9&#8230;<br />
3. Create a file that the user that runs mysql can access; and place in it the following:</p>
<div class="codesnip-container" >
<div class="codesnip" style="font-family: monospace;"><span class="kw1">UPDATE</span> mysql.user <span class="kw1">SET</span> Password=PASSWORD<span class="br0">&#40;</span><span class="st0">&#8216;FozzyBear&#8217;</span><span class="br0">&#41;</span> <span class="kw1">WHERE</span> User=<span class="st0">&#8216;root&#8217;</span>;<br />
<span class="kw1">FLUSH</span> PRIVILEGES;</div>
</div>
<p>4. Start mysql:
<div class="codesnip-container" >
<div class="codesnip" style="font-family: monospace;">mysqld_safe &#8211;init-<span class="re2">file=</span>/path/to/<span class="kw2">file</span> &amp;</div>
</div>
<p>5. Try to connect as root now, if it works, delete the temp file; stop and restart mysql.</p>
<p>Granted, the above can be done by any one who knows the password for the account that MySQL runs under, or has root access to the machine. I usually leave the mysql UNIX account in a locked state, so no one can su to it, so you have to have access to root, to be able to su to it.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.sungeek.net/unixwiz/2009/02/05/mysql-root-password-recovery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oh Peanut Butter how I miss you.</title>
		<link>http://blogs.sungeek.net/unixwiz/2009/01/25/oh-peanut-butter-how-i-miss-you/</link>
		<comments>http://blogs.sungeek.net/unixwiz/2009/01/25/oh-peanut-butter-how-i-miss-you/#comments</comments>
		<pubDate>Sun, 25 Jan 2009 17:39:09 +0000</pubDate>
		<dc:creator>unixwiz</dc:creator>
				<category><![CDATA[Random Stuff]]></category>
		<category><![CDATA[FDA]]></category>
		<category><![CDATA[Food Recall]]></category>
		<category><![CDATA[Interesting]]></category>
		<category><![CDATA[Peanut Butter]]></category>

		<guid isPermaLink="false">http://blogs.sungeek.net/unixwiz/?p=1044</guid>
		<description><![CDATA[With the recent massive recall of peanut butter because of Salmonella Typhimurium outbreak it is making me wonder if that wasn&#8217;t what made me sick a week or so ago. The FDA has published a list of Peanut Butter based products that have been recalled so far. That list is here They also have a [...]]]></description>
			<content:encoded><![CDATA[<p>With the recent massive recall of peanut butter because of Salmonella Typhimurium outbreak it is making me wonder if that wasn&#8217;t what made me sick a week or so ago. The FDA has published a list of Peanut Butter based products that have been recalled so far. That list is <a href="http://www.accessdata.fda.gov/scripts/peanutbutterrecall/index.cfm">here</a> They also have a massive 27 page list of products that have been recalled in PDF format. Here is a copy of that: <a href='http://blogs.sungeek.net/unixwiz/wp-content/uploads/2009/01/peanutbutterproducts2009.pdf'>peanutbutterproducts2009</a>.</p>
<p>I hope they get this sorted out soon, cause right now I am really craving some peanut butter&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.sungeek.net/unixwiz/2009/01/25/oh-peanut-butter-how-i-miss-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Monster hacked again</title>
		<link>http://blogs.sungeek.net/unixwiz/2009/01/23/monster-hacked-again/</link>
		<comments>http://blogs.sungeek.net/unixwiz/2009/01/23/monster-hacked-again/#comments</comments>
		<pubDate>Sat, 24 Jan 2009 03:27:52 +0000</pubDate>
		<dc:creator>unixwiz</dc:creator>
				<category><![CDATA[Funny]]></category>
		<category><![CDATA[Random Stuff]]></category>
		<category><![CDATA[Rant]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://blogs.sungeek.net/unixwiz/?p=1039</guid>
		<description><![CDATA[Couldn&#8217;t believe that monster.com was hacked again. So I went to change my password on there, and this is what it showed me when I tried to use a 30 character password: needless to say, I had to settle with a 14 character password before I just deleted the account all together. Hopefully their delete [...]]]></description>
			<content:encoded><![CDATA[<p>Couldn&#8217;t believe that monster.com was hacked again. So I went to change my password on there, and this is what it showed me when I tried to use a 30 character password:</p>
<p><img src="http://blogs.sungeek.net/unixwiz/wp-content/uploads/2009/01/picture-3.png" alt="picture-3" title="picture-3" width="749" height="180" class="alignnone size-full wp-image-1040" /></p>
<p>needless to say, I had to settle with a 14 character password before I just deleted the account all together. Hopefully their delete is really a delete. Kinda funny when the 30 character password I used was : TMG5IRWX4_hP5_Oi7Zh_N5oLXkeWP_</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.sungeek.net/unixwiz/2009/01/23/monster-hacked-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Transition to Digital TV</title>
		<link>http://blogs.sungeek.net/unixwiz/2009/01/18/transition-to-digital-tv/</link>
		<comments>http://blogs.sungeek.net/unixwiz/2009/01/18/transition-to-digital-tv/#comments</comments>
		<pubDate>Sun, 18 Jan 2009 04:32:57 +0000</pubDate>
		<dc:creator>unixwiz</dc:creator>
				<category><![CDATA[Television]]></category>
		<category><![CDATA[antenna]]></category>
		<category><![CDATA[Cable]]></category>
		<category><![CDATA[Digital Transition]]></category>
		<category><![CDATA[Random Stuff]]></category>
		<category><![CDATA[Rant]]></category>
		<category><![CDATA[TV]]></category>

		<guid isPermaLink="false">http://blogs.sungeek.net/unixwiz/?p=1033</guid>
		<description><![CDATA[With a little over 30 days to go till the big transition to Digital TV in America comes, it looks like there are going to be problems with the switch&#8230; The first, supposedly the people of America have failed to realize what they actually need to do for the transition. The second is that the [...]]]></description>
			<content:encoded><![CDATA[<p>With a little over 30 days to go till the big transition to Digital TV in America comes, it looks like there are going to be problems with the switch&#8230; The first, supposedly the people of America have failed to realize what they actually need to do for the transition. The second is that the government has ran out of money for the &#8220;coupons&#8221; to defer the cost of the converter boxes for the older TV&#8217;s that still exist. The third is the misinformation that is coming from various sources and the general misunderstanding of what is actually happening.  So from a high tech person to hopefully the low tech people who still don&#8217;t understand, here is what is actually happening.</p>
<p>1. The airwaves (i.e. radio frequency) is a hot topic right now. The bandwidth (think of a analog TV channel as being road to drive a car on, and there are currently only 67 broadcast &#8220;roads&#8221;) being used by the current analog tv system is worth a lot of &#8220;money&#8221;. So the government has decided to sell off some of the bandwidth that is currently being used by TV to other services (cell, two-way radio, etc). With this change, there is a mandate that all TV (with the exception of Low Power TV stations for the moment) has to move to using a Digital Transmission system, instead of the current analog system. So what is the difference between the current analog and the new digital? One difference is picture quality. With digital, the picture is either 100% crystal clear, or you get no picture at all. As opposed to the old analog where you would get a &#8220;snowy&#8221; picture. In addition, there is no more &#8220;ghosting&#8221; (seeing more than one copy of the same image on the tv.) Ghosting is caused by the analog tv signal bouncing off of structures (buildings, mountains, planes, etc) and arriving at the TV set at different times. </p>
<p>Because of the signal arriving at the TV at different times, you will get multiple different versions of the image on the screen. With digital TV, this is avoided, as each frame of the TV signal is marked with a time stamp. When the TV is &#8220;showing&#8221; you the signal, if it receives a copy of a TV image that it has already shown, it silently discards it in to the &#8220;trash&#8221;, there by making the ghosting go away. Here is a quick picture of what ghosting is in analog tv:<br />
<img src="http://blogs.sungeek.net/unixwiz/wp-content/uploads/2009/01/reflectedtv.png" alt="reflectedtv" title="reflectedtv" width="594" height="412" class="alignnone size-full wp-image-1034" /></p>
<p>Back to the highway term. With the current analog broadcast system, each TV channel is allocated 6MHz of bandwidth to broadcast their Video and Audio. Such as this:<br />
<img src="http://blogs.sungeek.net/unixwiz/wp-content/uploads/2009/01/videolane.png" alt="videolane" title="videolane" width="469" height="209" class="alignnone size-full wp-image-1035" /></p>
<p>So with only 67 &#8220;lanes&#8221; of TV channels, it limits what can actually be broadcast over the air. There are rules about how close 2 channels can be on the same frequency and on frequencies next to one and another. So most of the over the air channels have been limited to either National Networks, or other &#8220;Independent&#8221; stations. With the change to Digital transmission, it allows for each physical TV station, to broadcast more than 1 &#8220;channel&#8221; in their particular allotment of bandwidth. These other channels are called sub channels and each station can have up to 6 of them in their &#8220;road&#8221;. There by allowing much more content to be delivered over the air. One of the local channels WPXI, originally had their primary channel, and 2 sub channels in their allotment. The primary channel showed the same as what their analog channel 11 showed, but was in HD when the program source was in HD. The second channel 11.2 was a 24 hour a day weather channel. (Which they, NBC, have stopped broadcasting now.) Their third channel 11.3 shows the Retro TV Network. Some of the other Pittsburgh, Morgantown and Clarksburg channels are also using their sub carriers as well. PBS has 3 channels that they use. The interesting one is WBOY in Clarksburg. They are primarily a NBC affiliate, however there is no local ABC affiliate in the Clarksburg area, so they are using one of their sub channels 12.2 to broadcast ABC programming for the Clarksburg area. The FOX in Clarksburg uses one of their sub channels to broadcast the CW network to the local area. </p>
<p>2. So with the change to the digital broadcasting, more people are able to access more programming over the air, then they previously could. But with all good things comes bad things. </p>
<p>Most TV&#8217;s that have not been bought in the last couple of years, do not have a digital tuner in them. This means that all the new programming that is available over the air, can not be received with out a special set top box for the TV. In addition to the special box, you may need a new higher gain antenna than you previously had. The reason is most of the new digital channels are all in the UHF TV band. (As opposed to the VHF band where most of the current &#8220;big&#8221; channels are. )  The reason you need a higher gain antenna, is that because unlike with analog broadcasting where you might be able to see &#8220;part&#8221; of the picture even if it wasn&#8217;t completely clear, if you don&#8217;t have a good signal strength and quality of the digital signal you will not see a picture at all. So if you are watching analog TV over the air with an antenna, and the picture is a little fuzzy, you may be in need of a new high gain antenna, as more than likly the digital signal will not be strong enough for you. But back to the box now, because the government was mandating the change, they set aside money to provide people 2 $40 coupons to defer the cost of purchasing the boxes. </p>
<p>The problem with these coupons, they are only good for 90 days. So a lot of people have requested the coupons, but have not used them, and they have expired. This has caused the program to &#8220;run out of money&#8221;. So now when people go to the dtv2009.gov site, they can only be put on a wait list for the coupon. But considering that there is only 31 days left, the people who have not gotten their coupon&#8217;s will end up paying full price for their boxes. I almost was one of these people. I have requested the coupons but forgot till about 2 days before they expired that I had them. So I went to Radio Shack and bought two <a href="http://www.zenith.com/products/set-top-atsc-digital-to-analog-converter-box/DTT901/">Zenith DTT901</a> boxes. The boxes have a nice guide interface and work good. But for them to work well, I needed an antenna. To see what I could possibly get with out buying an expensive high gain UHF antenna, I made one out of some stuff I had around the house. My &#8220;Antenna&#8221; is made out of a piece of 2&#215;4, some stiff cardboard, heavy duty aluminum foil and some 12 guage electrical wire. The basic design looks like this:</p>
<p><img src="http://blogs.sungeek.net/unixwiz/wp-content/uploads/2009/01/uhf-antenna.png" alt="uhf-antenna" title="uhf-antenna" width="444" height="557" class="alignnone size-full wp-image-1036" /></p>
<p>Basically I wrapped the piece of card board with the aluminum foil. Then I tacked it to the back side of a 2 x 4 that was on it&#8217;s end. (tacked to the 2&#8243; side). Then using some screws and washers I screwed in 10 screws with 3 washers each in to the other side of the 2&#215;4. The first set of screws are about 3 inches from the top. Then the next set are 7 inches, 3.5, 3.5 and 7 inches. Next up was to take the 12 gauge wire, and cut 8 pieces that are 14 inches in length. Bend each piece at 7 inches, so that the ends are 3 inches apart. Those then get attached to the 2&#215;4 with the screws/washers. Then take 2 more long pieces of 12 gauge wire and attach it as shown to all the screw posts, making sure to have the cross&#8217; as shown. The final thing is to attach a 300ohm to 75ohm balun to the middle screws. This cheap antenna allowed me to get the local PBS channels and one of the Pittsburgh channels (Channel 4, which is on channel 51). I can also get some signal from some of the other channels, but not enough for them to actually come in. This could be fixed by a pre-amp, or adding another antenna to this one. This antenna is not meant for outside use either, as it would not stand up to any wind or other harsh elements, it is only meant to see if it is possible to pick up digital signals. </p>
<p>3. Finally the misinformation and general misunderstanding of what the actual digital switch is about. When any one asks me about the digital transition, I usually try to figure out what they currently do for television service and then base the answer on that. For example, my parents thought that the new HDTV broadcasts that are over the air, were going to be a for-pay service (ala cable, satellite). I told them that it was free and in the clear, just as it has always been. Other people think that even though they have cable or satellite that they have to get the new digital box just watch tv. For the most part this is false, but there has been some stuff going on in the cable world that is sort of making this true. See the cable companies are doing their own &#8220;digital conversion&#8221;. In the cable world, they use the same &#8220;roads&#8221; that the broadcasters use, but it is in a closed system. (Think of it as a toll road.) They also fall under the same problem that the analog broadcasters were. They can only show one channel per &#8220;road&#8221;. So they are starting to migrate most of all their channels to &#8220;digital&#8221; channels. This means that in the place that one analog channel is, there can be many digital channels (see <a href="http://blogs.sungeek.net/unixwiz/2008/12/29/comcast-morgantown-lineup/">Comcast morgantown lineup</a>). This allows the cable company to supposedly give you more channels (of which some times there is nothing worth watching on). But with the move to digital, the cable companies are encrypting those channels, so people can not &#8220;pirate&#8221; cable and get access to something they shouldn&#8217;t have.. So what does this have to do with the digital conversion? Well now all those &#8220;cable ready&#8221; tv&#8217;s will start to become obsolete, and they will require addressable cable boxes in order to receive channels that you used to be able to receive with no cable box.  It is also interesting that some cable companies are doing this switch around the same time as the over the air broadcast switch, and they are telling customers that it is a government mandate. This also means that the cable companies will more than likely start charging things differently now that they can block specific channels. It would be nice if they did have an a la carte pricing model, but I don&#8217;t see that happening any time soon. </p>
<p>In addition to the confusion, President-Elect Obama, is asking for a delay of the transition so that the public can be more prepared. Even West Virginia Sen. Jay Rockefeller, the new chairman of the Senate Commerce Committee, introduced legislation that would postpone the digital transition by almost four months. “I firmly believe that our nation is not yet ready to make this transition,” Rockefeller said in a statement. So how have other countries around the world handled the transition. I have been to a couple already that have made the switch, wonder what delays they had and how they handled it.  But for right now, if you use cable, you shouldn&#8217;t need to worry. If you use satellite, you don&#8217;t need to worry. If you have bought a new tv in the last 2 years, you don&#8217;t need to worry. The only reason you should be worrying is if your tv is more than 3 years old, you use rabbit ears or a roof/attic antenna, and you haven&#8217;t purchased a digital tv box yet. Also remember if you have a VCR, it will need a box as well, or you will not be able to tape one show and then watch another at the same time, like you can now. </p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.sungeek.net/unixwiz/2009/01/18/transition-to-digital-tv/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Update to comcast speed</title>
		<link>http://blogs.sungeek.net/unixwiz/2009/01/05/update-to-comcast-speed/</link>
		<comments>http://blogs.sungeek.net/unixwiz/2009/01/05/update-to-comcast-speed/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 23:05:46 +0000</pubDate>
		<dc:creator>unixwiz</dc:creator>
				<category><![CDATA[Random Stuff]]></category>
		<category><![CDATA[Comcast]]></category>
		<category><![CDATA[Interesting]]></category>

		<guid isPermaLink="false">http://blogs.sungeek.net/unixwiz/?p=1018</guid>
		<description><![CDATA[So the other night when I was testing the speed&#8217;s I was doing it with my MacBook Pro on the wireless.. Tonight I decided to do it from the desktop that is wired in at 100mb/s link, here are the results: Pretty darn nice&#8230;. The weird part is I think my comcast connection goes through [...]]]></description>
			<content:encoded><![CDATA[<p>So the other night when I was testing the speed&#8217;s I was doing it with my MacBook Pro on the wireless.. Tonight I decided to do it from the desktop that is wired in at 100mb/s link, here are the results:</p>
<p><img src="http://blogs.sungeek.net/unixwiz/wp-content/uploads/2009/01/384724896.png" alt="384724896" title="384724896" width="300" height="135" class="alignnone size-full wp-image-1019" /></p>
<p>Pretty darn nice&#8230;. The weird part is I think my comcast connection goes through DC instead of Pittsburgh. On the Pittsburgh comcast speed test I get 20mb/s right off the bat, but then it drops down to about 13 / 14 mb&#8230; on the DC test it stays around 20 until the last couple of seconds and then drops down to 19.94, but I think that is just the finishing of the file. So it looks like even though Pittsburgh is geographicly closer the route to dc may be bigger.</p>
<p>The Pittsburgh test site is in summit park, which funny as it is only 5 hops from my house. The DC test site is in Manassas VA, which is at least 9 hops.</p>
<p>To get from my house to the DC test site, it goes thorugh pittsburgh ph, cleveland oh, pittsbugh pa, mclean va, and then capitlhights maryland.</p>
<p>To get from my house to the Pittsburgh test site,just 5 hops, and it is there. both of the ones out side of morgantown are in pittsburgh..</p>
<p>Very weird</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.sungeek.net/unixwiz/2009/01/05/update-to-comcast-speed/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Comcast Morgantown Lineup</title>
		<link>http://blogs.sungeek.net/unixwiz/2008/12/29/comcast-morgantown-lineup/</link>
		<comments>http://blogs.sungeek.net/unixwiz/2008/12/29/comcast-morgantown-lineup/#comments</comments>
		<pubDate>Mon, 29 Dec 2008 19:59:19 +0000</pubDate>
		<dc:creator>unixwiz</dc:creator>
				<category><![CDATA[Comcast]]></category>
		<category><![CDATA[HDTV]]></category>
		<category><![CDATA[Random Stuff]]></category>
		<category><![CDATA[Interesting]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://blogs.sungeek.net/unixwiz/?p=1012</guid>
		<description><![CDATA[Today I set out to map out how the channels are assigned on the morgantown comcast system. I have been having problems getting MHD, Showtime HD and MLB network. Come to find out they are all on the same frequency (99.000 MHz). I had talked to Comcast last night and they sent a tech out [...]]]></description>
			<content:encoded><![CDATA[<p>Today I set out to map out how the channels are assigned on the morgantown comcast system. I have been having problems getting MHD, Showtime HD and MLB network. Come to find out they are all on the same frequency (99.000 MHz). I had talked to Comcast last night and they sent a tech out today. He came, but we were unable to find out why those three channels would not come in. The receiver would show a 0 db signal strength. We replaced all the ends from the pole to the receiver. Even ran a temp cable across the road from the pole to the receiver, still did not work. So now they have to send some one else out to check the lines further up the street. One thing I did notice while outside, is that WCLG (100.1 FM) had a harmonic showing up as low as 98.5 and then there were more in the 99.x range, so I bet that is the cause of the problem, is that some how that station has entered in to the system some how..</p>
<p>Any ways for those who are bored beyond belief and would like to know the actual frequencies of each of the channels, here they are ( they are grouped by the EIA channel, So you can see how many digital channels are on one physical analog channel)</p>
<style>
<!--table {}
.style0
	{text-align:general;
	vertical-align:bottom;
	white-space:nowrap;
	color:windowtext;
	font-size:10.0pt;
	font-weight:400;
	font-style:normal;
	text-decoration:none;
	font-family:Verdana;
	border:none;}
td
	{padding-top:1px;
	padding-right:1px;
	padding-left:1px;
	color:windowtext;
	font-size:10.0pt;
	font-weight:400;
	font-style:normal;
	text-decoration:none;
	font-family:Verdana;
	text-align:general;
	vertical-align:bottom;
	border:none;
	white-space:nowrap;}
.xl24
	{text-align:center;}
.xl25
	{text-align:center;
	border-top:.5pt solid windowtext;
	border-right:none;
	border-bottom:none;
	border-left:.5pt solid windowtext;}
.xl26
	{text-align:center;
	border-top:.5pt solid windowtext;
	border-right:none;
	border-bottom:none;
	border-left:none;}
.xl27
	{text-align:center;
	border-top:.5pt solid windowtext;
	border-right:.5pt solid windowtext;
	border-bottom:none;
	border-left:none;}
.xl28
	{text-align:center;
	border-top:none;
	border-right:none;
	border-bottom:none;
	border-left:.5pt solid windowtext;}
.xl29
	{text-align:center;
	border-top:none;
	border-right:.5pt solid windowtext;
	border-bottom:none;
	border-left:none;}
.xl30
	{text-align:center;
	border-top:none;
	border-right:none;
	border-bottom:.5pt solid windowtext;
	border-left:.5pt solid windowtext;}
.xl31
	{text-align:center;
	border-top:none;
	border-right:none;
	border-bottom:.5pt solid windowtext;
	border-left:none;}
.xl32
	{text-align:center;
	border-top:none;
	border-right:.5pt solid windowtext;
	border-bottom:.5pt solid windowtext;
	border-left:none;}
.xl33
	{text-align:center;
	border-top:.5pt solid windowtext;
	border-right:none;
	border-bottom:.5pt solid windowtext;
	border-left:.5pt solid windowtext;}
.xl34
	{text-align:center;
	border-top:.5pt solid windowtext;
	border-right:none;
	border-bottom:.5pt solid windowtext;
	border-left:none;}
.xl35
	{text-align:center;
	border-top:.5pt solid windowtext;
	border-right:.5pt solid windowtext;
	border-bottom:.5pt solid windowtext;
	border-left:none;}
.xl36
	{font-weight:700;
	text-align:center;
	background:silver;}
ruby
	{ruby-align:left;}
rt
	{color:windowtext;
	font-size:8.0pt;
	font-weight:400;
	font-style:normal;
	text-decoration:none;
	font-family:Verdana;
	display:none;}
-->
</style>
<table border=0 cellpadding=0 cellspacing=0 width=400 style='border-collapse:<br />
 collapse;table-layout:fixed'><br />
<col class=xl24 width=88>
 </col>
<col class=xl24 width=114>
</col>
<col class=xl24 width=75 span=2>
<tr height=13>
<td height=13 class=xl36>Cable Channel</td>
<td class=xl36>Name</td>
<td class=xl36>Freq</td>
<td class=xl36>EIA Channel</td>
</tr>
<tr height=13>
<td height=13 class=xl33>2</td>
<td class=xl34>kdka</td>
<td class=xl34>57</td>
<td class=xl35>2</td>
</tr>
<tr height=13>
<td height=13 class=xl33>3</td>
<td class=xl34>lmorg</td>
<td class=xl34>63</td>
<td class=xl35>3</td>
</tr>
<tr height=13>
<td height=13 class=xl33>4</td>
<td class=xl34>wtae</td>
<td class=xl34>69</td>
<td class=xl35>4</td>
</tr>
<tr height=13>
<td height=13 class=xl33>5</td>
<td class=xl34>wdtv</td>
<td class=xl34>75</td>
<td class=xl35>5</td>
</tr>
<tr height=13>
<td height=13 class=xl33>6</td>
<td class=xl34>wpgh</td>
<td class=xl34>85</td>
<td class=xl35>6</td>
</tr>
<tr height=13>
<td height=13 class=xl33>8</td>
<td class=xl34>wnpb</td>
<td class=xl34>183</td>
<td class=xl35>8</td>
</tr>
<tr height=13>
<td height=13 class=xl33>9</td>
<td class=xl34>wpmy</td>
<td class=xl34>189</td>
<td class=xl35>9</td>
</tr>
<tr height=13>
<td height=13 class=xl33>10</td>
<td class=xl34>qvc</td>
<td class=xl34>195</td>
<td class=xl35>10</td>
</tr>
<tr height=13>
<td height=13 class=xl33>11</td>
<td class=xl34>wpxi</td>
<td class=xl34>201</td>
<td class=xl35>11</td>
</tr>
<tr height=13>
<td height=13 class=xl33>12</td>
<td class=xl34>wboy</td>
<td class=xl34>207</td>
<td class=xl35>12</td>
</tr>
<tr height=13>
<td height=13 class=xl33>13</td>
<td class=xl34>wqed</td>
<td class=xl34>213</td>
<td class=xl35>13</td>
</tr>
<tr height=13>
<td height=13 class=xl33>14</td>
<td class=xl34>wvfx</td>
<td class=xl34>123</td>
<td class=xl35>14</td>
</tr>
<tr height=13>
<td height=13 class=xl33>15</td>
<td class=xl34>gov</td>
<td class=xl34>129</td>
<td class=xl35>15</td>
</tr>
<tr height=13>
<td height=13 class=xl33>16</td>
<td class=xl34>wpcb</td>
<td class=xl34>135</td>
<td class=xl35>16</td>
</tr>
<tr height=13>
<td height=13 class=xl33>17</td>
<td class=xl34>hn</td>
<td class=xl34>141</td>
<td class=xl35>17</td>
</tr>
<tr height=13>
<td height=13 class=xl33>18</td>
<td class=xl34>tbn</td>
<td class=xl34>147</td>
<td class=xl35>18</td>
</tr>
<tr height=13>
<td height=13 class=xl33>19</td>
<td class=xl34>versu</td>
<td class=xl34>153</td>
<td class=xl35>19</td>
</tr>
<tr height=13>
<td height=13 class=xl33>21</td>
<td class=xl34>inspa</td>
<td class=xl34>165</td>
<td class=xl35>21</td>
</tr>
<tr height=13>
<td height=13 class=xl33>22</td>
<td class=xl34>cw</td>
<td class=xl34>171</td>
<td class=xl35>22</td>
</tr>
<tr height=13>
<td height=13 class=xl33>23</td>
<td class=xl34>hsn</td>
<td class=xl34>219</td>
<td class=xl35>23</td>
</tr>
<tr height=13>
<td height=13 class=xl33>25</td>
<td class=xl34>cspan</td>
<td class=xl34>231</td>
<td class=xl35>25</td>
</tr>
<tr height=13>
<td height=13 class=xl33>27</td>
<td class=xl34>wgn</td>
<td class=xl34>243</td>
<td class=xl35>27</td>
</tr>
<tr height=13>
<td height=13 class=xl33>28</td>
<td class=xl34>twc</td>
<td class=xl34>249</td>
<td class=xl35>28</td>
</tr>
<tr height=13>
<td height=13 class=xl33>29</td>
<td class=xl34>life</td>
<td class=xl34>255</td>
<td class=xl35>29</td>
</tr>
<tr height=13>
<td height=13 class=xl33>30</td>
<td class=xl34>speed</td>
<td class=xl34>261</td>
<td class=xl35>30</td>
</tr>
<tr height=13>
<td height=13 class=xl33>31</td>
<td class=xl34>hist</td>
<td class=xl34>267</td>
<td class=xl35>31</td>
</tr>
<tr height=13>
<td height=13 class=xl33>32</td>
<td class=xl34>cnn</td>
<td class=xl34>273</td>
<td class=xl35>32</td>
</tr>
<tr height=13>
<td height=13 class=xl33>33</td>
<td class=xl34>foxn</td>
<td class=xl34>279</td>
<td class=xl35>33</td>
</tr>
<tr height=13>
<td height=13 class=xl33>34</td>
<td class=xl34>tbs</td>
<td class=xl34>285</td>
<td class=xl35>34</td>
</tr>
<tr height=13>
<td height=13 class=xl33>35</td>
<td class=xl34>espn</td>
<td class=xl34>291</td>
<td class=xl35>35</td>
</tr>
<tr height=13>
<td height=13 class=xl33>36</td>
<td class=xl34>espn2</td>
<td class=xl34>297</td>
<td class=xl35>36</td>
</tr>
<tr height=13>
<td height=13 class=xl33>37</td>
<td class=xl34>fosxp</td>
<td class=xl34>303</td>
<td class=xl35>37</td>
</tr>
<tr height=13>
<td height=13 class=xl33>38</td>
<td class=xl34>golf</td>
<td class=xl34>309</td>
<td class=xl35>38</td>
</tr>
<tr height=13>
<td height=13 class=xl33>39</td>
<td class=xl34>food</td>
<td class=xl34>315</td>
<td class=xl35>39</td>
</tr>
<tr height=13>
<td height=13 class=xl33>40</td>
<td class=xl34>anp</td>
<td class=xl34>321</td>
<td class=xl35>40</td>
</tr>
<tr height=13>
<td height=13 class=xl33>41</td>
<td class=xl34>disn</td>
<td class=xl34>327</td>
<td class=xl35>41</td>
</tr>
<tr height=13>
<td height=13 class=xl33>42</td>
<td class=xl34>nick</td>
<td class=xl34>333</td>
<td class=xl35>42</td>
</tr>
<tr height=13>
<td height=13 class=xl33>43</td>
<td class=xl34>a&amp;e</td>
<td class=xl34>339</td>
<td class=xl35>43</td>
</tr>
<tr height=13>
<td height=13 class=xl33>44</td>
<td class=xl34>pcnc</td>
<td class=xl34>345</td>
<td class=xl35>44</td>
</tr>
<tr height=13>
<td height=13 class=xl33>45</td>
<td class=xl34>cnbc</td>
<td class=xl34>351</td>
<td class=xl35>45</td>
</tr>
<tr height=13>
<td height=13 class=xl33>46</td>
<td class=xl34>cmt</td>
<td class=xl34>357</td>
<td class=xl35>46</td>
</tr>
<tr height=13>
<td height=13 class=xl33>47</td>
<td class=xl34>fx</td>
<td class=xl34>363</td>
<td class=xl35>47</td>
</tr>
<tr height=13>
<td height=13 class=xl33>48</td>
<td class=xl34>vh1</td>
<td class=xl34>369</td>
<td class=xl35>48</td>
</tr>
<tr height=13>
<td height=13 class=xl33>49</td>
<td class=xl34>mtv</td>
<td class=xl34>375</td>
<td class=xl35>49</td>
</tr>
<tr height=13>
<td height=13 class=xl33>50</td>
<td class=xl34>fam</td>
<td class=xl34>381</td>
<td class=xl35>50</td>
</tr>
<tr height=13>
<td height=13 class=xl33>51</td>
<td class=xl34>comedy</td>
<td class=xl34>387</td>
<td class=xl35>51</td>
</tr>
<tr height=13>
<td height=13 class=xl33>52</td>
<td class=xl34>tlc</td>
<td class=xl34>393</td>
<td class=xl35>52</td>
</tr>
<tr height=13>
<td height=13 class=xl33>53</td>
<td class=xl34>disc</td>
<td class=xl34>399</td>
<td class=xl35>53</td>
</tr>
<tr height=13>
<td height=13 class=xl33>54</td>
<td class=xl34>scifi</td>
<td class=xl34>405</td>
<td class=xl35>54</td>
</tr>
<tr height=13>
<td height=13 class=xl33>55</td>
<td class=xl34>usa</td>
<td class=xl34>411</td>
<td class=xl35>55</td>
</tr>
<tr height=13>
<td height=13 class=xl33>56</td>
<td class=xl34>tnt</td>
<td class=xl34>417</td>
<td class=xl35>56</td>
</tr>
<tr height=13>
<td height=13 class=xl33>57</td>
<td class=xl34>bravo</td>
<td class=xl34>423</td>
<td class=xl35>57</td>
</tr>
<tr height=13>
<td height=13 class=xl33>58</td>
<td class=xl34>hgtv</td>
<td class=xl34>429</td>
<td class=xl35>58</td>
</tr>
<tr height=13>
<td height=13 class=xl33>59</td>
<td class=xl34>spike</td>
<td class=xl34>435</td>
<td class=xl35>59</td>
</tr>
<tr height=13>
<td height=13 class=xl33>60</td>
<td class=xl34>tvland</td>
<td class=xl34>441</td>
<td class=xl35>60</td>
</tr>
<tr height=13>
<td height=13 class=xl33>61</td>
<td class=xl34>cart</td>
<td class=xl34>447</td>
<td class=xl35>61</td>
</tr>
<tr height=13>
<td height=13 class=xl33>62</td>
<td class=xl34>trav</td>
<td class=xl34>453</td>
<td class=xl35>62</td>
</tr>
<tr height=13>
<td height=13 class=xl33>63</td>
<td class=xl34>amc</td>
<td class=xl34>459</td>
<td class=xl35>63</td>
</tr>
<tr height=13>
<td height=13 class=xl33>64</td>
<td class=xl34>bet</td>
<td class=xl34>465</td>
<td class=xl35>64</td>
</tr>
<tr height=13>
<td height=13 class=xl33>710</td>
<td class=xl34>wpcwh</td>
<td class=xl34>471</td>
<td class=xl35>65</td>
</tr>
<tr height=13>
<td height=13 class=xl33>70</td>
<td class=xl34>style</td>
<td class=xl34>501</td>
<td class=xl35>70</td>
</tr>
<tr height=13>
<td height=13 class=xl25>471</td>
<td class=xl26>btn1</td>
<td class=xl26>507</td>
<td class=xl27>71</td>
</tr>
<tr height=13>
<td height=13 class=xl28>472</td>
<td class=xl24>btn2</td>
<td class=xl24>507</td>
<td class=xl29>71</td>
</tr>
<tr height=13>
<td height=13 class=xl28>473</td>
<td class=xl24>btn3</td>
<td class=xl24>507</td>
<td class=xl29>71</td>
</tr>
<tr height=13>
<td height=13 class=xl30>474</td>
<td class=xl31>btn4</td>
<td class=xl31>507</td>
<td class=xl32>71</td>
</tr>
<tr height=13>
<td height=13 class=xl33>267</td>
<td class=xl34>btn </td>
<td class=xl34>513</td>
<td class=xl35>72</td>
</tr>
<tr height=13>
<td height=13 class=xl25>255</td>
<td class=xl26>hallm</td>
<td class=xl26>519</td>
<td class=xl27>73</td>
</tr>
<tr height=13>
<td height=13 class=xl28>259</td>
<td class=xl24>trutv</td>
<td class=xl24>519</td>
<td class=xl29>73</td>
</tr>
<tr height=13>
<td height=13 class=xl28>264</td>
<td class=xl24>tvg</td>
<td class=xl24>519</td>
<td class=xl29>73</td>
</tr>
<tr height=13>
<td height=13 class=xl28>265</td>
<td class=xl24>ewtn</td>
<td class=xl24>519</td>
<td class=xl29>73</td>
</tr>
<tr height=13>
<td height=13 class=xl30>266</td>
<td class=xl31>msnbc</td>
<td class=xl31>519</td>
<td class=xl32>73</td>
</tr>
<tr height=13>
<td height=13 class=xl25>1</td>
<td class=xl26>od</td>
<td class=xl26>585</td>
<td class=xl27>84</td>
</tr>
<tr height=13>
<td height=13 class=xl28>199</td>
<td class=xl24>ondemand</td>
<td class=xl24>585</td>
<td class=xl29>84</td>
</tr>
<tr height=13>
<td height=13 class=xl28>298</td>
<td class=xl24>free movies</td>
<td class=xl24>585</td>
<td class=xl29>84</td>
</tr>
<tr height=13>
<td height=13 class=xl28>299</td>
<td class=xl24>hbood</td>
<td class=xl24>585</td>
<td class=xl29>84</td>
</tr>
<tr height=13>
<td height=13 class=xl28>339</td>
<td class=xl24>aod</td>
<td class=xl24>585</td>
<td class=xl29>84</td>
</tr>
<tr height=13>
<td height=13 class=xl28>487</td>
<td class=xl24>hdod</td>
<td class=xl24>585</td>
<td class=xl29>84</td>
</tr>
<tr height=13>
<td height=13 class=xl28>488</td>
<td class=xl24>free hd od</td>
<td class=xl24>585</td>
<td class=xl29>84</td>
</tr>
<tr height=13>
<td height=13 class=xl28>490</td>
<td class=xl24>hd pri</td>
<td class=xl24>585</td>
<td class=xl29>84</td>
</tr>
<tr height=13>
<td height=13 class=xl28>491</td>
<td class=xl24>hd music od</td>
<td class=xl24>585</td>
<td class=xl29>84</td>
</tr>
<tr height=13>
<td height=13 class=xl28>499</td>
<td class=xl24>movies od</td>
<td class=xl24>585</td>
<td class=xl29>84</td>
</tr>
<tr height=13>
<td height=13 class=xl28>501</td>
<td class=xl24>espn1</td>
<td class=xl24>585</td>
<td class=xl29>84</td>
</tr>
<tr height=13>
<td height=13 class=xl28>502</td>
<td class=xl24>espn2</td>
<td class=xl24>585</td>
<td class=xl29>84</td>
</tr>
<tr height=13>
<td height=13 class=xl28>503</td>
<td class=xl24>espn3</td>
<td class=xl24>585</td>
<td class=xl29>84</td>
</tr>
<tr height=13>
<td height=13 class=xl28>504</td>
<td class=xl24>espn4</td>
<td class=xl24>585</td>
<td class=xl29>84</td>
</tr>
<tr height=13>
<td height=13 class=xl28>505</td>
<td class=xl24>espn5</td>
<td class=xl24>585</td>
<td class=xl29>84</td>
</tr>
<tr height=13>
<td height=13 class=xl28>506</td>
<td class=xl24>espn6</td>
<td class=xl24>585</td>
<td class=xl29>84</td>
</tr>
<tr height=13>
<td height=13 class=xl28>510</td>
<td class=xl24>fear</td>
<td class=xl24>585</td>
<td class=xl29>84</td>
</tr>
<tr height=13>
<td height=13 class=xl28>887</td>
<td class=xl24>shop</td>
<td class=xl24>585</td>
<td class=xl29>84</td>
</tr>
<tr height=13>
<td height=13 class=xl28>888</td>
<td class=xl24>searchlight 888</td>
<td class=xl24>585</td>
<td class=xl29>84</td>
</tr>
<tr height=13>
<td height=13 class=xl28>889</td>
<td class=xl24>auto</td>
<td class=xl24>585</td>
<td class=xl29>84</td>
</tr>
<tr height=13>
<td height=13 class=xl28>891</td>
<td class=xl24></td>
<td class=xl24>585</td>
<td class=xl29>84</td>
</tr>
<tr height=13>
<td height=13 class=xl28>892</td>
<td class=xl24>iad24</td>
<td class=xl24>585</td>
<td class=xl29>84</td>
</tr>
<tr height=13>
<td height=13 class=xl28>893</td>
<td class=xl24>iad25</td>
<td class=xl24>585</td>
<td class=xl29>84</td>
</tr>
<tr height=13>
<td height=13 class=xl28>900</td>
<td class=xl24>on d </td>
<td class=xl24>585</td>
<td class=xl29>84</td>
</tr>
<tr height=13>
<td height=13 class=xl28>901</td>
<td class=xl24>stzod</td>
<td class=xl24>585</td>
<td class=xl29>84</td>
</tr>
<tr height=13>
<td height=13 class=xl28>902</td>
<td class=xl24>encod</td>
<td class=xl24>585</td>
<td class=xl29>84</td>
</tr>
<tr height=13>
<td height=13 class=xl28>903</td>
<td class=xl24>shod</td>
<td class=xl24>585</td>
<td class=xl29>84</td>
</tr>
<tr height=13>
<td height=13 class=xl28>904</td>
<td class=xl24>tmcod</td>
<td class=xl24>585</td>
<td class=xl29>84</td>
</tr>
<tr height=13>
<td height=13 class=xl28>906</td>
<td class=xl24>hbod</td>
<td class=xl24>585</td>
<td class=xl29>84</td>
</tr>
<tr height=13>
<td height=13 class=xl28>907</td>
<td class=xl24>maxod</td>
<td class=xl24>585</td>
<td class=xl29>84</td>
</tr>
<tr height=13>
<td height=13 class=xl28>909</td>
<td class=xl24>hd od</td>
<td class=xl24>585</td>
<td class=xl29>84</td>
</tr>
<tr height=13>
<td height=13 class=xl28>912</td>
<td class=xl24>playod</td>
<td class=xl24>585</td>
<td class=xl29>84</td>
</tr>
<tr height=13>
<td height=13 class=xl30>914</td>
<td class=xl31>espanol od</td>
<td class=xl31>585</td>
<td class=xl32>84</td>
</tr>
<tr height=13>
<td height=13 class=xl25>115</td>
<td class=xl26>bio</td>
<td class=xl26>591</td>
<td class=xl27>85</td>
</tr>
<tr height=13>
<td height=13 class=xl28>116</td>
<td class=xl24>histi</td>
<td class=xl24>591</td>
<td class=xl29>85</td>
</tr>
<tr height=13>
<td height=13 class=xl28>126</td>
<td class=xl24>snbcd</td>
<td class=xl24>591</td>
<td class=xl29>85</td>
</tr>
<tr height=13>
<td height=13 class=xl28>138</td>
<td class=xl24>fuse</td>
<td class=xl24>591</td>
<td class=xl29>85</td>
</tr>
<tr height=13>
<td height=13 class=xl28>147</td>
<td class=xl24>ifc</td>
<td class=xl24>591</td>
<td class=xl29>85</td>
</tr>
<tr height=13>
<td height=13 class=xl28>300</td>
<td class=xl24>info</td>
<td class=xl24>591</td>
<td class=xl29>85</td>
</tr>
<tr height=13>
<td height=13 class=xl28>301</td>
<td class=xl24>ind01</td>
<td class=xl24>591</td>
<td class=xl29>85</td>
</tr>
<tr height=13>
<td height=13 class=xl28>302</td>
<td class=xl24>ind02</td>
<td class=xl24>591</td>
<td class=xl29>85</td>
</tr>
<tr height=13>
<td height=13 class=xl28>303</td>
<td class=xl24>ind03</td>
<td class=xl24>591</td>
<td class=xl29>85</td>
</tr>
<tr height=13>
<td height=13 class=xl28>304</td>
<td class=xl24>ind04</td>
<td class=xl24>591</td>
<td class=xl29>85</td>
</tr>
<tr height=13>
<td height=13 class=xl28>305</td>
<td class=xl24>ind05</td>
<td class=xl24>591</td>
<td class=xl29>85</td>
</tr>
<tr height=13>
<td height=13 class=xl28>306</td>
<td class=xl24>ind06</td>
<td class=xl24>591</td>
<td class=xl29>85</td>
</tr>
<tr height=13>
<td height=13 class=xl28>307</td>
<td class=xl24>ind07</td>
<td class=xl24>591</td>
<td class=xl29>85</td>
</tr>
<tr height=13>
<td height=13 class=xl28>340</td>
<td class=xl24>play</td>
<td class=xl24>591</td>
<td class=xl29>85</td>
</tr>
<tr height=13>
<td height=13 class=xl28>341</td>
<td class=xl24>playb</td>
<td class=xl24>591</td>
<td class=xl29>85</td>
</tr>
<tr height=13>
<td height=13 class=xl28>342</td>
<td class=xl24>jenna</td>
<td class=xl24>591</td>
<td class=xl29>85</td>
</tr>
<tr height=13>
<td height=13 class=xl28>343</td>
<td class=xl24>fresh</td>
<td class=xl24>591</td>
<td class=xl29>85</td>
</tr>
<tr height=13>
<td height=13 class=xl28>344</td>
<td class=xl24>xcess</td>
<td class=xl24>591</td>
<td class=xl29>85</td>
</tr>
<tr height=13>
<td height=13 class=xl28>345</td>
<td class=xl24>hotch</td>
<td class=xl24>591</td>
<td class=xl29>85</td>
</tr>
<tr height=13>
<td height=13 class=xl30>426</td>
<td class=xl31>mc26</td>
<td class=xl31>591</td>
<td class=xl32>85</td>
</tr>
<tr height=13>
<td height=13 class=xl25>117</td>
<td class=xl26>toond</td>
<td class=xl26>597</td>
<td class=xl27>86</td>
</tr>
<tr height=13>
<td height=13 class=xl28>118</td>
<td class=xl24>soap</td>
<td class=xl24>597</td>
<td class=xl29>86</td>
</tr>
<tr height=13>
<td height=13 class=xl28>120</td>
<td class=xl24>nategeo</td>
<td class=xl24>597</td>
<td class=xl29>86</td>
</tr>
<tr height=13>
<td height=13 class=xl28>122</td>
<td class=xl24>speed</td>
<td class=xl24>597</td>
<td class=xl29>86</td>
</tr>
<tr height=13>
<td height=13 class=xl28>125</td>
<td class=xl24>fsc</td>
<td class=xl24>597</td>
<td class=xl29>86</td>
</tr>
<tr height=13>
<td height=13 class=xl28>131</td>
<td class=xl24>espnc</td>
<td class=xl24>597</td>
<td class=xl29>86</td>
</tr>
<tr height=13>
<td height=13 class=xl28>146</td>
<td class=xl24>foxm</td>
<td class=xl24>597</td>
<td class=xl29>86</td>
</tr>
<tr height=13>
<td height=13 class=xl28>165</td>
<td class=xl24>real</td>
<td class=xl24>597</td>
<td class=xl29>86</td>
</tr>
<tr height=13>
<td height=13 class=xl28>185</td>
<td class=xl24>cspan3</td>
<td class=xl24>597</td>
<td class=xl29>86</td>
</tr>
<tr height=13>
<td height=13 class=xl28>410</td>
<td class=xl24>mc10</td>
<td class=xl24>597</td>
<td class=xl29>86</td>
</tr>
<tr height=13>
<td height=13 class=xl28>413</td>
<td class=xl24>mc13</td>
<td class=xl24>597</td>
<td class=xl29>86</td>
</tr>
<tr height=13>
<td height=13 class=xl28>414</td>
<td class=xl24>mc14</td>
<td class=xl24>597</td>
<td class=xl29>86</td>
</tr>
<tr height=13>
<td height=13 class=xl30>415</td>
<td class=xl31>mc15</td>
<td class=xl31>597</td>
<td class=xl32>86</td>
</tr>
<tr height=13>
<td height=13 class=xl25>105</td>
<td class=xl26>disch</td>
<td class=xl26>603</td>
<td class=xl27>87</td>
</tr>
<tr height=13>
<td height=13 class=xl28>109</td>
<td class=xl24>bbc</td>
<td class=xl24>603</td>
<td class=xl29>87</td>
</tr>
<tr height=13>
<td height=13 class=xl28>132</td>
<td class=xl24>esnw</td>
<td class=xl24>603</td>
<td class=xl29>87</td>
</tr>
<tr height=13>
<td height=13 class=xl28>134</td>
<td class=xl24>diy</td>
<td class=xl24>603</td>
<td class=xl29>87</td>
</tr>
<tr height=13>
<td height=13 class=xl28>135</td>
<td class=xl24>living</td>
<td class=xl24>603</td>
<td class=xl29>87</td>
</tr>
<tr height=13>
<td height=13 class=xl28>163</td>
<td class=xl24>lmn</td>
<td class=xl24>603</td>
<td class=xl29>87</td>
</tr>
<tr height=13>
<td height=13 class=xl28>209</td>
<td class=xl24>foxb</td>
<td class=xl24>603</td>
<td class=xl29>87</td>
</tr>
<tr height=13>
<td height=13 class=xl30>242</td>
<td class=xl31>oxyg</td>
<td class=xl31>603</td>
<td class=xl32>87</td>
</tr>
<tr height=13>
<td height=13 class=xl25>101</td>
<td class=xl26>disck</td>
<td class=xl26>609</td>
<td class=xl27>88</td>
</tr>
<tr height=13>
<td height=13 class=xl28>102</td>
<td class=xl24>dics</td>
<td class=xl24>609</td>
<td class=xl29>88</td>
</tr>
<tr height=13>
<td height=13 class=xl28>103</td>
<td class=xl24>green</td>
<td class=xl24>609</td>
<td class=xl29>88</td>
</tr>
<tr height=13>
<td height=13 class=xl28>104</td>
<td class=xl24>disct</td>
<td class=xl24>609</td>
<td class=xl29>88</td>
</tr>
<tr height=13>
<td height=13 class=xl28>106</td>
<td class=xl24>milt</td>
<td class=xl24>609</td>
<td class=xl29>88</td>
</tr>
<tr height=13>
<td height=13 class=xl28>128</td>
<td class=xl24>bit</td>
<td class=xl24>609</td>
<td class=xl29>88</td>
</tr>
<tr height=13>
<td height=13 class=xl28>129</td>
<td class=xl24>g4ttv</td>
<td class=xl24>609</td>
<td class=xl29>88</td>
</tr>
<tr height=13>
<td height=13 class=xl28>130</td>
<td class=xl24>fit</td>
<td class=xl24>609</td>
<td class=xl29>88</td>
</tr>
<tr height=13>
<td height=13 class=xl28>140</td>
<td class=xl24>we</td>
<td class=xl24>609</td>
<td class=xl29>88</td>
</tr>
<tr height=13>
<td height=13 class=xl28>233</td>
<td class=xl24>sprou</td>
<td class=xl24>609</td>
<td class=xl29>88</td>
</tr>
<tr height=13>
<td height=13 class=xl28>405</td>
<td class=xl24>mc05</td>
<td class=xl24>609</td>
<td class=xl29>88</td>
</tr>
<tr height=13>
<td height=13 class=xl28>406</td>
<td class=xl24>mc06</td>
<td class=xl24>609</td>
<td class=xl29>88</td>
</tr>
<tr height=13>
<td height=13 class=xl28>418</td>
<td class=xl24>mc18</td>
<td class=xl24>609</td>
<td class=xl29>88</td>
</tr>
<tr height=13>
<td height=13 class=xl30>435</td>
<td class=xl31>mc35</td>
<td class=xl31>609</td>
<td class=xl32>88</td>
</tr>
<tr height=13>
<td height=13 class=xl25>137</td>
<td class=xl26>mtv2</td>
<td class=xl26>615</td>
<td class=xl27>89</td>
</tr>
<tr height=13>
<td height=13 class=xl28>139</td>
<td class=xl24>mtvjams</td>
<td class=xl24>615</td>
<td class=xl29>89</td>
</tr>
<tr height=13>
<td height=13 class=xl28>143</td>
<td class=xl24>cmtpc</td>
<td class=xl24>615</td>
<td class=xl29>89</td>
</tr>
<tr height=13>
<td height=13 class=xl28>144</td>
<td class=xl24>vh1cl</td>
<td class=xl24>615</td>
<td class=xl29>89</td>
</tr>
<tr height=13>
<td height=13 class=xl28>148</td>
<td class=xl24>nogin</td>
<td class=xl24>615</td>
<td class=xl29>89</td>
</tr>
<tr height=13>
<td height=13 class=xl28>152</td>
<td class=xl24>the n </td>
<td class=xl24>615</td>
<td class=xl29>89</td>
</tr>
<tr height=13>
<td height=13 class=xl28>153</td>
<td class=xl24>nick2</td>
<td class=xl24>615</td>
<td class=xl29>89</td>
</tr>
<tr height=13>
<td height=13 class=xl28>154</td>
<td class=xl24>nickt</td>
<td class=xl24>615</td>
<td class=xl29>89</td>
</tr>
<tr height=13>
<td height=13 class=xl28>155</td>
<td class=xl24>vh1s</td>
<td class=xl24>615</td>
<td class=xl29>89</td>
</tr>
<tr height=13>
<td height=13 class=xl28>160</td>
<td class=xl24>mtvh</td>
<td class=xl24>615</td>
<td class=xl29>89</td>
</tr>
<tr height=13>
<td height=13 class=xl28>161</td>
<td class=xl24>logo</td>
<td class=xl24>615</td>
<td class=xl29>89</td>
</tr>
<tr height=13>
<td height=13 class=xl28>408</td>
<td class=xl24>mc08</td>
<td class=xl24>615</td>
<td class=xl29>89</td>
</tr>
<tr height=13>
<td height=13 class=xl28>411</td>
<td class=xl24>mc11</td>
<td class=xl24>615</td>
<td class=xl29>89</td>
</tr>
<tr height=13>
<td height=13 class=xl28>417</td>
<td class=xl24>mc17</td>
<td class=xl24>615</td>
<td class=xl29>89</td>
</tr>
<tr height=13>
<td height=13 class=xl30>424</td>
<td class=xl31>mc24</td>
<td class=xl31>615</td>
<td class=xl32>89</td>
</tr>
<tr height=13>
<td height=13 class=xl25>107</td>
<td class=xl26>current</td>
<td class=xl26>621</td>
<td class=xl27>90</td>
</tr>
<tr height=13>
<td height=13 class=xl28>127</td>
<td class=xl24>out</td>
<td class=xl24>621</td>
<td class=xl29>90</td>
</tr>
<tr height=13>
<td height=13 class=xl28>158</td>
<td class=xl24>word</td>
<td class=xl24>621</td>
<td class=xl29>90</td>
</tr>
<tr height=13>
<td height=13 class=xl28>164</td>
<td class=xl24>sund</td>
<td class=xl24>621</td>
<td class=xl29>90</td>
</tr>
<tr height=13>
<td height=13 class=xl28>167</td>
<td class=xl24>gac</td>
<td class=xl24>621</td>
<td class=xl29>90</td>
</tr>
<tr height=13>
<td height=13 class=xl28>221</td>
<td class=xl24>show</td>
<td class=xl24>621</td>
<td class=xl29>90</td>
</tr>
<tr height=13>
<td height=13 class=xl28>222</td>
<td class=xl24>show2</td>
<td class=xl24>621</td>
<td class=xl29>90</td>
</tr>
<tr height=13>
<td height=13 class=xl28>223</td>
<td class=xl24>show3</td>
<td class=xl24>621</td>
<td class=xl29>90</td>
</tr>
<tr height=13>
<td height=13 class=xl28>231</td>
<td class=xl24>tmc</td>
<td class=xl24>621</td>
<td class=xl29>90</td>
</tr>
<tr height=13>
<td height=13 class=xl28>235</td>
<td class=xl24>flix</td>
<td class=xl24>621</td>
<td class=xl29>90</td>
</tr>
<tr height=13>
<td height=13 class=xl28>401</td>
<td class=xl24>mc01</td>
<td class=xl24>621</td>
<td class=xl29>90</td>
</tr>
<tr height=13>
<td height=13 class=xl28>404</td>
<td class=xl24>mc04</td>
<td class=xl24>621</td>
<td class=xl29>90</td>
</tr>
<tr height=13>
<td height=13 class=xl28>409</td>
<td class=xl24>mc09</td>
<td class=xl24>621</td>
<td class=xl29>90</td>
</tr>
<tr height=13>
<td height=13 class=xl30>419</td>
<td class=xl31>mc19</td>
<td class=xl31>621</td>
<td class=xl32>90</td>
</tr>
<tr height=13>
<td height=13 class=xl25>156</td>
<td class=xl26>gmc</td>
<td class=xl26>627</td>
<td class=xl27>91</td>
</tr>
<tr height=13>
<td height=13 class=xl28>176</td>
<td class=xl24>sitv</td>
<td class=xl24>627</td>
<td class=xl29>91</td>
</tr>
<tr height=13>
<td height=13 class=xl28>186</td>
<td class=xl24>spman</td>
<td class=xl24>627</td>
<td class=xl29>91</td>
</tr>
<tr height=13>
<td height=13 class=xl28>248</td>
<td class=xl24>ence</td>
<td class=xl24>627</td>
<td class=xl29>91</td>
</tr>
<tr height=13>
<td height=13 class=xl28>250</td>
<td class=xl24>love</td>
<td class=xl24>627</td>
<td class=xl29>91</td>
</tr>
<tr height=13>
<td height=13 class=xl28>252</td>
<td class=xl24>west</td>
<td class=xl24>627</td>
<td class=xl29>91</td>
</tr>
<tr height=13>
<td height=13 class=xl28>254</td>
<td class=xl24>myst</td>
<td class=xl24>627</td>
<td class=xl29>91</td>
</tr>
<tr height=13>
<td height=13 class=xl28>256</td>
<td class=xl24>drama</td>
<td class=xl24>627</td>
<td class=xl29>91</td>
</tr>
<tr height=13>
<td height=13 class=xl28>258</td>
<td class=xl24>actn</td>
<td class=xl24>627</td>
<td class=xl29>91</td>
</tr>
<tr height=13>
<td height=13 class=xl28>260</td>
<td class=xl24>wam</td>
<td class=xl24>627</td>
<td class=xl29>91</td>
</tr>
<tr height=13>
<td height=13 class=xl28>273</td>
<td class=xl24>tmaxe</td>
<td class=xl24>627</td>
<td class=xl29>91</td>
</tr>
<tr height=13>
<td height=13 class=xl28>420</td>
<td class=xl24>mc20</td>
<td class=xl24>627</td>
<td class=xl29>91</td>
</tr>
<tr height=13>
<td height=13 class=xl28>423</td>
<td class=xl24>mc23</td>
<td class=xl24>627</td>
<td class=xl29>91</td>
</tr>
<tr height=13>
<td height=13 class=xl30>431</td>
<td class=xl31>mc31</td>
<td class=xl31>627</td>
<td class=xl32>91</td>
</tr>
<tr height=13>
<td height=13 class=xl25>201</td>
<td class=xl26>hbo</td>
<td class=xl26>633</td>
<td class=xl27>92</td>
</tr>
<tr height=13>
<td height=13 class=xl28>202</td>
<td class=xl24>hbo2e</td>
<td class=xl24>633</td>
<td class=xl29>92</td>
</tr>
<tr height=13>
<td height=13 class=xl28>203</td>
<td class=xl24>hbo3</td>
<td class=xl24>633</td>
<td class=xl29>92</td>
</tr>
<tr height=13>
<td height=13 class=xl28>204</td>
<td class=xl24>hbofe</td>
<td class=xl24>633</td>
<td class=xl29>92</td>
</tr>
<tr height=13>
<td height=13 class=xl28>205</td>
<td class=xl24>hboce</td>
<td class=xl24>633</td>
<td class=xl29>92</td>
</tr>
<tr height=13>
<td height=13 class=xl28>206</td>
<td class=xl24>hboze</td>
<td class=xl24>633</td>
<td class=xl29>92</td>
</tr>
<tr height=13>
<td height=13 class=xl28>241</td>
<td class=xl24>starz</td>
<td class=xl24>633</td>
<td class=xl29>92</td>
</tr>
<tr height=13>
<td height=13 class=xl28>243</td>
<td class=xl24>stzed</td>
<td class=xl24>633</td>
<td class=xl29>92</td>
</tr>
<tr height=13>
<td height=13 class=xl28>244</td>
<td class=xl24>stzkf</td>
<td class=xl24>633</td>
<td class=xl29>92</td>
</tr>
<tr height=13>
<td height=13 class=xl28>245</td>
<td class=xl24>starzc</td>
<td class=xl24>633</td>
<td class=xl29>92</td>
</tr>
<tr height=13>
<td height=13 class=xl28>247</td>
<td class=xl24>stzib</td>
<td class=xl24>633</td>
<td class=xl29>92</td>
</tr>
<tr height=13>
<td height=13 class=xl28>402</td>
<td class=xl24>mc02</td>
<td class=xl24>633</td>
<td class=xl29>92</td>
</tr>
<tr height=13>
<td height=13 class=xl28>403</td>
<td class=xl24>mc03</td>
<td class=xl24>633</td>
<td class=xl29>92</td>
</tr>
<tr height=13>
<td height=13 class=xl28>421</td>
<td class=xl24>mc21</td>
<td class=xl24>633</td>
<td class=xl29>92</td>
</tr>
<tr height=13>
<td height=13 class=xl28>422</td>
<td class=xl24>mc22</td>
<td class=xl24>633</td>
<td class=xl29>92</td>
</tr>
<tr height=13>
<td height=13 class=xl30>433</td>
<td class=xl31>mc33</td>
<td class=xl31>633</td>
<td class=xl32>92</td>
</tr>
<tr height=13>
<td height=13 class=xl25>224</td>
<td class=xl26>showx</td>
<td class=xl26>639</td>
<td class=xl27>93</td>
</tr>
<tr height=13>
<td height=13 class=xl28>232</td>
<td class=xl24>tmc2</td>
<td class=xl24>639</td>
<td class=xl29>93</td>
</tr>
<tr height=13>
<td height=13 class=xl28>270</td>
<td class=xl24>max</td>
<td class=xl24>639</td>
<td class=xl29>93</td>
</tr>
<tr height=13>
<td height=13 class=xl28>271</td>
<td class=xl24>max2e</td>
<td class=xl24>639</td>
<td class=xl29>93</td>
</tr>
<tr height=13>
<td height=13 class=xl28>272</td>
<td class=xl24>amaxe</td>
<td class=xl24>639</td>
<td class=xl29>93</td>
</tr>
<tr height=13>
<td height=13 class=xl28>425</td>
<td class=xl24>mc25</td>
<td class=xl24>639</td>
<td class=xl29>93</td>
</tr>
<tr height=13>
<td height=13 class=xl28>442</td>
<td class=xl24>mc42</td>
<td class=xl24>639</td>
<td class=xl29>93</td>
</tr>
<tr height=13>
<td height=13 class=xl28>443</td>
<td class=xl24>mc43</td>
<td class=xl24>639</td>
<td class=xl29>93</td>
</tr>
<tr height=13>
<td height=13 class=xl30>444</td>
<td class=xl31>mc44</td>
<td class=xl31>639</td>
<td class=xl32>93</td>
</tr>
<tr height=13>
<td height=13 class=xl25>124</td>
<td class=xl26>mlb</td>
<td class=xl26>99</td>
<td class=xl27>96</td>
</tr>
<tr height=13>
<td height=13 class=xl28>189</td>
<td class=xl24>mhd</td>
<td class=xl24>99</td>
<td class=xl29>96</td>
</tr>
<tr height=13>
<td height=13 class=xl30>751</td>
<td class=xl31>shohd</td>
<td class=xl31>99</td>
<td class=xl32>96</td>
</tr>
<tr height=13>
<td height=13 class=xl25>136</td>
<td class=xl26>cnbcb</td>
<td class=xl26>105</td>
<td class=xl27>97</td>
</tr>
<tr height=13>
<td height=13 class=xl28>166</td>
<td class=xl24>fuel</td>
<td class=xl24>105</td>
<td class=xl29>97</td>
</tr>
<tr height=13>
<td height=13 class=xl28>207</td>
<td class=xl24>hbola</td>
<td class=xl24>105</td>
<td class=xl29>97</td>
</tr>
<tr height=13>
<td height=13 class=xl28>208</td>
<td class=xl24>hbow</td>
<td class=xl24>105</td>
<td class=xl29>97</td>
</tr>
<tr height=13>
<td height=13 class=xl30>274</td>
<td class=xl31>maxw</td>
<td class=xl31>105</td>
<td class=xl32>97</td>
</tr>
<tr height=13>
<td height=13 class=xl33>98</td>
<td class=xl34>e!</td>
<td class=xl34>111</td>
<td class=xl35>98</td>
</tr>
<tr height=13>
<td height=13 class=xl25>767</td>
<td class=xl26>verhd</td>
<td class=xl26>117</td>
<td class=xl27>99</td>
</tr>
<tr height=13>
<td height=13 class=xl30>769</td>
<td class=xl31>btnhd</td>
<td class=xl31>117</td>
<td class=xl32>99</td>
</tr>
<tr height=13>
<td height=13 class=xl25>416</td>
<td class=xl26>mc16</td>
<td class=xl26>651</td>
<td class=xl27>100</td>
</tr>
<tr height=13>
<td height=13 class=xl28>427</td>
<td class=xl24>mc27</td>
<td class=xl24>651</td>
<td class=xl29>100</td>
</tr>
<tr height=13>
<td height=13 class=xl28>428</td>
<td class=xl24>mc28</td>
<td class=xl24>651</td>
<td class=xl29>100</td>
</tr>
<tr height=13>
<td height=13 class=xl28>429</td>
<td class=xl24>mc29</td>
<td class=xl24>651</td>
<td class=xl29>100</td>
</tr>
<tr height=13>
<td height=13 class=xl28>434</td>
<td class=xl24>mc34</td>
<td class=xl24>651</td>
<td class=xl29>100</td>
</tr>
<tr height=13>
<td height=13 class=xl28>436</td>
<td class=xl24>mc36</td>
<td class=xl24>651</td>
<td class=xl29>100</td>
</tr>
<tr height=13>
<td height=13 class=xl28>445</td>
<td class=xl24>mc45</td>
<td class=xl24>651</td>
<td class=xl29>100</td>
</tr>
<tr height=13>
<td height=13 class=xl28>446</td>
<td class=xl24>mc46</td>
<td class=xl24>651</td>
<td class=xl29>100</td>
</tr>
<tr height=13>
<td height=13 class=xl28>447</td>
<td class=xl24>mc47</td>
<td class=xl24>651</td>
<td class=xl29>100</td>
</tr>
<tr height=13>
<td height=13 class=xl28>448</td>
<td class=xl24>mc48</td>
<td class=xl24>651</td>
<td class=xl29>100</td>
</tr>
<tr height=13>
<td height=13 class=xl30>703</td>
<td class=xl31>wscan</td>
<td class=xl31>651</td>
<td class=xl32>100</td>
</tr>
<tr height=13>
<td height=13 class=xl25>150</td>
<td class=xl26>tvone</td>
<td class=xl26>657</td>
<td class=xl27>101</td>
</tr>
<tr height=13>
<td height=13 class=xl28>227</td>
<td class=xl24>ionli</td>
<td class=xl24>657</td>
<td class=xl29>101</td>
</tr>
<tr height=13>
<td height=13 class=xl28>407</td>
<td class=xl24>mc07</td>
<td class=xl24>657</td>
<td class=xl29>101</td>
</tr>
<tr height=13>
<td height=13 class=xl28>412</td>
<td class=xl24>mc12</td>
<td class=xl24>657</td>
<td class=xl29>101</td>
</tr>
<tr height=13>
<td height=13 class=xl28>420</td>
<td class=xl24>mc30</td>
<td class=xl24>657</td>
<td class=xl29>101</td>
</tr>
<tr height=13>
<td height=13 class=xl28>432</td>
<td class=xl24>mc32</td>
<td class=xl24>657</td>
<td class=xl29>101</td>
</tr>
<tr height=13>
<td height=13 class=xl28>437</td>
<td class=xl24>mc37</td>
<td class=xl24>657</td>
<td class=xl29>101</td>
</tr>
<tr height=13>
<td height=13 class=xl28>438</td>
<td class=xl24>mc38</td>
<td class=xl24>657</td>
<td class=xl29>101</td>
</tr>
<tr height=13>
<td height=13 class=xl28>439</td>
<td class=xl24>mc39</td>
<td class=xl24>657</td>
<td class=xl29>101</td>
</tr>
<tr height=13>
<td height=13 class=xl28>440</td>
<td class=xl24>mc40</td>
<td class=xl24>657</td>
<td class=xl29>101</td>
</tr>
<tr height=13>
<td height=13 class=xl30>441</td>
<td class=xl31>mc41</td>
<td class=xl31>657</td>
<td class=xl32>101</td>
</tr>
<tr height=13>
<td height=13 class=xl25>108</td>
<td class=xl26>gcn</td>
<td class=xl26>663</td>
<td class=xl27>102</td>
</tr>
<tr height=13>
<td height=13 class=xl28>113</td>
<td class=xl24>ilife</td>
<td class=xl24>663</td>
<td class=xl29>102</td>
</tr>
<tr height=13>
<td height=13 class=xl28>141</td>
<td class=xl24>tcm</td>
<td class=xl24>663</td>
<td class=xl29>102</td>
</tr>
<tr height=13>
<td height=13 class=xl28>184</td>
<td class=xl24>cspan2</td>
<td class=xl24>663</td>
<td class=xl29>102</td>
</tr>
<tr height=13>
<td height=13 class=xl28>228</td>
<td class=xl24>ion</td>
<td class=xl24>663</td>
<td class=xl29>102</td>
</tr>
<tr height=13>
<td height=13 class=xl28>229</td>
<td class=xl24>qubo</td>
<td class=xl24>663</td>
<td class=xl29>102</td>
</tr>
<tr height=13>
<td height=13 class=xl28>253</td>
<td class=xl24>mplex</td>
<td class=xl24>663</td>
<td class=xl29>102</td>
</tr>
<tr height=13>
<td height=13 class=xl28>262</td>
<td class=xl24>iplex</td>
<td class=xl24>663</td>
<td class=xl29>102</td>
</tr>
<tr height=13>
<td height=13 class=xl30>263</td>
<td class=xl31>rplex</td>
<td class=xl31>663</td>
<td class=xl32>102</td>
</tr>
<tr height=13>
<td height=13 class=xl33>774</td>
<td class=xl34>fsnhd</td>
<td class=xl34>681</td>
<td class=xl35>105</td>
</tr>
<tr height=13>
<td height=13 class=xl25>198</td>
<td class=xl26>tbshd</td>
<td class=xl26>687</td>
<td class=xl27>106</td>
</tr>
<tr height=13>
<td height=13 class=xl30>775</td>
<td class=xl31>tnthd</td>
<td class=xl31>687</td>
<td class=xl32>106</td>
</tr>
<tr height=13>
<td height=13 class=xl25>100</td>
<td class=xl26>weather and traffic 4</td>
<td class=xl26>693</td>
<td class=xl27>107</td>
</tr>
<tr height=13>
<td height=13 class=xl28>700</td>
<td class=xl24>wqedd</td>
<td class=xl24>693</td>
<td class=xl29>107</td>
</tr>
<tr height=13>
<td height=13 class=xl28>701</td>
<td class=xl24>wqedn</td>
<td class=xl24>693</td>
<td class=xl29>107</td>
</tr>
<tr height=13>
<td height=13 class=xl28>704</td>
<td class=xl24>abchd</td>
<td class=xl24>693</td>
<td class=xl29>107</td>
</tr>
<tr height=13>
<td height=13 class=xl30>713</td>
<td class=xl31>pbshd</td>
<td class=xl31>693</td>
<td class=xl32>107</td>
</tr>
<tr height=13>
<td height=13 class=xl25>110</td>
<td class=xl26>rtn</td>
<td class=xl26>699</td>
<td class=xl27>108</td>
</tr>
<tr height=13>
<td height=13 class=xl28>111</td>
<td class=xl24>wxplus</td>
<td class=xl24>699</td>
<td class=xl29>108</td>
</tr>
<tr height=13>
<td height=13 class=xl28>702</td>
<td class=xl24>cbshd</td>
<td class=xl24>699</td>
<td class=xl29>108</td>
</tr>
<tr height=13>
<td height=13 class=xl30>711</td>
<td class=xl31>nbchd</td>
<td class=xl31>699</td>
<td class=xl32>108</td>
</tr>
<tr height=13>
<td height=13 class=xl25>706</td>
<td class=xl26>foxhd</td>
<td class=xl26>705</td>
<td class=xl27>109</td>
</tr>
<tr height=13>
<td height=13 class=xl30>707</td>
<td class=xl31>pmyhd</td>
<td class=xl31>705</td>
<td class=xl32>109</td>
</tr>
<tr height=13>
<td height=13 class=xl25>772</td>
<td class=xl26>espnhd</td>
<td class=xl26>711</td>
<td class=xl27>110</td>
</tr>
<tr height=13>
<td height=13 class=xl30>773</td>
<td class=xl31>espn2hd</td>
<td class=xl31>711</td>
<td class=xl32>110</td>
</tr>
<tr height=13>
<td height=13 class=xl25>192</td>
<td class=xl26>aehd</td>
<td class=xl26>717</td>
<td class=xl27>111</td>
</tr>
<tr height=13>
<td height=13 class=xl28>193</td>
<td class=xl24>hgtvhd</td>
<td class=xl24>717</td>
<td class=xl29>111</td>
</tr>
<tr height=13>
<td height=13 class=xl30>752</td>
<td class=xl31>starzhd</td>
<td class=xl31>717</td>
<td class=xl32>111</td>
</tr>
<tr height=13>
<td height=13 class=xl25>191</td>
<td class=xl26>foodh</td>
<td class=xl26>723</td>
<td class=xl27>112</td>
</tr>
<tr height=13>
<td height=13 class=xl28>194</td>
<td class=xl24>uhd</td>
<td class=xl24>723</td>
<td class=xl29>112</td>
</tr>
<tr height=13>
<td height=13 class=xl30>780</td>
<td class=xl31>scihd</td>
<td class=xl31>723</td>
<td class=xl32>112</td>
</tr>
<tr height=13>
<td height=13 class=xl25>190</td>
<td class=xl26>hatgeohd</td>
<td class=xl26>729</td>
<td class=xl27>113</td>
</tr>
<tr height=13>
<td height=13 class=xl28>195</td>
<td class=xl24>usahd</td>
<td class=xl24>729</td>
<td class=xl29>113</td>
</tr>
<tr height=13>
<td height=13 class=xl30>779</td>
<td class=xl31>hddsc</td>
<td class=xl31>729</td>
<td class=xl32>113</td>
</tr>
<tr height=13>
<td height=13 class=xl25>196</td>
<td class=xl26>histh</td>
<td class=xl26>735</td>
<td class=xl27>114</td>
</tr>
<tr height=13>
<td height=13 class=xl28>776</td>
<td class=xl24>dschd</td>
<td class=xl24>735</td>
<td class=xl29>114</td>
</tr>
<tr height=13>
<td height=13 class=xl30>782</td>
<td class=xl31>anphd</td>
<td class=xl31>735</td>
<td class=xl32>114</td>
</tr>
<tr height=13>
<td height=13 class=xl25>750</td>
<td class=xl26>hbohd</td>
<td class=xl26>741</td>
<td class=xl27>115</td>
</tr>
<tr height=13>
<td height=13 class=xl28>753</td>
<td class=xl24>maxhd</td>
<td class=xl24>741</td>
<td class=xl29>115</td>
</tr>
<tr height=13>
<td height=13 class=xl30>783</td>
<td class=xl31>tlchd</td>
<td class=xl31>741</td>
<td class=xl32>115</td>
</tr>
<tr height=13>
<td height=13 class=xl25>197</td>
<td class=xl26>cnnhd</td>
<td class=xl26>747</td>
<td class=xl27>116</td>
</tr>
<tr height=13>
<td height=13 class=xl28>754</td>
<td class=xl24>amchd</td>
<td class=xl24>747</td>
<td class=xl29>116</td>
</tr>
<tr height=13>
<td height=13 class=xl30>770</td>
<td class=xl31>golfhd</td>
<td class=xl31>747</td>
<td class=xl32>116</td>
</tr>
<tr height=13>
<td height=13 class=xl25>715</td>
<td class=xl26>dishd</td>
<td class=xl26>753</td>
<td class=xl27>117</td>
</tr>
<tr height=13>
<td height=13 class=xl28>716</td>
<td class=xl24>famhd</td>
<td class=xl24>753</td>
<td class=xl29>117</td>
</tr>
<tr height=13>
<td height=13 class=xl28>718</td>
<td class=xl24>hdsci</td>
<td class=xl24>753</td>
<td class=xl29>117</td>
</tr>
<tr height=13>
<td height=13 class=xl30>740</td>
<td class=xl31>eod</td>
<td class=xl31>753</td>
<td class=xl32>117</td>
</tr>
<tr height=13>
<td height=13 class=xl25>768</td>
<td class=xl26>spdhd</td>
<td class=xl26>759</td>
<td class=xl27>118</td>
</tr>
<tr height=13>
<td height=13 class=xl28>784</td>
<td class=xl24>fxhd</td>
<td class=xl24>759</td>
<td class=xl29>118</td>
</tr>
<tr height=13>
<td height=13 class=xl28>785</td>
<td class=xl24>foxnhd</td>
<td class=xl24>759</td>
<td class=xl29>118</td>
</tr>
<tr height=13>
<td height=13 class=xl28>800</td>
<td class=xl24>dvr </td>
<td class=xl24>759</td>
<td class=xl29>118</td>
</tr>
<tr height=13>
<td height=13 class=xl30>886</td>
<td class=xl31>ent</td>
<td class=xl31>759</td>
<td class=xl32>118</td>
</tr>
</col>
</table>
]]></content:encoded>
			<wfw:commentRss>http://blogs.sungeek.net/unixwiz/2008/12/29/comcast-morgantown-lineup/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WVU vs Radford</title>
		<link>http://blogs.sungeek.net/unixwiz/2008/12/23/wvu-vs-radford/</link>
		<comments>http://blogs.sungeek.net/unixwiz/2008/12/23/wvu-vs-radford/#comments</comments>
		<pubDate>Wed, 24 Dec 2008 03:19:05 +0000</pubDate>
		<dc:creator>unixwiz</dc:creator>
				<category><![CDATA[Random Stuff]]></category>
		<category><![CDATA[Morgantown]]></category>
		<category><![CDATA[WV]]></category>

		<guid isPermaLink="false">http://blogs.sungeek.net/unixwiz/?p=1002</guid>
		<description><![CDATA[This is one of the shots I got tonight at the WVU vs Radford Basketball game. A lot of bad calls by the ref&#8217;s. WVU did win, and Alex Ruoff broke the WVU record of most three point shots in a game with 9]]></description>
			<content:encoded><![CDATA[<p>This is one of the shots I got tonight at the WVU vs Radford Basketball game. A lot of bad calls by the ref&#8217;s. WVU did win, and Alex Ruoff broke the WVU record of most three point shots in a game with 9</p>
<p><a href="http://www.flickr.com/photos/jgrove/3132518850/" title="Cam Thoroughman rebounding by jgrove, on Flickr"><img src="http://farm4.static.flickr.com/3291/3132518850_53c6bb0591.jpg" width="500" height="333" alt="Cam Thoroughman rebounding" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.sungeek.net/unixwiz/2008/12/23/wvu-vs-radford/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to make a &#8230;</title>
		<link>http://blogs.sungeek.net/unixwiz/2008/12/21/how-to-make-a/</link>
		<comments>http://blogs.sungeek.net/unixwiz/2008/12/21/how-to-make-a/#comments</comments>
		<pubDate>Mon, 22 Dec 2008 00:42:39 +0000</pubDate>
		<dc:creator>unixwiz</dc:creator>
				<category><![CDATA[Random Stuff]]></category>
		<category><![CDATA[antenna]]></category>
		<category><![CDATA[Funny]]></category>
		<category><![CDATA[HDTV]]></category>
		<category><![CDATA[Interesting]]></category>
		<category><![CDATA[uhf]]></category>

		<guid isPermaLink="false">http://blogs.sungeek.net/unixwiz/?p=998</guid>
		<description><![CDATA[Since I have some time off from work, I decided to make some antenna&#8217;s to try and get some local HDTV signals. Tonight I was looking for some UHF bowtie plans, so off to google and I started typing in &#8220;how to make a &#8221; and this is what the auto search showed me.. Thought [...]]]></description>
			<content:encoded><![CDATA[<p>Since I have some time off from work, I decided to make some antenna&#8217;s to try and get some local HDTV signals. Tonight I was looking for some UHF bowtie plans, so off to google and I started typing in &#8220;how to make a &#8221; and this is what the auto search showed me.. Thought it was kind of interseting what showed up.<img class="alignnone size-full wp-image-999" title="picture-6" src="http://blogs.sungeek.net/unixwiz/wp-content/uploads/2008/12/picture-6.png" alt="picture-6" width="530" height="411" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.sungeek.net/unixwiz/2008/12/21/how-to-make-a/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>how time has changed</title>
		<link>http://blogs.sungeek.net/unixwiz/2008/12/20/how-time-has-changed/</link>
		<comments>http://blogs.sungeek.net/unixwiz/2008/12/20/how-time-has-changed/#comments</comments>
		<pubDate>Sat, 20 Dec 2008 20:47:08 +0000</pubDate>
		<dc:creator>unixwiz</dc:creator>
				<category><![CDATA[Random Stuff]]></category>
		<category><![CDATA[Rant]]></category>

		<guid isPermaLink="false">http://blogs.sungeek.net/unixwiz/?p=996</guid>
		<description><![CDATA[As I walked around the mall and stores today it is surprising at what people do. Most people I saw were walking around with the cell phone affixed to their head. The funny ones were the man/woman couple&#8217;s that were walking together talking on their own phones to who ever. (would have been pretty funny [...]]]></description>
			<content:encoded><![CDATA[<p>As I walked around the mall and stores today it is surprising at what people do. Most people I saw were walking around with the cell phone affixed to their head. The funny ones were the man/woman couple&#8217;s that were walking together talking on their own phones to who ever. (would have been pretty funny if they were talking to each other.) Then there are the parents that are taking their kids around to shop. Everything from the very young to the teen ager&#8217;s. Considering it was only 30° yet, they let their kids be out in shorts and tshirts with no jackets. Then you hear them coughing and hacking their heads off while they are walking behind you.</p>
<p>The next funny thing is seeing a woman that was about 400 lbs wearing a t-shirt that said &#8220;to hot to love&#8221;. Turned around and saw another very large woman with a sweatshirt that had murder spelled backwards on it. Not sure what that meant.</p>
<p>If I only had a camera with me, it would have been a sight to see.</p>
<p>And the final thing, if you are the owner of a big box store, and have 20+ checkout lanes, and there are more than 3 people in each line, please freaking open more than 4 lines for people to check out in. (cough walmart cough)</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.sungeek.net/unixwiz/2008/12/20/how-time-has-changed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lego as collector items</title>
		<link>http://blogs.sungeek.net/unixwiz/2008/12/15/lego-as-collector-items/</link>
		<comments>http://blogs.sungeek.net/unixwiz/2008/12/15/lego-as-collector-items/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 03:35:04 +0000</pubDate>
		<dc:creator>unixwiz</dc:creator>
				<category><![CDATA[Random Stuff]]></category>
		<category><![CDATA[toys]]></category>

		<guid isPermaLink="false">http://blogs.sungeek.net/unixwiz/?p=981</guid>
		<description><![CDATA[Once a kid always a kid&#8230;. I have liked Lego&#8217;s ever since I can remember getting my first set way long time ago.. So I was out looking at amazon to see what they have come up with now days. To my surprise I saw a couple of sets that I have gotten recently. It [...]]]></description>
			<content:encoded><![CDATA[<p>Once a kid always a kid&#8230;. I have liked Lego&#8217;s ever since I can remember getting my first set way long time ago.. So I was out looking at amazon to see what they have come up with now days. To my surprise I saw a couple of sets that I have gotten recently. It seems that they are no longer sold by lego, and therefore are extremely expensive collector items&#8230; The plane I got at a local Target a year or so ago, at the time it was $49.99.. Now it is selling on amazon for yes, $329.99.. The train set, I recieved as a gift&#8230; It is now $300.00. I thought amazon was screwed up so I went around and looked at some other sites, and they too list these items for that much. and to prove it seeing is believing:</p>
<p><a href="http://www.amazon.com/LEGO-4283140-LEGO%C2%AE-Passenger-Plane/dp/B000A32OCO/ref=sr_1_44?ie=UTF8&amp;s=toys-and-games&amp;qid=1229397605&amp;sr=8-44"><img class="alignnone size-full wp-image-983" title="picture-4" src="http://blogs.sungeek.net/unixwiz/wp-content/uploads/2008/12/picture-4.png" alt="picture-4" width="805" height="284" /></a><a href="http://www.amazon.com/LEGO-4511-High-Speed-Train/dp/B0006N8X6E/ref=sr_1_1?ie=UTF8&amp;s=toys-and-games&amp;qid=1229398577&amp;sr=1-1"><img class="alignnone size-full wp-image-982" title="picture-5" src="http://blogs.sungeek.net/unixwiz/wp-content/uploads/2008/12/picture-5.png" alt="picture-5" width="804" height="267" /></a></p>
<p>not even done looking yet, and found the same plane offered by the same <a href="http://www.amazon.com/7893-LEGO-City-Passenger-Plane/dp/B000BVKSAK/ref=sr_1_295?ie=UTF8&amp;m=A2FKHJLY04N3SH&amp;s=toys-and-games&amp;qid=1229399016&amp;sr=1-295">third party people for $699.99</a> wow, just wow&#8230; $700.00 for something that not a year ago was $49.99. And in the 2 minutes it took me to type this and do another search for the train, it went up almost $200. <a href="http://www.amazon.com/LEGO-4511-High-Speed-Train/dp/B0006N8X6E/ref=sr_1_18?ie=UTF8&amp;m=A2FKHJLY04N3SH&amp;s=toys-and-games&amp;qid=1229399254&amp;sr=1-18">It is now $499.99.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.sungeek.net/unixwiz/2008/12/15/lego-as-collector-items/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
