├── .gitignore ├── LICENSE ├── README.md ├── lib └── solareventcalculator.rb ├── rubysunrise.gemspec └── test ├── 33_8600S-151_2111E#Australia-Sydney.txt ├── 39_9937N-75_7850W#America-New_York.txt ├── 40_0194N-105_2928W#America-Denver.txt ├── bulkdatatest.rb ├── sunrisetest.rb └── sunsettest.rb /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Michael Reedell 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Ruby Sunrise 2 | ============== 3 | 4 | * http://rubygems.org/gems/RubySunrise 5 | * http://github.com/mikereedell/sunrisesunset-ruby 6 | 7 | Description: 8 | ============ 9 | 10 | Ruby Sunrise calculates the civil, official, nautical and astronomical sunrise/sunset given latitude/longitude coordinates and the date. 11 | 12 | 13 | Features: 14 | ======== 15 | 16 | Handles the condition of no sunrise/sunset (Alaska in summer/winter) by returning a nil object. 17 | 18 | Dependencies: 19 | ============= 20 | 21 | Ruby Sunrise depends on the 'tzinfo' gem for localizing the computed sunrise/sunset times. 22 | 23 | Installation: 24 | ============= 25 | 26 | gem install RubySunrise 27 | 28 | -------------------------------------------------------------------------------- /lib/solareventcalculator.rb: -------------------------------------------------------------------------------- 1 | require 'bigdecimal' 2 | require 'date' 3 | require 'tzinfo' 4 | 5 | class SolarEventCalculator 6 | 7 | def initialize(date, latitude, longitude) 8 | @date = date 9 | @latitude = latitude 10 | @longitude = longitude 11 | end 12 | 13 | def compute_lnghour 14 | lngHour = @longitude / BigDecimal("15") 15 | lngHour.round(4) 16 | end 17 | 18 | def compute_longitude_hour(isSunrise) 19 | minuend = (isSunrise) ? BigDecimal("6") : BigDecimal("18") 20 | longHour = @date.yday + ((minuend - compute_lnghour) / BigDecimal("24")) 21 | longHour.round(4) 22 | end 23 | 24 | def compute_sun_mean_anomaly(longHour) 25 | constant = BigDecimal("0.9856") 26 | ((longHour * constant) - BigDecimal("3.289")).round(4) 27 | end 28 | 29 | def compute_sun_true_longitude(meanAnomaly) 30 | mAsRads = degrees_as_rads(meanAnomaly) 31 | sinM = BigDecimal(Math.sin(mAsRads.to_f).to_s) 32 | sinTwoM = BigDecimal(Math.sin((2 * mAsRads).to_f).to_s) 33 | firstParens = BigDecimal("1.916") * sinM 34 | secondParens = BigDecimal("0.020") * sinTwoM 35 | trueLong = meanAnomaly + firstParens + secondParens + BigDecimal("282.634") 36 | trueLong = put_in_range(trueLong, 0, 360, 360) 37 | trueLong.round(4) 38 | end 39 | 40 | def compute_right_ascension(sunTrueLong) 41 | tanL = BigDecimal(Math.tan(degrees_as_rads(sunTrueLong).to_f).to_s) 42 | ra = rads_as_degrees(BigDecimal(Math.atan(BigDecimal("0.91764") * tanL).to_s)) 43 | 44 | ra = put_in_range(ra, 0, 360, 360) 45 | ra.round(4) 46 | end 47 | 48 | def put_ra_in_correct_quadrant(sunTrueLong) 49 | lQuadrant = BigDecimal("90") * (sunTrueLong / BigDecimal("90")).floor 50 | raQuadrant = BigDecimal("90") * (compute_right_ascension(sunTrueLong) / BigDecimal("90")).floor 51 | 52 | ra = compute_right_ascension(sunTrueLong) + (lQuadrant - raQuadrant) 53 | ra = ra / BigDecimal("15") 54 | ra.round(4) 55 | end 56 | 57 | def compute_sin_sun_declination(sunTrueLong) 58 | sinL = BigDecimal(Math.sin(degrees_as_rads(sunTrueLong).to_f).to_s) 59 | sinDec = sinL * BigDecimal("0.39782") 60 | sinDec.round(4) 61 | end 62 | 63 | def compute_cosine_sun_declination(sinSunDeclination) 64 | cosDec = BigDecimal(Math.cos(Math.asin(sinSunDeclination)).to_s) 65 | cosDec.round(4) 66 | end 67 | 68 | def compute_cosine_sun_local_hour(sunTrueLong, zenith) 69 | cosZenith = BigDecimal(Math.cos(degrees_as_rads(BigDecimal(zenith.to_s))).to_s) 70 | sinLatitude = BigDecimal(Math.sin(degrees_as_rads(@latitude)).to_s) 71 | cosLatitude = BigDecimal(Math.cos(degrees_as_rads(@latitude)).to_s) 72 | 73 | sinSunDeclination = compute_sin_sun_declination(sunTrueLong) 74 | top = cosZenith - (sinSunDeclination * sinLatitude) 75 | bottom = compute_cosine_sun_declination(sinSunDeclination) * cosLatitude 76 | 77 | cosLocalHour = top / bottom 78 | cosLocalHour.round(4) 79 | end 80 | 81 | def compute_local_hour_angle(cosSunLocalHour, isSunrise) 82 | acosH = BigDecimal(Math.acos(cosSunLocalHour).to_s) 83 | acosHDegrees = rads_as_degrees(acosH) 84 | 85 | localHourAngle = (isSunrise) ? BigDecimal("360") - acosHDegrees : acosHDegrees 86 | localHourAngle = localHourAngle / BigDecimal("15") 87 | localHourAngle.round(4) 88 | end 89 | 90 | def compute_local_mean_time(sunTrueLong, longHour, t, sunLocalHour) 91 | h = sunLocalHour 92 | ra = put_ra_in_correct_quadrant(sunTrueLong) 93 | 94 | parens = BigDecimal("0.06571") * t 95 | time = h + ra - parens - BigDecimal("6.622") 96 | 97 | utcTime = time - longHour 98 | utcTime = put_in_range(utcTime, 0, 24, 24) 99 | utcTime.round(4) 100 | end 101 | 102 | def compute_utc_solar_event(zenith, isSunrise) 103 | longHour = compute_lnghour 104 | eventLongHour = compute_longitude_hour(isSunrise) 105 | 106 | meanAnomaly = compute_sun_mean_anomaly(eventLongHour) 107 | sunTrueLong = compute_sun_true_longitude(meanAnomaly) 108 | cosineSunLocalHour = compute_cosine_sun_local_hour(sunTrueLong, zenith) 109 | 110 | if(cosineSunLocalHour > BigDecimal("1") || cosineSunLocalHour < BigDecimal("-1")) 111 | return nil 112 | end 113 | 114 | sunLocalHour = compute_local_hour_angle(cosineSunLocalHour, isSunrise) 115 | localMeanTime = compute_local_mean_time(sunTrueLong, longHour, eventLongHour, sunLocalHour) 116 | 117 | timeParts = localMeanTime.to_f.to_s.split('.') 118 | mins = BigDecimal("." + timeParts[1]) * BigDecimal("60") 119 | mins = mins.truncate() 120 | mins = pad_minutes(mins.to_i) 121 | hours = timeParts[0] 122 | 123 | Time.utc(@date.year, @date.mon, @date.mday, hours, pad_minutes(mins.to_i)) 124 | end 125 | 126 | def compute_utc_civil_sunrise 127 | convert_to_datetime(compute_utc_solar_event(96, true)) 128 | end 129 | 130 | def compute_utc_civil_sunset 131 | convert_to_datetime(compute_utc_solar_event(96, false)) 132 | end 133 | 134 | def compute_utc_official_sunrise 135 | convert_to_datetime(compute_utc_solar_event(90.8333, true)) 136 | end 137 | 138 | def compute_utc_official_sunset 139 | convert_to_datetime(compute_utc_solar_event(90.8333, false)) 140 | end 141 | 142 | def compute_utc_nautical_sunrise 143 | convert_to_datetime(compute_utc_solar_event(102, true)) 144 | end 145 | 146 | def compute_utc_nautical_sunset 147 | convert_to_datetime(compute_utc_solar_event(102, false)) 148 | end 149 | 150 | def compute_utc_astronomical_sunrise 151 | convert_to_datetime(compute_utc_solar_event(108, true)) 152 | end 153 | 154 | def compute_utc_astronomical_sunset 155 | convert_to_datetime(compute_utc_solar_event(108, false)) 156 | end 157 | 158 | def convert_to_datetime(time) 159 | DateTime.parse("#{@date.strftime}T#{time.hour}:#{time.min}:00+0000") unless time == nil 160 | end 161 | 162 | def compute_civil_sunrise(timezone) 163 | put_in_timezone(compute_utc_solar_event(96, true), timezone) 164 | end 165 | 166 | def compute_civil_sunset(timezone) 167 | put_in_timezone(compute_utc_solar_event(96, false), timezone) 168 | end 169 | 170 | def compute_official_sunrise(timezone) 171 | put_in_timezone(compute_utc_solar_event(90.8333, true), timezone) 172 | end 173 | 174 | def compute_official_sunset(timezone) 175 | put_in_timezone(compute_utc_solar_event(90.8333, false), timezone) 176 | end 177 | 178 | def compute_nautical_sunrise(timezone) 179 | put_in_timezone(compute_utc_solar_event(102, true), timezone) 180 | end 181 | 182 | def compute_nautical_sunset(timezone) 183 | put_in_timezone(compute_utc_solar_event(102, false), timezone) 184 | end 185 | 186 | def compute_astronomical_sunrise(timezone) 187 | put_in_timezone(compute_utc_solar_event(108, true), timezone) 188 | end 189 | 190 | def compute_astronomical_sunset(timezone) 191 | put_in_timezone(compute_utc_solar_event(108, false), timezone) 192 | end 193 | 194 | def put_in_timezone(utcTime, timezone) 195 | tz = TZInfo::Timezone.get(timezone) 196 | # puts "UTCTime #{utcTime}" 197 | local = utcTime + get_utc_offset(timezone) 198 | # puts "LocalTime #{local}" 199 | 200 | offset = (get_utc_offset(timezone) / 60 / 60).to_i 201 | offset = (offset > 0) ? "+" + offset.to_s : offset.to_s 202 | 203 | timeInZone = DateTime.parse("#{@date.strftime}T#{local.strftime('%H:%M:%S')}#{offset}") 204 | # puts "CALC:timeInZone #{timeInZone}" 205 | timeInZone 206 | end 207 | 208 | def get_utc_offset(timezone) 209 | tz = TZInfo::Timezone.get(timezone) 210 | noonUTC = Time.gm(@date.year, @date.mon, @date.mday, 12, 0) 211 | tz.utc_to_local(noonUTC) - noonUTC 212 | end 213 | 214 | def pad_minutes(minutes) 215 | if(minutes < 10) 216 | "0" + minutes.to_s 217 | else 218 | minutes 219 | end 220 | end 221 | 222 | def put_in_range(number, lower, upper, adjuster) 223 | if number > upper then 224 | number -= adjuster 225 | elsif number < lower then 226 | number += adjuster 227 | else 228 | number 229 | end 230 | end 231 | 232 | def degrees_as_rads(degrees) 233 | pi = BigDecimal(Math::PI.to_s) 234 | radian = pi / BigDecimal("180") 235 | degrees * radian 236 | end 237 | 238 | def rads_as_degrees(radians) 239 | pi = BigDecimal(Math::PI.to_s) 240 | degree = BigDecimal("180") / pi 241 | radians * degree 242 | end 243 | 244 | end 245 | -------------------------------------------------------------------------------- /rubysunrise.gemspec: -------------------------------------------------------------------------------- 1 | spec = Gem::Specification.new do | s | 2 | s.name = "RubySunrise" 3 | s.version = "0.3.3" 4 | s.author = "Mike Reedell / LuckyCatLabs" 5 | s.email = "mike@reedell.com" 6 | s.homepage = "http://www.mikereedell.com" 7 | s.platform = Gem::Platform::RUBY 8 | s.summary = "Calculate the sunrise/sunset given lat/long coordinates and the date. Computes civil, official, nautical, and astronomical sunrise/sunset." 9 | s.files = ["rubysunrise.gemspec"] + Dir.glob("lib/**/*") 10 | s.test_files = Dir.glob("{test}/**/*test.rb") 11 | s.has_rdoc = false 12 | s.add_runtime_dependency "tzinfo" 13 | s.license = 'MIT' 14 | end 15 | -------------------------------------------------------------------------------- /test/33_8600S-151_2111E#Australia-Sydney.txt: -------------------------------------------------------------------------------- 1 | 1/01/2008,04:04,04:43,05:18,05:47,20:09,20:38,21:14,21:53 2 | 1/02/2008,04:05,04:44,05:19,05:48,20:10,20:39,21:14,21:53 3 | 1/03/2008,04:06,04:44,05:20,05:49,20:10,20:39,21:14,21:53 4 | 1/04/2008,04:07,04:45,05:21,05:50,20:10,20:39,21:14,21:53 5 | 1/05/2008,04:08,04:46,05:22,05:51,20:10,20:39,21:14,21:53 6 | 1/06/2008,04:09,04:47,05:23,05:51,20:10,20:39,21:14,21:53 7 | 1/07/2008,04:10,04:48,05:23,05:52,20:10,20:39,21:14,21:52 8 | 1/08/2008,04:11,04:49,05:24,05:53,20:10,20:39,21:14,21:52 9 | 1/09/2008,04:12,04:50,05:25,05:54,20:10,20:39,21:14,21:52 10 | 1/10/2008,04:13,04:51,05:26,05:55,20:10,20:39,21:14,21:52 11 | 1/11/2008,04:14,04:52,05:27,05:56,20:10,20:38,21:13,21:51 12 | 1/12/2008,04:15,04:53,05:28,05:57,20:10,20:38,21:13,21:51 13 | 1/13/2008,04:17,04:54,05:29,05:58,20:10,20:38,21:13,21:50 14 | 1/14/2008,04:18,04:55,05:30,05:58,20:09,20:38,21:12,21:50 15 | 1/15/2008,04:19,04:56,05:31,05:59,20:09,20:38,21:12,21:49 16 | 1/16/2008,04:20,04:58,05:32,06:00,20:09,20:37,21:12,21:49 17 | 1/17/2008,04:22,04:59,05:33,06:01,20:09,20:37,21:11,21:48 18 | 1/18/2008,04:23,05:00,05:34,06:02,20:08,20:36,21:11,21:48 19 | 1/19/2008,04:24,05:01,05:35,06:03,20:08,20:36,21:10,21:47 20 | 1/20/2008,04:26,05:02,05:36,06:04,20:08,20:36,21:10,21:46 21 | 1/21/2008,04:27,05:03,05:37,06:05,20:07,20:35,21:09,21:45 22 | 1/22/2008,04:28,05:04,05:38,06:06,20:07,20:35,21:08,21:45 23 | 1/23/2008,04:29,05:06,05:39,06:07,20:06,20:34,21:08,21:44 24 | 1/24/2008,04:31,05:07,05:40,06:08,20:06,20:34,21:07,21:43 25 | 1/25/2008,04:32,05:08,05:42,06:09,20:05,20:33,21:06,21:42 26 | 1/26/2008,04:34,05:09,05:43,06:10,20:05,20:32,21:06,21:41 27 | 1/27/2008,04:35,05:10,05:44,06:11,20:04,20:32,21:05,21:40 28 | 1/28/2008,04:36,05:12,05:45,06:12,20:04,20:31,21:04,21:39 29 | 1/29/2008,04:38,05:13,05:46,06:13,20:03,20:30,21:03,21:38 30 | 1/30/2008,04:39,05:14,05:47,06:14,20:02,20:30,21:02,21:37 31 | 1/31/2008,04:40,05:15,05:48,06:15,20:02,20:29,21:02,21:36 32 | 2/01/2008,04:42,05:16,05:49,06:16,20:01,20:28,21:01,21:35 33 | 2/02/2008,04:43,05:17,05:50,06:17,20:00,20:27,21:00,21:34 34 | 2/03/2008,04:44,05:19,05:51,06:18,19:59,20:26,20:59,21:33 35 | 2/04/2008,04:46,05:20,05:52,06:19,19:59,20:26,20:58,21:32 36 | 2/05/2008,04:47,05:21,05:53,06:20,19:58,20:25,20:57,21:31 37 | 2/06/2008,04:48,05:22,05:54,06:21,19:57,20:24,20:56,21:30 38 | 2/07/2008,04:50,05:23,05:55,06:22,19:56,20:23,20:55,21:28 39 | 2/08/2008,04:51,05:24,05:56,06:23,19:55,20:22,20:54,21:27 40 | 2/09/2008,04:52,05:26,05:58,06:24,19:54,20:21,20:53,21:26 41 | 2/10/2008,04:54,05:27,05:59,06:25,19:53,20:20,20:52,21:25 42 | 2/11/2008,04:55,05:28,06:00,06:26,19:52,20:19,20:50,21:24 43 | 2/12/2008,04:56,05:29,06:01,06:27,19:52,20:18,20:49,21:22 44 | 2/13/2008,04:57,05:30,06:02,06:28,19:51,20:17,20:48,21:21 45 | 2/14/2008,04:59,05:31,06:03,06:29,19:50,20:16,20:47,21:20 46 | 2/15/2008,05:00,05:32,06:04,06:30,19:48,20:15,20:46,21:18 47 | 2/16/2008,05:01,05:34,06:05,06:31,19:47,20:14,20:45,21:17 48 | 2/17/2008,05:02,05:35,06:06,06:32,19:46,20:12,20:43,21:16 49 | 2/18/2008,05:04,05:36,06:07,06:33,19:45,20:11,20:42,21:14 50 | 2/19/2008,05:05,05:37,06:08,06:34,19:44,20:10,20:41,21:13 51 | 2/20/2008,05:06,05:38,06:09,06:34,19:43,20:09,20:40,21:12 52 | 2/21/2008,05:07,05:39,06:10,06:35,19:42,20:08,20:38,21:10 53 | 2/22/2008,05:08,05:40,06:11,06:36,19:41,20:07,20:37,21:09 54 | 2/23/2008,05:09,05:41,06:11,06:37,19:40,20:05,20:36,21:07 55 | 2/24/2008,05:11,05:42,06:12,06:38,19:39,20:04,20:35,21:06 56 | 2/25/2008,05:12,05:43,06:13,06:39,19:37,20:03,20:33,21:04 57 | 2/26/2008,05:13,05:44,06:14,06:40,19:36,20:02,20:32,21:03 58 | 2/27/2008,05:14,05:45,06:15,06:41,19:35,20:00,20:31,21:02 59 | 2/28/2008,05:15,05:46,06:16,06:42,19:34,19:59,20:29,21:00 60 | 2/29/2008,05:16,05:47,06:17,06:42,19:32,19:58,20:28,20:59 61 | 3/01/2008,05:17,05:48,06:18,06:43,19:31,19:57,20:27,20:57 62 | 3/02/2008,05:18,05:49,06:19,06:44,19:30,19:55,20:25,20:56 63 | 3/03/2008,05:19,05:50,06:20,06:45,19:29,19:54,20:24,20:54 64 | 3/04/2008,05:20,05:51,06:21,06:46,19:27,19:53,20:22,20:53 65 | 3/05/2008,05:21,05:52,06:21,06:47,19:26,19:51,20:21,20:51 66 | 3/06/2008,05:22,05:53,06:22,06:47,19:25,19:50,20:20,20:50 67 | 3/07/2008,05:23,05:54,06:23,06:48,19:24,19:49,20:18,20:48 68 | 3/08/2008,05:24,05:54,06:24,06:49,19:22,19:47,20:17,20:47 69 | 3/09/2008,05:25,05:55,06:25,06:50,19:21,19:46,20:15,20:46 70 | 3/10/2008,05:26,05:56,06:26,06:51,19:20,19:45,20:14,20:44 71 | 3/11/2008,05:27,05:57,06:26,06:52,19:18,19:43,20:13,20:43 72 | 3/12/2008,05:28,05:58,06:27,06:52,19:17,19:42,20:11,20:41 73 | 3/13/2008,05:29,05:59,06:28,06:53,19:16,19:41,20:10,20:40 74 | 3/14/2008,05:30,06:00,06:29,06:54,19:14,19:39,20:09,20:38 75 | 3/15/2008,05:31,06:00,06:30,06:55,19:13,19:38,20:07,20:37 76 | 3/16/2008,05:32,06:01,06:31,06:55,19:12,19:37,20:06,20:35 77 | 3/17/2008,05:33,06:02,06:31,06:56,19:10,19:35,20:04,20:34 78 | 3/18/2008,05:33,06:03,06:32,06:57,19:09,19:34,20:03,20:32 79 | 3/19/2008,05:34,06:04,06:33,06:58,19:08,19:32,20:02,20:31 80 | 3/20/2008,05:35,06:05,06:34,06:59,19:06,19:31,20:00,20:29 81 | 3/21/2008,05:36,06:05,06:34,06:59,19:05,19:30,19:59,20:28 82 | 3/22/2008,05:37,06:06,06:35,07:00,19:03,19:28,19:57,20:27 83 | 3/23/2008,05:38,06:07,06:36,07:01,19:02,19:27,19:56,20:25 84 | 3/24/2008,05:38,06:08,06:37,07:02,19:01,19:26,19:55,20:24 85 | 3/25/2008,05:39,06:08,06:37,07:02,18:59,19:24,19:53,20:22 86 | 3/26/2008,05:40,06:09,06:38,07:03,18:58,19:23,19:52,20:21 87 | 3/27/2008,05:41,06:10,06:39,07:04,18:57,19:22,19:50,20:20 88 | 3/28/2008,05:42,06:11,06:40,07:05,18:55,19:20,19:49,20:18 89 | 3/29/2008,05:42,06:12,06:40,07:05,18:54,19:19,19:48,20:17 90 | 3/30/2008,05:43,06:12,06:41,07:06,18:53,19:18,19:46,20:15 91 | 3/31/2008,05:44,06:13,06:42,07:07,18:51,19:16,19:45,20:14 92 | 4/01/2008,05:45,06:14,06:43,07:08,18:50,19:15,19:44,20:13 93 | 4/02/2008,05:45,06:14,06:43,07:08,18:49,19:14,19:42,20:11 94 | 4/03/2008,05:46,06:15,06:44,07:09,18:47,19:12,19:41,20:10 95 | 4/04/2008,05:47,06:16,06:45,07:10,18:46,19:11,19:40,20:09 96 | 4/05/2008,05:48,06:17,06:46,07:11,18:45,19:10,19:39,20:07 97 | 4/06/2008,04:48,05:17,05:46,06:11,17:43,18:08,18:37,19:06 98 | 4/07/2008,04:49,05:18,05:47,06:12,17:42,18:07,18:36,19:05 99 | 4/08/2008,04:50,05:19,05:48,06:13,17:41,18:06,18:35,19:04 100 | 4/09/2008,04:51,05:19,05:48,06:13,17:39,18:05,18:33,19:02 101 | 4/10/2008,04:51,05:20,05:49,06:14,17:38,18:03,18:32,19:01 102 | 4/11/2008,04:52,05:21,05:50,06:15,17:37,18:02,18:31,19:00 103 | 4/12/2008,04:53,05:22,05:51,06:16,17:36,18:01,18:30,18:59 104 | 4/13/2008,04:53,05:22,05:51,06:16,17:34,18:00,18:29,18:57 105 | 4/14/2008,04:54,05:23,05:52,06:17,17:33,17:58,18:27,18:56 106 | 4/15/2008,04:55,05:24,05:53,06:18,17:32,17:57,18:26,18:55 107 | 4/16/2008,04:55,05:24,05:53,06:19,17:31,17:56,18:25,18:54 108 | 4/17/2008,04:56,05:25,05:54,06:19,17:29,17:55,18:24,18:53 109 | 4/18/2008,04:57,05:26,05:55,06:20,17:28,17:54,18:23,18:52 110 | 4/19/2008,04:57,05:26,05:56,06:21,17:27,17:52,18:22,18:51 111 | 4/20/2008,04:58,05:27,05:56,06:22,17:26,17:51,18:21,18:50 112 | 4/21/2008,04:59,05:28,05:57,06:22,17:25,17:50,18:19,18:48 113 | 4/22/2008,04:59,05:28,05:58,06:23,17:24,17:49,18:18,18:47 114 | 4/23/2008,05:00,05:29,05:58,06:24,17:23,17:48,18:17,18:46 115 | 4/24/2008,05:01,05:30,05:59,06:25,17:21,17:47,18:16,18:45 116 | 4/25/2008,05:01,05:30,06:00,06:25,17:20,17:46,18:15,18:44 117 | 4/26/2008,05:02,05:31,06:01,06:26,17:19,17:45,18:14,18:43 118 | 4/27/2008,05:03,05:32,06:01,06:27,17:18,17:44,18:13,18:42 119 | 4/28/2008,05:03,05:32,06:02,06:28,17:17,17:43,18:12,18:42 120 | 4/29/2008,05:04,05:33,06:03,06:28,17:16,17:42,18:11,18:41 121 | 4/30/2008,05:05,05:34,06:03,06:29,17:15,17:41,18:11,18:40 122 | 5/01/2008,05:05,05:34,06:04,06:30,17:14,17:40,18:10,18:39 123 | 5/02/2008,05:06,05:35,06:05,06:31,17:13,17:39,18:09,18:38 124 | 5/03/2008,05:07,05:36,06:05,06:31,17:12,17:38,18:08,18:37 125 | 5/04/2008,05:07,05:36,06:06,06:32,17:11,17:37,18:07,18:36 126 | 5/05/2008,05:08,05:37,06:07,06:33,17:10,17:36,18:06,18:36 127 | 5/06/2008,05:08,05:38,06:08,06:34,17:09,17:36,18:05,18:35 128 | 5/07/2008,05:09,05:38,06:08,06:34,17:09,17:35,18:05,18:34 129 | 5/08/2008,05:10,05:39,06:09,06:35,17:08,17:34,18:04,18:33 130 | 5/09/2008,05:10,05:40,06:10,06:36,17:07,17:33,18:03,18:33 131 | 5/10/2008,05:11,05:40,06:10,06:37,17:06,17:32,18:02,18:32 132 | 5/11/2008,05:11,05:41,06:11,06:37,17:05,17:32,18:02,18:31 133 | 5/12/2008,05:12,05:42,06:12,06:38,17:04,17:31,18:01,18:31 134 | 5/13/2008,05:13,05:42,06:12,06:39,17:04,17:30,18:00,18:30 135 | 5/14/2008,05:13,05:43,06:13,06:40,17:03,17:30,18:00,18:29 136 | 5/15/2008,05:14,05:44,06:14,06:40,17:02,17:29,17:59,18:29 137 | 5/16/2008,05:15,05:44,06:14,06:41,17:02,17:28,17:59,18:28 138 | 5/17/2008,05:15,05:45,06:15,06:42,17:01,17:28,17:58,18:28 139 | 5/18/2008,05:16,05:45,06:16,06:43,17:00,17:27,17:57,18:27 140 | 5/19/2008,05:16,05:46,06:16,06:43,17:00,17:27,17:57,18:27 141 | 5/20/2008,05:17,05:47,06:17,06:44,16:59,17:26,17:56,18:26 142 | 5/21/2008,05:17,05:47,06:18,06:45,16:59,17:25,17:56,18:26 143 | 5/22/2008,05:18,05:48,06:18,06:45,16:58,17:25,17:56,18:25 144 | 5/23/2008,05:19,05:48,06:19,06:46,16:58,17:25,17:55,18:25 145 | 5/24/2008,05:19,05:49,06:20,06:47,16:57,17:24,17:55,18:25 146 | 5/25/2008,05:20,05:50,06:20,06:47,16:57,17:24,17:54,18:24 147 | 5/26/2008,05:20,05:50,06:21,06:48,16:56,17:23,17:54,18:24 148 | 5/27/2008,05:21,05:51,06:21,06:49,16:56,17:23,17:54,18:24 149 | 5/28/2008,05:21,05:51,06:22,06:49,16:55,17:23,17:53,18:23 150 | 5/29/2008,05:22,05:52,06:23,06:50,16:55,17:22,17:53,18:23 151 | 5/30/2008,05:22,05:52,06:23,06:51,16:55,17:22,17:53,18:23 152 | 5/31/2008,05:23,05:53,06:24,06:51,16:54,17:22,17:53,18:23 153 | 6/01/2008,05:23,05:53,06:24,06:52,16:54,17:21,17:52,18:23 154 | 6/02/2008,05:24,05:54,06:25,06:52,16:54,17:21,17:52,18:22 155 | 6/03/2008,05:24,05:54,06:25,06:53,16:54,17:21,17:52,18:22 156 | 6/04/2008,05:25,05:55,06:26,06:53,16:53,17:21,17:52,18:22 157 | 6/05/2008,05:25,05:55,06:26,06:54,16:53,17:21,17:52,18:22 158 | 6/06/2008,05:26,05:56,06:27,06:54,16:53,17:21,17:52,18:22 159 | 6/07/2008,05:26,05:56,06:27,06:55,16:53,17:21,17:52,18:22 160 | 6/08/2008,05:26,05:57,06:28,06:55,16:53,17:20,17:52,18:22 161 | 6/09/2008,05:27,05:57,06:28,06:56,16:53,17:20,17:52,18:22 162 | 6/10/2008,05:27,05:58,06:29,06:56,16:53,17:20,17:52,18:22 163 | 6/11/2008,05:28,05:58,06:29,06:57,16:53,17:20,17:52,18:22 164 | 6/12/2008,05:28,05:58,06:30,06:57,16:53,17:20,17:52,18:22 165 | 6/13/2008,05:28,05:59,06:30,06:58,16:53,17:20,17:52,18:22 166 | 6/14/2008,05:29,05:59,06:30,06:58,16:53,17:21,17:52,18:22 167 | 6/15/2008,05:29,05:59,06:31,06:58,16:53,17:21,17:52,18:22 168 | 6/16/2008,05:29,06:00,06:31,06:59,16:53,17:21,17:52,18:22 169 | 6/17/2008,05:30,06:00,06:31,06:59,16:53,17:21,17:52,18:23 170 | 6/18/2008,05:30,06:00,06:32,06:59,16:53,17:21,17:52,18:23 171 | 6/19/2008,05:30,06:01,06:32,07:00,16:54,17:21,17:52,18:23 172 | 6/20/2008,05:30,06:01,06:32,07:00,16:54,17:21,17:53,18:23 173 | 6/21/2008,05:31,06:01,06:32,07:00,16:54,17:22,17:53,18:23 174 | 6/22/2008,05:31,06:01,06:32,07:00,16:54,17:22,17:53,18:24 175 | 6/23/2008,05:31,06:01,06:33,07:00,16:54,17:22,17:53,18:24 176 | 6/24/2008,05:31,06:02,06:33,07:01,16:55,17:22,17:54,18:24 177 | 6/25/2008,05:31,06:02,06:33,07:01,16:55,17:23,17:54,18:24 178 | 6/26/2008,05:31,06:02,06:33,07:01,16:55,17:23,17:54,18:25 179 | 6/27/2008,05:32,06:02,06:33,07:01,16:56,17:23,17:55,18:25 180 | 6/28/2008,05:32,06:02,06:33,07:01,16:56,17:24,17:55,18:25 181 | 6/29/2008,05:32,06:02,06:33,07:01,16:56,17:24,17:55,18:26 182 | 6/30/2008,05:32,06:02,06:33,07:01,16:57,17:24,17:56,18:26 183 | 7/01/2008,05:32,06:02,06:33,07:01,16:57,17:25,17:56,18:26 184 | 7/02/2008,05:32,06:02,06:33,07:01,16:58,17:25,17:56,18:27 185 | 7/03/2008,05:32,06:02,06:33,07:01,16:58,17:26,17:57,18:27 186 | 7/04/2008,05:32,06:02,06:33,07:01,16:59,17:26,17:57,18:28 187 | 7/05/2008,05:32,06:02,06:33,07:01,16:59,17:27,17:58,18:28 188 | 7/06/2008,05:32,06:02,06:33,07:00,17:00,17:27,17:58,18:28 189 | 7/07/2008,05:31,06:02,06:33,07:00,17:00,17:28,17:59,18:29 190 | 7/08/2008,05:31,06:02,06:33,07:00,17:01,17:28,17:59,18:29 191 | 7/09/2008,05:31,06:01,06:32,07:00,17:01,17:29,17:59,18:30 192 | 7/10/2008,05:31,06:01,06:32,07:00,17:02,17:29,18:00,18:30 193 | 7/11/2008,05:31,06:01,06:32,06:59,17:02,17:30,18:00,18:31 194 | 7/12/2008,05:31,06:01,06:32,06:59,17:03,17:30,18:01,18:31 195 | 7/13/2008,05:30,06:01,06:31,06:59,17:03,17:31,18:01,18:32 196 | 7/14/2008,05:30,06:00,06:31,06:58,17:04,17:31,18:02,18:32 197 | 7/15/2008,05:30,06:00,06:31,06:58,17:05,17:32,18:03,18:33 198 | 7/16/2008,05:30,06:00,06:30,06:57,17:05,17:32,18:03,18:33 199 | 7/17/2008,05:29,05:59,06:30,06:57,17:06,17:33,18:04,18:34 200 | 7/18/2008,05:29,05:59,06:29,06:57,17:06,17:34,18:04,18:34 201 | 7/19/2008,05:28,05:58,06:29,06:56,17:07,17:34,18:05,18:35 202 | 7/20/2008,05:28,05:58,06:29,06:56,17:08,17:35,18:05,18:35 203 | 7/21/2008,05:28,05:58,06:28,06:55,17:08,17:35,18:06,18:36 204 | 7/22/2008,05:27,05:57,06:28,06:54,17:09,17:36,18:06,18:36 205 | 7/23/2008,05:27,05:57,06:27,06:54,17:10,17:37,18:07,18:37 206 | 7/24/2008,05:26,05:56,06:26,06:53,17:10,17:37,18:08,18:37 207 | 7/25/2008,05:26,05:55,06:26,06:53,17:11,17:38,18:08,18:38 208 | 7/26/2008,05:25,05:55,06:25,06:52,17:12,17:38,18:09,18:38 209 | 7/27/2008,05:25,05:54,06:25,06:51,17:12,17:39,18:09,18:39 210 | 7/28/2008,05:24,05:54,06:24,06:50,17:13,17:40,18:10,18:40 211 | 7/29/2008,05:23,05:53,06:23,06:50,17:14,17:40,18:10,18:40 212 | 7/30/2008,05:23,05:52,06:22,06:49,17:15,17:41,18:11,18:41 213 | 7/31/2008,05:22,05:52,06:22,06:48,17:15,17:42,18:12,18:41 214 | 8/01/2008,05:21,05:51,06:21,06:47,17:16,17:42,18:12,18:42 215 | 8/02/2008,05:21,05:50,06:20,06:47,17:17,17:43,18:13,18:42 216 | 8/03/2008,05:20,05:49,06:19,06:46,17:17,17:44,18:13,18:43 217 | 8/04/2008,05:19,05:49,06:19,06:45,17:18,17:44,18:14,18:43 218 | 8/05/2008,05:18,05:48,06:18,06:44,17:19,17:45,18:15,18:44 219 | 8/06/2008,05:18,05:47,06:17,06:43,17:19,17:46,18:15,18:45 220 | 8/07/2008,05:17,05:46,06:16,06:42,17:20,17:46,18:16,18:45 221 | 8/08/2008,05:16,05:45,06:15,06:41,17:21,17:47,18:17,18:46 222 | 8/09/2008,05:15,05:44,06:14,06:40,17:22,17:47,18:17,18:46 223 | 8/10/2008,05:14,05:44,06:13,06:39,17:22,17:48,18:18,18:47 224 | 8/11/2008,05:13,05:43,06:12,06:38,17:23,17:49,18:18,18:48 225 | 8/12/2008,05:12,05:42,06:11,06:37,17:24,17:49,18:19,18:48 226 | 8/13/2008,05:12,05:41,06:10,06:36,17:24,17:50,18:20,18:49 227 | 8/14/2008,05:11,05:40,06:09,06:35,17:25,17:51,18:20,18:49 228 | 8/15/2008,05:10,05:39,06:08,06:34,17:26,17:51,18:21,18:50 229 | 8/16/2008,05:09,05:38,06:07,06:33,17:26,17:52,18:21,18:51 230 | 8/17/2008,05:08,05:37,06:06,06:32,17:27,17:53,18:22,18:51 231 | 8/18/2008,05:07,05:36,06:05,06:30,17:28,17:53,18:23,18:52 232 | 8/19/2008,05:05,05:34,06:04,06:29,17:28,17:54,18:23,18:52 233 | 8/20/2008,05:04,05:33,06:03,06:28,17:29,17:55,18:24,18:53 234 | 8/21/2008,05:03,05:32,06:02,06:27,17:30,17:55,18:25,18:54 235 | 8/22/2008,05:02,05:31,06:00,06:26,17:31,17:56,18:25,18:54 236 | 8/23/2008,05:01,05:30,05:59,06:25,17:31,17:57,18:26,18:55 237 | 8/24/2008,05:00,05:29,05:58,06:23,17:32,17:57,18:26,18:55 238 | 8/25/2008,04:59,05:28,05:57,06:22,17:33,17:58,18:27,18:56 239 | 8/26/2008,04:58,05:27,05:56,06:21,17:33,17:59,18:28,18:57 240 | 8/27/2008,04:56,05:25,05:54,06:20,17:34,17:59,18:28,18:57 241 | 8/28/2008,04:55,05:24,05:53,06:18,17:35,18:00,18:29,18:58 242 | 8/29/2008,04:54,05:23,05:52,06:17,17:35,18:01,18:30,18:58 243 | 8/30/2008,04:53,05:22,05:51,06:16,17:36,18:01,18:30,18:59 244 | 8/31/2008,04:51,05:20,05:49,06:14,17:37,18:02,18:31,19:00 245 | 9/01/2008,04:50,05:19,05:48,06:13,17:37,18:02,18:31,19:00 246 | 9/02/2008,04:49,05:18,05:47,06:12,17:38,18:03,18:32,19:01 247 | 9/03/2008,04:48,05:17,05:45,06:11,17:39,18:04,18:33,19:02 248 | 9/04/2008,04:46,05:15,05:44,06:09,17:39,18:04,18:33,19:02 249 | 9/05/2008,04:45,05:14,05:43,06:08,17:40,18:05,18:34,19:03 250 | 9/06/2008,04:44,05:13,05:42,06:07,17:41,18:06,18:35,19:04 251 | 9/07/2008,04:42,05:11,05:40,06:05,17:41,18:06,18:35,19:04 252 | 9/08/2008,04:41,05:10,05:39,06:04,17:42,18:07,18:36,19:05 253 | 9/09/2008,04:40,05:09,05:38,06:02,17:43,18:08,18:37,19:06 254 | 9/10/2008,04:38,05:07,05:36,06:01,17:43,18:08,18:37,19:06 255 | 9/11/2008,04:37,05:06,05:35,06:00,17:44,18:09,18:38,19:07 256 | 9/12/2008,04:35,05:04,05:33,05:58,17:45,18:10,18:39,19:08 257 | 9/13/2008,04:34,05:03,05:32,05:57,17:45,18:10,18:39,19:08 258 | 9/14/2008,04:33,05:02,05:31,05:56,17:46,18:11,18:40,19:09 259 | 9/15/2008,04:31,05:00,05:29,05:54,17:47,18:12,18:41,19:10 260 | 9/16/2008,04:30,04:59,05:28,05:53,17:48,18:12,18:41,19:11 261 | 9/17/2008,04:28,04:58,05:26,05:51,17:48,18:13,18:42,19:11 262 | 9/18/2008,04:27,04:56,05:25,05:50,17:49,18:14,18:43,19:12 263 | 9/19/2008,04:25,04:55,05:24,05:49,17:50,18:14,18:43,19:13 264 | 9/20/2008,04:24,04:53,05:22,05:47,17:50,18:15,18:44,19:13 265 | 9/21/2008,04:23,04:52,05:21,05:46,17:51,18:16,18:45,19:14 266 | 9/22/2008,04:21,04:50,05:19,05:44,17:52,18:17,18:46,19:15 267 | 9/23/2008,04:20,04:49,05:18,05:43,17:52,18:17,18:46,19:16 268 | 9/24/2008,04:18,04:48,05:17,05:42,17:53,18:18,18:47,19:17 269 | 9/25/2008,04:17,04:46,05:15,05:40,17:54,18:19,18:48,19:17 270 | 9/26/2008,04:15,04:45,05:14,05:39,17:54,18:19,18:49,19:18 271 | 9/27/2008,04:14,04:43,05:12,05:37,17:55,18:20,18:49,19:19 272 | 9/28/2008,04:12,04:42,05:11,05:36,17:56,18:21,18:50,19:20 273 | 9/29/2008,04:11,04:40,05:10,05:35,17:57,18:22,18:51,19:21 274 | 9/30/2008,04:09,04:39,05:08,05:33,17:57,18:22,18:52,19:22 275 | 10/01/2008,04:08,04:38,05:07,05:32,17:58,18:23,18:52,19:22 276 | 10/02/2008,04:06,04:36,05:05,05:31,17:59,18:24,18:53,19:23 277 | 10/03/2008,04:05,04:35,05:04,05:29,18:00,18:25,18:54,19:24 278 | 10/04/2008,04:03,04:33,05:03,05:28,18:00,18:25,18:55,19:25 279 | 10/05/2008,05:02,05:32,06:01,06:26,19:01,19:26,19:56,20:26 280 | 10/06/2008,05:00,05:30,06:00,06:25,19:02,19:27,19:57,20:27 281 | 10/07/2008,04:59,05:29,05:59,06:24,19:03,19:28,19:57,20:28 282 | 10/08/2008,04:57,05:28,05:57,06:23,19:03,19:29,19:58,20:29 283 | 10/09/2008,04:56,05:26,05:56,06:21,19:04,19:29,19:59,20:30 284 | 10/10/2008,04:54,05:25,05:55,06:20,19:05,19:30,20:00,20:31 285 | 10/11/2008,04:53,05:23,05:53,06:19,19:06,19:31,20:01,20:32 286 | 10/12/2008,04:51,05:22,05:52,06:17,19:06,19:32,20:02,20:33 287 | 10/13/2008,04:50,05:21,05:51,06:16,19:07,19:33,20:03,20:34 288 | 10/14/2008,04:48,05:19,05:49,06:15,19:08,19:33,20:04,20:35 289 | 10/15/2008,04:47,05:18,05:48,06:14,19:09,19:34,20:05,20:36 290 | 10/16/2008,04:45,05:16,05:47,06:12,19:10,19:35,20:05,20:37 291 | 10/17/2008,04:44,05:15,05:45,06:11,19:10,19:36,20:06,20:38 292 | 10/18/2008,04:42,05:14,05:44,06:10,19:11,19:37,20:07,20:39 293 | 10/19/2008,04:41,05:12,05:43,06:09,19:12,19:38,20:08,20:40 294 | 10/20/2008,04:39,05:11,05:42,06:07,19:13,19:39,20:09,20:41 295 | 10/21/2008,04:38,05:10,05:40,06:06,19:14,19:40,20:10,20:42 296 | 10/22/2008,04:37,05:08,05:39,06:05,19:15,19:41,20:11,20:43 297 | 10/23/2008,04:35,05:07,05:38,06:04,19:15,19:41,20:12,20:44 298 | 10/24/2008,04:34,05:06,05:37,06:03,19:16,19:42,20:13,20:46 299 | 10/25/2008,04:32,05:05,05:36,06:02,19:17,19:43,20:14,20:47 300 | 10/26/2008,04:31,05:03,05:35,06:01,19:18,19:44,20:15,20:48 301 | 10/27/2008,04:30,05:02,05:33,06:00,19:19,19:45,20:16,20:49 302 | 10/28/2008,04:28,05:01,05:32,05:59,19:20,19:46,20:17,20:50 303 | 10/29/2008,04:27,05:00,05:31,05:58,19:21,19:47,20:19,20:51 304 | 10/30/2008,04:26,04:59,05:30,05:56,19:22,19:48,20:20,20:53 305 | 10/31/2008,04:24,04:57,05:29,05:55,19:23,19:49,20:21,20:54 306 | 11/01/2008,04:23,04:56,05:28,05:55,19:23,19:50,20:22,20:55 307 | 11/02/2008,04:22,04:55,05:27,05:54,19:24,19:51,20:23,20:56 308 | 11/03/2008,04:21,04:54,05:26,05:53,19:25,19:52,20:24,20:58 309 | 11/04/2008,04:19,04:53,05:25,05:52,19:26,19:53,20:25,20:59 310 | 11/05/2008,04:18,04:52,05:24,05:51,19:27,19:54,20:26,21:00 311 | 11/06/2008,04:17,04:51,05:23,05:50,19:28,19:55,20:27,21:01 312 | 11/07/2008,04:16,04:50,05:22,05:49,19:29,19:56,20:28,21:03 313 | 11/08/2008,04:15,04:49,05:21,05:48,19:30,19:57,20:30,21:04 314 | 11/09/2008,04:13,04:48,05:20,05:48,19:31,19:58,20:31,21:05 315 | 11/10/2008,04:12,04:47,05:20,05:47,19:32,19:59,20:32,21:07 316 | 11/11/2008,04:11,04:46,05:19,05:46,19:33,20:00,20:33,21:08 317 | 11/12/2008,04:10,04:45,05:18,05:45,19:34,20:01,20:34,21:09 318 | 11/13/2008,04:09,04:44,05:17,05:45,19:35,20:02,20:35,21:10 319 | 11/14/2008,04:08,04:43,05:17,05:44,19:36,20:03,20:36,21:12 320 | 11/15/2008,04:07,04:43,05:16,05:43,19:37,20:04,20:38,21:13 321 | 11/16/2008,04:06,04:42,05:15,05:43,19:38,20:05,20:39,21:14 322 | 11/17/2008,04:05,04:41,05:15,05:42,19:39,20:06,20:40,21:16 323 | 11/18/2008,04:04,04:40,05:14,05:42,19:40,20:07,20:41,21:17 324 | 11/19/2008,04:04,04:40,05:13,05:41,19:41,20:08,20:42,21:18 325 | 11/20/2008,04:03,04:39,05:13,05:41,19:41,20:09,20:43,21:20 326 | 11/21/2008,04:02,04:38,05:12,05:40,19:42,20:10,20:44,21:21 327 | 11/22/2008,04:01,04:38,05:12,05:40,19:43,20:11,20:45,21:22 328 | 11/23/2008,04:00,04:37,05:11,05:39,19:44,20:12,20:47,21:23 329 | 11/24/2008,04:00,04:37,05:11,05:39,19:45,20:13,20:48,21:25 330 | 11/25/2008,03:59,04:36,05:10,05:39,19:46,20:14,20:49,21:26 331 | 11/26/2008,03:59,04:36,05:10,05:38,19:47,20:15,20:50,21:27 332 | 11/27/2008,03:58,04:35,05:10,05:38,19:48,20:16,20:51,21:28 333 | 11/28/2008,03:57,04:35,05:09,05:38,19:49,20:17,20:52,21:30 334 | 11/29/2008,03:57,04:34,05:09,05:38,19:50,20:18,20:53,21:31 335 | 11/30/2008,03:56,04:34,05:09,05:37,19:51,20:19,20:54,21:32 336 | 12/01/2008,03:56,04:34,05:09,05:37,19:52,20:20,20:55,21:33 337 | 12/02/2008,03:56,04:34,05:09,05:37,19:52,20:21,20:56,21:34 338 | 12/03/2008,03:55,04:33,05:08,05:37,19:53,20:22,20:57,21:35 339 | 12/04/2008,03:55,04:33,05:08,05:37,19:54,20:23,20:58,21:36 340 | 12/05/2008,03:55,04:33,05:08,05:37,19:55,20:24,20:59,21:37 341 | 12/06/2008,03:55,04:33,05:08,05:37,19:56,20:25,21:00,21:38 342 | 12/07/2008,03:54,04:33,05:08,05:37,19:57,20:25,21:01,21:40 343 | 12/08/2008,03:54,04:33,05:08,05:37,19:57,20:26,21:02,21:40 344 | 12/09/2008,03:54,04:33,05:08,05:37,19:58,20:27,21:03,21:41 345 | 12/10/2008,03:54,04:33,05:09,05:37,19:59,20:28,21:03,21:42 346 | 12/11/2008,03:54,04:33,05:09,05:38,20:00,20:29,21:04,21:43 347 | 12/12/2008,03:54,04:33,05:09,05:38,20:00,20:29,21:05,21:44 348 | 12/13/2008,03:54,04:33,05:09,05:38,20:01,20:30,21:06,21:45 349 | 12/14/2008,03:54,04:34,05:09,05:38,20:02,20:31,21:07,21:46 350 | 12/15/2008,03:55,04:34,05:10,05:39,20:02,20:31,21:07,21:46 351 | 12/16/2008,03:55,04:34,05:10,05:39,20:03,20:32,21:08,21:47 352 | 12/17/2008,03:55,04:34,05:10,05:39,20:04,20:33,21:09,21:48 353 | 12/18/2008,03:55,04:35,05:11,05:40,20:04,20:33,21:09,21:48 354 | 12/19/2008,03:56,04:35,05:11,05:40,20:05,20:34,21:10,21:49 355 | 12/20/2008,03:56,04:36,05:11,05:41,20:05,20:34,21:10,21:50 356 | 12/21/2008,03:57,04:36,05:12,05:41,20:06,20:35,21:11,21:50 357 | 12/22/2008,03:57,04:37,05:12,05:42,20:06,20:35,21:11,21:51 358 | 12/23/2008,03:58,04:37,05:13,05:42,20:07,20:36,21:12,21:51 359 | 12/24/2008,03:58,04:38,05:14,05:43,20:07,20:36,21:12,21:51 360 | 12/25/2008,03:59,04:38,05:14,05:43,20:08,20:37,21:13,21:52 361 | 12/26/2008,04:00,04:39,05:15,05:44,20:08,20:37,21:13,21:52 362 | 12/27/2008,04:00,04:40,05:15,05:44,20:08,20:37,21:13,21:52 363 | 12/28/2008,04:01,04:40,05:16,05:45,20:09,20:38,21:13,21:53 364 | 12/29/2008,04:02,04:41,05:17,05:46,20:09,20:38,21:14,21:53 365 | 12/30/2008,04:03,04:42,05:17,05:46,20:09,20:38,21:14,21:53 366 | 12/31/2008,04:04,04:43,05:18,05:47,20:09,20:38,21:14,21:53 367 | -------------------------------------------------------------------------------- /test/39_9937N-75_7850W#America-New_York.txt: -------------------------------------------------------------------------------- 1 | 1/01/2008,05:48,06:21,06:55,07:25,16:49,17:19,17:53,18:26 2 | 1/02/2008,05:48,06:21,06:55,07:25,16:50,17:20,17:54,18:27 3 | 1/03/2008,05:48,06:21,06:55,07:25,16:50,17:21,17:55,18:27 4 | 1/04/2008,05:48,06:21,06:55,07:25,16:51,17:22,17:55,18:28 5 | 1/05/2008,05:48,06:21,06:55,07:25,16:52,17:22,17:56,18:29 6 | 1/06/2008,05:49,06:21,06:55,07:25,16:53,17:23,17:57,18:30 7 | 1/07/2008,05:49,06:21,06:55,07:25,16:54,17:24,17:58,18:31 8 | 1/08/2008,05:49,06:21,06:55,07:25,16:55,17:25,17:59,18:32 9 | 1/09/2008,05:49,06:21,06:55,07:25,16:56,17:26,18:00,18:32 10 | 1/10/2008,05:49,06:21,06:55,07:25,16:57,17:27,18:01,18:33 11 | 1/11/2008,05:48,06:21,06:55,07:25,16:58,17:28,18:02,18:34 12 | 1/12/2008,05:48,06:21,06:54,07:24,16:59,17:29,18:03,18:35 13 | 1/13/2008,05:48,06:21,06:54,07:24,17:00,17:30,18:03,18:36 14 | 1/14/2008,05:48,06:20,06:54,07:24,17:01,17:31,18:04,18:37 15 | 1/15/2008,05:48,06:20,06:54,07:23,17:02,17:32,18:05,18:38 16 | 1/16/2008,05:48,06:20,06:53,07:23,17:03,17:33,18:06,18:39 17 | 1/17/2008,05:47,06:20,06:53,07:23,17:05,17:34,18:07,18:40 18 | 1/18/2008,05:47,06:19,06:52,07:22,17:06,17:35,18:08,18:41 19 | 1/19/2008,05:47,06:19,06:52,07:22,17:07,17:36,18:09,18:42 20 | 1/20/2008,05:46,06:18,06:52,07:21,17:08,17:37,18:10,18:43 21 | 1/21/2008,05:46,06:18,06:51,07:20,17:09,17:38,18:12,18:44 22 | 1/22/2008,05:45,06:18,06:51,07:20,17:10,17:40,18:13,18:45 23 | 1/23/2008,05:45,06:17,06:50,07:19,17:11,17:41,18:14,18:46 24 | 1/24/2008,05:44,06:16,06:49,07:19,17:13,17:42,18:15,18:47 25 | 1/25/2008,05:44,06:16,06:49,07:18,17:14,17:43,18:16,18:48 26 | 1/26/2008,05:43,06:15,06:48,07:17,17:15,17:44,18:17,18:49 27 | 1/27/2008,05:43,06:15,06:47,07:16,17:16,17:45,18:18,18:50 28 | 1/28/2008,05:42,06:14,06:47,07:15,17:17,17:46,18:19,18:51 29 | 1/29/2008,05:41,06:13,06:46,07:15,17:19,17:47,18:20,18:52 30 | 1/30/2008,05:41,06:12,06:45,07:14,17:20,17:49,18:21,18:53 31 | 1/31/2008,05:40,06:12,06:44,07:13,17:21,17:50,18:22,18:54 32 | 2/01/2008,05:39,06:11,06:43,07:12,17:22,17:51,18:23,18:55 33 | 2/02/2008,05:38,06:10,06:42,07:11,17:23,17:52,18:24,18:56 34 | 2/03/2008,05:38,06:09,06:42,07:10,17:25,17:53,18:25,18:57 35 | 2/04/2008,05:37,06:08,06:41,07:09,17:26,17:54,18:26,18:58 36 | 2/05/2008,05:36,06:07,06:40,07:08,17:27,17:55,18:28,18:59 37 | 2/06/2008,05:35,06:07,06:39,07:07,17:28,17:56,18:29,19:00 38 | 2/07/2008,05:34,06:06,06:38,07:06,17:29,17:58,18:30,19:01 39 | 2/08/2008,05:33,06:05,06:37,07:05,17:31,17:59,18:31,19:02 40 | 2/09/2008,05:32,06:04,06:36,07:04,17:32,18:00,18:32,19:03 41 | 2/10/2008,05:31,06:03,06:34,07:03,17:33,18:01,18:33,19:04 42 | 2/11/2008,05:30,06:01,06:33,07:01,17:34,18:02,18:34,19:06 43 | 2/12/2008,05:29,06:00,06:32,07:00,17:35,18:03,18:35,19:07 44 | 2/13/2008,05:28,05:59,06:31,06:59,17:37,18:04,18:36,19:08 45 | 2/14/2008,05:27,05:58,06:30,06:58,17:38,18:06,18:37,19:09 46 | 2/15/2008,05:26,05:57,06:29,06:56,17:39,18:07,18:38,19:10 47 | 2/16/2008,05:24,05:56,06:27,06:55,17:40,18:08,18:39,19:11 48 | 2/17/2008,05:23,05:55,06:26,06:54,17:41,18:09,18:41,19:12 49 | 2/18/2008,05:22,05:53,06:25,06:53,17:42,18:10,18:42,19:13 50 | 2/19/2008,05:21,05:52,06:24,06:51,17:44,18:11,18:43,19:14 51 | 2/20/2008,05:19,05:51,06:22,06:50,17:45,18:12,18:44,19:15 52 | 2/21/2008,05:18,05:49,06:21,06:48,17:46,18:13,18:45,19:16 53 | 2/22/2008,05:17,05:48,06:20,06:47,17:47,18:14,18:46,19:17 54 | 2/23/2008,05:15,05:47,06:18,06:46,17:48,18:16,18:47,19:18 55 | 2/24/2008,05:14,05:45,06:17,06:44,17:49,18:17,18:48,19:19 56 | 2/25/2008,05:13,05:44,06:16,06:43,17:50,18:18,18:49,19:20 57 | 2/26/2008,05:11,05:43,06:14,06:41,17:52,18:19,18:50,19:22 58 | 2/27/2008,05:10,05:41,06:13,06:40,17:53,18:20,18:51,19:23 59 | 2/28/2008,05:09,05:40,06:11,06:38,17:54,18:21,18:52,19:24 60 | 2/29/2008,05:07,05:38,06:10,06:37,17:55,18:22,18:53,19:25 61 | 3/01/2008,05:06,05:37,06:08,06:35,17:56,18:23,18:54,19:26 62 | 3/02/2008,05:04,05:35,06:07,06:34,17:57,18:24,18:56,19:27 63 | 3/03/2008,05:03,05:34,06:05,06:32,17:58,18:25,18:57,19:28 64 | 3/04/2008,05:01,05:32,06:04,06:31,17:59,18:26,18:58,19:29 65 | 3/05/2008,04:59,05:31,06:02,06:29,18:00,18:27,18:59,19:30 66 | 3/06/2008,04:58,05:29,06:01,06:28,18:01,18:28,19:00,19:31 67 | 3/07/2008,04:56,05:28,05:59,06:26,18:02,18:29,19:01,19:32 68 | 3/08/2008,04:55,05:26,05:58,06:25,18:04,18:31,19:02,19:33 69 | 3/09/2008,05:53,06:25,06:56,07:23,19:05,19:32,20:03,20:35 70 | 3/10/2008,05:52,06:23,06:55,07:22,19:06,19:33,20:04,20:36 71 | 3/11/2008,05:50,06:22,06:53,07:20,19:07,19:34,20:05,20:37 72 | 3/12/2008,05:48,06:20,06:51,07:18,19:08,19:35,20:06,20:38 73 | 3/13/2008,05:47,06:18,06:50,07:17,19:09,19:36,20:07,20:39 74 | 3/14/2008,05:45,06:17,06:48,07:15,19:10,19:37,20:08,20:40 75 | 3/15/2008,05:43,06:15,06:47,07:14,19:11,19:38,20:09,20:41 76 | 3/16/2008,05:42,06:13,06:45,07:12,19:12,19:39,20:10,20:42 77 | 3/17/2008,05:40,06:12,06:43,07:10,19:13,19:40,20:11,20:44 78 | 3/18/2008,05:38,06:10,06:42,07:09,19:14,19:41,20:13,20:45 79 | 3/19/2008,05:36,06:08,06:40,07:07,19:15,19:42,20:14,20:46 80 | 3/20/2008,05:35,06:07,06:38,07:05,19:16,19:43,20:15,20:47 81 | 3/21/2008,05:33,06:05,06:37,07:04,19:17,19:44,20:16,20:48 82 | 3/22/2008,05:31,06:03,06:35,07:02,19:18,19:45,20:17,20:49 83 | 3/23/2008,05:29,06:02,06:33,07:01,19:19,19:46,20:18,20:50 84 | 3/24/2008,05:28,06:00,06:32,06:59,19:20,19:47,20:19,20:52 85 | 3/25/2008,05:26,05:58,06:30,06:57,19:21,19:48,20:20,20:53 86 | 3/26/2008,05:24,05:57,06:29,06:56,19:22,19:49,20:21,20:54 87 | 3/27/2008,05:22,05:55,06:27,06:54,19:23,19:50,20:22,20:55 88 | 3/28/2008,05:20,05:53,06:25,06:52,19:24,19:51,20:23,20:56 89 | 3/29/2008,05:18,05:51,06:24,06:51,19:25,19:52,20:25,20:58 90 | 3/30/2008,05:17,05:50,06:22,06:49,19:26,19:54,20:26,20:59 91 | 3/31/2008,05:15,05:48,06:20,06:48,19:27,19:55,20:27,21:00 92 | 4/01/2008,05:13,05:46,06:19,06:46,19:28,19:56,20:28,21:01 93 | 4/02/2008,05:11,05:45,06:17,06:44,19:29,19:57,20:29,21:03 94 | 4/03/2008,05:09,05:43,06:15,06:43,19:30,19:58,20:30,21:04 95 | 4/04/2008,05:07,05:41,06:14,06:41,19:31,19:59,20:31,21:05 96 | 4/05/2008,05:06,05:39,06:12,06:40,19:32,20:00,20:33,21:06 97 | 4/06/2008,05:04,05:38,06:10,06:38,19:33,20:01,20:34,21:08 98 | 4/07/2008,05:02,05:36,06:09,06:36,19:34,20:02,20:35,21:09 99 | 4/08/2008,05:00,05:34,06:07,06:35,19:35,20:03,20:36,21:10 100 | 4/09/2008,04:58,05:33,06:06,06:33,19:36,20:04,20:37,21:12 101 | 4/10/2008,04:56,05:31,06:04,06:32,19:37,20:05,20:38,21:13 102 | 4/11/2008,04:54,05:29,06:02,06:30,19:38,20:06,20:40,21:14 103 | 4/12/2008,04:53,05:27,06:01,06:29,19:39,20:07,20:41,21:16 104 | 4/13/2008,04:51,05:26,05:59,06:27,19:40,20:08,20:42,21:17 105 | 4/14/2008,04:49,05:24,05:58,06:26,19:41,20:09,20:43,21:18 106 | 4/15/2008,04:47,05:22,05:56,06:24,19:42,20:11,20:44,21:20 107 | 4/16/2008,04:45,05:21,05:55,06:23,19:43,20:12,20:45,21:21 108 | 4/17/2008,04:43,05:19,05:53,06:21,19:44,20:13,20:47,21:22 109 | 4/18/2008,04:42,05:17,05:51,06:20,19:45,20:14,20:48,21:24 110 | 4/19/2008,04:40,05:16,05:50,06:18,19:46,20:15,20:49,21:25 111 | 4/20/2008,04:38,05:14,05:48,06:17,19:47,20:16,20:50,21:27 112 | 4/21/2008,04:36,05:13,05:47,06:16,19:48,20:17,20:52,21:28 113 | 4/22/2008,04:34,05:11,05:45,06:14,19:49,20:18,20:53,21:30 114 | 4/23/2008,04:32,05:09,05:44,06:13,19:51,20:19,20:54,21:31 115 | 4/24/2008,04:31,05:08,05:43,06:11,19:52,20:20,20:55,21:32 116 | 4/25/2008,04:29,05:06,05:41,06:10,19:53,20:21,20:56,21:34 117 | 4/26/2008,04:27,05:05,05:40,06:09,19:54,20:23,20:58,21:35 118 | 4/27/2008,04:25,05:03,05:38,06:07,19:55,20:24,20:59,21:37 119 | 4/28/2008,04:24,05:02,05:37,06:06,19:56,20:25,21:00,21:38 120 | 4/29/2008,04:22,05:00,05:36,06:05,19:57,20:26,21:01,21:40 121 | 4/30/2008,04:20,04:59,05:34,06:03,19:58,20:27,21:03,21:41 122 | 5/01/2008,04:18,04:57,05:33,06:02,19:59,20:28,21:04,21:43 123 | 5/02/2008,04:17,04:56,05:32,06:01,20:00,20:29,21:05,21:44 124 | 5/03/2008,04:15,04:54,05:30,06:00,20:01,20:30,21:06,21:46 125 | 5/04/2008,04:13,04:53,05:29,05:59,20:02,20:31,21:08,21:47 126 | 5/05/2008,04:12,04:51,05:28,05:57,20:03,20:32,21:09,21:49 127 | 5/06/2008,04:10,04:50,05:26,05:56,20:04,20:33,21:10,21:50 128 | 5/07/2008,04:08,04:49,05:25,05:55,20:05,20:35,21:11,21:52 129 | 5/08/2008,04:07,04:47,05:24,05:54,20:06,20:36,21:13,21:53 130 | 5/09/2008,04:05,04:46,05:23,05:53,20:07,20:37,21:14,21:55 131 | 5/10/2008,04:04,04:45,05:22,05:52,20:07,20:38,21:15,21:56 132 | 5/11/2008,04:02,04:43,05:21,05:51,20:08,20:39,21:16,21:58 133 | 5/12/2008,04:01,04:42,05:20,05:50,20:09,20:40,21:18,21:59 134 | 5/13/2008,03:59,04:41,05:19,05:49,20:10,20:41,21:19,22:01 135 | 5/14/2008,03:58,04:40,05:17,05:48,20:11,20:42,21:20,22:02 136 | 5/15/2008,03:56,04:38,05:16,05:47,20:12,20:43,21:21,22:03 137 | 5/16/2008,03:55,04:37,05:15,05:46,20:13,20:44,21:22,22:05 138 | 5/17/2008,03:53,04:36,05:15,05:45,20:14,20:45,21:23,22:06 139 | 5/18/2008,03:52,04:35,05:14,05:45,20:15,20:46,21:25,22:08 140 | 5/19/2008,03:51,04:34,05:13,05:44,20:16,20:47,21:26,22:09 141 | 5/20/2008,03:49,04:33,05:12,05:43,20:17,20:48,21:27,22:11 142 | 5/21/2008,03:48,04:32,05:11,05:42,20:18,20:49,21:28,22:12 143 | 5/22/2008,03:47,04:31,05:10,05:42,20:19,20:50,21:29,22:13 144 | 5/23/2008,03:46,04:30,05:09,05:41,20:19,20:51,21:30,22:15 145 | 5/24/2008,03:45,04:29,05:09,05:40,20:20,20:52,21:31,22:16 146 | 5/25/2008,03:44,04:28,05:08,05:40,20:21,20:53,21:32,22:17 147 | 5/26/2008,03:42,04:28,05:07,05:39,20:22,20:54,21:33,22:19 148 | 5/27/2008,03:41,04:27,05:07,05:38,20:23,20:55,21:34,22:20 149 | 5/28/2008,03:40,04:26,05:06,05:38,20:23,20:55,21:35,22:21 150 | 5/29/2008,03:39,04:25,05:05,05:37,20:24,20:56,21:36,22:22 151 | 5/30/2008,03:39,04:25,05:05,05:37,20:25,20:57,21:37,22:23 152 | 5/31/2008,03:38,04:24,05:04,05:36,20:26,20:58,21:38,22:25 153 | 6/01/2008,03:37,04:23,05:04,05:36,20:26,20:59,21:39,22:26 154 | 6/02/2008,03:36,04:23,05:03,05:36,20:27,20:59,21:40,22:27 155 | 6/03/2008,03:35,04:22,05:03,05:35,20:28,21:00,21:41,22:28 156 | 6/04/2008,03:35,04:22,05:03,05:35,20:28,21:01,21:42,22:29 157 | 6/05/2008,03:34,04:21,05:02,05:35,20:29,21:01,21:42,22:30 158 | 6/06/2008,03:34,04:21,05:02,05:34,20:30,21:02,21:43,22:31 159 | 6/07/2008,03:33,04:21,05:02,05:34,20:30,21:03,21:44,22:32 160 | 6/08/2008,03:33,04:20,05:01,05:34,20:31,21:03,21:45,22:32 161 | 6/09/2008,03:32,04:20,05:01,05:34,20:31,21:04,21:45,22:33 162 | 6/10/2008,03:32,04:20,05:01,05:34,20:32,21:04,21:46,22:34 163 | 6/11/2008,03:31,04:20,05:01,05:34,20:32,21:05,21:46,22:35 164 | 6/12/2008,03:31,04:19,05:01,05:34,20:33,21:05,21:47,22:35 165 | 6/13/2008,03:31,04:19,05:01,05:34,20:33,21:06,21:48,22:36 166 | 6/14/2008,03:31,04:19,05:01,05:34,20:34,21:06,21:48,22:37 167 | 6/15/2008,03:31,04:19,05:01,05:34,20:34,21:07,21:48,22:37 168 | 6/16/2008,03:31,04:19,05:01,05:34,20:34,21:07,21:49,22:37 169 | 6/17/2008,03:31,04:19,05:01,05:34,20:35,21:07,21:49,22:38 170 | 6/18/2008,03:31,04:19,05:01,05:34,20:35,21:08,21:49,22:38 171 | 6/19/2008,03:31,04:20,05:01,05:34,20:35,21:08,21:50,22:39 172 | 6/20/2008,03:31,04:20,05:01,05:34,20:35,21:08,21:50,22:39 173 | 6/21/2008,03:31,04:20,05:02,05:35,20:36,21:08,21:50,22:39 174 | 6/22/2008,03:31,04:20,05:02,05:35,20:36,21:09,21:50,22:39 175 | 6/23/2008,03:32,04:21,05:02,05:35,20:36,21:09,21:50,22:39 176 | 6/24/2008,03:32,04:21,05:03,05:35,20:36,21:09,21:50,22:39 177 | 6/25/2008,03:33,04:21,05:03,05:36,20:36,21:09,21:50,22:39 178 | 6/26/2008,03:33,04:22,05:03,05:36,20:36,21:09,21:50,22:39 179 | 6/27/2008,03:34,04:22,05:04,05:37,20:36,21:09,21:50,22:39 180 | 6/28/2008,03:34,04:23,05:04,05:37,20:36,21:09,21:50,22:39 181 | 6/29/2008,03:35,04:23,05:05,05:37,20:36,21:09,21:50,22:38 182 | 6/30/2008,03:36,04:24,05:05,05:38,20:36,21:09,21:50,22:38 183 | 7/01/2008,03:36,04:24,05:06,05:38,20:36,21:08,21:50,22:38 184 | 7/02/2008,03:37,04:25,05:06,05:39,20:36,21:08,21:49,22:37 185 | 7/03/2008,03:38,04:26,05:07,05:39,20:35,21:08,21:49,22:37 186 | 7/04/2008,03:39,04:26,05:07,05:40,20:35,21:08,21:49,22:36 187 | 7/05/2008,03:40,04:27,05:08,05:41,20:35,21:07,21:48,22:36 188 | 7/06/2008,03:41,04:28,05:09,05:41,20:35,21:07,21:48,22:35 189 | 7/07/2008,03:42,04:29,05:09,05:42,20:34,21:07,21:47,22:34 190 | 7/08/2008,03:43,04:29,05:10,05:42,20:34,21:06,21:47,22:33 191 | 7/09/2008,03:44,04:30,05:11,05:43,20:34,21:06,21:46,22:33 192 | 7/10/2008,03:45,04:31,05:12,05:44,20:33,21:05,21:46,22:32 193 | 7/11/2008,03:46,04:32,05:12,05:45,20:33,21:05,21:45,22:31 194 | 7/12/2008,03:47,04:33,05:13,05:45,20:32,21:04,21:44,22:30 195 | 7/13/2008,03:48,04:34,05:14,05:46,20:32,21:04,21:44,22:29 196 | 7/14/2008,03:49,04:35,05:15,05:47,20:31,21:03,21:43,22:28 197 | 7/15/2008,03:51,04:36,05:16,05:47,20:31,21:02,21:42,22:27 198 | 7/16/2008,03:52,04:37,05:17,05:48,20:30,21:02,21:41,22:26 199 | 7/17/2008,03:53,04:38,05:17,05:49,20:29,21:01,21:40,22:25 200 | 7/18/2008,03:55,04:39,05:18,05:50,20:29,21:00,21:39,22:24 201 | 7/19/2008,03:56,04:40,05:19,05:51,20:28,20:59,21:38,22:22 202 | 7/20/2008,03:57,04:41,05:20,05:52,20:27,20:58,21:37,22:21 203 | 7/21/2008,03:59,04:42,05:21,05:52,20:26,20:58,21:36,22:20 204 | 7/22/2008,04:00,04:43,05:22,05:53,20:26,20:57,21:35,22:19 205 | 7/23/2008,04:01,04:44,05:23,05:54,20:25,20:56,21:34,22:17 206 | 7/24/2008,04:03,04:46,05:24,05:55,20:24,20:55,21:33,22:16 207 | 7/25/2008,04:04,04:47,05:25,05:56,20:23,20:54,21:32,22:15 208 | 7/26/2008,04:05,04:48,05:26,05:57,20:22,20:53,21:31,22:13 209 | 7/27/2008,04:07,04:49,05:27,05:58,20:21,20:52,21:30,22:12 210 | 7/28/2008,04:08,04:50,05:28,05:59,20:20,20:51,21:28,22:10 211 | 7/29/2008,04:10,04:51,05:29,05:59,20:19,20:50,21:27,22:09 212 | 7/30/2008,04:11,04:52,05:30,06:00,20:18,20:49,21:26,22:07 213 | 7/31/2008,04:13,04:54,05:31,06:01,20:17,20:47,21:25,22:06 214 | 8/01/2008,04:14,04:55,05:32,06:02,20:16,20:46,21:23,22:04 215 | 8/02/2008,04:15,04:56,05:33,06:03,20:15,20:45,21:22,22:02 216 | 8/03/2008,04:17,04:57,05:34,06:04,20:14,20:44,21:21,22:01 217 | 8/04/2008,04:18,04:58,05:35,06:05,20:13,20:43,21:19,21:59 218 | 8/05/2008,04:20,05:00,05:36,06:06,20:12,20:41,21:18,21:57 219 | 8/06/2008,04:21,05:01,05:37,06:07,20:10,20:40,21:16,21:56 220 | 8/07/2008,04:23,05:02,05:38,06:08,20:09,20:39,21:15,21:54 221 | 8/08/2008,04:24,05:03,05:39,06:09,20:08,20:37,21:13,21:52 222 | 8/09/2008,04:25,05:04,05:40,06:10,20:07,20:36,21:12,21:51 223 | 8/10/2008,04:27,05:05,05:41,06:11,20:05,20:35,21:10,21:49 224 | 8/11/2008,04:28,05:07,05:42,06:12,20:04,20:33,21:09,21:47 225 | 8/12/2008,04:30,05:08,05:43,06:13,20:03,20:32,21:07,21:45 226 | 8/13/2008,04:31,05:09,05:44,06:14,20:02,20:31,21:06,21:44 227 | 8/14/2008,04:33,05:10,05:45,06:14,20:00,20:29,21:04,21:42 228 | 8/15/2008,04:34,05:11,05:46,06:15,19:59,20:28,21:03,21:40 229 | 8/16/2008,04:35,05:13,05:48,06:16,19:57,20:26,21:01,21:38 230 | 8/17/2008,04:37,05:14,05:49,06:17,19:56,20:25,20:59,21:36 231 | 8/18/2008,04:38,05:15,05:50,06:18,19:55,20:23,20:58,21:35 232 | 8/19/2008,04:39,05:16,05:51,06:19,19:53,20:22,20:56,21:33 233 | 8/20/2008,04:41,05:17,05:52,06:20,19:52,20:20,20:55,21:31 234 | 8/21/2008,04:42,05:18,05:53,06:21,19:50,20:19,20:53,21:29 235 | 8/22/2008,04:43,05:20,05:54,06:22,19:49,20:17,20:51,21:27 236 | 8/23/2008,04:45,05:21,05:55,06:23,19:47,20:16,20:50,21:25 237 | 8/24/2008,04:46,05:22,05:56,06:24,19:46,20:14,20:48,21:24 238 | 8/25/2008,04:47,05:23,05:57,06:25,19:44,20:12,20:46,21:22 239 | 8/26/2008,04:49,05:24,05:58,06:26,19:43,20:11,20:44,21:20 240 | 8/27/2008,04:50,05:25,05:59,06:27,19:41,20:09,20:43,21:18 241 | 8/28/2008,04:51,05:26,06:00,06:28,19:40,20:08,20:41,21:16 242 | 8/29/2008,04:53,05:27,06:01,06:29,19:38,20:06,20:39,21:14 243 | 8/30/2008,04:54,05:29,06:02,06:30,19:37,20:04,20:38,21:12 244 | 8/31/2008,04:55,05:30,06:03,06:31,19:35,20:03,20:36,21:10 245 | 9/01/2008,04:56,05:31,06:04,06:32,19:33,20:01,20:34,21:08 246 | 9/02/2008,04:58,05:32,06:05,06:33,19:32,20:00,20:32,21:07 247 | 9/03/2008,04:59,05:33,06:06,06:33,19:30,19:58,20:31,21:05 248 | 9/04/2008,05:00,05:34,06:07,06:34,19:29,19:56,20:29,21:03 249 | 9/05/2008,05:01,05:35,06:08,06:35,19:27,19:55,20:27,21:01 250 | 9/06/2008,05:02,05:36,06:09,06:36,19:25,19:53,20:25,20:59 251 | 9/07/2008,05:04,05:37,06:10,06:37,19:24,19:51,20:24,20:57 252 | 9/08/2008,05:05,05:38,06:11,06:38,19:22,19:50,20:22,20:55 253 | 9/09/2008,05:06,05:39,06:12,06:39,19:21,19:48,20:20,20:53 254 | 9/10/2008,05:07,05:40,06:13,06:40,19:19,19:46,20:18,20:52 255 | 9/11/2008,05:08,05:41,06:14,06:41,19:17,19:45,20:17,20:50 256 | 9/12/2008,05:10,05:43,06:15,06:42,19:16,19:43,20:15,20:48 257 | 9/13/2008,05:11,05:44,06:16,06:43,19:14,19:41,20:13,20:46 258 | 9/14/2008,05:12,05:45,06:17,06:44,19:12,19:39,20:11,20:44 259 | 9/15/2008,05:13,05:46,06:18,06:45,19:11,19:38,20:10,20:42 260 | 9/16/2008,05:14,05:47,06:19,06:46,19:09,19:36,20:08,20:41 261 | 9/17/2008,05:15,05:48,06:20,06:47,19:07,19:34,20:06,20:39 262 | 9/18/2008,05:16,05:49,06:21,06:48,19:06,19:33,20:04,20:37 263 | 9/19/2008,05:17,05:50,06:21,06:49,19:04,19:31,20:03,20:35 264 | 9/20/2008,05:18,05:51,06:22,06:49,19:02,19:29,20:01,20:33 265 | 9/21/2008,05:20,05:52,06:23,06:50,19:01,19:28,19:59,20:32 266 | 9/22/2008,05:21,05:53,06:24,06:51,18:59,19:26,19:58,20:30 267 | 9/23/2008,05:22,05:54,06:25,06:52,18:57,19:24,19:56,20:28 268 | 9/24/2008,05:23,05:55,06:26,06:53,18:56,19:23,19:54,20:26 269 | 9/25/2008,05:24,05:56,06:27,06:54,18:54,19:21,19:53,20:24 270 | 9/26/2008,05:25,05:57,06:28,06:55,18:52,19:19,19:51,20:23 271 | 9/27/2008,05:26,05:58,06:29,06:56,18:51,19:18,19:49,20:21 272 | 9/28/2008,05:27,05:59,06:30,06:57,18:49,19:16,19:48,20:19 273 | 9/29/2008,05:28,06:00,06:31,06:58,18:47,19:14,19:46,20:18 274 | 9/30/2008,05:29,06:01,06:32,06:59,18:46,19:13,19:44,20:16 275 | 10/01/2008,05:30,06:02,06:33,07:00,18:44,19:11,19:43,20:14 276 | 10/02/2008,05:31,06:03,06:34,07:01,18:43,19:10,19:41,20:13 277 | 10/03/2008,05:32,06:04,06:35,07:02,18:41,19:08,19:39,20:11 278 | 10/04/2008,05:33,06:05,06:36,07:03,18:39,19:06,19:38,20:09 279 | 10/05/2008,05:34,06:06,06:37,07:04,18:38,19:05,19:36,20:08 280 | 10/06/2008,05:35,06:07,06:38,07:05,18:36,19:03,19:35,20:06 281 | 10/07/2008,05:36,06:08,06:39,07:06,18:35,19:02,19:33,20:05 282 | 10/08/2008,05:37,06:09,06:40,07:07,18:33,19:00,19:32,20:03 283 | 10/09/2008,05:38,06:10,06:41,07:08,18:32,18:59,19:30,20:01 284 | 10/10/2008,05:39,06:11,06:42,07:09,18:30,18:57,19:29,20:00 285 | 10/11/2008,05:40,06:12,06:43,07:10,18:28,18:56,19:27,19:58 286 | 10/12/2008,05:41,06:13,06:44,07:11,18:27,18:54,19:26,19:57 287 | 10/13/2008,05:42,06:14,06:45,07:12,18:25,18:53,19:24,19:55 288 | 10/14/2008,05:43,06:15,06:46,07:13,18:24,18:51,19:23,19:54 289 | 10/15/2008,05:44,06:16,06:47,07:14,18:22,18:50,19:21,19:53 290 | 10/16/2008,05:45,06:17,06:48,07:15,18:21,18:48,19:20,19:51 291 | 10/17/2008,05:46,06:18,06:49,07:16,18:20,18:47,19:18,19:50 292 | 10/18/2008,05:47,06:19,06:50,07:18,18:18,18:46,19:17,19:48 293 | 10/19/2008,05:48,06:20,06:51,07:19,18:17,18:44,19:16,19:47 294 | 10/20/2008,05:49,06:21,06:52,07:20,18:15,18:43,19:14,19:46 295 | 10/21/2008,05:50,06:22,06:53,07:21,18:14,18:41,19:13,19:44 296 | 10/22/2008,05:51,06:23,06:54,07:22,18:12,18:40,19:12,19:43 297 | 10/23/2008,05:52,06:24,06:55,07:23,18:11,18:39,19:10,19:42 298 | 10/24/2008,05:53,06:25,06:56,07:24,18:10,18:38,19:09,19:41 299 | 10/25/2008,05:54,06:26,06:57,07:25,18:08,18:36,19:08,19:39 300 | 10/26/2008,05:55,06:27,06:59,07:26,18:07,18:35,19:07,19:38 301 | 10/27/2008,05:56,06:28,07:00,07:27,18:06,18:34,19:06,19:37 302 | 10/28/2008,05:57,06:29,07:01,07:29,18:05,18:33,19:04,19:36 303 | 10/29/2008,05:58,06:30,07:02,07:30,18:03,18:31,19:03,19:35 304 | 10/30/2008,05:59,06:31,07:03,07:31,18:02,18:30,19:02,19:34 305 | 10/31/2008,06:00,06:32,07:04,07:32,18:01,18:29,19:01,19:33 306 | 11/01/2008,06:01,06:33,07:05,07:33,18:00,18:28,19:00,19:32 307 | 11/02/2008,05:02,05:34,06:06,06:34,16:59,17:27,17:59,18:31 308 | 11/03/2008,05:03,05:35,06:07,06:35,16:58,17:26,17:58,18:30 309 | 11/04/2008,05:04,05:36,06:08,06:36,16:56,17:25,17:57,18:29 310 | 11/05/2008,05:05,05:37,06:09,06:38,16:55,17:24,17:56,18:28 311 | 11/06/2008,05:06,05:38,06:10,06:39,16:54,17:23,17:55,18:27 312 | 11/07/2008,05:07,05:39,06:11,06:40,16:53,17:22,17:54,18:26 313 | 11/08/2008,05:08,05:40,06:13,06:41,16:52,17:21,17:53,18:25 314 | 11/09/2008,05:09,05:41,06:14,06:42,16:51,17:20,17:53,18:24 315 | 11/10/2008,05:10,05:42,06:15,06:43,16:50,17:19,17:52,18:24 316 | 11/11/2008,05:11,05:43,06:16,06:45,16:50,17:18,17:51,18:23 317 | 11/12/2008,05:12,05:44,06:17,06:46,16:49,17:18,17:50,18:22 318 | 11/13/2008,05:13,05:45,06:18,06:47,16:48,17:17,17:49,18:21 319 | 11/14/2008,05:14,05:46,06:19,06:48,16:47,17:16,17:49,18:21 320 | 11/15/2008,05:15,05:47,06:20,06:49,16:46,17:15,17:48,18:20 321 | 11/16/2008,05:16,05:48,06:21,06:50,16:45,17:15,17:47,18:20 322 | 11/17/2008,05:17,05:49,06:22,06:51,16:45,17:14,17:47,18:19 323 | 11/18/2008,05:18,05:50,06:23,06:53,16:44,17:13,17:46,18:18 324 | 11/19/2008,05:19,05:51,06:24,06:54,16:43,17:13,17:46,18:18 325 | 11/20/2008,05:20,05:52,06:25,06:55,16:43,17:12,17:45,18:18 326 | 11/21/2008,05:21,05:53,06:26,06:56,16:42,17:12,17:45,18:17 327 | 11/22/2008,05:22,05:54,06:28,06:57,16:42,17:11,17:44,18:17 328 | 11/23/2008,05:23,05:55,06:29,06:58,16:41,17:11,17:44,18:16 329 | 11/24/2008,05:24,05:56,06:30,06:59,16:41,17:10,17:44,18:16 330 | 11/25/2008,05:25,05:57,06:31,07:00,16:40,17:10,17:43,18:16 331 | 11/26/2008,05:26,05:58,06:32,07:01,16:40,17:10,17:43,18:15 332 | 11/27/2008,05:27,05:59,06:33,07:02,16:39,17:09,17:43,18:15 333 | 11/28/2008,05:28,06:00,06:34,07:03,16:39,17:09,17:42,18:15 334 | 11/29/2008,05:28,06:01,06:35,07:05,16:39,17:09,17:42,18:15 335 | 11/30/2008,05:29,06:02,06:36,07:06,16:39,17:09,17:42,18:15 336 | 12/01/2008,05:30,06:03,06:36,07:07,16:38,17:08,17:42,18:15 337 | 12/02/2008,05:31,06:04,06:37,07:07,16:38,17:08,17:42,18:15 338 | 12/03/2008,05:32,06:05,06:38,07:08,16:38,17:08,17:42,18:15 339 | 12/04/2008,05:33,06:05,06:39,07:09,16:38,17:08,17:42,18:15 340 | 12/05/2008,05:34,06:06,06:40,07:10,16:38,17:08,17:42,18:15 341 | 12/06/2008,05:34,06:07,06:41,07:11,16:38,17:08,17:42,18:15 342 | 12/07/2008,05:35,06:08,06:42,07:12,16:38,17:08,17:42,18:15 343 | 12/08/2008,05:36,06:09,06:43,07:13,16:38,17:08,17:42,18:15 344 | 12/09/2008,05:37,06:10,06:43,07:14,16:38,17:08,17:42,18:15 345 | 12/10/2008,05:37,06:10,06:44,07:15,16:38,17:08,17:42,18:15 346 | 12/11/2008,05:38,06:11,06:45,07:15,16:38,17:09,17:43,18:15 347 | 12/12/2008,05:39,06:12,06:46,07:16,16:38,17:09,17:43,18:16 348 | 12/13/2008,05:40,06:12,06:46,07:17,16:39,17:09,17:43,18:16 349 | 12/14/2008,05:40,06:13,06:47,07:18,16:39,17:09,17:43,18:16 350 | 12/15/2008,05:41,06:14,06:48,07:18,16:39,17:10,17:44,18:17 351 | 12/16/2008,05:41,06:14,06:48,07:19,16:39,17:10,17:44,18:17 352 | 12/17/2008,05:42,06:15,06:49,07:20,16:40,17:10,17:44,18:17 353 | 12/18/2008,05:43,06:16,06:50,07:20,16:40,17:11,17:45,18:18 354 | 12/19/2008,05:43,06:16,06:50,07:21,16:41,17:11,17:45,18:18 355 | 12/20/2008,05:44,06:17,06:51,07:21,16:41,17:12,17:46,18:19 356 | 12/21/2008,05:44,06:17,06:51,07:22,16:42,17:12,17:46,18:19 357 | 12/22/2008,05:45,06:18,06:52,07:22,16:42,17:13,17:47,18:20 358 | 12/23/2008,05:45,06:18,06:52,07:23,16:43,17:13,17:47,18:20 359 | 12/24/2008,05:46,06:19,06:53,07:23,16:43,17:14,17:48,18:21 360 | 12/25/2008,05:46,06:19,06:53,07:24,16:44,17:15,17:49,18:22 361 | 12/26/2008,05:46,06:19,06:53,07:24,16:45,17:15,17:49,18:22 362 | 12/27/2008,05:47,06:20,06:54,07:24,16:45,17:16,17:50,18:23 363 | 12/28/2008,05:47,06:20,06:54,07:24,16:46,17:17,17:51,18:23 364 | 12/29/2008,05:47,06:20,06:54,07:25,16:47,17:17,17:51,18:24 365 | 12/30/2008,05:48,06:20,06:54,07:25,16:48,17:18,17:52,18:25 366 | 12/31/2008,05:48,06:21,06:55,07:25,16:48,17:19,17:53,18:26 367 | -------------------------------------------------------------------------------- /test/40_0194N-105_2928W#America-Denver.txt: -------------------------------------------------------------------------------- 1 | 1/01/2008,05:46,06:19,06:53,07:23,16:47,17:17,17:51,18:24 2 | 1/02/2008,05:46,06:19,06:53,07:23,16:48,17:18,17:52,18:25 3 | 1/03/2008,05:46,06:19,06:53,07:23,16:48,17:19,17:53,18:25 4 | 1/04/2008,05:46,06:19,06:53,07:23,16:49,17:20,17:53,18:26 5 | 1/05/2008,05:47,06:19,06:53,07:23,16:50,17:20,17:54,18:27 6 | 1/06/2008,05:47,06:19,06:53,07:23,16:51,17:21,17:55,18:28 7 | 1/07/2008,05:47,06:19,06:53,07:23,16:52,17:22,17:56,18:29 8 | 1/08/2008,05:47,06:19,06:53,07:23,16:53,17:23,17:57,18:30 9 | 1/09/2008,05:47,06:19,06:53,07:23,16:54,17:24,17:58,18:30 10 | 1/10/2008,05:47,06:19,06:53,07:23,16:55,17:25,17:59,18:31 11 | 1/11/2008,05:46,06:19,06:53,07:23,16:56,17:26,18:00,18:32 12 | 1/12/2008,05:46,06:19,06:52,07:22,16:57,17:27,18:01,18:33 13 | 1/13/2008,05:46,06:19,06:52,07:22,16:58,17:28,18:02,18:34 14 | 1/14/2008,05:46,06:19,06:52,07:22,16:59,17:29,18:03,18:35 15 | 1/15/2008,05:46,06:18,06:52,07:21,17:00,17:30,18:03,18:36 16 | 1/16/2008,05:46,06:18,06:51,07:21,17:02,17:31,18:04,18:37 17 | 1/17/2008,05:45,06:18,06:51,07:21,17:03,17:32,18:05,18:38 18 | 1/18/2008,05:45,06:17,06:51,07:20,17:04,17:33,18:06,18:39 19 | 1/19/2008,05:45,06:17,06:50,07:20,17:05,17:34,18:08,18:40 20 | 1/20/2008,05:44,06:16,06:50,07:19,17:06,17:35,18:09,18:41 21 | 1/21/2008,05:44,06:16,06:49,07:18,17:07,17:37,18:10,18:42 22 | 1/22/2008,05:43,06:16,06:49,07:18,17:08,17:38,18:11,18:43 23 | 1/23/2008,05:43,06:15,06:48,07:17,17:10,17:39,18:12,18:44 24 | 1/24/2008,05:42,06:14,06:47,07:17,17:11,17:40,18:13,18:45 25 | 1/25/2008,05:42,06:14,06:47,07:16,17:12,17:41,18:14,18:46 26 | 1/26/2008,05:41,06:13,06:46,07:15,17:13,17:42,18:15,18:47 27 | 1/27/2008,05:41,06:13,06:45,07:14,17:14,17:43,18:16,18:48 28 | 1/28/2008,05:40,06:12,06:45,07:14,17:15,17:44,18:17,18:49 29 | 1/29/2008,05:39,06:11,06:44,07:13,17:17,17:45,18:18,18:50 30 | 1/30/2008,05:39,06:10,06:43,07:12,17:18,17:47,18:19,18:51 31 | 1/31/2008,05:38,06:10,06:42,07:11,17:19,17:48,18:20,18:52 32 | 2/01/2008,05:37,06:09,06:41,07:10,17:20,17:49,18:21,18:53 33 | 2/02/2008,05:36,06:08,06:40,07:09,17:21,17:50,18:22,18:54 34 | 2/03/2008,05:35,06:07,06:40,07:08,17:23,17:51,18:23,18:55 35 | 2/04/2008,05:35,06:06,06:39,07:07,17:24,17:52,18:25,18:56 36 | 2/05/2008,05:34,06:05,06:38,07:06,17:25,17:53,18:26,18:57 37 | 2/06/2008,05:33,06:05,06:37,07:05,17:26,17:55,18:27,18:58 38 | 2/07/2008,05:32,06:04,06:36,07:04,17:27,17:56,18:28,18:59 39 | 2/08/2008,05:31,06:03,06:35,07:03,17:29,17:57,18:29,19:00 40 | 2/09/2008,05:30,06:02,06:34,07:02,17:30,17:58,18:30,19:02 41 | 2/10/2008,05:29,06:00,06:32,07:01,17:31,17:59,18:31,19:03 42 | 2/11/2008,05:28,05:59,06:31,06:59,17:32,18:00,18:32,19:04 43 | 2/12/2008,05:27,05:58,06:30,06:58,17:33,18:01,18:33,19:05 44 | 2/13/2008,05:26,05:57,06:29,06:57,17:35,18:03,18:34,19:06 45 | 2/14/2008,05:25,05:56,06:28,06:56,17:36,18:04,18:35,19:07 46 | 2/15/2008,05:23,05:55,06:27,06:54,17:37,18:05,18:36,19:08 47 | 2/16/2008,05:22,05:54,06:25,06:53,17:38,18:06,18:38,19:09 48 | 2/17/2008,05:21,05:52,06:24,06:52,17:39,18:07,18:39,19:10 49 | 2/18/2008,05:20,05:51,06:23,06:51,17:40,18:08,18:40,19:11 50 | 2/19/2008,05:19,05:50,06:22,06:49,17:42,18:09,18:41,19:12 51 | 2/20/2008,05:17,05:49,06:20,06:48,17:43,18:10,18:42,19:13 52 | 2/21/2008,05:16,05:47,06:19,06:46,17:44,18:11,18:43,19:14 53 | 2/22/2008,05:15,05:46,06:18,06:45,17:45,18:13,18:44,19:15 54 | 2/23/2008,05:13,05:45,06:16,06:44,17:46,18:14,18:45,19:16 55 | 2/24/2008,05:12,05:43,06:15,06:42,17:47,18:15,18:46,19:18 56 | 2/25/2008,05:11,05:42,06:13,06:41,17:48,18:16,18:47,19:19 57 | 2/26/2008,05:09,05:41,06:12,06:39,17:50,18:17,18:48,19:20 58 | 2/27/2008,05:08,05:39,06:11,06:38,17:51,18:18,18:49,19:21 59 | 2/28/2008,05:06,05:38,06:09,06:36,17:52,18:19,18:50,19:22 60 | 2/29/2008,05:05,05:36,06:08,06:35,17:53,18:20,18:51,19:23 61 | 3/01/2008,05:03,05:35,06:06,06:33,17:54,18:21,18:53,19:24 62 | 3/02/2008,05:02,05:33,06:05,06:32,17:55,18:22,18:54,19:25 63 | 3/03/2008,05:00,05:32,06:03,06:30,17:56,18:23,18:55,19:26 64 | 3/04/2008,04:59,05:30,06:02,06:29,17:57,18:24,18:56,19:27 65 | 3/05/2008,04:57,05:29,06:00,06:27,17:58,18:25,18:57,19:28 66 | 3/06/2008,04:56,05:27,05:59,06:26,17:59,18:27,18:58,19:29 67 | 3/07/2008,04:54,05:26,05:57,06:24,18:01,18:28,18:59,19:31 68 | 3/08/2008,04:53,05:24,05:56,06:23,18:02,18:29,19:00,19:32 69 | 3/10/2008,05:49,06:21,06:52,07:19,19:04,19:31,20:02,20:34 70 | 3/11/2008,05:48,06:19,06:51,07:18,19:05,19:32,20:03,20:35 71 | 3/12/2008,05:46,06:18,06:49,07:16,19:06,19:33,20:04,20:36 72 | 3/13/2008,05:44,06:16,06:48,07:15,19:07,19:34,20:05,20:37 73 | 3/14/2008,05:43,06:15,06:46,07:13,19:08,19:35,20:06,20:38 74 | 3/15/2008,05:41,06:13,06:44,07:11,19:09,19:36,20:07,20:39 75 | 3/16/2008,05:39,06:11,06:43,07:10,19:10,19:37,20:09,20:41 76 | 3/17/2008,05:38,06:10,06:41,07:08,19:11,19:38,20:10,20:42 77 | 3/18/2008,05:36,06:08,06:40,07:07,19:12,19:39,20:11,20:43 78 | 3/19/2008,05:34,06:06,06:38,07:05,19:13,19:40,20:12,20:44 79 | 3/20/2008,05:32,06:05,06:36,07:03,19:14,19:41,20:13,20:45 80 | 3/21/2008,05:31,06:03,06:35,07:02,19:15,19:42,20:14,20:46 81 | 3/22/2008,05:29,06:01,06:33,07:00,19:16,19:43,20:15,20:47 82 | 3/23/2008,05:27,06:00,06:31,06:58,19:17,19:44,20:16,20:49 83 | 3/24/2008,05:25,05:58,06:30,06:57,19:18,19:45,20:17,20:50 84 | 3/25/2008,05:24,05:56,06:28,06:55,19:19,19:46,20:18,20:51 85 | 3/26/2008,05:22,05:54,06:26,06:54,19:20,19:47,20:19,20:52 86 | 3/27/2008,05:20,05:53,06:25,06:52,19:21,19:49,20:21,20:53 87 | 3/28/2008,05:18,05:51,06:23,06:50,19:22,19:50,20:22,20:55 88 | 3/29/2008,05:16,05:49,06:21,06:49,19:23,19:51,20:23,20:56 89 | 3/30/2008,05:14,05:48,06:20,06:47,19:24,19:52,20:24,20:57 90 | 3/31/2008,05:13,05:46,06:18,06:45,19:25,19:53,20:25,20:58 91 | 4/01/2008,05:11,05:44,06:17,06:44,19:26,19:54,20:26,21:00 92 | 4/02/2008,05:09,05:42,06:15,06:42,19:27,19:55,20:27,21:01 93 | 4/03/2008,05:07,05:41,06:13,06:41,19:28,19:56,20:28,21:02 94 | 4/04/2008,05:05,05:39,06:12,06:39,19:29,19:57,20:30,21:03 95 | 4/05/2008,05:03,05:37,06:10,06:38,19:30,19:58,20:31,21:05 96 | 4/06/2008,05:02,05:36,06:08,06:36,19:31,19:59,20:32,21:06 97 | 4/07/2008,05:00,05:34,06:07,06:34,19:32,20:00,20:33,21:07 98 | 4/08/2008,04:58,05:32,06:05,06:33,19:33,20:01,20:34,21:09 99 | 4/09/2008,04:56,05:30,06:03,06:31,19:34,20:02,20:35,21:10 100 | 4/10/2008,04:54,05:29,06:02,06:30,19:35,20:03,20:37,21:11 101 | 4/11/2008,04:52,05:27,06:00,06:28,19:36,20:04,20:38,21:12 102 | 4/12/2008,04:50,05:25,05:59,06:27,19:38,20:05,20:39,21:14 103 | 4/13/2008,04:49,05:24,05:57,06:25,19:39,20:07,20:40,21:15 104 | 4/14/2008,04:47,05:22,05:56,06:24,19:40,20:08,20:41,21:17 105 | 4/15/2008,04:45,05:20,05:54,06:22,19:41,20:09,20:42,21:18 106 | 4/16/2008,04:43,05:19,05:52,06:21,19:42,20:10,20:44,21:19 107 | 4/17/2008,04:41,05:17,05:51,06:19,19:43,20:11,20:45,21:21 108 | 4/18/2008,04:39,05:15,05:49,06:18,19:44,20:12,20:46,21:22 109 | 4/19/2008,04:38,05:14,05:48,06:16,19:45,20:13,20:47,21:23 110 | 4/20/2008,04:36,05:12,05:46,06:15,19:46,20:14,20:49,21:25 111 | 4/21/2008,04:34,05:10,05:45,06:13,19:47,20:15,20:50,21:26 112 | 4/22/2008,04:32,05:09,05:43,06:12,19:48,20:16,20:51,21:28 113 | 4/23/2008,04:30,05:07,05:42,06:11,19:49,20:17,20:52,21:29 114 | 4/24/2008,04:28,05:06,05:40,06:09,19:50,20:19,20:53,21:31 115 | 4/25/2008,04:27,05:04,05:39,06:08,19:51,20:20,20:55,21:32 116 | 4/26/2008,04:25,05:02,05:38,06:07,19:52,20:21,20:56,21:34 117 | 4/27/2008,04:23,05:01,05:36,06:05,19:53,20:22,20:57,21:35 118 | 4/28/2008,04:21,04:59,05:35,06:04,19:54,20:23,20:58,21:36 119 | 4/29/2008,04:20,04:58,05:33,06:03,19:55,20:24,21:00,21:38 120 | 4/30/2008,04:18,04:56,05:32,06:01,19:56,20:25,21:01,21:39 121 | 5/01/2008,04:16,04:55,05:31,06:00,19:57,20:26,21:02,21:41 122 | 5/02/2008,04:14,04:53,05:29,05:59,19:58,20:27,21:03,21:42 123 | 5/03/2008,04:13,04:52,05:28,05:58,19:59,20:28,21:05,21:44 124 | 5/04/2008,04:11,04:51,05:27,05:57,20:00,20:30,21:06,21:45 125 | 5/05/2008,04:09,04:49,05:26,05:55,20:01,20:31,21:07,21:47 126 | 5/06/2008,04:08,04:48,05:24,05:54,20:02,20:32,21:08,21:48 127 | 5/07/2008,04:06,04:46,05:23,05:53,20:03,20:33,21:10,21:50 128 | 5/08/2008,04:05,04:45,05:22,05:52,20:04,20:34,21:11,21:51 129 | 5/09/2008,04:03,04:44,05:21,05:51,20:05,20:35,21:12,21:53 130 | 5/10/2008,04:01,04:42,05:20,05:50,20:06,20:36,21:13,21:54 131 | 5/11/2008,04:00,04:41,05:19,05:49,20:07,20:37,21:15,21:56 132 | 5/12/2008,03:58,04:40,05:17,05:48,20:08,20:38,21:16,21:57 133 | 5/13/2008,03:57,04:39,05:16,05:47,20:09,20:39,21:17,21:59 134 | 5/14/2008,03:55,04:37,05:15,05:46,20:09,20:40,21:18,22:00 135 | 5/15/2008,03:54,04:36,05:14,05:45,20:10,20:41,21:19,22:02 136 | 5/16/2008,03:53,04:35,05:13,05:44,20:11,20:42,21:21,22:03 137 | 5/17/2008,03:51,04:34,05:12,05:43,20:12,20:43,21:22,22:05 138 | 5/18/2008,03:50,04:33,05:11,05:42,20:13,20:44,21:23,22:06 139 | 5/19/2008,03:49,04:32,05:11,05:42,20:14,20:45,21:24,22:07 140 | 5/20/2008,03:47,04:31,05:10,05:41,20:15,20:46,21:25,22:09 141 | 5/21/2008,03:46,04:30,05:09,05:40,20:16,20:47,21:26,22:10 142 | 5/22/2008,03:45,04:29,05:08,05:39,20:17,20:48,21:27,22:12 143 | 5/23/2008,03:44,04:28,05:07,05:39,20:18,20:49,21:29,22:13 144 | 5/24/2008,03:42,04:27,05:07,05:38,20:18,20:50,21:30,22:14 145 | 5/25/2008,03:41,04:26,05:06,05:37,20:19,20:51,21:31,22:16 146 | 5/26/2008,03:40,04:25,05:05,05:37,20:20,20:52,21:32,22:17 147 | 5/27/2008,03:39,04:25,05:04,05:36,20:21,20:53,21:33,22:18 148 | 5/28/2008,03:38,04:24,05:04,05:36,20:22,20:54,21:34,22:19 149 | 5/29/2008,03:37,04:23,05:03,05:35,20:22,20:54,21:35,22:21 150 | 5/30/2008,03:36,04:22,05:03,05:35,20:23,20:55,21:36,22:22 151 | 5/31/2008,03:36,04:22,05:02,05:34,20:24,20:56,21:37,22:23 152 | 6/01/2008,03:35,04:21,05:02,05:34,20:25,20:57,21:37,22:24 153 | 6/02/2008,03:34,04:21,05:01,05:34,20:25,20:58,21:38,22:25 154 | 6/03/2008,03:33,04:20,05:01,05:33,20:26,20:58,21:39,22:26 155 | 6/04/2008,03:33,04:20,05:01,05:33,20:27,20:59,21:40,22:27 156 | 6/05/2008,03:32,04:19,05:00,05:33,20:27,21:00,21:41,22:28 157 | 6/06/2008,03:31,04:19,05:00,05:32,20:28,21:00,21:41,22:29 158 | 6/07/2008,03:31,04:18,05:00,05:32,20:28,21:01,21:42,22:30 159 | 6/08/2008,03:30,04:18,04:59,05:32,20:29,21:02,21:43,22:31 160 | 6/09/2008,03:30,04:18,04:59,05:32,20:29,21:02,21:43,22:32 161 | 6/10/2008,03:30,04:18,04:59,05:32,20:30,21:03,21:44,22:32 162 | 6/11/2008,03:29,04:17,04:59,05:32,20:30,21:03,21:45,22:33 163 | 6/12/2008,03:29,04:17,04:59,05:32,20:31,21:04,21:45,22:34 164 | 6/13/2008,03:29,04:17,04:59,05:32,20:31,21:04,21:46,22:34 165 | 6/14/2008,03:29,04:17,04:59,05:32,20:32,21:05,21:46,22:35 166 | 6/15/2008,03:28,04:17,04:59,05:32,20:32,21:05,21:47,22:35 167 | 6/16/2008,03:28,04:17,04:59,05:32,20:32,21:05,21:47,22:36 168 | 6/17/2008,03:28,04:17,04:59,05:32,20:33,21:06,21:47,22:36 169 | 6/18/2008,03:29,04:17,04:59,05:32,20:33,21:06,21:48,22:36 170 | 6/19/2008,03:29,04:17,04:59,05:32,20:33,21:06,21:48,22:37 171 | 6/20/2008,03:29,04:18,04:59,05:32,20:33,21:06,21:48,22:37 172 | 6/21/2008,03:29,04:18,05:00,05:33,20:34,21:07,21:48,22:37 173 | 6/22/2008,03:29,04:18,05:00,05:33,20:34,21:07,21:48,22:37 174 | 6/23/2008,03:30,04:18,05:00,05:33,20:34,21:07,21:49,22:37 175 | 6/24/2008,03:30,04:19,05:01,05:33,20:34,21:07,21:49,22:37 176 | 6/25/2008,03:31,04:19,05:01,05:34,20:34,21:07,21:49,22:37 177 | 6/26/2008,03:31,04:20,05:01,05:34,20:34,21:07,21:49,22:37 178 | 6/27/2008,03:32,04:20,05:02,05:35,20:34,21:07,21:49,22:37 179 | 6/28/2008,03:32,04:21,05:02,05:35,20:34,21:07,21:48,22:37 180 | 6/29/2008,03:33,04:21,05:03,05:35,20:34,21:07,21:48,22:37 181 | 6/30/2008,03:34,04:22,05:03,05:36,20:34,21:07,21:48,22:36 182 | 7/01/2008,03:34,04:22,05:04,05:36,20:34,21:06,21:48,22:36 183 | 7/02/2008,03:35,04:23,05:04,05:37,20:34,21:06,21:48,22:35 184 | 7/03/2008,03:36,04:24,05:05,05:37,20:33,21:06,21:47,22:35 185 | 7/04/2008,03:37,04:24,05:05,05:38,20:33,21:06,21:47,22:34 186 | 7/05/2008,03:38,04:25,05:06,05:39,20:33,21:05,21:46,22:34 187 | 7/06/2008,03:39,04:26,05:07,05:39,20:33,21:05,21:46,22:33 188 | 7/07/2008,03:40,04:27,05:07,05:40,20:32,21:05,21:45,22:32 189 | 7/08/2008,03:41,04:27,05:08,05:40,20:32,21:04,21:45,22:32 190 | 7/09/2008,03:42,04:28,05:09,05:41,20:32,21:04,21:44,22:31 191 | 7/10/2008,03:43,04:29,05:10,05:42,20:31,21:03,21:44,22:30 192 | 7/11/2008,03:44,04:30,05:10,05:43,20:31,21:03,21:43,22:29 193 | 7/12/2008,03:45,04:31,05:11,05:43,20:30,21:02,21:42,22:28 194 | 7/13/2008,03:46,04:32,05:12,05:44,20:30,21:02,21:42,22:27 195 | 7/14/2008,03:47,04:33,05:13,05:45,20:29,21:01,21:41,22:26 196 | 7/15/2008,03:49,04:34,05:14,05:45,20:29,21:00,21:40,22:25 197 | 7/16/2008,03:50,04:35,05:15,05:46,20:28,21:00,21:39,22:24 198 | 7/17/2008,03:51,04:36,05:15,05:47,20:27,20:59,21:38,22:23 199 | 7/18/2008,03:53,04:37,05:16,05:48,20:27,20:58,21:37,22:22 200 | 7/19/2008,03:54,04:38,05:17,05:49,20:26,20:57,21:36,22:21 201 | 7/20/2008,03:55,04:39,05:18,05:50,20:25,20:56,21:35,22:19 202 | 7/21/2008,03:57,04:40,05:19,05:50,20:24,20:56,21:34,22:18 203 | 7/22/2008,03:58,04:41,05:20,05:51,20:24,20:55,21:33,22:17 204 | 7/23/2008,03:59,04:42,05:21,05:52,20:23,20:54,21:32,22:15 205 | 7/24/2008,04:01,04:44,05:22,05:53,20:22,20:53,21:31,22:14 206 | 7/25/2008,04:02,04:45,05:23,05:54,20:21,20:52,21:30,22:13 207 | 7/26/2008,04:03,04:46,05:24,05:55,20:20,20:51,21:29,22:11 208 | 7/27/2008,04:05,04:47,05:25,05:56,20:19,20:50,21:28,22:10 209 | 7/28/2008,04:06,04:48,05:26,05:57,20:18,20:49,21:27,22:08 210 | 7/29/2008,04:08,04:49,05:27,05:57,20:17,20:48,21:25,22:07 211 | 7/30/2008,04:09,04:50,05:28,05:58,20:16,20:47,21:24,22:05 212 | 7/31/2008,04:11,04:52,05:29,05:59,20:15,20:45,21:23,22:04 213 | 8/01/2008,04:12,04:53,05:30,06:00,20:14,20:44,21:21,22:02 214 | 8/02/2008,04:13,04:54,05:31,06:01,20:13,20:43,21:20,22:00 215 | 8/03/2008,04:15,04:55,05:32,06:02,20:12,20:42,21:19,21:59 216 | 8/04/2008,04:16,04:56,05:33,06:03,20:11,20:41,21:17,21:57 217 | 8/05/2008,04:18,04:58,05:34,06:04,20:10,20:39,21:16,21:55 218 | 8/06/2008,04:19,04:59,05:35,06:05,20:08,20:38,21:14,21:54 219 | 8/07/2008,04:21,05:00,05:36,06:06,20:07,20:37,21:13,21:52 220 | 8/08/2008,04:22,05:01,05:37,06:07,20:06,20:35,21:11,21:50 221 | 8/09/2008,04:24,05:02,05:38,06:08,20:05,20:34,21:10,21:49 222 | 8/10/2008,04:25,05:04,05:39,06:09,20:03,20:33,21:08,21:47 223 | 8/11/2008,04:26,05:05,05:40,06:10,20:02,20:31,21:07,21:45 224 | 8/12/2008,04:28,05:06,05:41,06:11,20:01,20:30,21:05,21:43 225 | 8/13/2008,04:29,05:07,05:42,06:12,19:59,20:29,21:04,21:42 226 | 8/14/2008,04:31,05:08,05:43,06:13,19:58,20:27,21:02,21:40 227 | 8/15/2008,04:32,05:09,05:45,06:13,19:57,20:26,21:01,21:38 228 | 8/16/2008,04:33,05:11,05:46,06:14,19:55,20:24,20:59,21:36 229 | 8/17/2008,04:35,05:12,05:47,06:15,19:54,20:23,20:57,21:34 230 | 8/18/2008,04:36,05:13,05:48,06:16,19:53,20:21,20:56,21:33 231 | 8/19/2008,04:38,05:14,05:49,06:17,19:51,20:20,20:54,21:31 232 | 8/20/2008,04:39,05:15,05:50,06:18,19:50,20:18,20:53,21:29 233 | 8/21/2008,04:40,05:16,05:51,06:19,19:48,20:17,20:51,21:27 234 | 8/22/2008,04:42,05:18,05:52,06:20,19:47,20:15,20:49,21:25 235 | 8/23/2008,04:43,05:19,05:53,06:21,19:45,20:14,20:48,21:23 236 | 8/24/2008,04:44,05:20,05:54,06:22,19:44,20:12,20:46,21:21 237 | 8/25/2008,04:46,05:21,05:55,06:23,19:42,20:10,20:44,21:20 238 | 8/26/2008,04:47,05:22,05:56,06:24,19:41,20:09,20:42,21:18 239 | 8/27/2008,04:48,05:23,05:57,06:25,19:39,20:07,20:41,21:16 240 | 8/28/2008,04:49,05:24,05:58,06:26,19:38,20:06,20:39,21:14 241 | 8/29/2008,04:51,05:26,05:59,06:27,19:36,20:04,20:37,21:12 242 | 8/30/2008,04:52,05:27,06:00,06:28,19:35,20:02,20:36,21:10 243 | 8/31/2008,04:53,05:28,06:01,06:29,19:33,20:01,20:34,21:08 244 | 9/01/2008,04:54,05:29,06:02,06:30,19:31,19:59,20:32,21:06 245 | 9/02/2008,04:56,05:30,06:03,06:31,19:30,19:57,20:30,21:05 246 | 9/03/2008,04:57,05:31,06:04,06:32,19:28,19:56,20:29,21:03 247 | 9/04/2008,04:58,05:32,06:05,06:32,19:27,19:54,20:27,21:01 248 | 9/05/2008,04:59,05:33,06:06,06:33,19:25,19:52,20:25,20:59 249 | 9/06/2008,05:01,05:34,06:07,06:34,19:23,19:51,20:23,20:57 250 | 9/07/2008,05:02,05:35,06:08,06:35,19:22,19:49,20:22,20:55 251 | 9/08/2008,05:03,05:36,06:09,06:36,19:20,19:47,20:20,20:53 252 | 9/09/2008,05:04,05:37,06:10,06:37,19:18,19:46,20:18,20:51 253 | 9/10/2008,05:05,05:39,06:11,06:38,19:17,19:44,20:16,20:50 254 | 9/11/2008,05:06,05:40,06:12,06:39,19:15,19:42,20:15,20:48 255 | 9/12/2008,05:08,05:41,06:13,06:40,19:14,19:41,20:13,20:46 256 | 9/13/2008,05:09,05:42,06:14,06:41,19:12,19:39,20:11,20:44 257 | 9/14/2008,05:10,05:43,06:15,06:42,19:10,19:37,20:09,20:42 258 | 9/15/2008,05:11,05:44,06:16,06:43,19:09,19:36,20:08,20:40 259 | 9/16/2008,05:12,05:45,06:17,06:44,19:07,19:34,20:06,20:38 260 | 9/17/2008,05:13,05:46,06:18,06:45,19:05,19:32,20:04,20:37 261 | 9/18/2008,05:14,05:47,06:19,06:46,19:04,19:31,20:02,20:35 262 | 9/19/2008,05:15,05:48,06:20,06:47,19:02,19:29,20:01,20:33 263 | 9/20/2008,05:17,05:49,06:21,06:48,19:00,19:27,19:59,20:31 264 | 9/21/2008,05:18,05:50,06:22,06:49,18:59,19:26,19:57,20:29 265 | 9/22/2008,05:19,05:51,06:22,06:49,18:57,19:24,19:56,20:28 266 | 9/23/2008,05:20,05:52,06:23,06:50,18:55,19:22,19:54,20:26 267 | 9/24/2008,05:21,05:53,06:24,06:51,18:54,19:21,19:52,20:24 268 | 9/25/2008,05:22,05:54,06:25,06:52,18:52,19:19,19:50,20:22 269 | 9/26/2008,05:23,05:55,06:26,06:53,18:50,19:17,19:49,20:21 270 | 9/27/2008,05:24,05:56,06:27,06:54,18:49,19:16,19:47,20:19 271 | 9/28/2008,05:25,05:57,06:28,06:55,18:47,19:14,19:45,20:17 272 | 9/29/2008,05:26,05:58,06:29,06:56,18:45,19:12,19:44,20:16 273 | 9/30/2008,05:27,05:59,06:30,06:57,18:44,19:11,19:42,20:14 274 | 10/01/2008,05:28,06:00,06:31,06:58,18:42,19:09,19:41,20:12 275 | 10/02/2008,05:29,06:01,06:32,06:59,18:41,19:08,19:39,20:11 276 | 10/03/2008,05:30,06:02,06:33,07:00,18:39,19:06,19:37,20:09 277 | 10/04/2008,05:31,06:03,06:34,07:01,18:37,19:04,19:36,20:07 278 | 10/05/2008,05:32,06:04,06:35,07:02,18:36,19:03,19:34,20:06 279 | 10/06/2008,05:33,06:05,06:36,07:03,18:34,19:01,19:33,20:04 280 | 10/07/2008,05:34,06:06,06:37,07:04,18:33,19:00,19:31,20:02 281 | 10/08/2008,05:35,06:07,06:38,07:05,18:31,18:58,19:29,20:01 282 | 10/09/2008,05:36,06:08,06:39,07:06,18:29,18:57,19:28,19:59 283 | 10/10/2008,05:37,06:09,06:40,07:07,18:28,18:55,19:26,19:58 284 | 10/11/2008,05:38,06:10,06:41,07:08,18:26,18:54,19:25,19:56 285 | 10/12/2008,05:39,06:11,06:42,07:09,18:25,18:52,19:23,19:55 286 | 10/13/2008,05:40,06:12,06:43,07:10,18:23,18:51,19:22,19:53 287 | 10/14/2008,05:41,06:13,06:44,07:11,18:22,18:49,19:21,19:52 288 | 10/15/2008,05:42,06:14,06:45,07:13,18:20,18:48,19:19,19:50 289 | 10/16/2008,05:43,06:15,06:46,07:14,18:19,18:46,19:18,19:49 290 | 10/17/2008,05:44,06:16,06:47,07:15,18:17,18:45,19:16,19:48 291 | 10/18/2008,05:45,06:17,06:48,07:16,18:16,18:43,19:15,19:46 292 | 10/19/2008,05:46,06:18,06:49,07:17,18:15,18:42,19:14,19:45 293 | 10/20/2008,05:47,06:19,06:50,07:18,18:13,18:41,19:12,19:44 294 | 10/21/2008,05:48,06:20,06:51,07:19,18:12,18:39,19:11,19:42 295 | 10/22/2008,05:49,06:21,06:52,07:20,18:10,18:38,19:10,19:41 296 | 10/23/2008,05:50,06:22,06:54,07:21,18:09,18:37,19:08,19:40 297 | 10/24/2008,05:51,06:23,06:55,07:22,18:08,18:35,19:07,19:39 298 | 10/25/2008,05:52,06:24,06:56,07:23,18:06,18:34,19:06,19:37 299 | 10/26/2008,05:53,06:25,06:57,07:24,18:05,18:33,19:05,19:36 300 | 10/27/2008,05:54,06:26,06:58,07:26,18:04,18:32,19:03,19:35 301 | 10/28/2008,05:55,06:27,06:59,07:27,18:03,18:30,19:02,19:34 302 | 10/29/2008,05:56,06:28,07:00,07:28,18:01,18:29,19:01,19:33 303 | 10/30/2008,05:57,06:29,07:01,07:29,18:00,18:28,19:00,19:32 304 | 10/31/2008,05:58,06:30,07:02,07:30,17:59,18:27,18:59,19:31 305 | 11/01/2008,06:00,06:31,07:03,07:31,17:58,18:26,18:58,19:30 306 | 11/03/2008,05:02,05:33,06:05,06:34,16:55,17:24,17:56,18:28 307 | 11/04/2008,05:03,05:34,06:06,06:35,16:54,17:23,17:55,18:27 308 | 11/05/2008,05:04,05:35,06:07,06:36,16:53,17:22,17:54,18:26 309 | 11/06/2008,05:05,05:36,06:09,06:37,16:52,17:21,17:53,18:25 310 | 11/07/2008,05:06,05:37,06:10,06:38,16:51,17:20,17:52,18:24 311 | 11/08/2008,05:07,05:38,06:11,06:39,16:50,17:19,17:51,18:23 312 | 11/09/2008,05:08,05:39,06:12,06:40,16:49,17:18,17:50,18:22 313 | 11/10/2008,05:09,05:40,06:13,06:42,16:48,17:17,17:50,18:22 314 | 11/11/2008,05:09,05:41,06:14,06:43,16:47,17:16,17:49,18:21 315 | 11/12/2008,05:10,05:42,06:15,06:44,16:47,17:15,17:48,18:20 316 | 11/13/2008,05:11,05:43,06:16,06:45,16:46,17:15,17:47,18:19 317 | 11/14/2008,05:12,05:44,06:17,06:46,16:45,17:14,17:47,18:19 318 | 11/15/2008,05:13,05:46,06:18,06:47,16:44,17:13,17:46,18:18 319 | 11/16/2008,05:14,05:47,06:19,06:48,16:43,17:13,17:45,18:18 320 | 11/17/2008,05:15,05:48,06:20,06:50,16:43,17:12,17:45,18:17 321 | 11/18/2008,05:16,05:49,06:21,06:51,16:42,17:11,17:44,18:16 322 | 11/19/2008,05:17,05:50,06:23,06:52,16:41,17:11,17:44,18:16 323 | 11/20/2008,05:18,05:51,06:24,06:53,16:41,17:10,17:43,18:16 324 | 11/21/2008,05:19,05:52,06:25,06:54,16:40,17:10,17:43,18:15 325 | 11/22/2008,05:20,05:53,06:26,06:55,16:40,17:09,17:42,18:15 326 | 11/23/2008,05:21,05:54,06:27,06:56,16:39,17:09,17:42,18:14 327 | 11/24/2008,05:22,05:54,06:28,06:57,16:39,17:08,17:42,18:14 328 | 11/25/2008,05:23,05:55,06:29,06:58,16:38,17:08,17:41,18:14 329 | 11/26/2008,05:24,05:56,06:30,07:00,16:38,17:08,17:41,18:13 330 | 11/27/2008,05:25,05:57,06:31,07:01,16:37,17:07,17:41,18:13 331 | 11/28/2008,05:26,05:58,06:32,07:02,16:37,17:07,17:40,18:13 332 | 11/29/2008,05:27,05:59,06:33,07:03,16:37,17:07,17:40,18:13 333 | 11/30/2008,05:27,06:00,06:34,07:04,16:36,17:07,17:40,18:13 334 | 12/01/2008,05:28,06:01,06:35,07:05,16:36,17:06,17:40,18:13 335 | 12/02/2008,05:29,06:02,06:36,07:06,16:36,17:06,17:40,18:13 336 | 12/03/2008,05:30,06:03,06:36,07:07,16:36,17:06,17:40,18:13 337 | 12/04/2008,05:31,06:04,06:37,07:08,16:36,17:06,17:40,18:13 338 | 12/05/2008,05:32,06:04,06:38,07:09,16:36,17:06,17:40,18:13 339 | 12/06/2008,05:33,06:05,06:39,07:09,16:36,17:06,17:40,18:13 340 | 12/07/2008,05:33,06:06,06:40,07:10,16:36,17:06,17:40,18:13 341 | 12/08/2008,05:34,06:07,06:41,07:11,16:36,17:06,17:40,18:13 342 | 12/09/2008,05:35,06:08,06:42,07:12,16:36,17:06,17:40,18:13 343 | 12/10/2008,05:36,06:08,06:42,07:13,16:36,17:06,17:40,18:13 344 | 12/11/2008,05:36,06:09,06:43,07:14,16:36,17:07,17:41,18:13 345 | 12/12/2008,05:37,06:10,06:44,07:14,16:36,17:07,17:41,18:14 346 | 12/13/2008,05:38,06:11,06:45,07:15,16:37,17:07,17:41,18:14 347 | 12/14/2008,05:38,06:11,06:45,07:16,16:37,17:07,17:41,18:14 348 | 12/15/2008,05:39,06:12,06:46,07:17,16:37,17:08,17:42,18:15 349 | 12/16/2008,05:40,06:13,06:47,07:17,16:37,17:08,17:42,18:15 350 | 12/17/2008,05:40,06:13,06:47,07:18,16:38,17:08,17:42,18:15 351 | 12/18/2008,05:41,06:14,06:48,07:18,16:38,17:09,17:43,18:16 352 | 12/19/2008,05:41,06:14,06:48,07:19,16:39,17:09,17:43,18:16 353 | 12/20/2008,05:42,06:15,06:49,07:20,16:39,17:10,17:44,18:17 354 | 12/21/2008,05:42,06:15,06:49,07:20,16:40,17:10,17:44,18:17 355 | 12/22/2008,05:43,06:16,06:50,07:20,16:40,17:11,17:45,18:18 356 | 12/23/2008,05:43,06:16,06:50,07:21,16:41,17:11,17:45,18:18 357 | 12/24/2008,05:44,06:17,06:51,07:21,16:41,17:12,17:46,18:19 358 | 12/25/2008,05:44,06:17,06:51,07:22,16:42,17:13,17:47,18:20 359 | 12/26/2008,05:44,06:17,06:51,07:22,16:43,17:13,17:47,18:20 360 | 12/27/2008,05:45,06:18,06:52,07:22,16:43,17:14,17:48,18:21 361 | 12/28/2008,05:45,06:18,06:52,07:23,16:44,17:15,17:49,18:22 362 | 12/29/2008,05:45,06:18,06:52,07:23,16:45,17:15,17:49,18:22 363 | 12/30/2008,05:46,06:19,06:53,07:23,16:46,17:16,17:50,18:23 364 | 12/31/2008,05:46,06:19,06:53,07:23,16:46,17:17,17:51,18:24 365 | -------------------------------------------------------------------------------- /test/bulkdatatest.rb: -------------------------------------------------------------------------------- 1 | require '../lib/solareventcalculator' 2 | 3 | describe SolarEventCalculator, "Test the sunset algorithm" do 4 | 5 | it "returns correct sunrise/sunset data over a year" do 6 | Dir.glob("*.txt") do | dataFileName | 7 | puts dataFileName 8 | 9 | nameParts = dataFileName.split('#') 10 | timeZone = nameParts[1].split('.')[0].sub!('-', '/') 11 | latString = nameParts[0].split('-')[0].sub!('_', '.') 12 | longString = nameParts[0].split('-')[1].sub!('_', '.') 13 | 14 | latitude = BigDecimal.new(latString.chop) 15 | longitude = BigDecimal.new(longString.chop) 16 | if latString.end_with?('S') 17 | latitude = BigDecimal.new("0") - latitude 18 | end 19 | 20 | if longString.end_with?('W') 21 | longitude = BigDecimal.new("0") - longitude 22 | end 23 | 24 | tz = TZInfo::Timezone.get(timeZone) 25 | dataFile = File.open(dataFileName, 'r') 26 | 27 | dataFile.readlines.each do |dataLine| 28 | parts = dataLine.split(',') 29 | date = Date.parse(parts.shift) 30 | calc = SolarEventCalculator.new(date, BigDecimal.new("39.9937"), BigDecimal.new("-75.7850")) 31 | 32 | time = parts[0].split(':') 33 | expectedAstronomicalRise = put_in_timezone(date, time[0], time[1], timeZone) 34 | calc.compute_astronomical_sunrise(timeZone).should be_close_to(expectedAstronomicalRise, "Astronomical Rise") 35 | 36 | time = parts[1].split(':') 37 | expectedNauticalRise = put_in_timezone(date, time[0], time[1], timeZone) 38 | calc.compute_nautical_sunrise(timeZone).should be_close_to(expectedNauticalRise, "Nautical Rise") 39 | 40 | time = parts[2].split(':') 41 | expectedCivilRise = put_in_timezone(date, time[0], time[1], timeZone) 42 | calc.compute_civil_sunrise(timeZone).should be_close_to(expectedCivilRise, "Civil Rise") 43 | 44 | time = parts[3].split(':') 45 | expectedOfficialRise = put_in_timezone(date, time[0], time[1], timeZone) 46 | calc.compute_official_sunrise(timeZone).should be_close_to(expectedOfficialRise, "Official Rise") 47 | 48 | time = parts[4].split(':') 49 | expectedOfficialSet = put_in_timezone(date, time[0], time[1], timeZone) 50 | calc.compute_official_sunset(timeZone).should be_close_to(expectedOfficialSet, "Official Set") 51 | 52 | time = parts[5].split(':') 53 | expectedCivilSet = put_in_timezone(date, time[0], time[1], timeZone) 54 | calc.compute_civil_sunset(timeZone).should be_close_to(expectedCivilSet, "Civil Set") 55 | 56 | time = parts[6].split(':') 57 | expectedNauticalSet = put_in_timezone(date, time[0], time[1], timeZone) 58 | calc.compute_nautical_sunset(timeZone).should be_close_to(expectedNauticalSet, "Nautical Set") 59 | 60 | time = parts[7].split(':') 61 | expectedAstronomicalSet = put_in_timezone(date, time[0], time[1], timeZone) 62 | calc.compute_astronomical_sunset(timeZone).should be_close_to(expectedAstronomicalSet, "Astronomical Set") 63 | end 64 | end 65 | end 66 | end 67 | 68 | def put_in_timezone(date, hours, minutes, timezone) 69 | if hours.to_i == 99 70 | return nil 71 | end 72 | offset = get_utc_offset(date, timezone) 73 | 74 | timeInZone = DateTime.parse("#{date.strftime}T#{hours}:#{minutes}:00#{offset}") 75 | timeInZone 76 | end 77 | 78 | def get_utc_offset(date, timezone) 79 | tz = TZInfo::Timezone.get(timezone) 80 | noonUTC = Time.utc(date.year,date.mon, date.mday, 12, 0) 81 | offset = ((tz.utc_to_local(noonUTC) - noonUTC) / 60 / 60).to_i 82 | offset = (offset > 0) ? "+" + offset.to_s : offset.to_s 83 | end 84 | 85 | Spec::Matchers.define :be_close_to do |expected, type| 86 | match do |actual| 87 | if expected != nil && actual != nil 88 | (expected - 61) < actual && actual < (expected + 61) 89 | else 90 | expected == nil && actual == nil 91 | end 92 | end 93 | 94 | failure_message_for_should do |actual| 95 | " actual #{type} #{actual} is outside +-1 minute of expected #{type} #{expected}" 96 | end 97 | 98 | failure_message_for_should_not do |actual| 99 | 100 | end 101 | 102 | description do 103 | " tests whether the actual time is within a minute of the expected time" 104 | end 105 | end -------------------------------------------------------------------------------- /test/sunrisetest.rb: -------------------------------------------------------------------------------- 1 | require '../lib/solareventcalculator' 2 | 3 | describe SolarEventCalculator, "test the math for home" do 4 | 5 | before do 6 | @date = Date.parse('2008-11-01') #01 November 2008 7 | @calc = SolarEventCalculator.new(@date, BigDecimal.new("39.9537"), BigDecimal.new("-75.7850")) 8 | end 9 | 10 | it "returns correct longitude hour" do 11 | @calc.compute_lnghour.should eql(BigDecimal.new("-5.0523")) 12 | end 13 | 14 | it "returns correct longitude hour" do 15 | @calc.compute_longitude_hour(true).should eql(BigDecimal.new("306.4605")) 16 | end 17 | 18 | it "returns correct sunrise mean anomaly" do 19 | @calc.compute_sun_mean_anomaly(BigDecimal.new("306.4605")).should eql(BigDecimal.new("298.7585")) 20 | end 21 | 22 | it "returns correct sunrise's sun true longitude" do 23 | @calc.compute_sun_true_longitude(BigDecimal.new("298.7585")).should eql(BigDecimal.new("219.6960")) 24 | end 25 | 26 | it "returns correct sunrise's right ascension" do 27 | @calc.compute_right_ascension(BigDecimal.new("219.6960")).should eql(BigDecimal.new("37.2977")) 28 | end 29 | 30 | it "returns correct sunrise's right ascension quadrant" do 31 | @calc.put_ra_in_correct_quadrant(BigDecimal.new("219.6960")).should eql(BigDecimal.new("14.4865")) 32 | end 33 | 34 | it "returns correct sunrise sin sun declination" do 35 | @calc.compute_sin_sun_declination(BigDecimal.new("219.6960")).should eql(BigDecimal.new("-0.2541")) 36 | end 37 | 38 | it "returns correct sunrise cosine sun declination" do 39 | @calc.compute_cosine_sun_declination(BigDecimal.new("-0.2541")).should eql(BigDecimal.new("0.9672")) 40 | end 41 | 42 | it "returns correct sunrise cosine sun local hour" do 43 | @calc.compute_cosine_sun_local_hour(BigDecimal.new("219.6960"), 96).should eql(BigDecimal.new("0.0791")) 44 | end 45 | 46 | it "returns correct sunrise local hour angle" do 47 | @calc.compute_local_hour_angle(BigDecimal.new("0.0791"), true).should eql(BigDecimal.new("18.3025")) 48 | end 49 | 50 | it "returns correct sunrise local mean time" do 51 | trueLong = BigDecimal.new("219.6960") 52 | longHour = BigDecimal.new("-5.0523") 53 | localHour = BigDecimal.new("18.3025") 54 | t = BigDecimal.new("306.4605") 55 | @calc.compute_local_mean_time(trueLong, longHour, t, localHour).should eql(BigDecimal.new("11.0818")) 56 | end 57 | 58 | it "returns correct UTC civil sunrise time" do 59 | @calc.compute_utc_civil_sunrise.should eql(DateTime.parse("#{@date.strftime}T11:04:00-00:00")) 60 | end 61 | 62 | it "returns correct UTC official sunrise time" do 63 | @calc.compute_utc_official_sunrise.should eql(DateTime.parse("#{@date.strftime}T11:33:00-00:00")) 64 | end 65 | 66 | it "returns correct UTC nautical sunrise time" do 67 | @calc.compute_utc_nautical_sunrise.should eql(DateTime.parse("#{@date.strftime}T10:32:00-00:00")) 68 | end 69 | 70 | it "returns correct UTC astronomical sunrise time" do 71 | @calc.compute_utc_astronomical_sunrise.should eql(DateTime.parse("#{@date.strftime}T10:01:00-00:00")) 72 | end 73 | 74 | it "returns correct 'America/New_York' official sunrise time" do 75 | @calc.compute_official_sunrise('America/New_York').should eql(DateTime.parse("#{@date.strftime}T07:33:00-04:00")) 76 | end 77 | 78 | it "returns correct 'America/New_York' civil sunrise time" do 79 | @calc.compute_civil_sunrise('America/New_York').should eql(DateTime.parse("#{@date.strftime}T07:04:00-04:00")) 80 | end 81 | 82 | it "returns correct 'America/New_York' nautical sunrise time" do 83 | @calc.compute_nautical_sunrise('America/New_York').should eql(DateTime.parse("#{@date.strftime}T06:32:00-04:00")) 84 | end 85 | 86 | it "returns correct 'America/New_York' astronomical sunrise time" do 87 | @calc.compute_astronomical_sunrise('America/New_York').should eql(DateTime.parse("#{@date.strftime}T06:01:00-04:00")) 88 | end 89 | end 90 | 91 | describe SolarEventCalculator, "test the math for areas where there could be no rise/set" do 92 | 93 | it "returns correct time" do 94 | date = Date.parse('2008-04-25') #25 April 2008 95 | calc = SolarEventCalculator.new(date, BigDecimal.new("64.8378"), BigDecimal.new("-147.7164")) 96 | calc.compute_utc_nautical_sunrise.should eql(nil) 97 | end 98 | 99 | it "returns correct time" do 100 | date = Date.parse('2008-04-25') #25 April 2008 101 | calc = SolarEventCalculator.new(date, BigDecimal.new("64.8378"), BigDecimal.new("-147.7164")) 102 | calc.compute_utc_nautical_sunrise.should eql(nil) 103 | end 104 | end 105 | -------------------------------------------------------------------------------- /test/sunsettest.rb: -------------------------------------------------------------------------------- 1 | require '../lib/solareventcalculator' 2 | 3 | describe SolarEventCalculator, "Test the sunset algorithm" do 4 | 5 | before do 6 | @date = Date.parse('2008-11-01') #01 November 2008 (DST) 7 | @calc = SolarEventCalculator.new(@date, BigDecimal.new("39.9537"), BigDecimal.new("-75.7850")) 8 | end 9 | 10 | it "returns correct longitude hour" do 11 | @calc.compute_lnghour.should eql(BigDecimal.new("-5.0523")) 12 | end 13 | 14 | it "returns correct longitude hour" do 15 | @calc.compute_longitude_hour(false).should eql(BigDecimal.new("306.9605")) 16 | end 17 | 18 | it "returns correct sunset mean anomaly" do 19 | @calc.compute_sun_mean_anomaly(BigDecimal.new("306.9605")).should eql(BigDecimal.new("299.2513")) 20 | end 21 | 22 | it "returns correct sunset's sun true longitude" do 23 | @calc.compute_sun_true_longitude(BigDecimal.new("299.2513")).should eql(BigDecimal.new("220.1966")) 24 | end 25 | 26 | it "returns correct sunset's right ascension" do 27 | @calc.compute_right_ascension(BigDecimal.new("220.1966")).should eql(BigDecimal.new("37.7890")) 28 | end 29 | 30 | it "returns correct sunset's right ascension quadrant" do 31 | @calc.put_ra_in_correct_quadrant(BigDecimal.new("220.1966")).should eql(BigDecimal.new("14.5193")) 32 | end 33 | 34 | it "returns correct sunset sin sun declination" do 35 | @calc.compute_sin_sun_declination(BigDecimal.new("220.1966")).should eql(BigDecimal.new("-0.2568")) 36 | end 37 | 38 | it "returns correct sunset cosine sun declination" do 39 | @calc.compute_cosine_sun_declination(BigDecimal.new("-0.2541")).should eql(BigDecimal.new("0.9672")) 40 | end 41 | 42 | it "returns correct sunset cosine sun local hour" do 43 | @calc.compute_cosine_sun_local_hour(BigDecimal.new("220.1966"), 96).should eql(BigDecimal.new("0.0815")) 44 | end 45 | 46 | it "returns correct sunset local hour angle" do 47 | @calc.compute_local_hour_angle(BigDecimal.new("0.0815"), false).should eql(BigDecimal.new("5.6883")) 48 | end 49 | 50 | it "returns correct sunset local mean time" do 51 | trueLong = BigDecimal.new("220.1966") 52 | longHour = BigDecimal.new("-5.0523") 53 | localHour = BigDecimal.new("5.6883") 54 | t = BigDecimal.new("306.9605") 55 | @calc.compute_local_mean_time(trueLong, longHour, t, localHour).should eql(BigDecimal.new("22.4675")) 56 | end 57 | 58 | it "returns correct UTC civil sunset time" do 59 | @calc.compute_utc_civil_sunset.should eql(DateTime.parse("#{@date.strftime}T22:28:00-00:00")) 60 | end 61 | 62 | it "returns correct UTC official sunset time" do 63 | @calc.compute_utc_official_sunset.should eql(DateTime.parse("#{@date.strftime}T21:59:00-00:00")) 64 | end 65 | 66 | it "returns correct UTC nautical sunset time" do 67 | @calc.compute_utc_nautical_sunset.should eql(DateTime.parse("#{@date.strftime}T23:00:00-00:00")) 68 | end 69 | 70 | it "returns correct UTC astronomical sunset time" do 71 | @calc.compute_utc_astronomical_sunset.should eql(DateTime.parse("#{@date.strftime}T23:31:00-00:00")) 72 | end 73 | 74 | it "returns correct 'America/New_York' offical sunset time" do 75 | @calc.compute_official_sunset("America/New_York").should eql(DateTime.parse("#{@date.strftime}T17:59:00-04:00")) 76 | end 77 | 78 | it "returns correct 'America/New_York' civil sunset time" do 79 | @calc.compute_civil_sunset("America/New_York").should eql(DateTime.parse("#{@date.strftime}T18:28:00-04:00")) 80 | end 81 | 82 | it "returns correct 'America/New_York' nautical sunset time" do 83 | @calc.compute_nautical_sunset("America/New_York").should eql(DateTime.parse("#{@date.strftime}T19:00:00-04:00")) 84 | end 85 | 86 | it "returns correct 'America/New_York' astronomical sunset time" do 87 | @calc.compute_astronomical_sunset("America/New_York").should eql(DateTime.parse("#{@date.strftime}T19:31:00-04:00")) 88 | end 89 | # DateTime.parse("#{@date.strftime}T06:32:00-04:00") 90 | end 91 | 92 | describe SolarEventCalculator, "test the math for areas where the sun doesn't set" do 93 | 94 | it "returns correct time" do 95 | date = Date.parse('2008-04-25') #25 April 2008 96 | calc = SolarEventCalculator.new(date, BigDecimal.new("64.8378"), BigDecimal.new("-147.7164")) 97 | calc.compute_utc_nautical_sunset.should eql(nil) 98 | end 99 | 100 | it "returns correct time" do 101 | date = Date.parse('2008-04-25') #25 April 2008 102 | calc = SolarEventCalculator.new(date, BigDecimal.new("64.8378"), BigDecimal.new("-147.7164")) 103 | calc.compute_utc_nautical_sunset.should eql(nil) 104 | end 105 | end 106 | --------------------------------------------------------------------------------