bar-harbor-2013.xml 264 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306
  1. <?xml version="1.0" encoding="ISO-8859-1" ?>
  2. <datainfo>
  3. <origin>NOAA/NOS/CO-OPS</origin>
  4. <disclaimer>Disclaimer: These data are based upon the latest information available as of the date of your request, and may differ from the published tide tables. </disclaimer>
  5. <producttype> Annual Tide Prediction </producttype>
  6. <stationname>BAR HARBOR</stationname>
  7. <state>ME</state>
  8. <stationid>8413320</stationid>
  9. <stationtype>Harmonic</stationtype>
  10. <BeginDate>20130101 12:00AM</BeginDate>
  11. <EndDate>20131231 11:59PM</EndDate>
  12. <dataUnits>feet(ft) also in centimeters(cm)</dataUnits>
  13. <Timezone>LST/LDT</Timezone>
  14. <Datum>MLLW</Datum>
  15. <IntervalType>High/Low Tide Predictions</IntervalType>
  16. <data>
  17. <item>
  18. <date>2013/01/01</date>
  19. <day>Tue</day>
  20. <time>12:50 AM</time>
  21. <predictions_in_ft>10.5</predictions_in_ft>
  22. <predictions_in_cm>320</predictions_in_cm>
  23. <highlow>H</highlow>
  24. </item>
  25. <item>
  26. <date>2013/01/01</date>
  27. <day>Tue</day>
  28. <time>06:52 AM</time>
  29. <predictions_in_ft>1.0</predictions_in_ft>
  30. <predictions_in_cm>30</predictions_in_cm>
  31. <highlow>L</highlow>
  32. </item>
  33. <item>
  34. <date>2013/01/01</date>
  35. <day>Tue</day>
  36. <time>12:59 PM</time>
  37. <predictions_in_ft>11.1</predictions_in_ft>
  38. <predictions_in_cm>338</predictions_in_cm>
  39. <highlow>H</highlow>
  40. </item>
  41. <item>
  42. <date>2013/01/01</date>
  43. <day>Tue</day>
  44. <time>07:18 PM</time>
  45. <predictions_in_ft>0.1</predictions_in_ft>
  46. <predictions_in_cm>3</predictions_in_cm>
  47. <highlow>L</highlow>
  48. </item>
  49. <item>
  50. <date>2013/01/02</date>
  51. <day>Wed</day>
  52. <time>01:28 AM</time>
  53. <predictions_in_ft>10.6</predictions_in_ft>
  54. <predictions_in_cm>323</predictions_in_cm>
  55. <highlow>H</highlow>
  56. </item>
  57. <item>
  58. <date>2013/01/02</date>
  59. <day>Wed</day>
  60. <time>07:34 AM</time>
  61. <predictions_in_ft>1.0</predictions_in_ft>
  62. <predictions_in_cm>30</predictions_in_cm>
  63. <highlow>L</highlow>
  64. </item>
  65. <item>
  66. <date>2013/01/02</date>
  67. <day>Wed</day>
  68. <time>01:41 PM</time>
  69. <predictions_in_ft>11.0</predictions_in_ft>
  70. <predictions_in_cm>335</predictions_in_cm>
  71. <highlow>H</highlow>
  72. </item>
  73. <item>
  74. <date>2013/01/02</date>
  75. <day>Wed</day>
  76. <time>07:58 PM</time>
  77. <predictions_in_ft>0.2</predictions_in_ft>
  78. <predictions_in_cm>6</predictions_in_cm>
  79. <highlow>L</highlow>
  80. </item>
  81. <item>
  82. <date>2013/01/03</date>
  83. <day>Thu</day>
  84. <time>02:10 AM</time>
  85. <predictions_in_ft>10.7</predictions_in_ft>
  86. <predictions_in_cm>326</predictions_in_cm>
  87. <highlow>H</highlow>
  88. </item>
  89. <item>
  90. <date>2013/01/03</date>
  91. <day>Thu</day>
  92. <time>08:19 AM</time>
  93. <predictions_in_ft>0.9</predictions_in_ft>
  94. <predictions_in_cm>27</predictions_in_cm>
  95. <highlow>L</highlow>
  96. </item>
  97. <item>
  98. <date>2013/01/03</date>
  99. <day>Thu</day>
  100. <time>02:27 PM</time>
  101. <predictions_in_ft>10.8</predictions_in_ft>
  102. <predictions_in_cm>329</predictions_in_cm>
  103. <highlow>H</highlow>
  104. </item>
  105. <item>
  106. <date>2013/01/03</date>
  107. <day>Thu</day>
  108. <time>08:43 PM</time>
  109. <predictions_in_ft>0.4</predictions_in_ft>
  110. <predictions_in_cm>12</predictions_in_cm>
  111. <highlow>L</highlow>
  112. </item>
  113. <item>
  114. <date>2013/01/04</date>
  115. <day>Fri</day>
  116. <time>02:57 AM</time>
  117. <predictions_in_ft>10.8</predictions_in_ft>
  118. <predictions_in_cm>329</predictions_in_cm>
  119. <highlow>H</highlow>
  120. </item>
  121. <item>
  122. <date>2013/01/04</date>
  123. <day>Fri</day>
  124. <time>09:10 AM</time>
  125. <predictions_in_ft>0.8</predictions_in_ft>
  126. <predictions_in_cm>24</predictions_in_cm>
  127. <highlow>L</highlow>
  128. </item>
  129. <item>
  130. <date>2013/01/04</date>
  131. <day>Fri</day>
  132. <time>03:18 PM</time>
  133. <predictions_in_ft>10.6</predictions_in_ft>
  134. <predictions_in_cm>323</predictions_in_cm>
  135. <highlow>H</highlow>
  136. </item>
  137. <item>
  138. <date>2013/01/04</date>
  139. <day>Fri</day>
  140. <time>09:32 PM</time>
  141. <predictions_in_ft>0.5</predictions_in_ft>
  142. <predictions_in_cm>15</predictions_in_cm>
  143. <highlow>L</highlow>
  144. </item>
  145. <item>
  146. <date>2013/01/05</date>
  147. <day>Sat</day>
  148. <time>03:49 AM</time>
  149. <predictions_in_ft>11.0</predictions_in_ft>
  150. <predictions_in_cm>335</predictions_in_cm>
  151. <highlow>H</highlow>
  152. </item>
  153. <item>
  154. <date>2013/01/05</date>
  155. <day>Sat</day>
  156. <time>10:08 AM</time>
  157. <predictions_in_ft>0.7</predictions_in_ft>
  158. <predictions_in_cm>21</predictions_in_cm>
  159. <highlow>L</highlow>
  160. </item>
  161. <item>
  162. <date>2013/01/05</date>
  163. <day>Sat</day>
  164. <time>04:16 PM</time>
  165. <predictions_in_ft>10.4</predictions_in_ft>
  166. <predictions_in_cm>317</predictions_in_cm>
  167. <highlow>H</highlow>
  168. </item>
  169. <item>
  170. <date>2013/01/05</date>
  171. <day>Sat</day>
  172. <time>10:27 PM</time>
  173. <predictions_in_ft>0.6</predictions_in_ft>
  174. <predictions_in_cm>18</predictions_in_cm>
  175. <highlow>L</highlow>
  176. </item>
  177. <item>
  178. <date>2013/01/06</date>
  179. <day>Sun</day>
  180. <time>04:46 AM</time>
  181. <predictions_in_ft>11.2</predictions_in_ft>
  182. <predictions_in_cm>341</predictions_in_cm>
  183. <highlow>H</highlow>
  184. </item>
  185. <item>
  186. <date>2013/01/06</date>
  187. <day>Sun</day>
  188. <time>11:10 AM</time>
  189. <predictions_in_ft>0.5</predictions_in_ft>
  190. <predictions_in_cm>15</predictions_in_cm>
  191. <highlow>L</highlow>
  192. </item>
  193. <item>
  194. <date>2013/01/06</date>
  195. <day>Sun</day>
  196. <time>05:19 PM</time>
  197. <predictions_in_ft>10.3</predictions_in_ft>
  198. <predictions_in_cm>314</predictions_in_cm>
  199. <highlow>H</highlow>
  200. </item>
  201. <item>
  202. <date>2013/01/06</date>
  203. <day>Sun</day>
  204. <time>11:28 PM</time>
  205. <predictions_in_ft>0.6</predictions_in_ft>
  206. <predictions_in_cm>18</predictions_in_cm>
  207. <highlow>L</highlow>
  208. </item>
  209. <item>
  210. <date>2013/01/07</date>
  211. <day>Mon</day>
  212. <time>05:47 AM</time>
  213. <predictions_in_ft>11.5</predictions_in_ft>
  214. <predictions_in_cm>351</predictions_in_cm>
  215. <highlow>H</highlow>
  216. </item>
  217. <item>
  218. <date>2013/01/07</date>
  219. <day>Mon</day>
  220. <time>12:15 PM</time>
  221. <predictions_in_ft>0.1</predictions_in_ft>
  222. <predictions_in_cm>3</predictions_in_cm>
  223. <highlow>L</highlow>
  224. </item>
  225. <item>
  226. <date>2013/01/07</date>
  227. <day>Mon</day>
  228. <time>06:25 PM</time>
  229. <predictions_in_ft>10.4</predictions_in_ft>
  230. <predictions_in_cm>317</predictions_in_cm>
  231. <highlow>H</highlow>
  232. </item>
  233. <item>
  234. <date>2013/01/08</date>
  235. <day>Tue</day>
  236. <time>12:32 AM</time>
  237. <predictions_in_ft>0.5</predictions_in_ft>
  238. <predictions_in_cm>15</predictions_in_cm>
  239. <highlow>L</highlow>
  240. </item>
  241. <item>
  242. <date>2013/01/08</date>
  243. <day>Tue</day>
  244. <time>06:49 AM</time>
  245. <predictions_in_ft>12.0</predictions_in_ft>
  246. <predictions_in_cm>366</predictions_in_cm>
  247. <highlow>H</highlow>
  248. </item>
  249. <item>
  250. <date>2013/01/08</date>
  251. <day>Tue</day>
  252. <time>01:20 PM</time>
  253. <predictions_in_ft>-0.4</predictions_in_ft>
  254. <predictions_in_cm>-12</predictions_in_cm>
  255. <highlow>L</highlow>
  256. </item>
  257. <item>
  258. <date>2013/01/08</date>
  259. <day>Tue</day>
  260. <time>07:30 PM</time>
  261. <predictions_in_ft>10.7</predictions_in_ft>
  262. <predictions_in_cm>326</predictions_in_cm>
  263. <highlow>H</highlow>
  264. </item>
  265. <item>
  266. <date>2013/01/09</date>
  267. <day>Wed</day>
  268. <time>01:35 AM</time>
  269. <predictions_in_ft>0.2</predictions_in_ft>
  270. <predictions_in_cm>6</predictions_in_cm>
  271. <highlow>L</highlow>
  272. </item>
  273. <item>
  274. <date>2013/01/09</date>
  275. <day>Wed</day>
  276. <time>07:51 AM</time>
  277. <predictions_in_ft>12.4</predictions_in_ft>
  278. <predictions_in_cm>378</predictions_in_cm>
  279. <highlow>H</highlow>
  280. </item>
  281. <item>
  282. <date>2013/01/09</date>
  283. <day>Wed</day>
  284. <time>02:21 PM</time>
  285. <predictions_in_ft>-0.9</predictions_in_ft>
  286. <predictions_in_cm>-27</predictions_in_cm>
  287. <highlow>L</highlow>
  288. </item>
  289. <item>
  290. <date>2013/01/09</date>
  291. <day>Wed</day>
  292. <time>08:31 PM</time>
  293. <predictions_in_ft>11.1</predictions_in_ft>
  294. <predictions_in_cm>338</predictions_in_cm>
  295. <highlow>H</highlow>
  296. </item>
  297. <item>
  298. <date>2013/01/10</date>
  299. <day>Thu</day>
  300. <time>02:35 AM</time>
  301. <predictions_in_ft>-0.2</predictions_in_ft>
  302. <predictions_in_cm>-6</predictions_in_cm>
  303. <highlow>L</highlow>
  304. </item>
  305. <item>
  306. <date>2013/01/10</date>
  307. <day>Thu</day>
  308. <time>08:50 AM</time>
  309. <predictions_in_ft>12.9</predictions_in_ft>
  310. <predictions_in_cm>393</predictions_in_cm>
  311. <highlow>H</highlow>
  312. </item>
  313. <item>
  314. <date>2013/01/10</date>
  315. <day>Thu</day>
  316. <time>03:18 PM</time>
  317. <predictions_in_ft>-1.5</predictions_in_ft>
  318. <predictions_in_cm>-46</predictions_in_cm>
  319. <highlow>L</highlow>
  320. </item>
  321. <item>
  322. <date>2013/01/10</date>
  323. <day>Thu</day>
  324. <time>09:29 PM</time>
  325. <predictions_in_ft>11.6</predictions_in_ft>
  326. <predictions_in_cm>354</predictions_in_cm>
  327. <highlow>H</highlow>
  328. </item>
  329. <item>
  330. <date>2013/01/11</date>
  331. <day>Fri</day>
  332. <time>03:32 AM</time>
  333. <predictions_in_ft>-0.6</predictions_in_ft>
  334. <predictions_in_cm>-18</predictions_in_cm>
  335. <highlow>L</highlow>
  336. </item>
  337. <item>
  338. <date>2013/01/11</date>
  339. <day>Fri</day>
  340. <time>09:46 AM</time>
  341. <predictions_in_ft>13.3</predictions_in_ft>
  342. <predictions_in_cm>405</predictions_in_cm>
  343. <highlow>H</highlow>
  344. </item>
  345. <item>
  346. <date>2013/01/11</date>
  347. <day>Fri</day>
  348. <time>04:12 PM</time>
  349. <predictions_in_ft>-1.8</predictions_in_ft>
  350. <predictions_in_cm>-55</predictions_in_cm>
  351. <highlow>L</highlow>
  352. </item>
  353. <item>
  354. <date>2013/01/11</date>
  355. <day>Fri</day>
  356. <time>10:23 PM</time>
  357. <predictions_in_ft>12.0</predictions_in_ft>
  358. <predictions_in_cm>366</predictions_in_cm>
  359. <highlow>H</highlow>
  360. </item>
  361. <item>
  362. <date>2013/01/12</date>
  363. <day>Sat</day>
  364. <time>04:27 AM</time>
  365. <predictions_in_ft>-0.9</predictions_in_ft>
  366. <predictions_in_cm>-27</predictions_in_cm>
  367. <highlow>L</highlow>
  368. </item>
  369. <item>
  370. <date>2013/01/12</date>
  371. <day>Sat</day>
  372. <time>10:40 AM</time>
  373. <predictions_in_ft>13.4</predictions_in_ft>
  374. <predictions_in_cm>408</predictions_in_cm>
  375. <highlow>H</highlow>
  376. </item>
  377. <item>
  378. <date>2013/01/12</date>
  379. <day>Sat</day>
  380. <time>05:04 PM</time>
  381. <predictions_in_ft>-2.0</predictions_in_ft>
  382. <predictions_in_cm>-61</predictions_in_cm>
  383. <highlow>L</highlow>
  384. </item>
  385. <item>
  386. <date>2013/01/12</date>
  387. <day>Sat</day>
  388. <time>11:15 PM</time>
  389. <predictions_in_ft>12.2</predictions_in_ft>
  390. <predictions_in_cm>372</predictions_in_cm>
  391. <highlow>H</highlow>
  392. </item>
  393. <item>
  394. <date>2013/01/13</date>
  395. <day>Sun</day>
  396. <time>05:20 AM</time>
  397. <predictions_in_ft>-1.0</predictions_in_ft>
  398. <predictions_in_cm>-30</predictions_in_cm>
  399. <highlow>L</highlow>
  400. </item>
  401. <item>
  402. <date>2013/01/13</date>
  403. <day>Sun</day>
  404. <time>11:32 AM</time>
  405. <predictions_in_ft>13.3</predictions_in_ft>
  406. <predictions_in_cm>405</predictions_in_cm>
  407. <highlow>H</highlow>
  408. </item>
  409. <item>
  410. <date>2013/01/13</date>
  411. <day>Sun</day>
  412. <time>05:54 PM</time>
  413. <predictions_in_ft>-1.8</predictions_in_ft>
  414. <predictions_in_cm>-55</predictions_in_cm>
  415. <highlow>L</highlow>
  416. </item>
  417. <item>
  418. <date>2013/01/14</date>
  419. <day>Mon</day>
  420. <time>12:05 AM</time>
  421. <predictions_in_ft>12.2</predictions_in_ft>
  422. <predictions_in_cm>372</predictions_in_cm>
  423. <highlow>H</highlow>
  424. </item>
  425. <item>
  426. <date>2013/01/14</date>
  427. <day>Mon</day>
  428. <time>06:13 AM</time>
  429. <predictions_in_ft>-0.9</predictions_in_ft>
  430. <predictions_in_cm>-27</predictions_in_cm>
  431. <highlow>L</highlow>
  432. </item>
  433. <item>
  434. <date>2013/01/14</date>
  435. <day>Mon</day>
  436. <time>12:23 PM</time>
  437. <predictions_in_ft>12.9</predictions_in_ft>
  438. <predictions_in_cm>393</predictions_in_cm>
  439. <highlow>H</highlow>
  440. </item>
  441. <item>
  442. <date>2013/01/14</date>
  443. <day>Mon</day>
  444. <time>06:44 PM</time>
  445. <predictions_in_ft>-1.5</predictions_in_ft>
  446. <predictions_in_cm>-46</predictions_in_cm>
  447. <highlow>L</highlow>
  448. </item>
  449. <item>
  450. <date>2013/01/15</date>
  451. <day>Tue</day>
  452. <time>12:55 AM</time>
  453. <predictions_in_ft>12.0</predictions_in_ft>
  454. <predictions_in_cm>366</predictions_in_cm>
  455. <highlow>H</highlow>
  456. </item>
  457. <item>
  458. <date>2013/01/15</date>
  459. <day>Tue</day>
  460. <time>07:05 AM</time>
  461. <predictions_in_ft>-0.6</predictions_in_ft>
  462. <predictions_in_cm>-18</predictions_in_cm>
  463. <highlow>L</highlow>
  464. </item>
  465. <item>
  466. <date>2013/01/15</date>
  467. <day>Tue</day>
  468. <time>01:14 PM</time>
  469. <predictions_in_ft>12.3</predictions_in_ft>
  470. <predictions_in_cm>375</predictions_in_cm>
  471. <highlow>H</highlow>
  472. </item>
  473. <item>
  474. <date>2013/01/15</date>
  475. <day>Tue</day>
  476. <time>07:33 PM</time>
  477. <predictions_in_ft>-1.0</predictions_in_ft>
  478. <predictions_in_cm>-30</predictions_in_cm>
  479. <highlow>L</highlow>
  480. </item>
  481. <item>
  482. <date>2013/01/16</date>
  483. <day>Wed</day>
  484. <time>01:46 AM</time>
  485. <predictions_in_ft>11.7</predictions_in_ft>
  486. <predictions_in_cm>357</predictions_in_cm>
  487. <highlow>H</highlow>
  488. </item>
  489. <item>
  490. <date>2013/01/16</date>
  491. <day>Wed</day>
  492. <time>07:58 AM</time>
  493. <predictions_in_ft>-0.2</predictions_in_ft>
  494. <predictions_in_cm>-6</predictions_in_cm>
  495. <highlow>L</highlow>
  496. </item>
  497. <item>
  498. <date>2013/01/16</date>
  499. <day>Wed</day>
  500. <time>02:06 PM</time>
  501. <predictions_in_ft>11.6</predictions_in_ft>
  502. <predictions_in_cm>354</predictions_in_cm>
  503. <highlow>H</highlow>
  504. </item>
  505. <item>
  506. <date>2013/01/16</date>
  507. <day>Wed</day>
  508. <time>08:23 PM</time>
  509. <predictions_in_ft>-0.3</predictions_in_ft>
  510. <predictions_in_cm>-9</predictions_in_cm>
  511. <highlow>L</highlow>
  512. </item>
  513. <item>
  514. <date>2013/01/17</date>
  515. <day>Thu</day>
  516. <time>02:37 AM</time>
  517. <predictions_in_ft>11.4</predictions_in_ft>
  518. <predictions_in_cm>347</predictions_in_cm>
  519. <highlow>H</highlow>
  520. </item>
  521. <item>
  522. <date>2013/01/17</date>
  523. <day>Thu</day>
  524. <time>08:52 AM</time>
  525. <predictions_in_ft>0.3</predictions_in_ft>
  526. <predictions_in_cm>9</predictions_in_cm>
  527. <highlow>L</highlow>
  528. </item>
  529. <item>
  530. <date>2013/01/17</date>
  531. <day>Thu</day>
  532. <time>03:00 PM</time>
  533. <predictions_in_ft>10.9</predictions_in_ft>
  534. <predictions_in_cm>332</predictions_in_cm>
  535. <highlow>H</highlow>
  536. </item>
  537. <item>
  538. <date>2013/01/17</date>
  539. <day>Thu</day>
  540. <time>09:15 PM</time>
  541. <predictions_in_ft>0.3</predictions_in_ft>
  542. <predictions_in_cm>9</predictions_in_cm>
  543. <highlow>L</highlow>
  544. </item>
  545. <item>
  546. <date>2013/01/18</date>
  547. <day>Fri</day>
  548. <time>03:29 AM</time>
  549. <predictions_in_ft>11.0</predictions_in_ft>
  550. <predictions_in_cm>335</predictions_in_cm>
  551. <highlow>H</highlow>
  552. </item>
  553. <item>
  554. <date>2013/01/18</date>
  555. <day>Fri</day>
  556. <time>09:48 AM</time>
  557. <predictions_in_ft>0.7</predictions_in_ft>
  558. <predictions_in_cm>21</predictions_in_cm>
  559. <highlow>L</highlow>
  560. </item>
  561. <item>
  562. <date>2013/01/18</date>
  563. <day>Fri</day>
  564. <time>03:56 PM</time>
  565. <predictions_in_ft>10.2</predictions_in_ft>
  566. <predictions_in_cm>311</predictions_in_cm>
  567. <highlow>H</highlow>
  568. </item>
  569. <item>
  570. <date>2013/01/18</date>
  571. <day>Fri</day>
  572. <time>10:08 PM</time>
  573. <predictions_in_ft>0.9</predictions_in_ft>
  574. <predictions_in_cm>27</predictions_in_cm>
  575. <highlow>L</highlow>
  576. </item>
  577. <item>
  578. <date>2013/01/19</date>
  579. <day>Sat</day>
  580. <time>04:24 AM</time>
  581. <predictions_in_ft>10.6</predictions_in_ft>
  582. <predictions_in_cm>323</predictions_in_cm>
  583. <highlow>H</highlow>
  584. </item>
  585. <item>
  586. <date>2013/01/19</date>
  587. <day>Sat</day>
  588. <time>10:47 AM</time>
  589. <predictions_in_ft>1.1</predictions_in_ft>
  590. <predictions_in_cm>34</predictions_in_cm>
  591. <highlow>L</highlow>
  592. </item>
  593. <item>
  594. <date>2013/01/19</date>
  595. <day>Sat</day>
  596. <time>04:55 PM</time>
  597. <predictions_in_ft>9.7</predictions_in_ft>
  598. <predictions_in_cm>296</predictions_in_cm>
  599. <highlow>H</highlow>
  600. </item>
  601. <item>
  602. <date>2013/01/19</date>
  603. <day>Sat</day>
  604. <time>11:04 PM</time>
  605. <predictions_in_ft>1.4</predictions_in_ft>
  606. <predictions_in_cm>43</predictions_in_cm>
  607. <highlow>L</highlow>
  608. </item>
  609. <item>
  610. <date>2013/01/20</date>
  611. <day>Sun</day>
  612. <time>05:20 AM</time>
  613. <predictions_in_ft>10.4</predictions_in_ft>
  614. <predictions_in_cm>317</predictions_in_cm>
  615. <highlow>H</highlow>
  616. </item>
  617. <item>
  618. <date>2013/01/20</date>
  619. <day>Sun</day>
  620. <time>11:46 AM</time>
  621. <predictions_in_ft>1.2</predictions_in_ft>
  622. <predictions_in_cm>37</predictions_in_cm>
  623. <highlow>L</highlow>
  624. </item>
  625. <item>
  626. <date>2013/01/20</date>
  627. <day>Sun</day>
  628. <time>05:55 PM</time>
  629. <predictions_in_ft>9.4</predictions_in_ft>
  630. <predictions_in_cm>287</predictions_in_cm>
  631. <highlow>H</highlow>
  632. </item>
  633. <item>
  634. <date>2013/01/21</date>
  635. <day>Mon</day>
  636. <time>12:01 AM</time>
  637. <predictions_in_ft>1.7</predictions_in_ft>
  638. <predictions_in_cm>52</predictions_in_cm>
  639. <highlow>L</highlow>
  640. </item>
  641. <item>
  642. <date>2013/01/21</date>
  643. <day>Mon</day>
  644. <time>06:16 AM</time>
  645. <predictions_in_ft>10.3</predictions_in_ft>
  646. <predictions_in_cm>314</predictions_in_cm>
  647. <highlow>H</highlow>
  648. </item>
  649. <item>
  650. <date>2013/01/21</date>
  651. <day>Mon</day>
  652. <time>12:44 PM</time>
  653. <predictions_in_ft>1.2</predictions_in_ft>
  654. <predictions_in_cm>37</predictions_in_cm>
  655. <highlow>L</highlow>
  656. </item>
  657. <item>
  658. <date>2013/01/21</date>
  659. <day>Mon</day>
  660. <time>06:53 PM</time>
  661. <predictions_in_ft>9.3</predictions_in_ft>
  662. <predictions_in_cm>283</predictions_in_cm>
  663. <highlow>H</highlow>
  664. </item>
  665. <item>
  666. <date>2013/01/22</date>
  667. <day>Tue</day>
  668. <time>12:57 AM</time>
  669. <predictions_in_ft>1.8</predictions_in_ft>
  670. <predictions_in_cm>55</predictions_in_cm>
  671. <highlow>L</highlow>
  672. </item>
  673. <item>
  674. <date>2013/01/22</date>
  675. <day>Tue</day>
  676. <time>07:11 AM</time>
  677. <predictions_in_ft>10.4</predictions_in_ft>
  678. <predictions_in_cm>317</predictions_in_cm>
  679. <highlow>H</highlow>
  680. </item>
  681. <item>
  682. <date>2013/01/22</date>
  683. <day>Tue</day>
  684. <time>01:39 PM</time>
  685. <predictions_in_ft>1.1</predictions_in_ft>
  686. <predictions_in_cm>34</predictions_in_cm>
  687. <highlow>L</highlow>
  688. </item>
  689. <item>
  690. <date>2013/01/22</date>
  691. <day>Tue</day>
  692. <time>07:48 PM</time>
  693. <predictions_in_ft>9.4</predictions_in_ft>
  694. <predictions_in_cm>287</predictions_in_cm>
  695. <highlow>H</highlow>
  696. </item>
  697. <item>
  698. <date>2013/01/23</date>
  699. <day>Wed</day>
  700. <time>01:49 AM</time>
  701. <predictions_in_ft>1.7</predictions_in_ft>
  702. <predictions_in_cm>52</predictions_in_cm>
  703. <highlow>L</highlow>
  704. </item>
  705. <item>
  706. <date>2013/01/23</date>
  707. <day>Wed</day>
  708. <time>08:02 AM</time>
  709. <predictions_in_ft>10.6</predictions_in_ft>
  710. <predictions_in_cm>323</predictions_in_cm>
  711. <highlow>H</highlow>
  712. </item>
  713. <item>
  714. <date>2013/01/23</date>
  715. <day>Wed</day>
  716. <time>02:28 PM</time>
  717. <predictions_in_ft>0.8</predictions_in_ft>
  718. <predictions_in_cm>24</predictions_in_cm>
  719. <highlow>L</highlow>
  720. </item>
  721. <item>
  722. <date>2013/01/23</date>
  723. <day>Wed</day>
  724. <time>08:36 PM</time>
  725. <predictions_in_ft>9.6</predictions_in_ft>
  726. <predictions_in_cm>293</predictions_in_cm>
  727. <highlow>H</highlow>
  728. </item>
  729. <item>
  730. <date>2013/01/24</date>
  731. <day>Thu</day>
  732. <time>02:37 AM</time>
  733. <predictions_in_ft>1.5</predictions_in_ft>
  734. <predictions_in_cm>46</predictions_in_cm>
  735. <highlow>L</highlow>
  736. </item>
  737. <item>
  738. <date>2013/01/24</date>
  739. <day>Thu</day>
  740. <time>08:48 AM</time>
  741. <predictions_in_ft>10.9</predictions_in_ft>
  742. <predictions_in_cm>332</predictions_in_cm>
  743. <highlow>H</highlow>
  744. </item>
  745. <item>
  746. <date>2013/01/24</date>
  747. <day>Thu</day>
  748. <time>03:12 PM</time>
  749. <predictions_in_ft>0.5</predictions_in_ft>
  750. <predictions_in_cm>15</predictions_in_cm>
  751. <highlow>L</highlow>
  752. </item>
  753. <item>
  754. <date>2013/01/24</date>
  755. <day>Thu</day>
  756. <time>09:20 PM</time>
  757. <predictions_in_ft>9.9</predictions_in_ft>
  758. <predictions_in_cm>302</predictions_in_cm>
  759. <highlow>H</highlow>
  760. </item>
  761. <item>
  762. <date>2013/01/25</date>
  763. <day>Fri</day>
  764. <time>03:21 AM</time>
  765. <predictions_in_ft>1.2</predictions_in_ft>
  766. <predictions_in_cm>37</predictions_in_cm>
  767. <highlow>L</highlow>
  768. </item>
  769. <item>
  770. <date>2013/01/25</date>
  771. <day>Fri</day>
  772. <time>09:30 AM</time>
  773. <predictions_in_ft>11.1</predictions_in_ft>
  774. <predictions_in_cm>338</predictions_in_cm>
  775. <highlow>H</highlow>
  776. </item>
  777. <item>
  778. <date>2013/01/25</date>
  779. <day>Fri</day>
  780. <time>03:53 PM</time>
  781. <predictions_in_ft>0.3</predictions_in_ft>
  782. <predictions_in_cm>9</predictions_in_cm>
  783. <highlow>L</highlow>
  784. </item>
  785. <item>
  786. <date>2013/01/25</date>
  787. <day>Fri</day>
  788. <time>10:00 PM</time>
  789. <predictions_in_ft>10.2</predictions_in_ft>
  790. <predictions_in_cm>311</predictions_in_cm>
  791. <highlow>H</highlow>
  792. </item>
  793. <item>
  794. <date>2013/01/26</date>
  795. <day>Sat</day>
  796. <time>04:01 AM</time>
  797. <predictions_in_ft>1.0</predictions_in_ft>
  798. <predictions_in_cm>30</predictions_in_cm>
  799. <highlow>L</highlow>
  800. </item>
  801. <item>
  802. <date>2013/01/26</date>
  803. <day>Sat</day>
  804. <time>10:08 AM</time>
  805. <predictions_in_ft>11.3</predictions_in_ft>
  806. <predictions_in_cm>344</predictions_in_cm>
  807. <highlow>H</highlow>
  808. </item>
  809. <item>
  810. <date>2013/01/26</date>
  811. <day>Sat</day>
  812. <time>04:30 PM</time>
  813. <predictions_in_ft>0.0</predictions_in_ft>
  814. <predictions_in_cm>0</predictions_in_cm>
  815. <highlow>L</highlow>
  816. </item>
  817. <item>
  818. <date>2013/01/26</date>
  819. <day>Sat</day>
  820. <time>10:36 PM</time>
  821. <predictions_in_ft>10.5</predictions_in_ft>
  822. <predictions_in_cm>320</predictions_in_cm>
  823. <highlow>H</highlow>
  824. </item>
  825. <item>
  826. <date>2013/01/27</date>
  827. <day>Sun</day>
  828. <time>04:38 AM</time>
  829. <predictions_in_ft>0.7</predictions_in_ft>
  830. <predictions_in_cm>21</predictions_in_cm>
  831. <highlow>L</highlow>
  832. </item>
  833. <item>
  834. <date>2013/01/27</date>
  835. <day>Sun</day>
  836. <time>10:45 AM</time>
  837. <predictions_in_ft>11.5</predictions_in_ft>
  838. <predictions_in_cm>351</predictions_in_cm>
  839. <highlow>H</highlow>
  840. </item>
  841. <item>
  842. <date>2013/01/27</date>
  843. <day>Sun</day>
  844. <time>05:05 PM</time>
  845. <predictions_in_ft>-0.1</predictions_in_ft>
  846. <predictions_in_cm>-3</predictions_in_cm>
  847. <highlow>L</highlow>
  848. </item>
  849. <item>
  850. <date>2013/01/27</date>
  851. <day>Sun</day>
  852. <time>11:11 PM</time>
  853. <predictions_in_ft>10.7</predictions_in_ft>
  854. <predictions_in_cm>326</predictions_in_cm>
  855. <highlow>H</highlow>
  856. </item>
  857. <item>
  858. <date>2013/01/28</date>
  859. <day>Mon</day>
  860. <time>05:14 AM</time>
  861. <predictions_in_ft>0.5</predictions_in_ft>
  862. <predictions_in_cm>15</predictions_in_cm>
  863. <highlow>L</highlow>
  864. </item>
  865. <item>
  866. <date>2013/01/28</date>
  867. <day>Mon</day>
  868. <time>11:21 AM</time>
  869. <predictions_in_ft>11.6</predictions_in_ft>
  870. <predictions_in_cm>354</predictions_in_cm>
  871. <highlow>H</highlow>
  872. </item>
  873. <item>
  874. <date>2013/01/28</date>
  875. <day>Mon</day>
  876. <time>05:39 PM</time>
  877. <predictions_in_ft>-0.2</predictions_in_ft>
  878. <predictions_in_cm>-6</predictions_in_cm>
  879. <highlow>L</highlow>
  880. </item>
  881. <item>
  882. <date>2013/01/28</date>
  883. <day>Mon</day>
  884. <time>11:46 PM</time>
  885. <predictions_in_ft>10.9</predictions_in_ft>
  886. <predictions_in_cm>332</predictions_in_cm>
  887. <highlow>H</highlow>
  888. </item>
  889. <item>
  890. <date>2013/01/29</date>
  891. <day>Tue</day>
  892. <time>05:50 AM</time>
  893. <predictions_in_ft>0.4</predictions_in_ft>
  894. <predictions_in_cm>12</predictions_in_cm>
  895. <highlow>L</highlow>
  896. </item>
  897. <item>
  898. <date>2013/01/29</date>
  899. <day>Tue</day>
  900. <time>11:57 AM</time>
  901. <predictions_in_ft>11.6</predictions_in_ft>
  902. <predictions_in_cm>354</predictions_in_cm>
  903. <highlow>H</highlow>
  904. </item>
  905. <item>
  906. <date>2013/01/29</date>
  907. <day>Tue</day>
  908. <time>06:14 PM</time>
  909. <predictions_in_ft>-0.3</predictions_in_ft>
  910. <predictions_in_cm>-9</predictions_in_cm>
  911. <highlow>L</highlow>
  912. </item>
  913. <item>
  914. <date>2013/01/30</date>
  915. <day>Wed</day>
  916. <time>12:21 AM</time>
  917. <predictions_in_ft>11.1</predictions_in_ft>
  918. <predictions_in_cm>338</predictions_in_cm>
  919. <highlow>H</highlow>
  920. </item>
  921. <item>
  922. <date>2013/01/30</date>
  923. <day>Wed</day>
  924. <time>06:28 AM</time>
  925. <predictions_in_ft>0.3</predictions_in_ft>
  926. <predictions_in_cm>9</predictions_in_cm>
  927. <highlow>L</highlow>
  928. </item>
  929. <item>
  930. <date>2013/01/30</date>
  931. <day>Wed</day>
  932. <time>12:35 PM</time>
  933. <predictions_in_ft>11.5</predictions_in_ft>
  934. <predictions_in_cm>351</predictions_in_cm>
  935. <highlow>H</highlow>
  936. </item>
  937. <item>
  938. <date>2013/01/30</date>
  939. <day>Wed</day>
  940. <time>06:50 PM</time>
  941. <predictions_in_ft>-0.2</predictions_in_ft>
  942. <predictions_in_cm>-6</predictions_in_cm>
  943. <highlow>L</highlow>
  944. </item>
  945. <item>
  946. <date>2013/01/31</date>
  947. <day>Thu</day>
  948. <time>01:00 AM</time>
  949. <predictions_in_ft>11.3</predictions_in_ft>
  950. <predictions_in_cm>344</predictions_in_cm>
  951. <highlow>H</highlow>
  952. </item>
  953. <item>
  954. <date>2013/01/31</date>
  955. <day>Thu</day>
  956. <time>07:10 AM</time>
  957. <predictions_in_ft>0.2</predictions_in_ft>
  958. <predictions_in_cm>6</predictions_in_cm>
  959. <highlow>L</highlow>
  960. </item>
  961. <item>
  962. <date>2013/01/31</date>
  963. <day>Thu</day>
  964. <time>01:17 PM</time>
  965. <predictions_in_ft>11.4</predictions_in_ft>
  966. <predictions_in_cm>347</predictions_in_cm>
  967. <highlow>H</highlow>
  968. </item>
  969. <item>
  970. <date>2013/01/31</date>
  971. <day>Thu</day>
  972. <time>07:30 PM</time>
  973. <predictions_in_ft>-0.1</predictions_in_ft>
  974. <predictions_in_cm>-3</predictions_in_cm>
  975. <highlow>L</highlow>
  976. </item>
  977. <item>
  978. <date>2013/02/01</date>
  979. <day>Fri</day>
  980. <time>01:42 AM</time>
  981. <predictions_in_ft>11.4</predictions_in_ft>
  982. <predictions_in_cm>347</predictions_in_cm>
  983. <highlow>H</highlow>
  984. </item>
  985. <item>
  986. <date>2013/02/01</date>
  987. <day>Fri</day>
  988. <time>07:55 AM</time>
  989. <predictions_in_ft>0.2</predictions_in_ft>
  990. <predictions_in_cm>6</predictions_in_cm>
  991. <highlow>L</highlow>
  992. </item>
  993. <item>
  994. <date>2013/02/01</date>
  995. <day>Fri</day>
  996. <time>02:04 PM</time>
  997. <predictions_in_ft>11.1</predictions_in_ft>
  998. <predictions_in_cm>338</predictions_in_cm>
  999. <highlow>H</highlow>
  1000. </item>
  1001. <item>
  1002. <date>2013/02/01</date>
  1003. <day>Fri</day>
  1004. <time>08:15 PM</time>
  1005. <predictions_in_ft>0.1</predictions_in_ft>
  1006. <predictions_in_cm>3</predictions_in_cm>
  1007. <highlow>L</highlow>
  1008. </item>
  1009. <item>
  1010. <date>2013/02/02</date>
  1011. <day>Sat</day>
  1012. <time>02:29 AM</time>
  1013. <predictions_in_ft>11.4</predictions_in_ft>
  1014. <predictions_in_cm>347</predictions_in_cm>
  1015. <highlow>H</highlow>
  1016. </item>
  1017. <item>
  1018. <date>2013/02/02</date>
  1019. <day>Sat</day>
  1020. <time>08:47 AM</time>
  1021. <predictions_in_ft>0.2</predictions_in_ft>
  1022. <predictions_in_cm>6</predictions_in_cm>
  1023. <highlow>L</highlow>
  1024. </item>
  1025. <item>
  1026. <date>2013/02/02</date>
  1027. <day>Sat</day>
  1028. <time>02:55 PM</time>
  1029. <predictions_in_ft>10.8</predictions_in_ft>
  1030. <predictions_in_cm>329</predictions_in_cm>
  1031. <highlow>H</highlow>
  1032. </item>
  1033. <item>
  1034. <date>2013/02/02</date>
  1035. <day>Sat</day>
  1036. <time>09:06 PM</time>
  1037. <predictions_in_ft>0.4</predictions_in_ft>
  1038. <predictions_in_cm>12</predictions_in_cm>
  1039. <highlow>L</highlow>
  1040. </item>
  1041. <item>
  1042. <date>2013/02/03</date>
  1043. <day>Sun</day>
  1044. <time>03:22 AM</time>
  1045. <predictions_in_ft>11.4</predictions_in_ft>
  1046. <predictions_in_cm>347</predictions_in_cm>
  1047. <highlow>H</highlow>
  1048. </item>
  1049. <item>
  1050. <date>2013/02/03</date>
  1051. <day>Sun</day>
  1052. <time>09:44 AM</time>
  1053. <predictions_in_ft>0.3</predictions_in_ft>
  1054. <predictions_in_cm>9</predictions_in_cm>
  1055. <highlow>L</highlow>
  1056. </item>
  1057. <item>
  1058. <date>2013/02/03</date>
  1059. <day>Sun</day>
  1060. <time>03:54 PM</time>
  1061. <predictions_in_ft>10.4</predictions_in_ft>
  1062. <predictions_in_cm>317</predictions_in_cm>
  1063. <highlow>H</highlow>
  1064. </item>
  1065. <item>
  1066. <date>2013/02/03</date>
  1067. <day>Sun</day>
  1068. <time>10:03 PM</time>
  1069. <predictions_in_ft>0.6</predictions_in_ft>
  1070. <predictions_in_cm>18</predictions_in_cm>
  1071. <highlow>L</highlow>
  1072. </item>
  1073. <item>
  1074. <date>2013/02/04</date>
  1075. <day>Mon</day>
  1076. <time>04:21 AM</time>
  1077. <predictions_in_ft>11.4</predictions_in_ft>
  1078. <predictions_in_cm>347</predictions_in_cm>
  1079. <highlow>H</highlow>
  1080. </item>
  1081. <item>
  1082. <date>2013/02/04</date>
  1083. <day>Mon</day>
  1084. <time>10:49 AM</time>
  1085. <predictions_in_ft>0.3</predictions_in_ft>
  1086. <predictions_in_cm>9</predictions_in_cm>
  1087. <highlow>L</highlow>
  1088. </item>
  1089. <item>
  1090. <date>2013/02/04</date>
  1091. <day>Mon</day>
  1092. <time>04:59 PM</time>
  1093. <predictions_in_ft>10.2</predictions_in_ft>
  1094. <predictions_in_cm>311</predictions_in_cm>
  1095. <highlow>H</highlow>
  1096. </item>
  1097. <item>
  1098. <date>2013/02/04</date>
  1099. <day>Mon</day>
  1100. <time>11:07 PM</time>
  1101. <predictions_in_ft>0.8</predictions_in_ft>
  1102. <predictions_in_cm>24</predictions_in_cm>
  1103. <highlow>L</highlow>
  1104. </item>
  1105. <item>
  1106. <date>2013/02/05</date>
  1107. <day>Tue</day>
  1108. <time>05:26 AM</time>
  1109. <predictions_in_ft>11.5</predictions_in_ft>
  1110. <predictions_in_cm>351</predictions_in_cm>
  1111. <highlow>H</highlow>
  1112. </item>
  1113. <item>
  1114. <date>2013/02/05</date>
  1115. <day>Tue</day>
  1116. <time>11:57 AM</time>
  1117. <predictions_in_ft>0.2</predictions_in_ft>
  1118. <predictions_in_cm>6</predictions_in_cm>
  1119. <highlow>L</highlow>
  1120. </item>
  1121. <item>
  1122. <date>2013/02/05</date>
  1123. <day>Tue</day>
  1124. <time>06:08 PM</time>
  1125. <predictions_in_ft>10.2</predictions_in_ft>
  1126. <predictions_in_cm>311</predictions_in_cm>
  1127. <highlow>H</highlow>
  1128. </item>
  1129. <item>
  1130. <date>2013/02/06</date>
  1131. <day>Wed</day>
  1132. <time>12:15 AM</time>
  1133. <predictions_in_ft>0.7</predictions_in_ft>
  1134. <predictions_in_cm>21</predictions_in_cm>
  1135. <highlow>L</highlow>
  1136. </item>
  1137. <item>
  1138. <date>2013/02/06</date>
  1139. <day>Wed</day>
  1140. <time>06:33 AM</time>
  1141. <predictions_in_ft>11.7</predictions_in_ft>
  1142. <predictions_in_cm>357</predictions_in_cm>
  1143. <highlow>H</highlow>
  1144. </item>
  1145. <item>
  1146. <date>2013/02/06</date>
  1147. <day>Wed</day>
  1148. <time>01:05 PM</time>
  1149. <predictions_in_ft>-0.2</predictions_in_ft>
  1150. <predictions_in_cm>-6</predictions_in_cm>
  1151. <highlow>L</highlow>
  1152. </item>
  1153. <item>
  1154. <date>2013/02/06</date>
  1155. <day>Wed</day>
  1156. <time>07:17 PM</time>
  1157. <predictions_in_ft>10.5</predictions_in_ft>
  1158. <predictions_in_cm>320</predictions_in_cm>
  1159. <highlow>H</highlow>
  1160. </item>
  1161. <item>
  1162. <date>2013/02/07</date>
  1163. <day>Thu</day>
  1164. <time>01:23 AM</time>
  1165. <predictions_in_ft>0.4</predictions_in_ft>
  1166. <predictions_in_cm>12</predictions_in_cm>
  1167. <highlow>L</highlow>
  1168. </item>
  1169. <item>
  1170. <date>2013/02/07</date>
  1171. <day>Thu</day>
  1172. <time>07:39 AM</time>
  1173. <predictions_in_ft>12.1</predictions_in_ft>
  1174. <predictions_in_cm>369</predictions_in_cm>
  1175. <highlow>H</highlow>
  1176. </item>
  1177. <item>
  1178. <date>2013/02/07</date>
  1179. <day>Thu</day>
  1180. <time>02:08 PM</time>
  1181. <predictions_in_ft>-0.6</predictions_in_ft>
  1182. <predictions_in_cm>-18</predictions_in_cm>
  1183. <highlow>L</highlow>
  1184. </item>
  1185. <item>
  1186. <date>2013/02/07</date>
  1187. <day>Thu</day>
  1188. <time>08:19 PM</time>
  1189. <predictions_in_ft>11.0</predictions_in_ft>
  1190. <predictions_in_cm>335</predictions_in_cm>
  1191. <highlow>H</highlow>
  1192. </item>
  1193. <item>
  1194. <date>2013/02/08</date>
  1195. <day>Fri</day>
  1196. <time>02:25 AM</time>
  1197. <predictions_in_ft>0.0</predictions_in_ft>
  1198. <predictions_in_cm>0</predictions_in_cm>
  1199. <highlow>L</highlow>
  1200. </item>
  1201. <item>
  1202. <date>2013/02/08</date>
  1203. <day>Fri</day>
  1204. <time>08:40 AM</time>
  1205. <predictions_in_ft>12.5</predictions_in_ft>
  1206. <predictions_in_cm>381</predictions_in_cm>
  1207. <highlow>H</highlow>
  1208. </item>
  1209. <item>
  1210. <date>2013/02/08</date>
  1211. <day>Fri</day>
  1212. <time>03:06 PM</time>
  1213. <predictions_in_ft>-1.1</predictions_in_ft>
  1214. <predictions_in_cm>-34</predictions_in_cm>
  1215. <highlow>L</highlow>
  1216. </item>
  1217. <item>
  1218. <date>2013/02/08</date>
  1219. <day>Fri</day>
  1220. <time>09:17 PM</time>
  1221. <predictions_in_ft>11.5</predictions_in_ft>
  1222. <predictions_in_cm>351</predictions_in_cm>
  1223. <highlow>H</highlow>
  1224. </item>
  1225. <item>
  1226. <date>2013/02/09</date>
  1227. <day>Sat</day>
  1228. <time>03:23 AM</time>
  1229. <predictions_in_ft>-0.5</predictions_in_ft>
  1230. <predictions_in_cm>-15</predictions_in_cm>
  1231. <highlow>L</highlow>
  1232. </item>
  1233. <item>
  1234. <date>2013/02/09</date>
  1235. <day>Sat</day>
  1236. <time>09:36 AM</time>
  1237. <predictions_in_ft>12.9</predictions_in_ft>
  1238. <predictions_in_cm>393</predictions_in_cm>
  1239. <highlow>H</highlow>
  1240. </item>
  1241. <item>
  1242. <date>2013/02/09</date>
  1243. <day>Sat</day>
  1244. <time>03:58 PM</time>
  1245. <predictions_in_ft>-1.5</predictions_in_ft>
  1246. <predictions_in_cm>-46</predictions_in_cm>
  1247. <highlow>L</highlow>
  1248. </item>
  1249. <item>
  1250. <date>2013/02/09</date>
  1251. <day>Sat</day>
  1252. <time>10:09 PM</time>
  1253. <predictions_in_ft>12.0</predictions_in_ft>
  1254. <predictions_in_cm>366</predictions_in_cm>
  1255. <highlow>H</highlow>
  1256. </item>
  1257. <item>
  1258. <date>2013/02/10</date>
  1259. <day>Sun</day>
  1260. <time>04:16 AM</time>
  1261. <predictions_in_ft>-0.9</predictions_in_ft>
  1262. <predictions_in_cm>-27</predictions_in_cm>
  1263. <highlow>L</highlow>
  1264. </item>
  1265. <item>
  1266. <date>2013/02/10</date>
  1267. <day>Sun</day>
  1268. <time>10:28 AM</time>
  1269. <predictions_in_ft>13.0</predictions_in_ft>
  1270. <predictions_in_cm>396</predictions_in_cm>
  1271. <highlow>H</highlow>
  1272. </item>
  1273. <item>
  1274. <date>2013/02/10</date>
  1275. <day>Sun</day>
  1276. <time>04:48 PM</time>
  1277. <predictions_in_ft>-1.6</predictions_in_ft>
  1278. <predictions_in_cm>-49</predictions_in_cm>
  1279. <highlow>L</highlow>
  1280. </item>
  1281. <item>
  1282. <date>2013/02/10</date>
  1283. <day>Sun</day>
  1284. <time>10:58 PM</time>
  1285. <predictions_in_ft>12.2</predictions_in_ft>
  1286. <predictions_in_cm>372</predictions_in_cm>
  1287. <highlow>H</highlow>
  1288. </item>
  1289. <item>
  1290. <date>2013/02/11</date>
  1291. <day>Mon</day>
  1292. <time>05:06 AM</time>
  1293. <predictions_in_ft>-1.0</predictions_in_ft>
  1294. <predictions_in_cm>-30</predictions_in_cm>
  1295. <highlow>L</highlow>
  1296. </item>
  1297. <item>
  1298. <date>2013/02/11</date>
  1299. <day>Mon</day>
  1300. <time>11:17 AM</time>
  1301. <predictions_in_ft>12.9</predictions_in_ft>
  1302. <predictions_in_cm>393</predictions_in_cm>
  1303. <highlow>H</highlow>
  1304. </item>
  1305. <item>
  1306. <date>2013/02/11</date>
  1307. <day>Mon</day>
  1308. <time>05:34 PM</time>
  1309. <predictions_in_ft>-1.5</predictions_in_ft>
  1310. <predictions_in_cm>-46</predictions_in_cm>
  1311. <highlow>L</highlow>
  1312. </item>
  1313. <item>
  1314. <date>2013/02/11</date>
  1315. <day>Mon</day>
  1316. <time>11:44 PM</time>
  1317. <predictions_in_ft>12.3</predictions_in_ft>
  1318. <predictions_in_cm>375</predictions_in_cm>
  1319. <highlow>H</highlow>
  1320. </item>
  1321. <item>
  1322. <date>2013/02/12</date>
  1323. <day>Tue</day>
  1324. <time>05:55 AM</time>
  1325. <predictions_in_ft>-1.0</predictions_in_ft>
  1326. <predictions_in_cm>-30</predictions_in_cm>
  1327. <highlow>L</highlow>
  1328. </item>
  1329. <item>
  1330. <date>2013/02/12</date>
  1331. <day>Tue</day>
  1332. <time>12:04 PM</time>
  1333. <predictions_in_ft>12.6</predictions_in_ft>
  1334. <predictions_in_cm>384</predictions_in_cm>
  1335. <highlow>H</highlow>
  1336. </item>
  1337. <item>
  1338. <date>2013/02/12</date>
  1339. <day>Tue</day>
  1340. <time>06:20 PM</time>
  1341. <predictions_in_ft>-1.1</predictions_in_ft>
  1342. <predictions_in_cm>-34</predictions_in_cm>
  1343. <highlow>L</highlow>
  1344. </item>
  1345. <item>
  1346. <date>2013/02/13</date>
  1347. <day>Wed</day>
  1348. <time>12:30 AM</time>
  1349. <predictions_in_ft>12.1</predictions_in_ft>
  1350. <predictions_in_cm>369</predictions_in_cm>
  1351. <highlow>H</highlow>
  1352. </item>
  1353. <item>
  1354. <date>2013/02/13</date>
  1355. <day>Wed</day>
  1356. <time>06:42 AM</time>
  1357. <predictions_in_ft>-0.7</predictions_in_ft>
  1358. <predictions_in_cm>-21</predictions_in_cm>
  1359. <highlow>L</highlow>
  1360. </item>
  1361. <item>
  1362. <date>2013/02/13</date>
  1363. <day>Wed</day>
  1364. <time>12:51 PM</time>
  1365. <predictions_in_ft>12.1</predictions_in_ft>
  1366. <predictions_in_cm>369</predictions_in_cm>
  1367. <highlow>H</highlow>
  1368. </item>
  1369. <item>
  1370. <date>2013/02/13</date>
  1371. <day>Wed</day>
  1372. <time>07:04 PM</time>
  1373. <predictions_in_ft>-0.6</predictions_in_ft>
  1374. <predictions_in_cm>-18</predictions_in_cm>
  1375. <highlow>L</highlow>
  1376. </item>
  1377. <item>
  1378. <date>2013/02/14</date>
  1379. <day>Thu</day>
  1380. <time>01:15 AM</time>
  1381. <predictions_in_ft>11.8</predictions_in_ft>
  1382. <predictions_in_cm>360</predictions_in_cm>
  1383. <highlow>H</highlow>
  1384. </item>
  1385. <item>
  1386. <date>2013/02/14</date>
  1387. <day>Thu</day>
  1388. <time>07:29 AM</time>
  1389. <predictions_in_ft>-0.3</predictions_in_ft>
  1390. <predictions_in_cm>-9</predictions_in_cm>
  1391. <highlow>L</highlow>
  1392. </item>
  1393. <item>
  1394. <date>2013/02/14</date>
  1395. <day>Thu</day>
  1396. <time>01:38 PM</time>
  1397. <predictions_in_ft>11.4</predictions_in_ft>
  1398. <predictions_in_cm>347</predictions_in_cm>
  1399. <highlow>H</highlow>
  1400. </item>
  1401. <item>
  1402. <date>2013/02/14</date>
  1403. <day>Thu</day>
  1404. <time>07:49 PM</time>
  1405. <predictions_in_ft>0.0</predictions_in_ft>
  1406. <predictions_in_cm>0</predictions_in_cm>
  1407. <highlow>L</highlow>
  1408. </item>
  1409. <item>
  1410. <date>2013/02/15</date>
  1411. <day>Fri</day>
  1412. <time>02:00 AM</time>
  1413. <predictions_in_ft>11.4</predictions_in_ft>
  1414. <predictions_in_cm>347</predictions_in_cm>
  1415. <highlow>H</highlow>
  1416. </item>
  1417. <item>
  1418. <date>2013/02/15</date>
  1419. <day>Fri</day>
  1420. <time>08:18 AM</time>
  1421. <predictions_in_ft>0.2</predictions_in_ft>
  1422. <predictions_in_cm>6</predictions_in_cm>
  1423. <highlow>L</highlow>
  1424. </item>
  1425. <item>
  1426. <date>2013/02/15</date>
  1427. <day>Fri</day>
  1428. <time>02:26 PM</time>
  1429. <predictions_in_ft>10.7</predictions_in_ft>
  1430. <predictions_in_cm>326</predictions_in_cm>
  1431. <highlow>H</highlow>
  1432. </item>
  1433. <item>
  1434. <date>2013/02/15</date>
  1435. <day>Fri</day>
  1436. <time>08:36 PM</time>
  1437. <predictions_in_ft>0.7</predictions_in_ft>
  1438. <predictions_in_cm>21</predictions_in_cm>
  1439. <highlow>L</highlow>
  1440. </item>
  1441. <item>
  1442. <date>2013/02/16</date>
  1443. <day>Sat</day>
  1444. <time>02:47 AM</time>
  1445. <predictions_in_ft>10.9</predictions_in_ft>
  1446. <predictions_in_cm>332</predictions_in_cm>
  1447. <highlow>H</highlow>
  1448. </item>
  1449. <item>
  1450. <date>2013/02/16</date>
  1451. <day>Sat</day>
  1452. <time>09:08 AM</time>
  1453. <predictions_in_ft>0.7</predictions_in_ft>
  1454. <predictions_in_cm>21</predictions_in_cm>
  1455. <highlow>L</highlow>
  1456. </item>
  1457. <item>
  1458. <date>2013/02/16</date>
  1459. <day>Sat</day>
  1460. <time>03:17 PM</time>
  1461. <predictions_in_ft>10.0</predictions_in_ft>
  1462. <predictions_in_cm>305</predictions_in_cm>
  1463. <highlow>H</highlow>
  1464. </item>
  1465. <item>
  1466. <date>2013/02/16</date>
  1467. <day>Sat</day>
  1468. <time>09:25 PM</time>
  1469. <predictions_in_ft>1.3</predictions_in_ft>
  1470. <predictions_in_cm>40</predictions_in_cm>
  1471. <highlow>L</highlow>
  1472. </item>
  1473. <item>
  1474. <date>2013/02/17</date>
  1475. <day>Sun</day>
  1476. <time>03:38 AM</time>
  1477. <predictions_in_ft>10.5</predictions_in_ft>
  1478. <predictions_in_cm>320</predictions_in_cm>
  1479. <highlow>H</highlow>
  1480. </item>
  1481. <item>
  1482. <date>2013/02/17</date>
  1483. <day>Sun</day>
  1484. <time>10:02 AM</time>
  1485. <predictions_in_ft>1.2</predictions_in_ft>
  1486. <predictions_in_cm>37</predictions_in_cm>
  1487. <highlow>L</highlow>
  1488. </item>
  1489. <item>
  1490. <date>2013/02/17</date>
  1491. <day>Sun</day>
  1492. <time>04:11 PM</time>
  1493. <predictions_in_ft>9.5</predictions_in_ft>
  1494. <predictions_in_cm>290</predictions_in_cm>
  1495. <highlow>H</highlow>
  1496. </item>
  1497. <item>
  1498. <date>2013/02/17</date>
  1499. <day>Sun</day>
  1500. <time>10:18 PM</time>
  1501. <predictions_in_ft>1.8</predictions_in_ft>
  1502. <predictions_in_cm>55</predictions_in_cm>
  1503. <highlow>L</highlow>
  1504. </item>
  1505. <item>
  1506. <date>2013/02/18</date>
  1507. <day>Mon</day>
  1508. <time>04:32 AM</time>
  1509. <predictions_in_ft>10.1</predictions_in_ft>
  1510. <predictions_in_cm>308</predictions_in_cm>
  1511. <highlow>H</highlow>
  1512. </item>
  1513. <item>
  1514. <date>2013/02/18</date>
  1515. <day>Mon</day>
  1516. <time>11:00 AM</time>
  1517. <predictions_in_ft>1.5</predictions_in_ft>
  1518. <predictions_in_cm>46</predictions_in_cm>
  1519. <highlow>L</highlow>
  1520. </item>
  1521. <item>
  1522. <date>2013/02/18</date>
  1523. <day>Mon</day>
  1524. <time>05:09 PM</time>
  1525. <predictions_in_ft>9.1</predictions_in_ft>
  1526. <predictions_in_cm>277</predictions_in_cm>
  1527. <highlow>H</highlow>
  1528. </item>
  1529. <item>
  1530. <date>2013/02/18</date>
  1531. <day>Mon</day>
  1532. <time>11:16 PM</time>
  1533. <predictions_in_ft>2.1</predictions_in_ft>
  1534. <predictions_in_cm>64</predictions_in_cm>
  1535. <highlow>L</highlow>
  1536. </item>
  1537. <item>
  1538. <date>2013/02/19</date>
  1539. <day>Tue</day>
  1540. <time>05:30 AM</time>
  1541. <predictions_in_ft>9.9</predictions_in_ft>
  1542. <predictions_in_cm>302</predictions_in_cm>
  1543. <highlow>H</highlow>
  1544. </item>
  1545. <item>
  1546. <date>2013/02/19</date>
  1547. <day>Tue</day>
  1548. <time>11:59 AM</time>
  1549. <predictions_in_ft>1.6</predictions_in_ft>
  1550. <predictions_in_cm>49</predictions_in_cm>
  1551. <highlow>L</highlow>
  1552. </item>
  1553. <item>
  1554. <date>2013/02/19</date>
  1555. <day>Tue</day>
  1556. <time>06:09 PM</time>
  1557. <predictions_in_ft>9.0</predictions_in_ft>
  1558. <predictions_in_cm>274</predictions_in_cm>
  1559. <highlow>H</highlow>
  1560. </item>
  1561. <item>
  1562. <date>2013/02/20</date>
  1563. <day>Wed</day>
  1564. <time>12:15 AM</time>
  1565. <predictions_in_ft>2.1</predictions_in_ft>
  1566. <predictions_in_cm>64</predictions_in_cm>
  1567. <highlow>L</highlow>
  1568. </item>
  1569. <item>
  1570. <date>2013/02/20</date>
  1571. <day>Wed</day>
  1572. <time>06:28 AM</time>
  1573. <predictions_in_ft>10.0</predictions_in_ft>
  1574. <predictions_in_cm>305</predictions_in_cm>
  1575. <highlow>H</highlow>
  1576. </item>
  1577. <item>
  1578. <date>2013/02/20</date>
  1579. <day>Wed</day>
  1580. <time>12:57 PM</time>
  1581. <predictions_in_ft>1.5</predictions_in_ft>
  1582. <predictions_in_cm>46</predictions_in_cm>
  1583. <highlow>L</highlow>
  1584. </item>
  1585. <item>
  1586. <date>2013/02/20</date>
  1587. <day>Wed</day>
  1588. <time>07:07 PM</time>
  1589. <predictions_in_ft>9.1</predictions_in_ft>
  1590. <predictions_in_cm>277</predictions_in_cm>
  1591. <highlow>H</highlow>
  1592. </item>
  1593. <item>
  1594. <date>2013/02/21</date>
  1595. <day>Thu</day>
  1596. <time>01:11 AM</time>
  1597. <predictions_in_ft>2.0</predictions_in_ft>
  1598. <predictions_in_cm>61</predictions_in_cm>
  1599. <highlow>L</highlow>
  1600. </item>
  1601. <item>
  1602. <date>2013/02/21</date>
  1603. <day>Thu</day>
  1604. <time>07:23 AM</time>
  1605. <predictions_in_ft>10.2</predictions_in_ft>
  1606. <predictions_in_cm>311</predictions_in_cm>
  1607. <highlow>H</highlow>
  1608. </item>
  1609. <item>
  1610. <date>2013/02/21</date>
  1611. <day>Thu</day>
  1612. <time>01:50 PM</time>
  1613. <predictions_in_ft>1.2</predictions_in_ft>
  1614. <predictions_in_cm>37</predictions_in_cm>
  1615. <highlow>L</highlow>
  1616. </item>
  1617. <item>
  1618. <date>2013/02/21</date>
  1619. <day>Thu</day>
  1620. <time>07:59 PM</time>
  1621. <predictions_in_ft>9.4</predictions_in_ft>
  1622. <predictions_in_cm>287</predictions_in_cm>
  1623. <highlow>H</highlow>
  1624. </item>
  1625. <item>
  1626. <date>2013/02/22</date>
  1627. <day>Fri</day>
  1628. <time>02:03 AM</time>
  1629. <predictions_in_ft>1.7</predictions_in_ft>
  1630. <predictions_in_cm>52</predictions_in_cm>
  1631. <highlow>L</highlow>
  1632. </item>
  1633. <item>
  1634. <date>2013/02/22</date>
  1635. <day>Fri</day>
  1636. <time>08:13 AM</time>
  1637. <predictions_in_ft>10.5</predictions_in_ft>
  1638. <predictions_in_cm>320</predictions_in_cm>
  1639. <highlow>H</highlow>
  1640. </item>
  1641. <item>
  1642. <date>2013/02/22</date>
  1643. <day>Fri</day>
  1644. <time>02:37 PM</time>
  1645. <predictions_in_ft>0.8</predictions_in_ft>
  1646. <predictions_in_cm>24</predictions_in_cm>
  1647. <highlow>L</highlow>
  1648. </item>
  1649. <item>
  1650. <date>2013/02/22</date>
  1651. <day>Fri</day>
  1652. <time>08:45 PM</time>
  1653. <predictions_in_ft>9.8</predictions_in_ft>
  1654. <predictions_in_cm>299</predictions_in_cm>
  1655. <highlow>H</highlow>
  1656. </item>
  1657. <item>
  1658. <date>2013/02/23</date>
  1659. <day>Sat</day>
  1660. <time>02:49 AM</time>
  1661. <predictions_in_ft>1.3</predictions_in_ft>
  1662. <predictions_in_cm>40</predictions_in_cm>
  1663. <highlow>L</highlow>
  1664. </item>
  1665. <item>
  1666. <date>2013/02/23</date>
  1667. <day>Sat</day>
  1668. <time>08:58 AM</time>
  1669. <predictions_in_ft>10.9</predictions_in_ft>
  1670. <predictions_in_cm>332</predictions_in_cm>
  1671. <highlow>H</highlow>
  1672. </item>
  1673. <item>
  1674. <date>2013/02/23</date>
  1675. <day>Sat</day>
  1676. <time>03:18 PM</time>
  1677. <predictions_in_ft>0.5</predictions_in_ft>
  1678. <predictions_in_cm>15</predictions_in_cm>
  1679. <highlow>L</highlow>
  1680. </item>
  1681. <item>
  1682. <date>2013/02/23</date>
  1683. <day>Sat</day>
  1684. <time>09:26 PM</time>
  1685. <predictions_in_ft>10.3</predictions_in_ft>
  1686. <predictions_in_cm>314</predictions_in_cm>
  1687. <highlow>H</highlow>
  1688. </item>
  1689. <item>
  1690. <date>2013/02/24</date>
  1691. <day>Sun</day>
  1692. <time>03:31 AM</time>
  1693. <predictions_in_ft>0.8</predictions_in_ft>
  1694. <predictions_in_cm>24</predictions_in_cm>
  1695. <highlow>L</highlow>
  1696. </item>
  1697. <item>
  1698. <date>2013/02/24</date>
  1699. <day>Sun</day>
  1700. <time>09:38 AM</time>
  1701. <predictions_in_ft>11.2</predictions_in_ft>
  1702. <predictions_in_cm>341</predictions_in_cm>
  1703. <highlow>H</highlow>
  1704. </item>
  1705. <item>
  1706. <date>2013/02/24</date>
  1707. <day>Sun</day>
  1708. <time>03:57 PM</time>
  1709. <predictions_in_ft>0.1</predictions_in_ft>
  1710. <predictions_in_cm>3</predictions_in_cm>
  1711. <highlow>L</highlow>
  1712. </item>
  1713. <item>
  1714. <date>2013/02/24</date>
  1715. <day>Sun</day>
  1716. <time>10:03 PM</time>
  1717. <predictions_in_ft>10.7</predictions_in_ft>
  1718. <predictions_in_cm>326</predictions_in_cm>
  1719. <highlow>H</highlow>
  1720. </item>
  1721. <item>
  1722. <date>2013/02/25</date>
  1723. <day>Mon</day>
  1724. <time>04:09 AM</time>
  1725. <predictions_in_ft>0.4</predictions_in_ft>
  1726. <predictions_in_cm>12</predictions_in_cm>
  1727. <highlow>L</highlow>
  1728. </item>
  1729. <item>
  1730. <date>2013/02/25</date>
  1731. <day>Mon</day>
  1732. <time>10:17 AM</time>
  1733. <predictions_in_ft>11.5</predictions_in_ft>
  1734. <predictions_in_cm>351</predictions_in_cm>
  1735. <highlow>H</highlow>
  1736. </item>
  1737. <item>
  1738. <date>2013/02/25</date>
  1739. <day>Mon</day>
  1740. <time>04:33 PM</time>
  1741. <predictions_in_ft>-0.2</predictions_in_ft>
  1742. <predictions_in_cm>-6</predictions_in_cm>
  1743. <highlow>L</highlow>
  1744. </item>
  1745. <item>
  1746. <date>2013/02/25</date>
  1747. <day>Mon</day>
  1748. <time>10:39 PM</time>
  1749. <predictions_in_ft>11.2</predictions_in_ft>
  1750. <predictions_in_cm>341</predictions_in_cm>
  1751. <highlow>H</highlow>
  1752. </item>
  1753. <item>
  1754. <date>2013/02/26</date>
  1755. <day>Tue</day>
  1756. <time>04:47 AM</time>
  1757. <predictions_in_ft>0.0</predictions_in_ft>
  1758. <predictions_in_cm>0</predictions_in_cm>
  1759. <highlow>L</highlow>
  1760. </item>
  1761. <item>
  1762. <date>2013/02/26</date>
  1763. <day>Tue</day>
  1764. <time>10:55 AM</time>
  1765. <predictions_in_ft>11.7</predictions_in_ft>
  1766. <predictions_in_cm>357</predictions_in_cm>
  1767. <highlow>H</highlow>
  1768. </item>
  1769. <item>
  1770. <date>2013/02/26</date>
  1771. <day>Tue</day>
  1772. <time>05:08 PM</time>
  1773. <predictions_in_ft>-0.4</predictions_in_ft>
  1774. <predictions_in_cm>-12</predictions_in_cm>
  1775. <highlow>L</highlow>
  1776. </item>
  1777. <item>
  1778. <date>2013/02/26</date>
  1779. <day>Tue</day>
  1780. <time>11:15 PM</time>
  1781. <predictions_in_ft>11.5</predictions_in_ft>
  1782. <predictions_in_cm>351</predictions_in_cm>
  1783. <highlow>H</highlow>
  1784. </item>
  1785. <item>
  1786. <date>2013/02/27</date>
  1787. <day>Wed</day>
  1788. <time>05:25 AM</time>
  1789. <predictions_in_ft>-0.3</predictions_in_ft>
  1790. <predictions_in_cm>-9</predictions_in_cm>
  1791. <highlow>L</highlow>
  1792. </item>
  1793. <item>
  1794. <date>2013/02/27</date>
  1795. <day>Wed</day>
  1796. <time>11:33 AM</time>
  1797. <predictions_in_ft>11.8</predictions_in_ft>
  1798. <predictions_in_cm>360</predictions_in_cm>
  1799. <highlow>H</highlow>
  1800. </item>
  1801. <item>
  1802. <date>2013/02/27</date>
  1803. <day>Wed</day>
  1804. <time>05:45 PM</time>
  1805. <predictions_in_ft>-0.5</predictions_in_ft>
  1806. <predictions_in_cm>-15</predictions_in_cm>
  1807. <highlow>L</highlow>
  1808. </item>
  1809. <item>
  1810. <date>2013/02/27</date>
  1811. <day>Wed</day>
  1812. <time>11:53 PM</time>
  1813. <predictions_in_ft>11.8</predictions_in_ft>
  1814. <predictions_in_cm>360</predictions_in_cm>
  1815. <highlow>H</highlow>
  1816. </item>
  1817. <item>
  1818. <date>2013/02/28</date>
  1819. <day>Thu</day>
  1820. <time>06:05 AM</time>
  1821. <predictions_in_ft>-0.5</predictions_in_ft>
  1822. <predictions_in_cm>-15</predictions_in_cm>
  1823. <highlow>L</highlow>
  1824. </item>
  1825. <item>
  1826. <date>2013/02/28</date>
  1827. <day>Thu</day>
  1828. <time>12:14 PM</time>
  1829. <predictions_in_ft>11.8</predictions_in_ft>
  1830. <predictions_in_cm>360</predictions_in_cm>
  1831. <highlow>H</highlow>
  1832. </item>
  1833. <item>
  1834. <date>2013/02/28</date>
  1835. <day>Thu</day>
  1836. <time>06:24 PM</time>
  1837. <predictions_in_ft>-0.4</predictions_in_ft>
  1838. <predictions_in_cm>-12</predictions_in_cm>
  1839. <highlow>L</highlow>
  1840. </item>
  1841. <item>
  1842. <date>2013/03/01</date>
  1843. <day>Fri</day>
  1844. <time>12:33 AM</time>
  1845. <predictions_in_ft>12.0</predictions_in_ft>
  1846. <predictions_in_cm>366</predictions_in_cm>
  1847. <highlow>H</highlow>
  1848. </item>
  1849. <item>
  1850. <date>2013/03/01</date>
  1851. <day>Fri</day>
  1852. <time>06:49 AM</time>
  1853. <predictions_in_ft>-0.6</predictions_in_ft>
  1854. <predictions_in_cm>-18</predictions_in_cm>
  1855. <highlow>L</highlow>
  1856. </item>
  1857. <item>
  1858. <date>2013/03/01</date>
  1859. <day>Fri</day>
  1860. <time>12:58 PM</time>
  1861. <predictions_in_ft>11.6</predictions_in_ft>
  1862. <predictions_in_cm>354</predictions_in_cm>
  1863. <highlow>H</highlow>
  1864. </item>
  1865. <item>
  1866. <date>2013/03/01</date>
  1867. <day>Fri</day>
  1868. <time>07:06 PM</time>
  1869. <predictions_in_ft>-0.3</predictions_in_ft>
  1870. <predictions_in_cm>-9</predictions_in_cm>
  1871. <highlow>L</highlow>
  1872. </item>
  1873. <item>
  1874. <date>2013/03/02</date>
  1875. <day>Sat</day>
  1876. <time>01:18 AM</time>
  1877. <predictions_in_ft>12.0</predictions_in_ft>
  1878. <predictions_in_cm>366</predictions_in_cm>
  1879. <highlow>H</highlow>
  1880. </item>
  1881. <item>
  1882. <date>2013/03/02</date>
  1883. <day>Sat</day>
  1884. <time>07:36 AM</time>
  1885. <predictions_in_ft>-0.5</predictions_in_ft>
  1886. <predictions_in_cm>-15</predictions_in_cm>
  1887. <highlow>L</highlow>
  1888. </item>
  1889. <item>
  1890. <date>2013/03/02</date>
  1891. <day>Sat</day>
  1892. <time>01:46 PM</time>
  1893. <predictions_in_ft>11.3</predictions_in_ft>
  1894. <predictions_in_cm>344</predictions_in_cm>
  1895. <highlow>H</highlow>
  1896. </item>
  1897. <item>
  1898. <date>2013/03/02</date>
  1899. <day>Sat</day>
  1900. <time>07:54 PM</time>
  1901. <predictions_in_ft>0.0</predictions_in_ft>
  1902. <predictions_in_cm>0</predictions_in_cm>
  1903. <highlow>L</highlow>
  1904. </item>
  1905. <item>
  1906. <date>2013/03/03</date>
  1907. <day>Sun</day>
  1908. <time>02:07 AM</time>
  1909. <predictions_in_ft>11.9</predictions_in_ft>
  1910. <predictions_in_cm>363</predictions_in_cm>
  1911. <highlow>H</highlow>
  1912. </item>
  1913. <item>
  1914. <date>2013/03/03</date>
  1915. <day>Sun</day>
  1916. <time>08:29 AM</time>
  1917. <predictions_in_ft>-0.3</predictions_in_ft>
  1918. <predictions_in_cm>-9</predictions_in_cm>
  1919. <highlow>L</highlow>
  1920. </item>
  1921. <item>
  1922. <date>2013/03/03</date>
  1923. <day>Sun</day>
  1924. <time>02:40 PM</time>
  1925. <predictions_in_ft>10.9</predictions_in_ft>
  1926. <predictions_in_cm>332</predictions_in_cm>
  1927. <highlow>H</highlow>
  1928. </item>
  1929. <item>
  1930. <date>2013/03/03</date>
  1931. <day>Sun</day>
  1932. <time>08:47 PM</time>
  1933. <predictions_in_ft>0.4</predictions_in_ft>
  1934. <predictions_in_cm>12</predictions_in_cm>
  1935. <highlow>L</highlow>
  1936. </item>
  1937. <item>
  1938. <date>2013/03/04</date>
  1939. <day>Mon</day>
  1940. <time>03:02 AM</time>
  1941. <predictions_in_ft>11.7</predictions_in_ft>
  1942. <predictions_in_cm>357</predictions_in_cm>
  1943. <highlow>H</highlow>
  1944. </item>
  1945. <item>
  1946. <date>2013/03/04</date>
  1947. <day>Mon</day>
  1948. <time>09:28 AM</time>
  1949. <predictions_in_ft>-0.1</predictions_in_ft>
  1950. <predictions_in_cm>-3</predictions_in_cm>
  1951. <highlow>L</highlow>
  1952. </item>
  1953. <item>
  1954. <date>2013/03/04</date>
  1955. <day>Mon</day>
  1956. <time>03:40 PM</time>
  1957. <predictions_in_ft>10.5</predictions_in_ft>
  1958. <predictions_in_cm>320</predictions_in_cm>
  1959. <highlow>H</highlow>
  1960. </item>
  1961. <item>
  1962. <date>2013/03/04</date>
  1963. <day>Mon</day>
  1964. <time>09:47 PM</time>
  1965. <predictions_in_ft>0.7</predictions_in_ft>
  1966. <predictions_in_cm>21</predictions_in_cm>
  1967. <highlow>L</highlow>
  1968. </item>
  1969. <item>
  1970. <date>2013/03/05</date>
  1971. <day>Tue</day>
  1972. <time>04:04 AM</time>
  1973. <predictions_in_ft>11.5</predictions_in_ft>
  1974. <predictions_in_cm>351</predictions_in_cm>
  1975. <highlow>H</highlow>
  1976. </item>
  1977. <item>
  1978. <date>2013/03/05</date>
  1979. <day>Tue</day>
  1980. <time>10:34 AM</time>
  1981. <predictions_in_ft>0.1</predictions_in_ft>
  1982. <predictions_in_cm>3</predictions_in_cm>
  1983. <highlow>L</highlow>
  1984. </item>
  1985. <item>
  1986. <date>2013/03/05</date>
  1987. <day>Tue</day>
  1988. <time>04:47 PM</time>
  1989. <predictions_in_ft>10.2</predictions_in_ft>
  1990. <predictions_in_cm>311</predictions_in_cm>
  1991. <highlow>H</highlow>
  1992. </item>
  1993. <item>
  1994. <date>2013/03/05</date>
  1995. <day>Tue</day>
  1996. <time>10:55 PM</time>
  1997. <predictions_in_ft>0.9</predictions_in_ft>
  1998. <predictions_in_cm>27</predictions_in_cm>
  1999. <highlow>L</highlow>
  2000. </item>
  2001. <item>
  2002. <date>2013/03/06</date>
  2003. <day>Wed</day>
  2004. <time>05:12 AM</time>
  2005. <predictions_in_ft>11.4</predictions_in_ft>
  2006. <predictions_in_cm>347</predictions_in_cm>
  2007. <highlow>H</highlow>
  2008. </item>
  2009. <item>
  2010. <date>2013/03/06</date>
  2011. <day>Wed</day>
  2012. <time>11:44 AM</time>
  2013. <predictions_in_ft>0.2</predictions_in_ft>
  2014. <predictions_in_cm>6</predictions_in_cm>
  2015. <highlow>L</highlow>
  2016. </item>
  2017. <item>
  2018. <date>2013/03/06</date>
  2019. <day>Wed</day>
  2020. <time>05:57 PM</time>
  2021. <predictions_in_ft>10.3</predictions_in_ft>
  2022. <predictions_in_cm>314</predictions_in_cm>
  2023. <highlow>H</highlow>
  2024. </item>
  2025. <item>
  2026. <date>2013/03/07</date>
  2027. <day>Thu</day>
  2028. <time>12:06 AM</time>
  2029. <predictions_in_ft>0.9</predictions_in_ft>
  2030. <predictions_in_cm>27</predictions_in_cm>
  2031. <highlow>L</highlow>
  2032. </item>
  2033. <item>
  2034. <date>2013/03/07</date>
  2035. <day>Thu</day>
  2036. <time>06:22 AM</time>
  2037. <predictions_in_ft>11.4</predictions_in_ft>
  2038. <predictions_in_cm>347</predictions_in_cm>
  2039. <highlow>H</highlow>
  2040. </item>
  2041. <item>
  2042. <date>2013/03/07</date>
  2043. <day>Thu</day>
  2044. <time>12:52 PM</time>
  2045. <predictions_in_ft>0.0</predictions_in_ft>
  2046. <predictions_in_cm>0</predictions_in_cm>
  2047. <highlow>L</highlow>
  2048. </item>
  2049. <item>
  2050. <date>2013/03/07</date>
  2051. <day>Thu</day>
  2052. <time>07:06 PM</time>
  2053. <predictions_in_ft>10.6</predictions_in_ft>
  2054. <predictions_in_cm>323</predictions_in_cm>
  2055. <highlow>H</highlow>
  2056. </item>
  2057. <item>
  2058. <date>2013/03/08</date>
  2059. <day>Fri</day>
  2060. <time>01:15 AM</time>
  2061. <predictions_in_ft>0.5</predictions_in_ft>
  2062. <predictions_in_cm>15</predictions_in_cm>
  2063. <highlow>L</highlow>
  2064. </item>
  2065. <item>
  2066. <date>2013/03/08</date>
  2067. <day>Fri</day>
  2068. <time>07:29 AM</time>
  2069. <predictions_in_ft>11.7</predictions_in_ft>
  2070. <predictions_in_cm>357</predictions_in_cm>
  2071. <highlow>H</highlow>
  2072. </item>
  2073. <item>
  2074. <date>2013/03/08</date>
  2075. <day>Fri</day>
  2076. <time>01:55 PM</time>
  2077. <predictions_in_ft>-0.4</predictions_in_ft>
  2078. <predictions_in_cm>-12</predictions_in_cm>
  2079. <highlow>L</highlow>
  2080. </item>
  2081. <item>
  2082. <date>2013/03/08</date>
  2083. <day>Fri</day>
  2084. <time>08:07 PM</time>
  2085. <predictions_in_ft>11.0</predictions_in_ft>
  2086. <predictions_in_cm>335</predictions_in_cm>
  2087. <highlow>H</highlow>
  2088. </item>
  2089. <item>
  2090. <date>2013/03/09</date>
  2091. <day>Sat</day>
  2092. <time>02:17 AM</time>
  2093. <predictions_in_ft>0.0</predictions_in_ft>
  2094. <predictions_in_cm>0</predictions_in_cm>
  2095. <highlow>L</highlow>
  2096. </item>
  2097. <item>
  2098. <date>2013/03/09</date>
  2099. <day>Sat</day>
  2100. <time>08:30 AM</time>
  2101. <predictions_in_ft>12.1</predictions_in_ft>
  2102. <predictions_in_cm>369</predictions_in_cm>
  2103. <highlow>H</highlow>
  2104. </item>
  2105. <item>
  2106. <date>2013/03/09</date>
  2107. <day>Sat</day>
  2108. <time>02:51 PM</time>
  2109. <predictions_in_ft>-0.7</predictions_in_ft>
  2110. <predictions_in_cm>-21</predictions_in_cm>
  2111. <highlow>L</highlow>
  2112. </item>
  2113. <item>
  2114. <date>2013/03/09</date>
  2115. <day>Sat</day>
  2116. <time>09:03 PM</time>
  2117. <predictions_in_ft>11.6</predictions_in_ft>
  2118. <predictions_in_cm>354</predictions_in_cm>
  2119. <highlow>H</highlow>
  2120. </item>
  2121. <item>
  2122. <date>2013/03/10</date>
  2123. <day>Sun</day>
  2124. <time>04:13 AM</time>
  2125. <predictions_in_ft>-0.5</predictions_in_ft>
  2126. <predictions_in_cm>-15</predictions_in_cm>
  2127. <highlow>L</highlow>
  2128. </item>
  2129. <item>
  2130. <date>2013/03/10</date>
  2131. <day>Sun</day>
  2132. <time>10:24 AM</time>
  2133. <predictions_in_ft>12.3</predictions_in_ft>
  2134. <predictions_in_cm>375</predictions_in_cm>
  2135. <highlow>H</highlow>
  2136. </item>
  2137. <item>
  2138. <date>2013/03/10</date>
  2139. <day>Sun</day>
  2140. <time>04:42 PM</time>
  2141. <predictions_in_ft>-1.0</predictions_in_ft>
  2142. <predictions_in_cm>-30</predictions_in_cm>
  2143. <highlow>L</highlow>
  2144. </item>
  2145. <item>
  2146. <date>2013/03/10</date>
  2147. <day>Sun</day>
  2148. <time>10:52 PM</time>
  2149. <predictions_in_ft>12.0</predictions_in_ft>
  2150. <predictions_in_cm>366</predictions_in_cm>
  2151. <highlow>H</highlow>
  2152. </item>
  2153. <item>
  2154. <date>2013/03/11</date>
  2155. <day>Mon</day>
  2156. <time>05:03 AM</time>
  2157. <predictions_in_ft>-0.8</predictions_in_ft>
  2158. <predictions_in_cm>-24</predictions_in_cm>
  2159. <highlow>L</highlow>
  2160. </item>
  2161. <item>
  2162. <date>2013/03/11</date>
  2163. <day>Mon</day>
  2164. <time>11:14 AM</time>
  2165. <predictions_in_ft>12.4</predictions_in_ft>
  2166. <predictions_in_cm>378</predictions_in_cm>
  2167. <highlow>H</highlow>
  2168. </item>
  2169. <item>
  2170. <date>2013/03/11</date>
  2171. <day>Mon</day>
  2172. <time>05:28 PM</time>
  2173. <predictions_in_ft>-1.0</predictions_in_ft>
  2174. <predictions_in_cm>-30</predictions_in_cm>
  2175. <highlow>L</highlow>
  2176. </item>
  2177. <item>
  2178. <date>2013/03/11</date>
  2179. <day>Mon</day>
  2180. <time>11:38 PM</time>
  2181. <predictions_in_ft>12.2</predictions_in_ft>
  2182. <predictions_in_cm>372</predictions_in_cm>
  2183. <highlow>H</highlow>
  2184. </item>
  2185. <item>
  2186. <date>2013/03/12</date>
  2187. <day>Tue</day>
  2188. <time>05:50 AM</time>
  2189. <predictions_in_ft>-1.0</predictions_in_ft>
  2190. <predictions_in_cm>-30</predictions_in_cm>
  2191. <highlow>L</highlow>
  2192. </item>
  2193. <item>
  2194. <date>2013/03/12</date>
  2195. <day>Tue</day>
  2196. <time>12:00 PM</time>
  2197. <predictions_in_ft>12.3</predictions_in_ft>
  2198. <predictions_in_cm>375</predictions_in_cm>
  2199. <highlow>H</highlow>
  2200. </item>
  2201. <item>
  2202. <date>2013/03/12</date>
  2203. <day>Tue</day>
  2204. <time>06:12 PM</time>
  2205. <predictions_in_ft>-0.9</predictions_in_ft>
  2206. <predictions_in_cm>-27</predictions_in_cm>
  2207. <highlow>L</highlow>
  2208. </item>
  2209. <item>
  2210. <date>2013/03/13</date>
  2211. <day>Wed</day>
  2212. <time>12:21 AM</time>
  2213. <predictions_in_ft>12.2</predictions_in_ft>
  2214. <predictions_in_cm>372</predictions_in_cm>
  2215. <highlow>H</highlow>
  2216. </item>
  2217. <item>
  2218. <date>2013/03/13</date>
  2219. <day>Wed</day>
  2220. <time>06:35 AM</time>
  2221. <predictions_in_ft>-0.9</predictions_in_ft>
  2222. <predictions_in_cm>-27</predictions_in_cm>
  2223. <highlow>L</highlow>
  2224. </item>
  2225. <item>
  2226. <date>2013/03/13</date>
  2227. <day>Wed</day>
  2228. <time>12:44 PM</time>
  2229. <predictions_in_ft>12.1</predictions_in_ft>
  2230. <predictions_in_cm>369</predictions_in_cm>
  2231. <highlow>H</highlow>
  2232. </item>
  2233. <item>
  2234. <date>2013/03/13</date>
  2235. <day>Wed</day>
  2236. <time>06:54 PM</time>
  2237. <predictions_in_ft>-0.6</predictions_in_ft>
  2238. <predictions_in_cm>-18</predictions_in_cm>
  2239. <highlow>L</highlow>
  2240. </item>
  2241. <item>
  2242. <date>2013/03/14</date>
  2243. <day>Thu</day>
  2244. <time>01:02 AM</time>
  2245. <predictions_in_ft>12.1</predictions_in_ft>
  2246. <predictions_in_cm>369</predictions_in_cm>
  2247. <highlow>H</highlow>
  2248. </item>
  2249. <item>
  2250. <date>2013/03/14</date>
  2251. <day>Thu</day>
  2252. <time>07:18 AM</time>
  2253. <predictions_in_ft>-0.7</predictions_in_ft>
  2254. <predictions_in_cm>-21</predictions_in_cm>
  2255. <highlow>L</highlow>
  2256. </item>
  2257. <item>
  2258. <date>2013/03/14</date>
  2259. <day>Thu</day>
  2260. <time>01:27 PM</time>
  2261. <predictions_in_ft>11.6</predictions_in_ft>
  2262. <predictions_in_cm>354</predictions_in_cm>
  2263. <highlow>H</highlow>
  2264. </item>
  2265. <item>
  2266. <date>2013/03/14</date>
  2267. <day>Thu</day>
  2268. <time>07:35 PM</time>
  2269. <predictions_in_ft>-0.1</predictions_in_ft>
  2270. <predictions_in_cm>-3</predictions_in_cm>
  2271. <highlow>L</highlow>
  2272. </item>
  2273. <item>
  2274. <date>2013/03/15</date>
  2275. <day>Fri</day>
  2276. <time>01:43 AM</time>
  2277. <predictions_in_ft>11.7</predictions_in_ft>
  2278. <predictions_in_cm>357</predictions_in_cm>
  2279. <highlow>H</highlow>
  2280. </item>
  2281. <item>
  2282. <date>2013/03/15</date>
  2283. <day>Fri</day>
  2284. <time>08:01 AM</time>
  2285. <predictions_in_ft>-0.3</predictions_in_ft>
  2286. <predictions_in_cm>-9</predictions_in_cm>
  2287. <highlow>L</highlow>
  2288. </item>
  2289. <item>
  2290. <date>2013/03/15</date>
  2291. <day>Fri</day>
  2292. <time>02:10 PM</time>
  2293. <predictions_in_ft>11.1</predictions_in_ft>
  2294. <predictions_in_cm>338</predictions_in_cm>
  2295. <highlow>H</highlow>
  2296. </item>
  2297. <item>
  2298. <date>2013/03/15</date>
  2299. <day>Fri</day>
  2300. <time>08:16 PM</time>
  2301. <predictions_in_ft>0.4</predictions_in_ft>
  2302. <predictions_in_cm>12</predictions_in_cm>
  2303. <highlow>L</highlow>
  2304. </item>
  2305. <item>
  2306. <date>2013/03/16</date>
  2307. <day>Sat</day>
  2308. <time>02:24 AM</time>
  2309. <predictions_in_ft>11.3</predictions_in_ft>
  2310. <predictions_in_cm>344</predictions_in_cm>
  2311. <highlow>H</highlow>
  2312. </item>
  2313. <item>
  2314. <date>2013/03/16</date>
  2315. <day>Sat</day>
  2316. <time>08:44 AM</time>
  2317. <predictions_in_ft>0.1</predictions_in_ft>
  2318. <predictions_in_cm>3</predictions_in_cm>
  2319. <highlow>L</highlow>
  2320. </item>
  2321. <item>
  2322. <date>2013/03/16</date>
  2323. <day>Sat</day>
  2324. <time>02:53 PM</time>
  2325. <predictions_in_ft>10.5</predictions_in_ft>
  2326. <predictions_in_cm>320</predictions_in_cm>
  2327. <highlow>H</highlow>
  2328. </item>
  2329. <item>
  2330. <date>2013/03/16</date>
  2331. <day>Sat</day>
  2332. <time>08:59 PM</time>
  2333. <predictions_in_ft>1.0</predictions_in_ft>
  2334. <predictions_in_cm>30</predictions_in_cm>
  2335. <highlow>L</highlow>
  2336. </item>
  2337. <item>
  2338. <date>2013/03/17</date>
  2339. <day>Sun</day>
  2340. <time>03:07 AM</time>
  2341. <predictions_in_ft>10.9</predictions_in_ft>
  2342. <predictions_in_cm>332</predictions_in_cm>
  2343. <highlow>H</highlow>
  2344. </item>
  2345. <item>
  2346. <date>2013/03/17</date>
  2347. <day>Sun</day>
  2348. <time>09:30 AM</time>
  2349. <predictions_in_ft>0.6</predictions_in_ft>
  2350. <predictions_in_cm>18</predictions_in_cm>
  2351. <highlow>L</highlow>
  2352. </item>
  2353. <item>
  2354. <date>2013/03/17</date>
  2355. <day>Sun</day>
  2356. <time>03:39 PM</time>
  2357. <predictions_in_ft>9.9</predictions_in_ft>
  2358. <predictions_in_cm>302</predictions_in_cm>
  2359. <highlow>H</highlow>
  2360. </item>
  2361. <item>
  2362. <date>2013/03/17</date>
  2363. <day>Sun</day>
  2364. <time>09:44 PM</time>
  2365. <predictions_in_ft>1.5</predictions_in_ft>
  2366. <predictions_in_cm>46</predictions_in_cm>
  2367. <highlow>L</highlow>
  2368. </item>
  2369. <item>
  2370. <date>2013/03/18</date>
  2371. <day>Mon</day>
  2372. <time>03:54 AM</time>
  2373. <predictions_in_ft>10.4</predictions_in_ft>
  2374. <predictions_in_cm>317</predictions_in_cm>
  2375. <highlow>H</highlow>
  2376. </item>
  2377. <item>
  2378. <date>2013/03/18</date>
  2379. <day>Mon</day>
  2380. <time>10:19 AM</time>
  2381. <predictions_in_ft>1.1</predictions_in_ft>
  2382. <predictions_in_cm>34</predictions_in_cm>
  2383. <highlow>L</highlow>
  2384. </item>
  2385. <item>
  2386. <date>2013/03/18</date>
  2387. <day>Mon</day>
  2388. <time>04:29 PM</time>
  2389. <predictions_in_ft>9.5</predictions_in_ft>
  2390. <predictions_in_cm>290</predictions_in_cm>
  2391. <highlow>H</highlow>
  2392. </item>
  2393. <item>
  2394. <date>2013/03/18</date>
  2395. <day>Mon</day>
  2396. <time>10:34 PM</time>
  2397. <predictions_in_ft>1.9</predictions_in_ft>
  2398. <predictions_in_cm>58</predictions_in_cm>
  2399. <highlow>L</highlow>
  2400. </item>
  2401. <item>
  2402. <date>2013/03/19</date>
  2403. <day>Tue</day>
  2404. <time>04:45 AM</time>
  2405. <predictions_in_ft>10.0</predictions_in_ft>
  2406. <predictions_in_cm>305</predictions_in_cm>
  2407. <highlow>H</highlow>
  2408. </item>
  2409. <item>
  2410. <date>2013/03/19</date>
  2411. <day>Tue</day>
  2412. <time>11:13 AM</time>
  2413. <predictions_in_ft>1.5</predictions_in_ft>
  2414. <predictions_in_cm>46</predictions_in_cm>
  2415. <highlow>L</highlow>
  2416. </item>
  2417. <item>
  2418. <date>2013/03/19</date>
  2419. <day>Tue</day>
  2420. <time>05:24 PM</time>
  2421. <predictions_in_ft>9.1</predictions_in_ft>
  2422. <predictions_in_cm>277</predictions_in_cm>
  2423. <highlow>H</highlow>
  2424. </item>
  2425. <item>
  2426. <date>2013/03/19</date>
  2427. <day>Tue</day>
  2428. <time>11:30 PM</time>
  2429. <predictions_in_ft>2.2</predictions_in_ft>
  2430. <predictions_in_cm>67</predictions_in_cm>
  2431. <highlow>L</highlow>
  2432. </item>
  2433. <item>
  2434. <date>2013/03/20</date>
  2435. <day>Wed</day>
  2436. <time>05:41 AM</time>
  2437. <predictions_in_ft>9.8</predictions_in_ft>
  2438. <predictions_in_cm>299</predictions_in_cm>
  2439. <highlow>H</highlow>
  2440. </item>
  2441. <item>
  2442. <date>2013/03/20</date>
  2443. <day>Wed</day>
  2444. <time>12:10 PM</time>
  2445. <predictions_in_ft>1.6</predictions_in_ft>
  2446. <predictions_in_cm>49</predictions_in_cm>
  2447. <highlow>L</highlow>
  2448. </item>
  2449. <item>
  2450. <date>2013/03/20</date>
  2451. <day>Wed</day>
  2452. <time>06:22 PM</time>
  2453. <predictions_in_ft>9.0</predictions_in_ft>
  2454. <predictions_in_cm>274</predictions_in_cm>
  2455. <highlow>H</highlow>
  2456. </item>
  2457. <item>
  2458. <date>2013/03/21</date>
  2459. <day>Thu</day>
  2460. <time>12:29 AM</time>
  2461. <predictions_in_ft>2.3</predictions_in_ft>
  2462. <predictions_in_cm>70</predictions_in_cm>
  2463. <highlow>L</highlow>
  2464. </item>
  2465. <item>
  2466. <date>2013/03/21</date>
  2467. <day>Thu</day>
  2468. <time>06:40 AM</time>
  2469. <predictions_in_ft>9.7</predictions_in_ft>
  2470. <predictions_in_cm>296</predictions_in_cm>
  2471. <highlow>H</highlow>
  2472. </item>
  2473. <item>
  2474. <date>2013/03/21</date>
  2475. <day>Thu</day>
  2476. <time>01:08 PM</time>
  2477. <predictions_in_ft>1.6</predictions_in_ft>
  2478. <predictions_in_cm>49</predictions_in_cm>
  2479. <highlow>L</highlow>
  2480. </item>
  2481. <item>
  2482. <date>2013/03/21</date>
  2483. <day>Thu</day>
  2484. <time>07:20 PM</time>
  2485. <predictions_in_ft>9.1</predictions_in_ft>
  2486. <predictions_in_cm>277</predictions_in_cm>
  2487. <highlow>H</highlow>
  2488. </item>
  2489. <item>
  2490. <date>2013/03/22</date>
  2491. <day>Fri</day>
  2492. <time>01:27 AM</time>
  2493. <predictions_in_ft>2.1</predictions_in_ft>
  2494. <predictions_in_cm>64</predictions_in_cm>
  2495. <highlow>L</highlow>
  2496. </item>
  2497. <item>
  2498. <date>2013/03/22</date>
  2499. <day>Fri</day>
  2500. <time>07:38 AM</time>
  2501. <predictions_in_ft>9.9</predictions_in_ft>
  2502. <predictions_in_cm>302</predictions_in_cm>
  2503. <highlow>H</highlow>
  2504. </item>
  2505. <item>
  2506. <date>2013/03/22</date>
  2507. <day>Fri</day>
  2508. <time>02:03 PM</time>
  2509. <predictions_in_ft>1.4</predictions_in_ft>
  2510. <predictions_in_cm>43</predictions_in_cm>
  2511. <highlow>L</highlow>
  2512. </item>
  2513. <item>
  2514. <date>2013/03/22</date>
  2515. <day>Fri</day>
  2516. <time>08:13 PM</time>
  2517. <predictions_in_ft>9.5</predictions_in_ft>
  2518. <predictions_in_cm>290</predictions_in_cm>
  2519. <highlow>H</highlow>
  2520. </item>
  2521. <item>
  2522. <date>2013/03/23</date>
  2523. <day>Sat</day>
  2524. <time>02:22 AM</time>
  2525. <predictions_in_ft>1.7</predictions_in_ft>
  2526. <predictions_in_cm>52</predictions_in_cm>
  2527. <highlow>L</highlow>
  2528. </item>
  2529. <item>
  2530. <date>2013/03/23</date>
  2531. <day>Sat</day>
  2532. <time>08:31 AM</time>
  2533. <predictions_in_ft>10.2</predictions_in_ft>
  2534. <predictions_in_cm>311</predictions_in_cm>
  2535. <highlow>H</highlow>
  2536. </item>
  2537. <item>
  2538. <date>2013/03/23</date>
  2539. <day>Sat</day>
  2540. <time>02:52 PM</time>
  2541. <predictions_in_ft>1.1</predictions_in_ft>
  2542. <predictions_in_cm>34</predictions_in_cm>
  2543. <highlow>L</highlow>
  2544. </item>
  2545. <item>
  2546. <date>2013/03/23</date>
  2547. <day>Sat</day>
  2548. <time>09:01 PM</time>
  2549. <predictions_in_ft>9.9</predictions_in_ft>
  2550. <predictions_in_cm>302</predictions_in_cm>
  2551. <highlow>H</highlow>
  2552. </item>
  2553. <item>
  2554. <date>2013/03/24</date>
  2555. <day>Sun</day>
  2556. <time>03:11 AM</time>
  2557. <predictions_in_ft>1.2</predictions_in_ft>
  2558. <predictions_in_cm>37</predictions_in_cm>
  2559. <highlow>L</highlow>
  2560. </item>
  2561. <item>
  2562. <date>2013/03/24</date>
  2563. <day>Sun</day>
  2564. <time>09:19 AM</time>
  2565. <predictions_in_ft>10.6</predictions_in_ft>
  2566. <predictions_in_cm>323</predictions_in_cm>
  2567. <highlow>H</highlow>
  2568. </item>
  2569. <item>
  2570. <date>2013/03/24</date>
  2571. <day>Sun</day>
  2572. <time>03:36 PM</time>
  2573. <predictions_in_ft>0.6</predictions_in_ft>
  2574. <predictions_in_cm>18</predictions_in_cm>
  2575. <highlow>L</highlow>
  2576. </item>
  2577. <item>
  2578. <date>2013/03/24</date>
  2579. <day>Sun</day>
  2580. <time>09:45 PM</time>
  2581. <predictions_in_ft>10.5</predictions_in_ft>
  2582. <predictions_in_cm>320</predictions_in_cm>
  2583. <highlow>H</highlow>
  2584. </item>
  2585. <item>
  2586. <date>2013/03/25</date>
  2587. <day>Mon</day>
  2588. <time>03:55 AM</time>
  2589. <predictions_in_ft>0.6</predictions_in_ft>
  2590. <predictions_in_cm>18</predictions_in_cm>
  2591. <highlow>L</highlow>
  2592. </item>
  2593. <item>
  2594. <date>2013/03/25</date>
  2595. <day>Mon</day>
  2596. <time>10:03 AM</time>
  2597. <predictions_in_ft>11.1</predictions_in_ft>
  2598. <predictions_in_cm>338</predictions_in_cm>
  2599. <highlow>H</highlow>
  2600. </item>
  2601. <item>
  2602. <date>2013/03/25</date>
  2603. <day>Mon</day>
  2604. <time>04:17 PM</time>
  2605. <predictions_in_ft>0.2</predictions_in_ft>
  2606. <predictions_in_cm>6</predictions_in_cm>
  2607. <highlow>L</highlow>
  2608. </item>
  2609. <item>
  2610. <date>2013/03/25</date>
  2611. <day>Mon</day>
  2612. <time>10:25 PM</time>
  2613. <predictions_in_ft>11.1</predictions_in_ft>
  2614. <predictions_in_cm>338</predictions_in_cm>
  2615. <highlow>H</highlow>
  2616. </item>
  2617. <item>
  2618. <date>2013/03/26</date>
  2619. <day>Tue</day>
  2620. <time>04:37 AM</time>
  2621. <predictions_in_ft>0.0</predictions_in_ft>
  2622. <predictions_in_cm>0</predictions_in_cm>
  2623. <highlow>L</highlow>
  2624. </item>
  2625. <item>
  2626. <date>2013/03/26</date>
  2627. <day>Tue</day>
  2628. <time>10:46 AM</time>
  2629. <predictions_in_ft>11.5</predictions_in_ft>
  2630. <predictions_in_cm>351</predictions_in_cm>
  2631. <highlow>H</highlow>
  2632. </item>
  2633. <item>
  2634. <date>2013/03/26</date>
  2635. <day>Tue</day>
  2636. <time>04:57 PM</time>
  2637. <predictions_in_ft>-0.2</predictions_in_ft>
  2638. <predictions_in_cm>-6</predictions_in_cm>
  2639. <highlow>L</highlow>
  2640. </item>
  2641. <item>
  2642. <date>2013/03/26</date>
  2643. <day>Tue</day>
  2644. <time>11:04 PM</time>
  2645. <predictions_in_ft>11.7</predictions_in_ft>
  2646. <predictions_in_cm>357</predictions_in_cm>
  2647. <highlow>H</highlow>
  2648. </item>
  2649. <item>
  2650. <date>2013/03/27</date>
  2651. <day>Wed</day>
  2652. <time>05:18 AM</time>
  2653. <predictions_in_ft>-0.5</predictions_in_ft>
  2654. <predictions_in_cm>-15</predictions_in_cm>
  2655. <highlow>L</highlow>
  2656. </item>
  2657. <item>
  2658. <date>2013/03/27</date>
  2659. <day>Wed</day>
  2660. <time>11:27 AM</time>
  2661. <predictions_in_ft>11.8</predictions_in_ft>
  2662. <predictions_in_cm>360</predictions_in_cm>
  2663. <highlow>H</highlow>
  2664. </item>
  2665. <item>
  2666. <date>2013/03/27</date>
  2667. <day>Wed</day>
  2668. <time>05:36 PM</time>
  2669. <predictions_in_ft>-0.4</predictions_in_ft>
  2670. <predictions_in_cm>-12</predictions_in_cm>
  2671. <highlow>L</highlow>
  2672. </item>
  2673. <item>
  2674. <date>2013/03/27</date>
  2675. <day>Wed</day>
  2676. <time>11:44 PM</time>
  2677. <predictions_in_ft>12.2</predictions_in_ft>
  2678. <predictions_in_cm>372</predictions_in_cm>
  2679. <highlow>H</highlow>
  2680. </item>
  2681. <item>
  2682. <date>2013/03/28</date>
  2683. <day>Thu</day>
  2684. <time>06:00 AM</time>
  2685. <predictions_in_ft>-0.9</predictions_in_ft>
  2686. <predictions_in_cm>-27</predictions_in_cm>
  2687. <highlow>L</highlow>
  2688. </item>
  2689. <item>
  2690. <date>2013/03/28</date>
  2691. <day>Thu</day>
  2692. <time>12:09 PM</time>
  2693. <predictions_in_ft>11.9</predictions_in_ft>
  2694. <predictions_in_cm>363</predictions_in_cm>
  2695. <highlow>H</highlow>
  2696. </item>
  2697. <item>
  2698. <date>2013/03/28</date>
  2699. <day>Thu</day>
  2700. <time>06:17 PM</time>
  2701. <predictions_in_ft>-0.6</predictions_in_ft>
  2702. <predictions_in_cm>-18</predictions_in_cm>
  2703. <highlow>L</highlow>
  2704. </item>
  2705. <item>
  2706. <date>2013/03/29</date>
  2707. <day>Fri</day>
  2708. <time>12:25 AM</time>
  2709. <predictions_in_ft>12.5</predictions_in_ft>
  2710. <predictions_in_cm>381</predictions_in_cm>
  2711. <highlow>H</highlow>
  2712. </item>
  2713. <item>
  2714. <date>2013/03/29</date>
  2715. <day>Fri</day>
  2716. <time>06:44 AM</time>
  2717. <predictions_in_ft>-1.2</predictions_in_ft>
  2718. <predictions_in_cm>-37</predictions_in_cm>
  2719. <highlow>L</highlow>
  2720. </item>
  2721. <item>
  2722. <date>2013/03/29</date>
  2723. <day>Fri</day>
  2724. <time>12:54 PM</time>
  2725. <predictions_in_ft>11.9</predictions_in_ft>
  2726. <predictions_in_cm>363</predictions_in_cm>
  2727. <highlow>H</highlow>
  2728. </item>
  2729. <item>
  2730. <date>2013/03/29</date>
  2731. <day>Fri</day>
  2732. <time>07:00 PM</time>
  2733. <predictions_in_ft>-0.6</predictions_in_ft>
  2734. <predictions_in_cm>-18</predictions_in_cm>
  2735. <highlow>L</highlow>
  2736. </item>
  2737. <item>
  2738. <date>2013/03/30</date>
  2739. <day>Sat</day>
  2740. <time>01:10 AM</time>
  2741. <predictions_in_ft>12.6</predictions_in_ft>
  2742. <predictions_in_cm>384</predictions_in_cm>
  2743. <highlow>H</highlow>
  2744. </item>
  2745. <item>
  2746. <date>2013/03/30</date>
  2747. <day>Sat</day>
  2748. <time>07:30 AM</time>
  2749. <predictions_in_ft>-1.2</predictions_in_ft>
  2750. <predictions_in_cm>-37</predictions_in_cm>
  2751. <highlow>L</highlow>
  2752. </item>
  2753. <item>
  2754. <date>2013/03/30</date>
  2755. <day>Sat</day>
  2756. <time>01:41 PM</time>
  2757. <predictions_in_ft>11.8</predictions_in_ft>
  2758. <predictions_in_cm>360</predictions_in_cm>
  2759. <highlow>H</highlow>
  2760. </item>
  2761. <item>
  2762. <date>2013/03/30</date>
  2763. <day>Sat</day>
  2764. <time>07:46 PM</time>
  2765. <predictions_in_ft>-0.4</predictions_in_ft>
  2766. <predictions_in_cm>-12</predictions_in_cm>
  2767. <highlow>L</highlow>
  2768. </item>
  2769. <item>
  2770. <date>2013/03/31</date>
  2771. <day>Sun</day>
  2772. <time>01:58 AM</time>
  2773. <predictions_in_ft>12.6</predictions_in_ft>
  2774. <predictions_in_cm>384</predictions_in_cm>
  2775. <highlow>H</highlow>
  2776. </item>
  2777. <item>
  2778. <date>2013/03/31</date>
  2779. <day>Sun</day>
  2780. <time>08:21 AM</time>
  2781. <predictions_in_ft>-1.1</predictions_in_ft>
  2782. <predictions_in_cm>-34</predictions_in_cm>
  2783. <highlow>L</highlow>
  2784. </item>
  2785. <item>
  2786. <date>2013/03/31</date>
  2787. <day>Sun</day>
  2788. <time>02:32 PM</time>
  2789. <predictions_in_ft>11.4</predictions_in_ft>
  2790. <predictions_in_cm>347</predictions_in_cm>
  2791. <highlow>H</highlow>
  2792. </item>
  2793. <item>
  2794. <date>2013/03/31</date>
  2795. <day>Sun</day>
  2796. <time>08:38 PM</time>
  2797. <predictions_in_ft>-0.1</predictions_in_ft>
  2798. <predictions_in_cm>-3</predictions_in_cm>
  2799. <highlow>L</highlow>
  2800. </item>
  2801. <item>
  2802. <date>2013/04/01</date>
  2803. <day>Mon</day>
  2804. <time>02:50 AM</time>
  2805. <predictions_in_ft>12.3</predictions_in_ft>
  2806. <predictions_in_cm>375</predictions_in_cm>
  2807. <highlow>H</highlow>
  2808. </item>
  2809. <item>
  2810. <date>2013/04/01</date>
  2811. <day>Mon</day>
  2812. <time>09:16 AM</time>
  2813. <predictions_in_ft>-0.8</predictions_in_ft>
  2814. <predictions_in_cm>-24</predictions_in_cm>
  2815. <highlow>L</highlow>
  2816. </item>
  2817. <item>
  2818. <date>2013/04/01</date>
  2819. <day>Mon</day>
  2820. <time>03:29 PM</time>
  2821. <predictions_in_ft>11.1</predictions_in_ft>
  2822. <predictions_in_cm>338</predictions_in_cm>
  2823. <highlow>H</highlow>
  2824. </item>
  2825. <item>
  2826. <date>2013/04/01</date>
  2827. <day>Mon</day>
  2828. <time>09:35 PM</time>
  2829. <predictions_in_ft>0.3</predictions_in_ft>
  2830. <predictions_in_cm>9</predictions_in_cm>
  2831. <highlow>L</highlow>
  2832. </item>
  2833. <item>
  2834. <date>2013/04/02</date>
  2835. <day>Tue</day>
  2836. <time>03:48 AM</time>
  2837. <predictions_in_ft>11.9</predictions_in_ft>
  2838. <predictions_in_cm>363</predictions_in_cm>
  2839. <highlow>H</highlow>
  2840. </item>
  2841. <item>
  2842. <date>2013/04/02</date>
  2843. <day>Tue</day>
  2844. <time>10:17 AM</time>
  2845. <predictions_in_ft>-0.4</predictions_in_ft>
  2846. <predictions_in_cm>-12</predictions_in_cm>
  2847. <highlow>L</highlow>
  2848. </item>
  2849. <item>
  2850. <date>2013/04/02</date>
  2851. <day>Tue</day>
  2852. <time>04:31 PM</time>
  2853. <predictions_in_ft>10.7</predictions_in_ft>
  2854. <predictions_in_cm>326</predictions_in_cm>
  2855. <highlow>H</highlow>
  2856. </item>
  2857. <item>
  2858. <date>2013/04/02</date>
  2859. <day>Tue</day>
  2860. <time>10:38 PM</time>
  2861. <predictions_in_ft>0.7</predictions_in_ft>
  2862. <predictions_in_cm>21</predictions_in_cm>
  2863. <highlow>L</highlow>
  2864. </item>
  2865. <item>
  2866. <date>2013/04/03</date>
  2867. <day>Wed</day>
  2868. <time>04:53 AM</time>
  2869. <predictions_in_ft>11.5</predictions_in_ft>
  2870. <predictions_in_cm>351</predictions_in_cm>
  2871. <highlow>H</highlow>
  2872. </item>
  2873. <item>
  2874. <date>2013/04/03</date>
  2875. <day>Wed</day>
  2876. <time>11:22 AM</time>
  2877. <predictions_in_ft>-0.1</predictions_in_ft>
  2878. <predictions_in_cm>-3</predictions_in_cm>
  2879. <highlow>L</highlow>
  2880. </item>
  2881. <item>
  2882. <date>2013/04/03</date>
  2883. <day>Wed</day>
  2884. <time>05:38 PM</time>
  2885. <predictions_in_ft>10.5</predictions_in_ft>
  2886. <predictions_in_cm>320</predictions_in_cm>
  2887. <highlow>H</highlow>
  2888. </item>
  2889. <item>
  2890. <date>2013/04/03</date>
  2891. <day>Wed</day>
  2892. <time>11:48 PM</time>
  2893. <predictions_in_ft>0.8</predictions_in_ft>
  2894. <predictions_in_cm>24</predictions_in_cm>
  2895. <highlow>L</highlow>
  2896. </item>
  2897. <item>
  2898. <date>2013/04/04</date>
  2899. <day>Thu</day>
  2900. <time>06:02 AM</time>
  2901. <predictions_in_ft>11.3</predictions_in_ft>
  2902. <predictions_in_cm>344</predictions_in_cm>
  2903. <highlow>H</highlow>
  2904. </item>
  2905. <item>
  2906. <date>2013/04/04</date>
  2907. <day>Thu</day>
  2908. <time>12:30 PM</time>
  2909. <predictions_in_ft>0.1</predictions_in_ft>
  2910. <predictions_in_cm>3</predictions_in_cm>
  2911. <highlow>L</highlow>
  2912. </item>
  2913. <item>
  2914. <date>2013/04/04</date>
  2915. <day>Thu</day>
  2916. <time>06:46 PM</time>
  2917. <predictions_in_ft>10.5</predictions_in_ft>
  2918. <predictions_in_cm>320</predictions_in_cm>
  2919. <highlow>H</highlow>
  2920. </item>
  2921. <item>
  2922. <date>2013/04/05</date>
  2923. <day>Fri</day>
  2924. <time>12:58 AM</time>
  2925. <predictions_in_ft>0.8</predictions_in_ft>
  2926. <predictions_in_cm>24</predictions_in_cm>
  2927. <highlow>L</highlow>
  2928. </item>
  2929. <item>
  2930. <date>2013/04/05</date>
  2931. <day>Fri</day>
  2932. <time>07:11 AM</time>
  2933. <predictions_in_ft>11.2</predictions_in_ft>
  2934. <predictions_in_cm>341</predictions_in_cm>
  2935. <highlow>H</highlow>
  2936. </item>
  2937. <item>
  2938. <date>2013/04/05</date>
  2939. <day>Fri</day>
  2940. <time>01:36 PM</time>
  2941. <predictions_in_ft>0.0</predictions_in_ft>
  2942. <predictions_in_cm>0</predictions_in_cm>
  2943. <highlow>L</highlow>
  2944. </item>
  2945. <item>
  2946. <date>2013/04/05</date>
  2947. <day>Fri</day>
  2948. <time>07:52 PM</time>
  2949. <predictions_in_ft>10.8</predictions_in_ft>
  2950. <predictions_in_cm>329</predictions_in_cm>
  2951. <highlow>H</highlow>
  2952. </item>
  2953. <item>
  2954. <date>2013/04/06</date>
  2955. <day>Sat</day>
  2956. <time>02:05 AM</time>
  2957. <predictions_in_ft>0.5</predictions_in_ft>
  2958. <predictions_in_cm>15</predictions_in_cm>
  2959. <highlow>L</highlow>
  2960. </item>
  2961. <item>
  2962. <date>2013/04/06</date>
  2963. <day>Sat</day>
  2964. <time>08:17 AM</time>
  2965. <predictions_in_ft>11.3</predictions_in_ft>
  2966. <predictions_in_cm>344</predictions_in_cm>
  2967. <highlow>H</highlow>
  2968. </item>
  2969. <item>
  2970. <date>2013/04/06</date>
  2971. <day>Sat</day>
  2972. <time>02:37 PM</time>
  2973. <predictions_in_ft>-0.1</predictions_in_ft>
  2974. <predictions_in_cm>-3</predictions_in_cm>
  2975. <highlow>L</highlow>
  2976. </item>
  2977. <item>
  2978. <date>2013/04/06</date>
  2979. <day>Sat</day>
  2980. <time>08:51 PM</time>
  2981. <predictions_in_ft>11.2</predictions_in_ft>
  2982. <predictions_in_cm>341</predictions_in_cm>
  2983. <highlow>H</highlow>
  2984. </item>
  2985. <item>
  2986. <date>2013/04/07</date>
  2987. <day>Sun</day>
  2988. <time>03:05 AM</time>
  2989. <predictions_in_ft>0.0</predictions_in_ft>
  2990. <predictions_in_cm>0</predictions_in_cm>
  2991. <highlow>L</highlow>
  2992. </item>
  2993. <item>
  2994. <date>2013/04/07</date>
  2995. <day>Sun</day>
  2996. <time>09:16 AM</time>
  2997. <predictions_in_ft>11.5</predictions_in_ft>
  2998. <predictions_in_cm>351</predictions_in_cm>
  2999. <highlow>H</highlow>
  3000. </item>
  3001. <item>
  3002. <date>2013/04/07</date>
  3003. <day>Sun</day>
  3004. <time>03:32 PM</time>
  3005. <predictions_in_ft>-0.3</predictions_in_ft>
  3006. <predictions_in_cm>-9</predictions_in_cm>
  3007. <highlow>L</highlow>
  3008. </item>
  3009. <item>
  3010. <date>2013/04/07</date>
  3011. <day>Sun</day>
  3012. <time>09:44 PM</time>
  3013. <predictions_in_ft>11.6</predictions_in_ft>
  3014. <predictions_in_cm>354</predictions_in_cm>
  3015. <highlow>H</highlow>
  3016. </item>
  3017. <item>
  3018. <date>2013/04/08</date>
  3019. <day>Mon</day>
  3020. <time>03:59 AM</time>
  3021. <predictions_in_ft>-0.4</predictions_in_ft>
  3022. <predictions_in_cm>-12</predictions_in_cm>
  3023. <highlow>L</highlow>
  3024. </item>
  3025. <item>
  3026. <date>2013/04/08</date>
  3027. <day>Mon</day>
  3028. <time>10:09 AM</time>
  3029. <predictions_in_ft>11.7</predictions_in_ft>
  3030. <predictions_in_cm>357</predictions_in_cm>
  3031. <highlow>H</highlow>
  3032. </item>
  3033. <item>
  3034. <date>2013/04/08</date>
  3035. <day>Mon</day>
  3036. <time>04:21 PM</time>
  3037. <predictions_in_ft>-0.4</predictions_in_ft>
  3038. <predictions_in_cm>-12</predictions_in_cm>
  3039. <highlow>L</highlow>
  3040. </item>
  3041. <item>
  3042. <date>2013/04/08</date>
  3043. <day>Mon</day>
  3044. <time>10:32 PM</time>
  3045. <predictions_in_ft>11.9</predictions_in_ft>
  3046. <predictions_in_cm>363</predictions_in_cm>
  3047. <highlow>H</highlow>
  3048. </item>
  3049. <item>
  3050. <date>2013/04/09</date>
  3051. <day>Tue</day>
  3052. <time>04:48 AM</time>
  3053. <predictions_in_ft>-0.7</predictions_in_ft>
  3054. <predictions_in_cm>-21</predictions_in_cm>
  3055. <highlow>L</highlow>
  3056. </item>
  3057. <item>
  3058. <date>2013/04/09</date>
  3059. <day>Tue</day>
  3060. <time>10:57 AM</time>
  3061. <predictions_in_ft>11.7</predictions_in_ft>
  3062. <predictions_in_cm>357</predictions_in_cm>
  3063. <highlow>H</highlow>
  3064. </item>
  3065. <item>
  3066. <date>2013/04/09</date>
  3067. <day>Tue</day>
  3068. <time>05:07 PM</time>
  3069. <predictions_in_ft>-0.4</predictions_in_ft>
  3070. <predictions_in_cm>-12</predictions_in_cm>
  3071. <highlow>L</highlow>
  3072. </item>
  3073. <item>
  3074. <date>2013/04/09</date>
  3075. <day>Tue</day>
  3076. <time>11:16 PM</time>
  3077. <predictions_in_ft>12.1</predictions_in_ft>
  3078. <predictions_in_cm>369</predictions_in_cm>
  3079. <highlow>H</highlow>
  3080. </item>
  3081. <item>
  3082. <date>2013/04/10</date>
  3083. <day>Wed</day>
  3084. <time>05:33 AM</time>
  3085. <predictions_in_ft>-0.8</predictions_in_ft>
  3086. <predictions_in_cm>-24</predictions_in_cm>
  3087. <highlow>L</highlow>
  3088. </item>
  3089. <item>
  3090. <date>2013/04/10</date>
  3091. <day>Wed</day>
  3092. <time>11:42 AM</time>
  3093. <predictions_in_ft>11.6</predictions_in_ft>
  3094. <predictions_in_cm>354</predictions_in_cm>
  3095. <highlow>H</highlow>
  3096. </item>
  3097. <item>
  3098. <date>2013/04/10</date>
  3099. <day>Wed</day>
  3100. <time>05:48 PM</time>
  3101. <predictions_in_ft>-0.2</predictions_in_ft>
  3102. <predictions_in_cm>-6</predictions_in_cm>
  3103. <highlow>L</highlow>
  3104. </item>
  3105. <item>
  3106. <date>2013/04/10</date>
  3107. <day>Wed</day>
  3108. <time>11:56 PM</time>
  3109. <predictions_in_ft>12.0</predictions_in_ft>
  3110. <predictions_in_cm>366</predictions_in_cm>
  3111. <highlow>H</highlow>
  3112. </item>
  3113. <item>
  3114. <date>2013/04/11</date>
  3115. <day>Thu</day>
  3116. <time>06:14 AM</time>
  3117. <predictions_in_ft>-0.7</predictions_in_ft>
  3118. <predictions_in_cm>-21</predictions_in_cm>
  3119. <highlow>L</highlow>
  3120. </item>
  3121. <item>
  3122. <date>2013/04/11</date>
  3123. <day>Thu</day>
  3124. <time>12:23 PM</time>
  3125. <predictions_in_ft>11.4</predictions_in_ft>
  3126. <predictions_in_cm>347</predictions_in_cm>
  3127. <highlow>H</highlow>
  3128. </item>
  3129. <item>
  3130. <date>2013/04/11</date>
  3131. <day>Thu</day>
  3132. <time>06:28 PM</time>
  3133. <predictions_in_ft>0.1</predictions_in_ft>
  3134. <predictions_in_cm>3</predictions_in_cm>
  3135. <highlow>L</highlow>
  3136. </item>
  3137. <item>
  3138. <date>2013/04/12</date>
  3139. <day>Fri</day>
  3140. <time>12:35 AM</time>
  3141. <predictions_in_ft>11.9</predictions_in_ft>
  3142. <predictions_in_cm>363</predictions_in_cm>
  3143. <highlow>H</highlow>
  3144. </item>
  3145. <item>
  3146. <date>2013/04/12</date>
  3147. <day>Fri</day>
  3148. <time>06:55 AM</time>
  3149. <predictions_in_ft>-0.5</predictions_in_ft>
  3150. <predictions_in_cm>-15</predictions_in_cm>
  3151. <highlow>L</highlow>
  3152. </item>
  3153. <item>
  3154. <date>2013/04/12</date>
  3155. <day>Fri</day>
  3156. <time>01:04 PM</time>
  3157. <predictions_in_ft>11.1</predictions_in_ft>
  3158. <predictions_in_cm>338</predictions_in_cm>
  3159. <highlow>H</highlow>
  3160. </item>
  3161. <item>
  3162. <date>2013/04/12</date>
  3163. <day>Fri</day>
  3164. <time>07:07 PM</time>
  3165. <predictions_in_ft>0.4</predictions_in_ft>
  3166. <predictions_in_cm>12</predictions_in_cm>
  3167. <highlow>L</highlow>
  3168. </item>
  3169. <item>
  3170. <date>2013/04/13</date>
  3171. <day>Sat</day>
  3172. <time>01:13 AM</time>
  3173. <predictions_in_ft>11.6</predictions_in_ft>
  3174. <predictions_in_cm>354</predictions_in_cm>
  3175. <highlow>H</highlow>
  3176. </item>
  3177. <item>
  3178. <date>2013/04/13</date>
  3179. <day>Sat</day>
  3180. <time>07:34 AM</time>
  3181. <predictions_in_ft>-0.2</predictions_in_ft>
  3182. <predictions_in_cm>-6</predictions_in_cm>
  3183. <highlow>L</highlow>
  3184. </item>
  3185. <item>
  3186. <date>2013/04/13</date>
  3187. <day>Sat</day>
  3188. <time>01:43 PM</time>
  3189. <predictions_in_ft>10.7</predictions_in_ft>
  3190. <predictions_in_cm>326</predictions_in_cm>
  3191. <highlow>H</highlow>
  3192. </item>
  3193. <item>
  3194. <date>2013/04/13</date>
  3195. <day>Sat</day>
  3196. <time>07:46 PM</time>
  3197. <predictions_in_ft>0.8</predictions_in_ft>
  3198. <predictions_in_cm>24</predictions_in_cm>
  3199. <highlow>L</highlow>
  3200. </item>
  3201. <item>
  3202. <date>2013/04/14</date>
  3203. <day>Sun</day>
  3204. <time>01:52 AM</time>
  3205. <predictions_in_ft>11.2</predictions_in_ft>
  3206. <predictions_in_cm>341</predictions_in_cm>
  3207. <highlow>H</highlow>
  3208. </item>
  3209. <item>
  3210. <date>2013/04/14</date>
  3211. <day>Sun</day>
  3212. <time>08:15 AM</time>
  3213. <predictions_in_ft>0.1</predictions_in_ft>
  3214. <predictions_in_cm>3</predictions_in_cm>
  3215. <highlow>L</highlow>
  3216. </item>
  3217. <item>
  3218. <date>2013/04/14</date>
  3219. <day>Sun</day>
  3220. <time>02:24 PM</time>
  3221. <predictions_in_ft>10.3</predictions_in_ft>
  3222. <predictions_in_cm>314</predictions_in_cm>
  3223. <highlow>H</highlow>
  3224. </item>
  3225. <item>
  3226. <date>2013/04/14</date>
  3227. <day>Sun</day>
  3228. <time>08:26 PM</time>
  3229. <predictions_in_ft>1.2</predictions_in_ft>
  3230. <predictions_in_cm>37</predictions_in_cm>
  3231. <highlow>L</highlow>
  3232. </item>
  3233. <item>
  3234. <date>2013/04/15</date>
  3235. <day>Mon</day>
  3236. <time>02:32 AM</time>
  3237. <predictions_in_ft>10.9</predictions_in_ft>
  3238. <predictions_in_cm>332</predictions_in_cm>
  3239. <highlow>H</highlow>
  3240. </item>
  3241. <item>
  3242. <date>2013/04/15</date>
  3243. <day>Mon</day>
  3244. <time>08:57 AM</time>
  3245. <predictions_in_ft>0.5</predictions_in_ft>
  3246. <predictions_in_cm>15</predictions_in_cm>
  3247. <highlow>L</highlow>
  3248. </item>
  3249. <item>
  3250. <date>2013/04/15</date>
  3251. <day>Mon</day>
  3252. <time>03:07 PM</time>
  3253. <predictions_in_ft>9.9</predictions_in_ft>
  3254. <predictions_in_cm>302</predictions_in_cm>
  3255. <highlow>H</highlow>
  3256. </item>
  3257. <item>
  3258. <date>2013/04/15</date>
  3259. <day>Mon</day>
  3260. <time>09:09 PM</time>
  3261. <predictions_in_ft>1.6</predictions_in_ft>
  3262. <predictions_in_cm>49</predictions_in_cm>
  3263. <highlow>L</highlow>
  3264. </item>
  3265. <item>
  3266. <date>2013/04/16</date>
  3267. <day>Tue</day>
  3268. <time>03:16 AM</time>
  3269. <predictions_in_ft>10.5</predictions_in_ft>
  3270. <predictions_in_cm>320</predictions_in_cm>
  3271. <highlow>H</highlow>
  3272. </item>
  3273. <item>
  3274. <date>2013/04/16</date>
  3275. <day>Tue</day>
  3276. <time>09:41 AM</time>
  3277. <predictions_in_ft>0.9</predictions_in_ft>
  3278. <predictions_in_cm>27</predictions_in_cm>
  3279. <highlow>L</highlow>
  3280. </item>
  3281. <item>
  3282. <date>2013/04/16</date>
  3283. <day>Tue</day>
  3284. <time>03:52 PM</time>
  3285. <predictions_in_ft>9.6</predictions_in_ft>
  3286. <predictions_in_cm>293</predictions_in_cm>
  3287. <highlow>H</highlow>
  3288. </item>
  3289. <item>
  3290. <date>2013/04/16</date>
  3291. <day>Tue</day>
  3292. <time>09:56 PM</time>
  3293. <predictions_in_ft>1.9</predictions_in_ft>
  3294. <predictions_in_cm>58</predictions_in_cm>
  3295. <highlow>L</highlow>
  3296. </item>
  3297. <item>
  3298. <date>2013/04/17</date>
  3299. <day>Wed</day>
  3300. <time>04:04 AM</time>
  3301. <predictions_in_ft>10.1</predictions_in_ft>
  3302. <predictions_in_cm>308</predictions_in_cm>
  3303. <highlow>H</highlow>
  3304. </item>
  3305. <item>
  3306. <date>2013/04/17</date>
  3307. <day>Wed</day>
  3308. <time>10:30 AM</time>
  3309. <predictions_in_ft>1.2</predictions_in_ft>
  3310. <predictions_in_cm>37</predictions_in_cm>
  3311. <highlow>L</highlow>
  3312. </item>
  3313. <item>
  3314. <date>2013/04/17</date>
  3315. <day>Wed</day>
  3316. <time>04:42 PM</time>
  3317. <predictions_in_ft>9.4</predictions_in_ft>
  3318. <predictions_in_cm>287</predictions_in_cm>
  3319. <highlow>H</highlow>
  3320. </item>
  3321. <item>
  3322. <date>2013/04/17</date>
  3323. <day>Wed</day>
  3324. <time>10:47 PM</time>
  3325. <predictions_in_ft>2.1</predictions_in_ft>
  3326. <predictions_in_cm>64</predictions_in_cm>
  3327. <highlow>L</highlow>
  3328. </item>
  3329. <item>
  3330. <date>2013/04/18</date>
  3331. <day>Thu</day>
  3332. <time>04:55 AM</time>
  3333. <predictions_in_ft>9.9</predictions_in_ft>
  3334. <predictions_in_cm>302</predictions_in_cm>
  3335. <highlow>H</highlow>
  3336. </item>
  3337. <item>
  3338. <date>2013/04/18</date>
  3339. <day>Thu</day>
  3340. <time>11:22 AM</time>
  3341. <predictions_in_ft>1.4</predictions_in_ft>
  3342. <predictions_in_cm>43</predictions_in_cm>
  3343. <highlow>L</highlow>
  3344. </item>
  3345. <item>
  3346. <date>2013/04/18</date>
  3347. <day>Thu</day>
  3348. <time>05:35 PM</time>
  3349. <predictions_in_ft>9.3</predictions_in_ft>
  3350. <predictions_in_cm>283</predictions_in_cm>
  3351. <highlow>H</highlow>
  3352. </item>
  3353. <item>
  3354. <date>2013/04/18</date>
  3355. <day>Thu</day>
  3356. <time>11:43 PM</time>
  3357. <predictions_in_ft>2.2</predictions_in_ft>
  3358. <predictions_in_cm>67</predictions_in_cm>
  3359. <highlow>L</highlow>
  3360. </item>
  3361. <item>
  3362. <date>2013/04/19</date>
  3363. <day>Fri</day>
  3364. <time>05:51 AM</time>
  3365. <predictions_in_ft>9.8</predictions_in_ft>
  3366. <predictions_in_cm>299</predictions_in_cm>
  3367. <highlow>H</highlow>
  3368. </item>
  3369. <item>
  3370. <date>2013/04/19</date>
  3371. <day>Fri</day>
  3372. <time>12:16 PM</time>
  3373. <predictions_in_ft>1.5</predictions_in_ft>
  3374. <predictions_in_cm>46</predictions_in_cm>
  3375. <highlow>L</highlow>
  3376. </item>
  3377. <item>
  3378. <date>2013/04/19</date>
  3379. <day>Fri</day>
  3380. <time>06:29 PM</time>
  3381. <predictions_in_ft>9.4</predictions_in_ft>
  3382. <predictions_in_cm>287</predictions_in_cm>
  3383. <highlow>H</highlow>
  3384. </item>
  3385. <item>
  3386. <date>2013/04/20</date>
  3387. <day>Sat</day>
  3388. <time>12:40 AM</time>
  3389. <predictions_in_ft>2.0</predictions_in_ft>
  3390. <predictions_in_cm>61</predictions_in_cm>
  3391. <highlow>L</highlow>
  3392. </item>
  3393. <item>
  3394. <date>2013/04/20</date>
  3395. <day>Sat</day>
  3396. <time>06:48 AM</time>
  3397. <predictions_in_ft>9.8</predictions_in_ft>
  3398. <predictions_in_cm>299</predictions_in_cm>
  3399. <highlow>H</highlow>
  3400. </item>
  3401. <item>
  3402. <date>2013/04/20</date>
  3403. <day>Sat</day>
  3404. <time>01:10 PM</time>
  3405. <predictions_in_ft>1.4</predictions_in_ft>
  3406. <predictions_in_cm>43</predictions_in_cm>
  3407. <highlow>L</highlow>
  3408. </item>
  3409. <item>
  3410. <date>2013/04/20</date>
  3411. <day>Sat</day>
  3412. <time>07:23 PM</time>
  3413. <predictions_in_ft>9.7</predictions_in_ft>
  3414. <predictions_in_cm>296</predictions_in_cm>
  3415. <highlow>H</highlow>
  3416. </item>
  3417. <item>
  3418. <date>2013/04/21</date>
  3419. <day>Sun</day>
  3420. <time>01:36 AM</time>
  3421. <predictions_in_ft>1.6</predictions_in_ft>
  3422. <predictions_in_cm>49</predictions_in_cm>
  3423. <highlow>L</highlow>
  3424. </item>
  3425. <item>
  3426. <date>2013/04/21</date>
  3427. <day>Sun</day>
  3428. <time>07:43 AM</time>
  3429. <predictions_in_ft>10.0</predictions_in_ft>
  3430. <predictions_in_cm>305</predictions_in_cm>
  3431. <highlow>H</highlow>
  3432. </item>
  3433. <item>
  3434. <date>2013/04/21</date>
  3435. <day>Sun</day>
  3436. <time>02:01 PM</time>
  3437. <predictions_in_ft>1.1</predictions_in_ft>
  3438. <predictions_in_cm>34</predictions_in_cm>
  3439. <highlow>L</highlow>
  3440. </item>
  3441. <item>
  3442. <date>2013/04/21</date>
  3443. <day>Sun</day>
  3444. <time>08:13 PM</time>
  3445. <predictions_in_ft>10.2</predictions_in_ft>
  3446. <predictions_in_cm>311</predictions_in_cm>
  3447. <highlow>H</highlow>
  3448. </item>
  3449. <item>
  3450. <date>2013/04/22</date>
  3451. <day>Mon</day>
  3452. <time>02:28 AM</time>
  3453. <predictions_in_ft>1.1</predictions_in_ft>
  3454. <predictions_in_cm>34</predictions_in_cm>
  3455. <highlow>L</highlow>
  3456. </item>
  3457. <item>
  3458. <date>2013/04/22</date>
  3459. <day>Mon</day>
  3460. <time>08:36 AM</time>
  3461. <predictions_in_ft>10.4</predictions_in_ft>
  3462. <predictions_in_cm>317</predictions_in_cm>
  3463. <highlow>H</highlow>
  3464. </item>
  3465. <item>
  3466. <date>2013/04/22</date>
  3467. <day>Mon</day>
  3468. <time>02:49 PM</time>
  3469. <predictions_in_ft>0.7</predictions_in_ft>
  3470. <predictions_in_cm>21</predictions_in_cm>
  3471. <highlow>L</highlow>
  3472. </item>
  3473. <item>
  3474. <date>2013/04/22</date>
  3475. <day>Mon</day>
  3476. <time>09:00 PM</time>
  3477. <predictions_in_ft>10.9</predictions_in_ft>
  3478. <predictions_in_cm>332</predictions_in_cm>
  3479. <highlow>H</highlow>
  3480. </item>
  3481. <item>
  3482. <date>2013/04/23</date>
  3483. <day>Tue</day>
  3484. <time>03:17 AM</time>
  3485. <predictions_in_ft>0.4</predictions_in_ft>
  3486. <predictions_in_cm>12</predictions_in_cm>
  3487. <highlow>L</highlow>
  3488. </item>
  3489. <item>
  3490. <date>2013/04/23</date>
  3491. <day>Tue</day>
  3492. <time>09:25 AM</time>
  3493. <predictions_in_ft>10.9</predictions_in_ft>
  3494. <predictions_in_cm>332</predictions_in_cm>
  3495. <highlow>H</highlow>
  3496. </item>
  3497. <item>
  3498. <date>2013/04/23</date>
  3499. <day>Tue</day>
  3500. <time>03:35 PM</time>
  3501. <predictions_in_ft>0.3</predictions_in_ft>
  3502. <predictions_in_cm>9</predictions_in_cm>
  3503. <highlow>L</highlow>
  3504. </item>
  3505. <item>
  3506. <date>2013/04/23</date>
  3507. <day>Tue</day>
  3508. <time>09:45 PM</time>
  3509. <predictions_in_ft>11.5</predictions_in_ft>
  3510. <predictions_in_cm>351</predictions_in_cm>
  3511. <highlow>H</highlow>
  3512. </item>
  3513. <item>
  3514. <date>2013/04/24</date>
  3515. <day>Wed</day>
  3516. <time>04:04 AM</time>
  3517. <predictions_in_ft>-0.3</predictions_in_ft>
  3518. <predictions_in_cm>-9</predictions_in_cm>
  3519. <highlow>L</highlow>
  3520. </item>
  3521. <item>
  3522. <date>2013/04/24</date>
  3523. <day>Wed</day>
  3524. <time>10:13 AM</time>
  3525. <predictions_in_ft>11.3</predictions_in_ft>
  3526. <predictions_in_cm>344</predictions_in_cm>
  3527. <highlow>H</highlow>
  3528. </item>
  3529. <item>
  3530. <date>2013/04/24</date>
  3531. <day>Wed</day>
  3532. <time>04:20 PM</time>
  3533. <predictions_in_ft>-0.1</predictions_in_ft>
  3534. <predictions_in_cm>-3</predictions_in_cm>
  3535. <highlow>L</highlow>
  3536. </item>
  3537. <item>
  3538. <date>2013/04/24</date>
  3539. <day>Wed</day>
  3540. <time>10:30 PM</time>
  3541. <predictions_in_ft>12.2</predictions_in_ft>
  3542. <predictions_in_cm>372</predictions_in_cm>
  3543. <highlow>H</highlow>
  3544. </item>
  3545. <item>
  3546. <date>2013/04/25</date>
  3547. <day>Thu</day>
  3548. <time>04:50 AM</time>
  3549. <predictions_in_ft>-0.9</predictions_in_ft>
  3550. <predictions_in_cm>-27</predictions_in_cm>
  3551. <highlow>L</highlow>
  3552. </item>
  3553. <item>
  3554. <date>2013/04/25</date>
  3555. <day>Thu</day>
  3556. <time>10:59 AM</time>
  3557. <predictions_in_ft>11.7</predictions_in_ft>
  3558. <predictions_in_cm>357</predictions_in_cm>
  3559. <highlow>H</highlow>
  3560. </item>
  3561. <item>
  3562. <date>2013/04/25</date>
  3563. <day>Thu</day>
  3564. <time>05:05 PM</time>
  3565. <predictions_in_ft>-0.4</predictions_in_ft>
  3566. <predictions_in_cm>-12</predictions_in_cm>
  3567. <highlow>L</highlow>
  3568. </item>
  3569. <item>
  3570. <date>2013/04/25</date>
  3571. <day>Thu</day>
  3572. <time>11:14 PM</time>
  3573. <predictions_in_ft>12.7</predictions_in_ft>
  3574. <predictions_in_cm>387</predictions_in_cm>
  3575. <highlow>H</highlow>
  3576. </item>
  3577. <item>
  3578. <date>2013/04/26</date>
  3579. <day>Fri</day>
  3580. <time>05:37 AM</time>
  3581. <predictions_in_ft>-1.4</predictions_in_ft>
  3582. <predictions_in_cm>-43</predictions_in_cm>
  3583. <highlow>L</highlow>
  3584. </item>
  3585. <item>
  3586. <date>2013/04/26</date>
  3587. <day>Fri</day>
  3588. <time>11:47 AM</time>
  3589. <predictions_in_ft>11.9</predictions_in_ft>
  3590. <predictions_in_cm>363</predictions_in_cm>
  3591. <highlow>H</highlow>
  3592. </item>
  3593. <item>
  3594. <date>2013/04/26</date>
  3595. <day>Fri</day>
  3596. <time>05:51 PM</time>
  3597. <predictions_in_ft>-0.6</predictions_in_ft>
  3598. <predictions_in_cm>-18</predictions_in_cm>
  3599. <highlow>L</highlow>
  3600. </item>
  3601. <item>
  3602. <date>2013/04/27</date>
  3603. <day>Sat</day>
  3604. <time>12:01 AM</time>
  3605. <predictions_in_ft>13.0</predictions_in_ft>
  3606. <predictions_in_cm>396</predictions_in_cm>
  3607. <highlow>H</highlow>
  3608. </item>
  3609. <item>
  3610. <date>2013/04/27</date>
  3611. <day>Sat</day>
  3612. <time>06:24 AM</time>
  3613. <predictions_in_ft>-1.7</predictions_in_ft>
  3614. <predictions_in_cm>-52</predictions_in_cm>
  3615. <highlow>L</highlow>
  3616. </item>
  3617. <item>
  3618. <date>2013/04/27</date>
  3619. <day>Sat</day>
  3620. <time>12:35 PM</time>
  3621. <predictions_in_ft>11.9</predictions_in_ft>
  3622. <predictions_in_cm>363</predictions_in_cm>
  3623. <highlow>H</highlow>
  3624. </item>
  3625. <item>
  3626. <date>2013/04/27</date>
  3627. <day>Sat</day>
  3628. <time>06:39 PM</time>
  3629. <predictions_in_ft>-0.6</predictions_in_ft>
  3630. <predictions_in_cm>-18</predictions_in_cm>
  3631. <highlow>L</highlow>
  3632. </item>
  3633. <item>
  3634. <date>2013/04/28</date>
  3635. <day>Sun</day>
  3636. <time>12:50 AM</time>
  3637. <predictions_in_ft>13.1</predictions_in_ft>
  3638. <predictions_in_cm>399</predictions_in_cm>
  3639. <highlow>H</highlow>
  3640. </item>
  3641. <item>
  3642. <date>2013/04/28</date>
  3643. <day>Sun</day>
  3644. <time>07:15 AM</time>
  3645. <predictions_in_ft>-1.7</predictions_in_ft>
  3646. <predictions_in_cm>-52</predictions_in_cm>
  3647. <highlow>L</highlow>
  3648. </item>
  3649. <item>
  3650. <date>2013/04/28</date>
  3651. <day>Sun</day>
  3652. <time>01:26 PM</time>
  3653. <predictions_in_ft>11.8</predictions_in_ft>
  3654. <predictions_in_cm>360</predictions_in_cm>
  3655. <highlow>H</highlow>
  3656. </item>
  3657. <item>
  3658. <date>2013/04/28</date>
  3659. <day>Sun</day>
  3660. <time>07:30 PM</time>
  3661. <predictions_in_ft>-0.4</predictions_in_ft>
  3662. <predictions_in_cm>-12</predictions_in_cm>
  3663. <highlow>L</highlow>
  3664. </item>
  3665. <item>
  3666. <date>2013/04/29</date>
  3667. <day>Mon</day>
  3668. <time>01:41 AM</time>
  3669. <predictions_in_ft>12.9</predictions_in_ft>
  3670. <predictions_in_cm>393</predictions_in_cm>
  3671. <highlow>H</highlow>
  3672. </item>
  3673. <item>
  3674. <date>2013/04/29</date>
  3675. <day>Mon</day>
  3676. <time>08:08 AM</time>
  3677. <predictions_in_ft>-1.5</predictions_in_ft>
  3678. <predictions_in_cm>-46</predictions_in_cm>
  3679. <highlow>L</highlow>
  3680. </item>
  3681. <item>
  3682. <date>2013/04/29</date>
  3683. <day>Mon</day>
  3684. <time>02:21 PM</time>
  3685. <predictions_in_ft>11.6</predictions_in_ft>
  3686. <predictions_in_cm>354</predictions_in_cm>
  3687. <highlow>H</highlow>
  3688. </item>
  3689. <item>
  3690. <date>2013/04/29</date>
  3691. <day>Mon</day>
  3692. <time>08:25 PM</time>
  3693. <predictions_in_ft>-0.2</predictions_in_ft>
  3694. <predictions_in_cm>-6</predictions_in_cm>
  3695. <highlow>L</highlow>
  3696. </item>
  3697. <item>
  3698. <date>2013/04/30</date>
  3699. <day>Tue</day>
  3700. <time>02:37 AM</time>
  3701. <predictions_in_ft>12.6</predictions_in_ft>
  3702. <predictions_in_cm>384</predictions_in_cm>
  3703. <highlow>H</highlow>
  3704. </item>
  3705. <item>
  3706. <date>2013/04/30</date>
  3707. <day>Tue</day>
  3708. <time>09:04 AM</time>
  3709. <predictions_in_ft>-1.2</predictions_in_ft>
  3710. <predictions_in_cm>-37</predictions_in_cm>
  3711. <highlow>L</highlow>
  3712. </item>
  3713. <item>
  3714. <date>2013/04/30</date>
  3715. <day>Tue</day>
  3716. <time>03:19 PM</time>
  3717. <predictions_in_ft>11.3</predictions_in_ft>
  3718. <predictions_in_cm>344</predictions_in_cm>
  3719. <highlow>H</highlow>
  3720. </item>
  3721. <item>
  3722. <date>2013/04/30</date>
  3723. <day>Tue</day>
  3724. <time>09:25 PM</time>
  3725. <predictions_in_ft>0.2</predictions_in_ft>
  3726. <predictions_in_cm>6</predictions_in_cm>
  3727. <highlow>L</highlow>
  3728. </item>
  3729. <item>
  3730. <date>2013/05/01</date>
  3731. <day>Wed</day>
  3732. <time>03:37 AM</time>
  3733. <predictions_in_ft>12.1</predictions_in_ft>
  3734. <predictions_in_cm>369</predictions_in_cm>
  3735. <highlow>H</highlow>
  3736. </item>
  3737. <item>
  3738. <date>2013/05/01</date>
  3739. <day>Wed</day>
  3740. <time>10:05 AM</time>
  3741. <predictions_in_ft>-0.7</predictions_in_ft>
  3742. <predictions_in_cm>-21</predictions_in_cm>
  3743. <highlow>L</highlow>
  3744. </item>
  3745. <item>
  3746. <date>2013/05/01</date>
  3747. <day>Wed</day>
  3748. <time>04:21 PM</time>
  3749. <predictions_in_ft>11.1</predictions_in_ft>
  3750. <predictions_in_cm>338</predictions_in_cm>
  3751. <highlow>H</highlow>
  3752. </item>
  3753. <item>
  3754. <date>2013/05/01</date>
  3755. <day>Wed</day>
  3756. <time>10:30 PM</time>
  3757. <predictions_in_ft>0.5</predictions_in_ft>
  3758. <predictions_in_cm>15</predictions_in_cm>
  3759. <highlow>L</highlow>
  3760. </item>
  3761. <item>
  3762. <date>2013/05/02</date>
  3763. <day>Thu</day>
  3764. <time>04:41 AM</time>
  3765. <predictions_in_ft>11.6</predictions_in_ft>
  3766. <predictions_in_cm>354</predictions_in_cm>
  3767. <highlow>H</highlow>
  3768. </item>
  3769. <item>
  3770. <date>2013/05/02</date>
  3771. <day>Thu</day>
  3772. <time>11:08 AM</time>
  3773. <predictions_in_ft>-0.3</predictions_in_ft>
  3774. <predictions_in_cm>-9</predictions_in_cm>
  3775. <highlow>L</highlow>
  3776. </item>
  3777. <item>
  3778. <date>2013/05/02</date>
  3779. <day>Thu</day>
  3780. <time>05:25 PM</time>
  3781. <predictions_in_ft>10.9</predictions_in_ft>
  3782. <predictions_in_cm>332</predictions_in_cm>
  3783. <highlow>H</highlow>
  3784. </item>
  3785. <item>
  3786. <date>2013/05/02</date>
  3787. <day>Thu</day>
  3788. <time>11:37 PM</time>
  3789. <predictions_in_ft>0.6</predictions_in_ft>
  3790. <predictions_in_cm>18</predictions_in_cm>
  3791. <highlow>L</highlow>
  3792. </item>
  3793. <item>
  3794. <date>2013/05/03</date>
  3795. <day>Fri</day>
  3796. <time>05:49 AM</time>
  3797. <predictions_in_ft>11.2</predictions_in_ft>
  3798. <predictions_in_cm>341</predictions_in_cm>
  3799. <highlow>H</highlow>
  3800. </item>
  3801. <item>
  3802. <date>2013/05/03</date>
  3803. <day>Fri</day>
  3804. <time>12:13 PM</time>
  3805. <predictions_in_ft>-0.1</predictions_in_ft>
  3806. <predictions_in_cm>-3</predictions_in_cm>
  3807. <highlow>L</highlow>
  3808. </item>
  3809. <item>
  3810. <date>2013/05/03</date>
  3811. <day>Fri</day>
  3812. <time>06:30 PM</time>
  3813. <predictions_in_ft>10.9</predictions_in_ft>
  3814. <predictions_in_cm>332</predictions_in_cm>
  3815. <highlow>H</highlow>
  3816. </item>
  3817. <item>
  3818. <date>2013/05/04</date>
  3819. <day>Sat</day>
  3820. <time>12:45 AM</time>
  3821. <predictions_in_ft>0.6</predictions_in_ft>
  3822. <predictions_in_cm>18</predictions_in_cm>
  3823. <highlow>L</highlow>
  3824. </item>
  3825. <item>
  3826. <date>2013/05/04</date>
  3827. <day>Sat</day>
  3828. <time>06:56 AM</time>
  3829. <predictions_in_ft>11.0</predictions_in_ft>
  3830. <predictions_in_cm>335</predictions_in_cm>
  3831. <highlow>H</highlow>
  3832. </item>
  3833. <item>
  3834. <date>2013/05/04</date>
  3835. <day>Sat</day>
  3836. <time>01:15 PM</time>
  3837. <predictions_in_ft>0.1</predictions_in_ft>
  3838. <predictions_in_cm>3</predictions_in_cm>
  3839. <highlow>L</highlow>
  3840. </item>
  3841. <item>
  3842. <date>2013/05/04</date>
  3843. <day>Sat</day>
  3844. <time>07:32 PM</time>
  3845. <predictions_in_ft>11.1</predictions_in_ft>
  3846. <predictions_in_cm>338</predictions_in_cm>
  3847. <highlow>H</highlow>
  3848. </item>
  3849. <item>
  3850. <date>2013/05/05</date>
  3851. <day>Sun</day>
  3852. <time>01:49 AM</time>
  3853. <predictions_in_ft>0.4</predictions_in_ft>
  3854. <predictions_in_cm>12</predictions_in_cm>
  3855. <highlow>L</highlow>
  3856. </item>
  3857. <item>
  3858. <date>2013/05/05</date>
  3859. <day>Sun</day>
  3860. <time>07:59 AM</time>
  3861. <predictions_in_ft>10.9</predictions_in_ft>
  3862. <predictions_in_cm>332</predictions_in_cm>
  3863. <highlow>H</highlow>
  3864. </item>
  3865. <item>
  3866. <date>2013/05/05</date>
  3867. <day>Sun</day>
  3868. <time>02:14 PM</time>
  3869. <predictions_in_ft>0.2</predictions_in_ft>
  3870. <predictions_in_cm>6</predictions_in_cm>
  3871. <highlow>L</highlow>
  3872. </item>
  3873. <item>
  3874. <date>2013/05/05</date>
  3875. <day>Sun</day>
  3876. <time>08:30 PM</time>
  3877. <predictions_in_ft>11.3</predictions_in_ft>
  3878. <predictions_in_cm>344</predictions_in_cm>
  3879. <highlow>H</highlow>
  3880. </item>
  3881. <item>
  3882. <date>2013/05/06</date>
  3883. <day>Mon</day>
  3884. <time>02:48 AM</time>
  3885. <predictions_in_ft>0.1</predictions_in_ft>
  3886. <predictions_in_cm>3</predictions_in_cm>
  3887. <highlow>L</highlow>
  3888. </item>
  3889. <item>
  3890. <date>2013/05/06</date>
  3891. <day>Mon</day>
  3892. <time>08:58 AM</time>
  3893. <predictions_in_ft>11.0</predictions_in_ft>
  3894. <predictions_in_cm>335</predictions_in_cm>
  3895. <highlow>H</highlow>
  3896. </item>
  3897. <item>
  3898. <date>2013/05/06</date>
  3899. <day>Mon</day>
  3900. <time>03:08 PM</time>
  3901. <predictions_in_ft>0.2</predictions_in_ft>
  3902. <predictions_in_cm>6</predictions_in_cm>
  3903. <highlow>L</highlow>
  3904. </item>
  3905. <item>
  3906. <date>2013/05/06</date>
  3907. <day>Mon</day>
  3908. <time>09:22 PM</time>
  3909. <predictions_in_ft>11.6</predictions_in_ft>
  3910. <predictions_in_cm>354</predictions_in_cm>
  3911. <highlow>H</highlow>
  3912. </item>
  3913. <item>
  3914. <date>2013/05/07</date>
  3915. <day>Tue</day>
  3916. <time>03:41 AM</time>
  3917. <predictions_in_ft>-0.2</predictions_in_ft>
  3918. <predictions_in_cm>-6</predictions_in_cm>
  3919. <highlow>L</highlow>
  3920. </item>
  3921. <item>
  3922. <date>2013/05/07</date>
  3923. <day>Tue</day>
  3924. <time>09:50 AM</time>
  3925. <predictions_in_ft>11.0</predictions_in_ft>
  3926. <predictions_in_cm>335</predictions_in_cm>
  3927. <highlow>H</highlow>
  3928. </item>
  3929. <item>
  3930. <date>2013/05/07</date>
  3931. <day>Tue</day>
  3932. <time>03:57 PM</time>
  3933. <predictions_in_ft>0.2</predictions_in_ft>
  3934. <predictions_in_cm>6</predictions_in_cm>
  3935. <highlow>L</highlow>
  3936. </item>
  3937. <item>
  3938. <date>2013/05/07</date>
  3939. <day>Tue</day>
  3940. <time>10:09 PM</time>
  3941. <predictions_in_ft>11.7</predictions_in_ft>
  3942. <predictions_in_cm>357</predictions_in_cm>
  3943. <highlow>H</highlow>
  3944. </item>
  3945. <item>
  3946. <date>2013/05/08</date>
  3947. <day>Wed</day>
  3948. <time>04:29 AM</time>
  3949. <predictions_in_ft>-0.4</predictions_in_ft>
  3950. <predictions_in_cm>-12</predictions_in_cm>
  3951. <highlow>L</highlow>
  3952. </item>
  3953. <item>
  3954. <date>2013/05/08</date>
  3955. <day>Wed</day>
  3956. <time>10:38 AM</time>
  3957. <predictions_in_ft>11.0</predictions_in_ft>
  3958. <predictions_in_cm>335</predictions_in_cm>
  3959. <highlow>H</highlow>
  3960. </item>
  3961. <item>
  3962. <date>2013/05/08</date>
  3963. <day>Wed</day>
  3964. <time>04:42 PM</time>
  3965. <predictions_in_ft>0.3</predictions_in_ft>
  3966. <predictions_in_cm>9</predictions_in_cm>
  3967. <highlow>L</highlow>
  3968. </item>
  3969. <item>
  3970. <date>2013/05/08</date>
  3971. <day>Wed</day>
  3972. <time>10:52 PM</time>
  3973. <predictions_in_ft>11.8</predictions_in_ft>
  3974. <predictions_in_cm>360</predictions_in_cm>
  3975. <highlow>H</highlow>
  3976. </item>
  3977. <item>
  3978. <date>2013/05/09</date>
  3979. <day>Thu</day>
  3980. <time>05:13 AM</time>
  3981. <predictions_in_ft>-0.5</predictions_in_ft>
  3982. <predictions_in_cm>-15</predictions_in_cm>
  3983. <highlow>L</highlow>
  3984. </item>
  3985. <item>
  3986. <date>2013/05/09</date>
  3987. <day>Thu</day>
  3988. <time>11:22 AM</time>
  3989. <predictions_in_ft>10.9</predictions_in_ft>
  3990. <predictions_in_cm>332</predictions_in_cm>
  3991. <highlow>H</highlow>
  3992. </item>
  3993. <item>
  3994. <date>2013/05/09</date>
  3995. <day>Thu</day>
  3996. <time>05:24 PM</time>
  3997. <predictions_in_ft>0.5</predictions_in_ft>
  3998. <predictions_in_cm>15</predictions_in_cm>
  3999. <highlow>L</highlow>
  4000. </item>
  4001. <item>
  4002. <date>2013/05/09</date>
  4003. <day>Thu</day>
  4004. <time>11:32 PM</time>
  4005. <predictions_in_ft>11.7</predictions_in_ft>
  4006. <predictions_in_cm>357</predictions_in_cm>
  4007. <highlow>H</highlow>
  4008. </item>
  4009. <item>
  4010. <date>2013/05/10</date>
  4011. <day>Fri</day>
  4012. <time>05:53 AM</time>
  4013. <predictions_in_ft>-0.4</predictions_in_ft>
  4014. <predictions_in_cm>-12</predictions_in_cm>
  4015. <highlow>L</highlow>
  4016. </item>
  4017. <item>
  4018. <date>2013/05/10</date>
  4019. <day>Fri</day>
  4020. <time>12:02 PM</time>
  4021. <predictions_in_ft>10.8</predictions_in_ft>
  4022. <predictions_in_cm>329</predictions_in_cm>
  4023. <highlow>H</highlow>
  4024. </item>
  4025. <item>
  4026. <date>2013/05/10</date>
  4027. <day>Fri</day>
  4028. <time>06:03 PM</time>
  4029. <predictions_in_ft>0.6</predictions_in_ft>
  4030. <predictions_in_cm>18</predictions_in_cm>
  4031. <highlow>L</highlow>
  4032. </item>
  4033. <item>
  4034. <date>2013/05/11</date>
  4035. <day>Sat</day>
  4036. <time>12:10 AM</time>
  4037. <predictions_in_ft>11.6</predictions_in_ft>
  4038. <predictions_in_cm>354</predictions_in_cm>
  4039. <highlow>H</highlow>
  4040. </item>
  4041. <item>
  4042. <date>2013/05/11</date>
  4043. <day>Sat</day>
  4044. <time>06:32 AM</time>
  4045. <predictions_in_ft>-0.3</predictions_in_ft>
  4046. <predictions_in_cm>-9</predictions_in_cm>
  4047. <highlow>L</highlow>
  4048. </item>
  4049. <item>
  4050. <date>2013/05/11</date>
  4051. <day>Sat</day>
  4052. <time>12:41 PM</time>
  4053. <predictions_in_ft>10.6</predictions_in_ft>
  4054. <predictions_in_cm>323</predictions_in_cm>
  4055. <highlow>H</highlow>
  4056. </item>
  4057. <item>
  4058. <date>2013/05/11</date>
  4059. <day>Sat</day>
  4060. <time>06:41 PM</time>
  4061. <predictions_in_ft>0.9</predictions_in_ft>
  4062. <predictions_in_cm>27</predictions_in_cm>
  4063. <highlow>L</highlow>
  4064. </item>
  4065. <item>
  4066. <date>2013/05/12</date>
  4067. <day>Sun</day>
  4068. <time>12:47 AM</time>
  4069. <predictions_in_ft>11.4</predictions_in_ft>
  4070. <predictions_in_cm>347</predictions_in_cm>
  4071. <highlow>H</highlow>
  4072. </item>
  4073. <item>
  4074. <date>2013/05/12</date>
  4075. <day>Sun</day>
  4076. <time>07:10 AM</time>
  4077. <predictions_in_ft>-0.1</predictions_in_ft>
  4078. <predictions_in_cm>-3</predictions_in_cm>
  4079. <highlow>L</highlow>
  4080. </item>
  4081. <item>
  4082. <date>2013/05/12</date>
  4083. <day>Sun</day>
  4084. <time>01:20 PM</time>
  4085. <predictions_in_ft>10.4</predictions_in_ft>
  4086. <predictions_in_cm>317</predictions_in_cm>
  4087. <highlow>H</highlow>
  4088. </item>
  4089. <item>
  4090. <date>2013/05/12</date>
  4091. <day>Sun</day>
  4092. <time>07:19 PM</time>
  4093. <predictions_in_ft>1.1</predictions_in_ft>
  4094. <predictions_in_cm>34</predictions_in_cm>
  4095. <highlow>L</highlow>
  4096. </item>
  4097. <item>
  4098. <date>2013/05/13</date>
  4099. <day>Mon</day>
  4100. <time>01:24 AM</time>
  4101. <predictions_in_ft>11.2</predictions_in_ft>
  4102. <predictions_in_cm>341</predictions_in_cm>
  4103. <highlow>H</highlow>
  4104. </item>
  4105. <item>
  4106. <date>2013/05/13</date>
  4107. <day>Mon</day>
  4108. <time>07:48 AM</time>
  4109. <predictions_in_ft>0.1</predictions_in_ft>
  4110. <predictions_in_cm>3</predictions_in_cm>
  4111. <highlow>L</highlow>
  4112. </item>
  4113. <item>
  4114. <date>2013/05/13</date>
  4115. <day>Mon</day>
  4116. <time>01:58 PM</time>
  4117. <predictions_in_ft>10.1</predictions_in_ft>
  4118. <predictions_in_cm>308</predictions_in_cm>
  4119. <highlow>H</highlow>
  4120. </item>
  4121. <item>
  4122. <date>2013/05/13</date>
  4123. <day>Mon</day>
  4124. <time>07:58 PM</time>
  4125. <predictions_in_ft>1.4</predictions_in_ft>
  4126. <predictions_in_cm>43</predictions_in_cm>
  4127. <highlow>L</highlow>
  4128. </item>
  4129. <item>
  4130. <date>2013/05/14</date>
  4131. <day>Tue</day>
  4132. <time>02:03 AM</time>
  4133. <predictions_in_ft>10.9</predictions_in_ft>
  4134. <predictions_in_cm>332</predictions_in_cm>
  4135. <highlow>H</highlow>
  4136. </item>
  4137. <item>
  4138. <date>2013/05/14</date>
  4139. <day>Tue</day>
  4140. <time>08:28 AM</time>
  4141. <predictions_in_ft>0.4</predictions_in_ft>
  4142. <predictions_in_cm>12</predictions_in_cm>
  4143. <highlow>L</highlow>
  4144. </item>
  4145. <item>
  4146. <date>2013/05/14</date>
  4147. <day>Tue</day>
  4148. <time>02:38 PM</time>
  4149. <predictions_in_ft>9.9</predictions_in_ft>
  4150. <predictions_in_cm>302</predictions_in_cm>
  4151. <highlow>H</highlow>
  4152. </item>
  4153. <item>
  4154. <date>2013/05/14</date>
  4155. <day>Tue</day>
  4156. <time>08:39 PM</time>
  4157. <predictions_in_ft>1.6</predictions_in_ft>
  4158. <predictions_in_cm>49</predictions_in_cm>
  4159. <highlow>L</highlow>
  4160. </item>
  4161. <item>
  4162. <date>2013/05/15</date>
  4163. <day>Wed</day>
  4164. <time>02:44 AM</time>
  4165. <predictions_in_ft>10.6</predictions_in_ft>
  4166. <predictions_in_cm>323</predictions_in_cm>
  4167. <highlow>H</highlow>
  4168. </item>
  4169. <item>
  4170. <date>2013/05/15</date>
  4171. <day>Wed</day>
  4172. <time>09:09 AM</time>
  4173. <predictions_in_ft>0.7</predictions_in_ft>
  4174. <predictions_in_cm>21</predictions_in_cm>
  4175. <highlow>L</highlow>
  4176. </item>
  4177. <item>
  4178. <date>2013/05/15</date>
  4179. <day>Wed</day>
  4180. <time>03:20 PM</time>
  4181. <predictions_in_ft>9.8</predictions_in_ft>
  4182. <predictions_in_cm>299</predictions_in_cm>
  4183. <highlow>H</highlow>
  4184. </item>
  4185. <item>
  4186. <date>2013/05/15</date>
  4187. <day>Wed</day>
  4188. <time>09:22 PM</time>
  4189. <predictions_in_ft>1.8</predictions_in_ft>
  4190. <predictions_in_cm>55</predictions_in_cm>
  4191. <highlow>L</highlow>
  4192. </item>
  4193. <item>
  4194. <date>2013/05/16</date>
  4195. <day>Thu</day>
  4196. <time>03:28 AM</time>
  4197. <predictions_in_ft>10.3</predictions_in_ft>
  4198. <predictions_in_cm>314</predictions_in_cm>
  4199. <highlow>H</highlow>
  4200. </item>
  4201. <item>
  4202. <date>2013/05/16</date>
  4203. <day>Thu</day>
  4204. <time>09:52 AM</time>
  4205. <predictions_in_ft>0.9</predictions_in_ft>
  4206. <predictions_in_cm>27</predictions_in_cm>
  4207. <highlow>L</highlow>
  4208. </item>
  4209. <item>
  4210. <date>2013/05/16</date>
  4211. <day>Thu</day>
  4212. <time>04:05 PM</time>
  4213. <predictions_in_ft>9.7</predictions_in_ft>
  4214. <predictions_in_cm>296</predictions_in_cm>
  4215. <highlow>H</highlow>
  4216. </item>
  4217. <item>
  4218. <date>2013/05/16</date>
  4219. <day>Thu</day>
  4220. <time>10:10 PM</time>
  4221. <predictions_in_ft>1.9</predictions_in_ft>
  4222. <predictions_in_cm>58</predictions_in_cm>
  4223. <highlow>L</highlow>
  4224. </item>
  4225. <item>
  4226. <date>2013/05/17</date>
  4227. <day>Fri</day>
  4228. <time>04:15 AM</time>
  4229. <predictions_in_ft>10.1</predictions_in_ft>
  4230. <predictions_in_cm>308</predictions_in_cm>
  4231. <highlow>H</highlow>
  4232. </item>
  4233. <item>
  4234. <date>2013/05/17</date>
  4235. <day>Fri</day>
  4236. <time>10:38 AM</time>
  4237. <predictions_in_ft>1.1</predictions_in_ft>
  4238. <predictions_in_cm>34</predictions_in_cm>
  4239. <highlow>L</highlow>
  4240. </item>
  4241. <item>
  4242. <date>2013/05/17</date>
  4243. <day>Fri</day>
  4244. <time>04:52 PM</time>
  4245. <predictions_in_ft>9.7</predictions_in_ft>
  4246. <predictions_in_cm>296</predictions_in_cm>
  4247. <highlow>H</highlow>
  4248. </item>
  4249. <item>
  4250. <date>2013/05/17</date>
  4251. <day>Fri</day>
  4252. <time>11:00 PM</time>
  4253. <predictions_in_ft>1.9</predictions_in_ft>
  4254. <predictions_in_cm>58</predictions_in_cm>
  4255. <highlow>L</highlow>
  4256. </item>
  4257. <item>
  4258. <date>2013/05/18</date>
  4259. <day>Sat</day>
  4260. <time>05:06 AM</time>
  4261. <predictions_in_ft>10.0</predictions_in_ft>
  4262. <predictions_in_cm>305</predictions_in_cm>
  4263. <highlow>H</highlow>
  4264. </item>
  4265. <item>
  4266. <date>2013/05/18</date>
  4267. <day>Sat</day>
  4268. <time>11:27 AM</time>
  4269. <predictions_in_ft>1.1</predictions_in_ft>
  4270. <predictions_in_cm>34</predictions_in_cm>
  4271. <highlow>L</highlow>
  4272. </item>
  4273. <item>
  4274. <date>2013/05/18</date>
  4275. <day>Sat</day>
  4276. <time>05:42 PM</time>
  4277. <predictions_in_ft>9.9</predictions_in_ft>
  4278. <predictions_in_cm>302</predictions_in_cm>
  4279. <highlow>H</highlow>
  4280. </item>
  4281. <item>
  4282. <date>2013/05/18</date>
  4283. <day>Sat</day>
  4284. <time>11:54 PM</time>
  4285. <predictions_in_ft>1.7</predictions_in_ft>
  4286. <predictions_in_cm>52</predictions_in_cm>
  4287. <highlow>L</highlow>
  4288. </item>
  4289. <item>
  4290. <date>2013/05/19</date>
  4291. <day>Sun</day>
  4292. <time>06:00 AM</time>
  4293. <predictions_in_ft>9.9</predictions_in_ft>
  4294. <predictions_in_cm>302</predictions_in_cm>
  4295. <highlow>H</highlow>
  4296. </item>
  4297. <item>
  4298. <date>2013/05/19</date>
  4299. <day>Sun</day>
  4300. <time>12:18 PM</time>
  4301. <predictions_in_ft>1.1</predictions_in_ft>
  4302. <predictions_in_cm>34</predictions_in_cm>
  4303. <highlow>L</highlow>
  4304. </item>
  4305. <item>
  4306. <date>2013/05/19</date>
  4307. <day>Sun</day>
  4308. <time>06:33 PM</time>
  4309. <predictions_in_ft>10.2</predictions_in_ft>
  4310. <predictions_in_cm>311</predictions_in_cm>
  4311. <highlow>H</highlow>
  4312. </item>
  4313. <item>
  4314. <date>2013/05/20</date>
  4315. <day>Mon</day>
  4316. <time>12:50 AM</time>
  4317. <predictions_in_ft>1.4</predictions_in_ft>
  4318. <predictions_in_cm>43</predictions_in_cm>
  4319. <highlow>L</highlow>
  4320. </item>
  4321. <item>
  4322. <date>2013/05/20</date>
  4323. <day>Mon</day>
  4324. <time>06:57 AM</time>
  4325. <predictions_in_ft>10.0</predictions_in_ft>
  4326. <predictions_in_cm>305</predictions_in_cm>
  4327. <highlow>H</highlow>
  4328. </item>
  4329. <item>
  4330. <date>2013/05/20</date>
  4331. <day>Mon</day>
  4332. <time>01:10 PM</time>
  4333. <predictions_in_ft>0.9</predictions_in_ft>
  4334. <predictions_in_cm>27</predictions_in_cm>
  4335. <highlow>L</highlow>
  4336. </item>
  4337. <item>
  4338. <date>2013/05/20</date>
  4339. <day>Mon</day>
  4340. <time>07:25 PM</time>
  4341. <predictions_in_ft>10.7</predictions_in_ft>
  4342. <predictions_in_cm>326</predictions_in_cm>
  4343. <highlow>H</highlow>
  4344. </item>
  4345. <item>
  4346. <date>2013/05/21</date>
  4347. <day>Tue</day>
  4348. <time>01:46 AM</time>
  4349. <predictions_in_ft>0.8</predictions_in_ft>
  4350. <predictions_in_cm>24</predictions_in_cm>
  4351. <highlow>L</highlow>
  4352. </item>
  4353. <item>
  4354. <date>2013/05/21</date>
  4355. <day>Tue</day>
  4356. <time>07:53 AM</time>
  4357. <predictions_in_ft>10.3</predictions_in_ft>
  4358. <predictions_in_cm>314</predictions_in_cm>
  4359. <highlow>H</highlow>
  4360. </item>
  4361. <item>
  4362. <date>2013/05/21</date>
  4363. <day>Tue</day>
  4364. <time>02:03 PM</time>
  4365. <predictions_in_ft>0.7</predictions_in_ft>
  4366. <predictions_in_cm>21</predictions_in_cm>
  4367. <highlow>L</highlow>
  4368. </item>
  4369. <item>
  4370. <date>2013/05/21</date>
  4371. <day>Tue</day>
  4372. <time>08:17 PM</time>
  4373. <predictions_in_ft>11.3</predictions_in_ft>
  4374. <predictions_in_cm>344</predictions_in_cm>
  4375. <highlow>H</highlow>
  4376. </item>
  4377. <item>
  4378. <date>2013/05/22</date>
  4379. <day>Wed</day>
  4380. <time>02:40 AM</time>
  4381. <predictions_in_ft>0.2</predictions_in_ft>
  4382. <predictions_in_cm>6</predictions_in_cm>
  4383. <highlow>L</highlow>
  4384. </item>
  4385. <item>
  4386. <date>2013/05/22</date>
  4387. <day>Wed</day>
  4388. <time>08:48 AM</time>
  4389. <predictions_in_ft>10.7</predictions_in_ft>
  4390. <predictions_in_cm>326</predictions_in_cm>
  4391. <highlow>H</highlow>
  4392. </item>
  4393. <item>
  4394. <date>2013/05/22</date>
  4395. <day>Wed</day>
  4396. <time>02:54 PM</time>
  4397. <predictions_in_ft>0.3</predictions_in_ft>
  4398. <predictions_in_cm>9</predictions_in_cm>
  4399. <highlow>L</highlow>
  4400. </item>
  4401. <item>
  4402. <date>2013/05/22</date>
  4403. <day>Wed</day>
  4404. <time>09:08 PM</time>
  4405. <predictions_in_ft>11.9</predictions_in_ft>
  4406. <predictions_in_cm>363</predictions_in_cm>
  4407. <highlow>H</highlow>
  4408. </item>
  4409. <item>
  4410. <date>2013/05/23</date>
  4411. <day>Thu</day>
  4412. <time>03:33 AM</time>
  4413. <predictions_in_ft>-0.5</predictions_in_ft>
  4414. <predictions_in_cm>-15</predictions_in_cm>
  4415. <highlow>L</highlow>
  4416. </item>
  4417. <item>
  4418. <date>2013/05/23</date>
  4419. <day>Thu</day>
  4420. <time>09:42 AM</time>
  4421. <predictions_in_ft>11.1</predictions_in_ft>
  4422. <predictions_in_cm>338</predictions_in_cm>
  4423. <highlow>H</highlow>
  4424. </item>
  4425. <item>
  4426. <date>2013/05/23</date>
  4427. <day>Thu</day>
  4428. <time>03:46 PM</time>
  4429. <predictions_in_ft>0.0</predictions_in_ft>
  4430. <predictions_in_cm>0</predictions_in_cm>
  4431. <highlow>L</highlow>
  4432. </item>
  4433. <item>
  4434. <date>2013/05/23</date>
  4435. <day>Thu</day>
  4436. <time>09:58 PM</time>
  4437. <predictions_in_ft>12.5</predictions_in_ft>
  4438. <predictions_in_cm>381</predictions_in_cm>
  4439. <highlow>H</highlow>
  4440. </item>
  4441. <item>
  4442. <date>2013/05/24</date>
  4443. <day>Fri</day>
  4444. <time>04:24 AM</time>
  4445. <predictions_in_ft>-1.2</predictions_in_ft>
  4446. <predictions_in_cm>-37</predictions_in_cm>
  4447. <highlow>L</highlow>
  4448. </item>
  4449. <item>
  4450. <date>2013/05/24</date>
  4451. <day>Fri</day>
  4452. <time>10:34 AM</time>
  4453. <predictions_in_ft>11.5</predictions_in_ft>
  4454. <predictions_in_cm>351</predictions_in_cm>
  4455. <highlow>H</highlow>
  4456. </item>
  4457. <item>
  4458. <date>2013/05/24</date>
  4459. <day>Fri</day>
  4460. <time>04:37 PM</time>
  4461. <predictions_in_ft>-0.4</predictions_in_ft>
  4462. <predictions_in_cm>-12</predictions_in_cm>
  4463. <highlow>L</highlow>
  4464. </item>
  4465. <item>
  4466. <date>2013/05/24</date>
  4467. <day>Fri</day>
  4468. <time>10:49 PM</time>
  4469. <predictions_in_ft>13.0</predictions_in_ft>
  4470. <predictions_in_cm>396</predictions_in_cm>
  4471. <highlow>H</highlow>
  4472. </item>
  4473. <item>
  4474. <date>2013/05/25</date>
  4475. <day>Sat</day>
  4476. <time>05:15 AM</time>
  4477. <predictions_in_ft>-1.7</predictions_in_ft>
  4478. <predictions_in_cm>-52</predictions_in_cm>
  4479. <highlow>L</highlow>
  4480. </item>
  4481. <item>
  4482. <date>2013/05/25</date>
  4483. <day>Sat</day>
  4484. <time>11:26 AM</time>
  4485. <predictions_in_ft>11.8</predictions_in_ft>
  4486. <predictions_in_cm>360</predictions_in_cm>
  4487. <highlow>H</highlow>
  4488. </item>
  4489. <item>
  4490. <date>2013/05/25</date>
  4491. <day>Sat</day>
  4492. <time>05:28 PM</time>
  4493. <predictions_in_ft>-0.6</predictions_in_ft>
  4494. <predictions_in_cm>-18</predictions_in_cm>
  4495. <highlow>L</highlow>
  4496. </item>
  4497. <item>
  4498. <date>2013/05/25</date>
  4499. <day>Sat</day>
  4500. <time>11:40 PM</time>
  4501. <predictions_in_ft>13.3</predictions_in_ft>
  4502. <predictions_in_cm>405</predictions_in_cm>
  4503. <highlow>H</highlow>
  4504. </item>
  4505. <item>
  4506. <date>2013/05/26</date>
  4507. <day>Sun</day>
  4508. <time>06:07 AM</time>
  4509. <predictions_in_ft>-1.9</predictions_in_ft>
  4510. <predictions_in_cm>-58</predictions_in_cm>
  4511. <highlow>L</highlow>
  4512. </item>
  4513. <item>
  4514. <date>2013/05/26</date>
  4515. <day>Sun</day>
  4516. <time>12:19 PM</time>
  4517. <predictions_in_ft>11.9</predictions_in_ft>
  4518. <predictions_in_cm>363</predictions_in_cm>
  4519. <highlow>H</highlow>
  4520. </item>
  4521. <item>
  4522. <date>2013/05/26</date>
  4523. <day>Sun</day>
  4524. <time>06:21 PM</time>
  4525. <predictions_in_ft>-0.6</predictions_in_ft>
  4526. <predictions_in_cm>-18</predictions_in_cm>
  4527. <highlow>L</highlow>
  4528. </item>
  4529. <item>
  4530. <date>2013/05/27</date>
  4531. <day>Mon</day>
  4532. <time>12:33 AM</time>
  4533. <predictions_in_ft>13.4</predictions_in_ft>
  4534. <predictions_in_cm>408</predictions_in_cm>
  4535. <highlow>H</highlow>
  4536. </item>
  4537. <item>
  4538. <date>2013/05/27</date>
  4539. <day>Mon</day>
  4540. <time>07:00 AM</time>
  4541. <predictions_in_ft>-2.0</predictions_in_ft>
  4542. <predictions_in_cm>-61</predictions_in_cm>
  4543. <highlow>L</highlow>
  4544. </item>
  4545. <item>
  4546. <date>2013/05/27</date>
  4547. <day>Mon</day>
  4548. <time>01:12 PM</time>
  4549. <predictions_in_ft>11.9</predictions_in_ft>
  4550. <predictions_in_cm>363</predictions_in_cm>
  4551. <highlow>H</highlow>
  4552. </item>
  4553. <item>
  4554. <date>2013/05/27</date>
  4555. <day>Mon</day>
  4556. <time>07:16 PM</time>
  4557. <predictions_in_ft>-0.6</predictions_in_ft>
  4558. <predictions_in_cm>-18</predictions_in_cm>
  4559. <highlow>L</highlow>
  4560. </item>
  4561. <item>
  4562. <date>2013/05/28</date>
  4563. <day>Tue</day>
  4564. <time>01:27 AM</time>
  4565. <predictions_in_ft>13.2</predictions_in_ft>
  4566. <predictions_in_cm>402</predictions_in_cm>
  4567. <highlow>H</highlow>
  4568. </item>
  4569. <item>
  4570. <date>2013/05/28</date>
  4571. <day>Tue</day>
  4572. <time>07:54 AM</time>
  4573. <predictions_in_ft>-1.8</predictions_in_ft>
  4574. <predictions_in_cm>-55</predictions_in_cm>
  4575. <highlow>L</highlow>
  4576. </item>
  4577. <item>
  4578. <date>2013/05/28</date>
  4579. <day>Tue</day>
  4580. <time>02:08 PM</time>
  4581. <predictions_in_ft>11.8</predictions_in_ft>
  4582. <predictions_in_cm>360</predictions_in_cm>
  4583. <highlow>H</highlow>
  4584. </item>
  4585. <item>
  4586. <date>2013/05/28</date>
  4587. <day>Tue</day>
  4588. <time>08:13 PM</time>
  4589. <predictions_in_ft>-0.4</predictions_in_ft>
  4590. <predictions_in_cm>-12</predictions_in_cm>
  4591. <highlow>L</highlow>
  4592. </item>
  4593. <item>
  4594. <date>2013/05/29</date>
  4595. <day>Wed</day>
  4596. <time>02:24 AM</time>
  4597. <predictions_in_ft>12.8</predictions_in_ft>
  4598. <predictions_in_cm>390</predictions_in_cm>
  4599. <highlow>H</highlow>
  4600. </item>
  4601. <item>
  4602. <date>2013/05/29</date>
  4603. <day>Wed</day>
  4604. <time>08:51 AM</time>
  4605. <predictions_in_ft>-1.4</predictions_in_ft>
  4606. <predictions_in_cm>-43</predictions_in_cm>
  4607. <highlow>L</highlow>
  4608. </item>
  4609. <item>
  4610. <date>2013/05/29</date>
  4611. <day>Wed</day>
  4612. <time>03:06 PM</time>
  4613. <predictions_in_ft>11.7</predictions_in_ft>
  4614. <predictions_in_cm>357</predictions_in_cm>
  4615. <highlow>H</highlow>
  4616. </item>
  4617. <item>
  4618. <date>2013/05/29</date>
  4619. <day>Wed</day>
  4620. <time>09:13 PM</time>
  4621. <predictions_in_ft>-0.1</predictions_in_ft>
  4622. <predictions_in_cm>-3</predictions_in_cm>
  4623. <highlow>L</highlow>
  4624. </item>
  4625. <item>
  4626. <date>2013/05/30</date>
  4627. <day>Thu</day>
  4628. <time>03:24 AM</time>
  4629. <predictions_in_ft>12.3</predictions_in_ft>
  4630. <predictions_in_cm>375</predictions_in_cm>
  4631. <highlow>H</highlow>
  4632. </item>
  4633. <item>
  4634. <date>2013/05/30</date>
  4635. <day>Thu</day>
  4636. <time>09:49 AM</time>
  4637. <predictions_in_ft>-1.0</predictions_in_ft>
  4638. <predictions_in_cm>-30</predictions_in_cm>
  4639. <highlow>L</highlow>
  4640. </item>
  4641. <item>
  4642. <date>2013/05/30</date>
  4643. <day>Thu</day>
  4644. <time>04:05 PM</time>
  4645. <predictions_in_ft>11.5</predictions_in_ft>
  4646. <predictions_in_cm>351</predictions_in_cm>
  4647. <highlow>H</highlow>
  4648. </item>
  4649. <item>
  4650. <date>2013/05/30</date>
  4651. <day>Thu</day>
  4652. <time>10:16 PM</time>
  4653. <predictions_in_ft>0.2</predictions_in_ft>
  4654. <predictions_in_cm>6</predictions_in_cm>
  4655. <highlow>L</highlow>
  4656. </item>
  4657. <item>
  4658. <date>2013/05/31</date>
  4659. <day>Fri</day>
  4660. <time>04:26 AM</time>
  4661. <predictions_in_ft>11.7</predictions_in_ft>
  4662. <predictions_in_cm>357</predictions_in_cm>
  4663. <highlow>H</highlow>
  4664. </item>
  4665. <item>
  4666. <date>2013/05/31</date>
  4667. <day>Fri</day>
  4668. <time>10:49 AM</time>
  4669. <predictions_in_ft>-0.5</predictions_in_ft>
  4670. <predictions_in_cm>-15</predictions_in_cm>
  4671. <highlow>L</highlow>
  4672. </item>
  4673. <item>
  4674. <date>2013/05/31</date>
  4675. <day>Fri</day>
  4676. <time>05:06 PM</time>
  4677. <predictions_in_ft>11.3</predictions_in_ft>
  4678. <predictions_in_cm>344</predictions_in_cm>
  4679. <highlow>H</highlow>
  4680. </item>
  4681. <item>
  4682. <date>2013/05/31</date>
  4683. <day>Fri</day>
  4684. <time>11:20 PM</time>
  4685. <predictions_in_ft>0.4</predictions_in_ft>
  4686. <predictions_in_cm>12</predictions_in_cm>
  4687. <highlow>L</highlow>
  4688. </item>
  4689. <item>
  4690. <date>2013/06/01</date>
  4691. <day>Sat</day>
  4692. <time>05:30 AM</time>
  4693. <predictions_in_ft>11.2</predictions_in_ft>
  4694. <predictions_in_cm>341</predictions_in_cm>
  4695. <highlow>H</highlow>
  4696. </item>
  4697. <item>
  4698. <date>2013/06/01</date>
  4699. <day>Sat</day>
  4700. <time>11:49 AM</time>
  4701. <predictions_in_ft>-0.1</predictions_in_ft>
  4702. <predictions_in_cm>-3</predictions_in_cm>
  4703. <highlow>L</highlow>
  4704. </item>
  4705. <item>
  4706. <date>2013/06/01</date>
  4707. <day>Sat</day>
  4708. <time>06:07 PM</time>
  4709. <predictions_in_ft>11.2</predictions_in_ft>
  4710. <predictions_in_cm>341</predictions_in_cm>
  4711. <highlow>H</highlow>
  4712. </item>
  4713. <item>
  4714. <date>2013/06/02</date>
  4715. <day>Sun</day>
  4716. <time>12:25 AM</time>
  4717. <predictions_in_ft>0.4</predictions_in_ft>
  4718. <predictions_in_cm>12</predictions_in_cm>
  4719. <highlow>L</highlow>
  4720. </item>
  4721. <item>
  4722. <date>2013/06/02</date>
  4723. <day>Sun</day>
  4724. <time>06:33 AM</time>
  4725. <predictions_in_ft>10.8</predictions_in_ft>
  4726. <predictions_in_cm>329</predictions_in_cm>
  4727. <highlow>H</highlow>
  4728. </item>
  4729. <item>
  4730. <date>2013/06/02</date>
  4731. <day>Sun</day>
  4732. <time>12:49 PM</time>
  4733. <predictions_in_ft>0.3</predictions_in_ft>
  4734. <predictions_in_cm>9</predictions_in_cm>
  4735. <highlow>L</highlow>
  4736. </item>
  4737. <item>
  4738. <date>2013/06/02</date>
  4739. <day>Sun</day>
  4740. <time>07:06 PM</time>
  4741. <predictions_in_ft>11.2</predictions_in_ft>
  4742. <predictions_in_cm>341</predictions_in_cm>
  4743. <highlow>H</highlow>
  4744. </item>
  4745. <item>
  4746. <date>2013/06/03</date>
  4747. <day>Mon</day>
  4748. <time>01:27 AM</time>
  4749. <predictions_in_ft>0.4</predictions_in_ft>
  4750. <predictions_in_cm>12</predictions_in_cm>
  4751. <highlow>L</highlow>
  4752. </item>
  4753. <item>
  4754. <date>2013/06/03</date>
  4755. <day>Mon</day>
  4756. <time>07:36 AM</time>
  4757. <predictions_in_ft>10.5</predictions_in_ft>
  4758. <predictions_in_cm>320</predictions_in_cm>
  4759. <highlow>H</highlow>
  4760. </item>
  4761. <item>
  4762. <date>2013/06/03</date>
  4763. <day>Mon</day>
  4764. <time>01:46 PM</time>
  4765. <predictions_in_ft>0.5</predictions_in_ft>
  4766. <predictions_in_cm>15</predictions_in_cm>
  4767. <highlow>L</highlow>
  4768. </item>
  4769. <item>
  4770. <date>2013/06/03</date>
  4771. <day>Mon</day>
  4772. <time>08:02 PM</time>
  4773. <predictions_in_ft>11.3</predictions_in_ft>
  4774. <predictions_in_cm>344</predictions_in_cm>
  4775. <highlow>H</highlow>
  4776. </item>
  4777. <item>
  4778. <date>2013/06/04</date>
  4779. <day>Tue</day>
  4780. <time>02:25 AM</time>
  4781. <predictions_in_ft>0.3</predictions_in_ft>
  4782. <predictions_in_cm>9</predictions_in_cm>
  4783. <highlow>L</highlow>
  4784. </item>
  4785. <item>
  4786. <date>2013/06/04</date>
  4787. <day>Tue</day>
  4788. <time>08:34 AM</time>
  4789. <predictions_in_ft>10.4</predictions_in_ft>
  4790. <predictions_in_cm>317</predictions_in_cm>
  4791. <highlow>H</highlow>
  4792. </item>
  4793. <item>
  4794. <date>2013/06/04</date>
  4795. <day>Tue</day>
  4796. <time>02:40 PM</time>
  4797. <predictions_in_ft>0.7</predictions_in_ft>
  4798. <predictions_in_cm>21</predictions_in_cm>
  4799. <highlow>L</highlow>
  4800. </item>
  4801. <item>
  4802. <date>2013/06/04</date>
  4803. <day>Tue</day>
  4804. <time>08:55 PM</time>
  4805. <predictions_in_ft>11.3</predictions_in_ft>
  4806. <predictions_in_cm>344</predictions_in_cm>
  4807. <highlow>H</highlow>
  4808. </item>
  4809. <item>
  4810. <date>2013/06/05</date>
  4811. <day>Wed</day>
  4812. <time>03:18 AM</time>
  4813. <predictions_in_ft>0.1</predictions_in_ft>
  4814. <predictions_in_cm>3</predictions_in_cm>
  4815. <highlow>L</highlow>
  4816. </item>
  4817. <item>
  4818. <date>2013/06/05</date>
  4819. <day>Wed</day>
  4820. <time>09:27 AM</time>
  4821. <predictions_in_ft>10.3</predictions_in_ft>
  4822. <predictions_in_cm>314</predictions_in_cm>
  4823. <highlow>H</highlow>
  4824. </item>
  4825. <item>
  4826. <date>2013/06/05</date>
  4827. <day>Wed</day>
  4828. <time>03:30 PM</time>
  4829. <predictions_in_ft>0.8</predictions_in_ft>
  4830. <predictions_in_cm>24</predictions_in_cm>
  4831. <highlow>L</highlow>
  4832. </item>
  4833. <item>
  4834. <date>2013/06/05</date>
  4835. <day>Wed</day>
  4836. <time>09:43 PM</time>
  4837. <predictions_in_ft>11.4</predictions_in_ft>
  4838. <predictions_in_cm>347</predictions_in_cm>
  4839. <highlow>H</highlow>
  4840. </item>
  4841. <item>
  4842. <date>2013/06/06</date>
  4843. <day>Thu</day>
  4844. <time>04:07 AM</time>
  4845. <predictions_in_ft>0.0</predictions_in_ft>
  4846. <predictions_in_cm>0</predictions_in_cm>
  4847. <highlow>L</highlow>
  4848. </item>
  4849. <item>
  4850. <date>2013/06/06</date>
  4851. <day>Thu</day>
  4852. <time>10:16 AM</time>
  4853. <predictions_in_ft>10.3</predictions_in_ft>
  4854. <predictions_in_cm>314</predictions_in_cm>
  4855. <highlow>H</highlow>
  4856. </item>
  4857. <item>
  4858. <date>2013/06/06</date>
  4859. <day>Thu</day>
  4860. <time>04:17 PM</time>
  4861. <predictions_in_ft>0.9</predictions_in_ft>
  4862. <predictions_in_cm>27</predictions_in_cm>
  4863. <highlow>L</highlow>
  4864. </item>
  4865. <item>
  4866. <date>2013/06/06</date>
  4867. <day>Thu</day>
  4868. <time>10:27 PM</time>
  4869. <predictions_in_ft>11.4</predictions_in_ft>
  4870. <predictions_in_cm>347</predictions_in_cm>
  4871. <highlow>H</highlow>
  4872. </item>
  4873. <item>
  4874. <date>2013/06/07</date>
  4875. <day>Fri</day>
  4876. <time>04:51 AM</time>
  4877. <predictions_in_ft>-0.1</predictions_in_ft>
  4878. <predictions_in_cm>-3</predictions_in_cm>
  4879. <highlow>L</highlow>
  4880. </item>
  4881. <item>
  4882. <date>2013/06/07</date>
  4883. <day>Fri</day>
  4884. <time>11:00 AM</time>
  4885. <predictions_in_ft>10.3</predictions_in_ft>
  4886. <predictions_in_cm>314</predictions_in_cm>
  4887. <highlow>H</highlow>
  4888. </item>
  4889. <item>
  4890. <date>2013/06/07</date>
  4891. <day>Fri</day>
  4892. <time>04:59 PM</time>
  4893. <predictions_in_ft>1.0</predictions_in_ft>
  4894. <predictions_in_cm>30</predictions_in_cm>
  4895. <highlow>L</highlow>
  4896. </item>
  4897. <item>
  4898. <date>2013/06/07</date>
  4899. <day>Fri</day>
  4900. <time>11:07 PM</time>
  4901. <predictions_in_ft>11.4</predictions_in_ft>
  4902. <predictions_in_cm>347</predictions_in_cm>
  4903. <highlow>H</highlow>
  4904. </item>
  4905. <item>
  4906. <date>2013/06/08</date>
  4907. <day>Sat</day>
  4908. <time>05:32 AM</time>
  4909. <predictions_in_ft>-0.1</predictions_in_ft>
  4910. <predictions_in_cm>-3</predictions_in_cm>
  4911. <highlow>L</highlow>
  4912. </item>
  4913. <item>
  4914. <date>2013/06/08</date>
  4915. <day>Sat</day>
  4916. <time>11:40 AM</time>
  4917. <predictions_in_ft>10.3</predictions_in_ft>
  4918. <predictions_in_cm>314</predictions_in_cm>
  4919. <highlow>H</highlow>
  4920. </item>
  4921. <item>
  4922. <date>2013/06/08</date>
  4923. <day>Sat</day>
  4924. <time>05:39 PM</time>
  4925. <predictions_in_ft>1.0</predictions_in_ft>
  4926. <predictions_in_cm>30</predictions_in_cm>
  4927. <highlow>L</highlow>
  4928. </item>
  4929. <item>
  4930. <date>2013/06/08</date>
  4931. <day>Sat</day>
  4932. <time>11:46 PM</time>
  4933. <predictions_in_ft>11.4</predictions_in_ft>
  4934. <predictions_in_cm>347</predictions_in_cm>
  4935. <highlow>H</highlow>
  4936. </item>
  4937. <item>
  4938. <date>2013/06/09</date>
  4939. <day>Sun</day>
  4940. <time>06:10 AM</time>
  4941. <predictions_in_ft>-0.1</predictions_in_ft>
  4942. <predictions_in_cm>-3</predictions_in_cm>
  4943. <highlow>L</highlow>
  4944. </item>
  4945. <item>
  4946. <date>2013/06/09</date>
  4947. <day>Sun</day>
  4948. <time>12:19 PM</time>
  4949. <predictions_in_ft>10.3</predictions_in_ft>
  4950. <predictions_in_cm>314</predictions_in_cm>
  4951. <highlow>H</highlow>
  4952. </item>
  4953. <item>
  4954. <date>2013/06/09</date>
  4955. <day>Sun</day>
  4956. <time>06:17 PM</time>
  4957. <predictions_in_ft>1.1</predictions_in_ft>
  4958. <predictions_in_cm>34</predictions_in_cm>
  4959. <highlow>L</highlow>
  4960. </item>
  4961. <item>
  4962. <date>2013/06/10</date>
  4963. <day>Mon</day>
  4964. <time>12:23 AM</time>
  4965. <predictions_in_ft>11.3</predictions_in_ft>
  4966. <predictions_in_cm>344</predictions_in_cm>
  4967. <highlow>H</highlow>
  4968. </item>
  4969. <item>
  4970. <date>2013/06/10</date>
  4971. <day>Mon</day>
  4972. <time>06:47 AM</time>
  4973. <predictions_in_ft>0.0</predictions_in_ft>
  4974. <predictions_in_cm>0</predictions_in_cm>
  4975. <highlow>L</highlow>
  4976. </item>
  4977. <item>
  4978. <date>2013/06/10</date>
  4979. <day>Mon</day>
  4980. <time>12:56 PM</time>
  4981. <predictions_in_ft>10.2</predictions_in_ft>
  4982. <predictions_in_cm>311</predictions_in_cm>
  4983. <highlow>H</highlow>
  4984. </item>
  4985. <item>
  4986. <date>2013/06/10</date>
  4987. <day>Mon</day>
  4988. <time>06:55 PM</time>
  4989. <predictions_in_ft>1.2</predictions_in_ft>
  4990. <predictions_in_cm>37</predictions_in_cm>
  4991. <highlow>L</highlow>
  4992. </item>
  4993. <item>
  4994. <date>2013/06/11</date>
  4995. <day>Tue</day>
  4996. <time>01:00 AM</time>
  4997. <predictions_in_ft>11.2</predictions_in_ft>
  4998. <predictions_in_cm>341</predictions_in_cm>
  4999. <highlow>H</highlow>
  5000. </item>
  5001. <item>
  5002. <date>2013/06/11</date>
  5003. <day>Tue</day>
  5004. <time>07:24 AM</time>
  5005. <predictions_in_ft>0.1</predictions_in_ft>
  5006. <predictions_in_cm>3</predictions_in_cm>
  5007. <highlow>L</highlow>
  5008. </item>
  5009. <item>
  5010. <date>2013/06/11</date>
  5011. <day>Tue</day>
  5012. <time>01:33 PM</time>
  5013. <predictions_in_ft>10.1</predictions_in_ft>
  5014. <predictions_in_cm>308</predictions_in_cm>
  5015. <highlow>H</highlow>
  5016. </item>
  5017. <item>
  5018. <date>2013/06/11</date>
  5019. <day>Tue</day>
  5020. <time>07:32 PM</time>
  5021. <predictions_in_ft>1.3</predictions_in_ft>
  5022. <predictions_in_cm>40</predictions_in_cm>
  5023. <highlow>L</highlow>
  5024. </item>
  5025. <item>
  5026. <date>2013/06/12</date>
  5027. <day>Wed</day>
  5028. <time>01:37 AM</time>
  5029. <predictions_in_ft>11.0</predictions_in_ft>
  5030. <predictions_in_cm>335</predictions_in_cm>
  5031. <highlow>H</highlow>
  5032. </item>
  5033. <item>
  5034. <date>2013/06/12</date>
  5035. <day>Wed</day>
  5036. <time>08:01 AM</time>
  5037. <predictions_in_ft>0.3</predictions_in_ft>
  5038. <predictions_in_cm>9</predictions_in_cm>
  5039. <highlow>L</highlow>
  5040. </item>
  5041. <item>
  5042. <date>2013/06/12</date>
  5043. <day>Wed</day>
  5044. <time>02:10 PM</time>
  5045. <predictions_in_ft>10.1</predictions_in_ft>
  5046. <predictions_in_cm>308</predictions_in_cm>
  5047. <highlow>H</highlow>
  5048. </item>
  5049. <item>
  5050. <date>2013/06/12</date>
  5051. <day>Wed</day>
  5052. <time>08:11 PM</time>
  5053. <predictions_in_ft>1.4</predictions_in_ft>
  5054. <predictions_in_cm>43</predictions_in_cm>
  5055. <highlow>L</highlow>
  5056. </item>
  5057. <item>
  5058. <date>2013/06/13</date>
  5059. <day>Thu</day>
  5060. <time>02:16 AM</time>
  5061. <predictions_in_ft>10.8</predictions_in_ft>
  5062. <predictions_in_cm>329</predictions_in_cm>
  5063. <highlow>H</highlow>
  5064. </item>
  5065. <item>
  5066. <date>2013/06/13</date>
  5067. <day>Thu</day>
  5068. <time>08:38 AM</time>
  5069. <predictions_in_ft>0.4</predictions_in_ft>
  5070. <predictions_in_cm>12</predictions_in_cm>
  5071. <highlow>L</highlow>
  5072. </item>
  5073. <item>
  5074. <date>2013/06/13</date>
  5075. <day>Thu</day>
  5076. <time>02:49 PM</time>
  5077. <predictions_in_ft>10.1</predictions_in_ft>
  5078. <predictions_in_cm>308</predictions_in_cm>
  5079. <highlow>H</highlow>
  5080. </item>
  5081. <item>
  5082. <date>2013/06/13</date>
  5083. <day>Thu</day>
  5084. <time>08:52 PM</time>
  5085. <predictions_in_ft>1.5</predictions_in_ft>
  5086. <predictions_in_cm>46</predictions_in_cm>
  5087. <highlow>L</highlow>
  5088. </item>
  5089. <item>
  5090. <date>2013/06/14</date>
  5091. <day>Fri</day>
  5092. <time>02:56 AM</time>
  5093. <predictions_in_ft>10.6</predictions_in_ft>
  5094. <predictions_in_cm>323</predictions_in_cm>
  5095. <highlow>H</highlow>
  5096. </item>
  5097. <item>
  5098. <date>2013/06/14</date>
  5099. <day>Fri</day>
  5100. <time>09:17 AM</time>
  5101. <predictions_in_ft>0.6</predictions_in_ft>
  5102. <predictions_in_cm>18</predictions_in_cm>
  5103. <highlow>L</highlow>
  5104. </item>
  5105. <item>
  5106. <date>2013/06/14</date>
  5107. <day>Fri</day>
  5108. <time>03:30 PM</time>
  5109. <predictions_in_ft>10.2</predictions_in_ft>
  5110. <predictions_in_cm>311</predictions_in_cm>
  5111. <highlow>H</highlow>
  5112. </item>
  5113. <item>
  5114. <date>2013/06/14</date>
  5115. <day>Fri</day>
  5116. <time>09:35 PM</time>
  5117. <predictions_in_ft>1.5</predictions_in_ft>
  5118. <predictions_in_cm>46</predictions_in_cm>
  5119. <highlow>L</highlow>
  5120. </item>
  5121. <item>
  5122. <date>2013/06/15</date>
  5123. <day>Sat</day>
  5124. <time>03:40 AM</time>
  5125. <predictions_in_ft>10.4</predictions_in_ft>
  5126. <predictions_in_cm>317</predictions_in_cm>
  5127. <highlow>H</highlow>
  5128. </item>
  5129. <item>
  5130. <date>2013/06/15</date>
  5131. <day>Sat</day>
  5132. <time>09:59 AM</time>
  5133. <predictions_in_ft>0.7</predictions_in_ft>
  5134. <predictions_in_cm>21</predictions_in_cm>
  5135. <highlow>L</highlow>
  5136. </item>
  5137. <item>
  5138. <date>2013/06/15</date>
  5139. <day>Sat</day>
  5140. <time>04:13 PM</time>
  5141. <predictions_in_ft>10.3</predictions_in_ft>
  5142. <predictions_in_cm>314</predictions_in_cm>
  5143. <highlow>H</highlow>
  5144. </item>
  5145. <item>
  5146. <date>2013/06/15</date>
  5147. <day>Sat</day>
  5148. <time>10:23 PM</time>
  5149. <predictions_in_ft>1.4</predictions_in_ft>
  5150. <predictions_in_cm>43</predictions_in_cm>
  5151. <highlow>L</highlow>
  5152. </item>
  5153. <item>
  5154. <date>2013/06/16</date>
  5155. <day>Sun</day>
  5156. <time>04:28 AM</time>
  5157. <predictions_in_ft>10.3</predictions_in_ft>
  5158. <predictions_in_cm>314</predictions_in_cm>
  5159. <highlow>H</highlow>
  5160. </item>
  5161. <item>
  5162. <date>2013/06/16</date>
  5163. <day>Sun</day>
  5164. <time>10:44 AM</time>
  5165. <predictions_in_ft>0.8</predictions_in_ft>
  5166. <predictions_in_cm>24</predictions_in_cm>
  5167. <highlow>L</highlow>
  5168. </item>
  5169. <item>
  5170. <date>2013/06/16</date>
  5171. <day>Sun</day>
  5172. <time>05:00 PM</time>
  5173. <predictions_in_ft>10.5</predictions_in_ft>
  5174. <predictions_in_cm>320</predictions_in_cm>
  5175. <highlow>H</highlow>
  5176. </item>
  5177. <item>
  5178. <date>2013/06/16</date>
  5179. <day>Sun</day>
  5180. <time>11:15 PM</time>
  5181. <predictions_in_ft>1.3</predictions_in_ft>
  5182. <predictions_in_cm>40</predictions_in_cm>
  5183. <highlow>L</highlow>
  5184. </item>
  5185. <item>
  5186. <date>2013/06/17</date>
  5187. <day>Mon</day>
  5188. <time>05:20 AM</time>
  5189. <predictions_in_ft>10.2</predictions_in_ft>
  5190. <predictions_in_cm>311</predictions_in_cm>
  5191. <highlow>H</highlow>
  5192. </item>
  5193. <item>
  5194. <date>2013/06/17</date>
  5195. <day>Mon</day>
  5196. <time>11:34 AM</time>
  5197. <predictions_in_ft>0.8</predictions_in_ft>
  5198. <predictions_in_cm>24</predictions_in_cm>
  5199. <highlow>L</highlow>
  5200. </item>
  5201. <item>
  5202. <date>2013/06/17</date>
  5203. <day>Mon</day>
  5204. <time>05:51 PM</time>
  5205. <predictions_in_ft>10.8</predictions_in_ft>
  5206. <predictions_in_cm>329</predictions_in_cm>
  5207. <highlow>H</highlow>
  5208. </item>
  5209. <item>
  5210. <date>2013/06/18</date>
  5211. <day>Tue</day>
  5212. <time>12:10 AM</time>
  5213. <predictions_in_ft>1.0</predictions_in_ft>
  5214. <predictions_in_cm>30</predictions_in_cm>
  5215. <highlow>L</highlow>
  5216. </item>
  5217. <item>
  5218. <date>2013/06/18</date>
  5219. <day>Tue</day>
  5220. <time>06:16 AM</time>
  5221. <predictions_in_ft>10.1</predictions_in_ft>
  5222. <predictions_in_cm>308</predictions_in_cm>
  5223. <highlow>H</highlow>
  5224. </item>
  5225. <item>
  5226. <date>2013/06/18</date>
  5227. <day>Tue</day>
  5228. <time>12:27 PM</time>
  5229. <predictions_in_ft>0.8</predictions_in_ft>
  5230. <predictions_in_cm>24</predictions_in_cm>
  5231. <highlow>L</highlow>
  5232. </item>
  5233. <item>
  5234. <date>2013/06/18</date>
  5235. <day>Tue</day>
  5236. <time>06:44 PM</time>
  5237. <predictions_in_ft>11.1</predictions_in_ft>
  5238. <predictions_in_cm>338</predictions_in_cm>
  5239. <highlow>H</highlow>
  5240. </item>
  5241. <item>
  5242. <date>2013/06/19</date>
  5243. <day>Wed</day>
  5244. <time>01:09 AM</time>
  5245. <predictions_in_ft>0.5</predictions_in_ft>
  5246. <predictions_in_cm>15</predictions_in_cm>
  5247. <highlow>L</highlow>
  5248. </item>
  5249. <item>
  5250. <date>2013/06/19</date>
  5251. <day>Wed</day>
  5252. <time>07:16 AM</time>
  5253. <predictions_in_ft>10.3</predictions_in_ft>
  5254. <predictions_in_cm>314</predictions_in_cm>
  5255. <highlow>H</highlow>
  5256. </item>
  5257. <item>
  5258. <date>2013/06/19</date>
  5259. <day>Wed</day>
  5260. <time>01:23 PM</time>
  5261. <predictions_in_ft>0.6</predictions_in_ft>
  5262. <predictions_in_cm>18</predictions_in_cm>
  5263. <highlow>L</highlow>
  5264. </item>
  5265. <item>
  5266. <date>2013/06/19</date>
  5267. <day>Wed</day>
  5268. <time>07:40 PM</time>
  5269. <predictions_in_ft>11.6</predictions_in_ft>
  5270. <predictions_in_cm>354</predictions_in_cm>
  5271. <highlow>H</highlow>
  5272. </item>
  5273. <item>
  5274. <date>2013/06/20</date>
  5275. <day>Thu</day>
  5276. <time>02:08 AM</time>
  5277. <predictions_in_ft>0.0</predictions_in_ft>
  5278. <predictions_in_cm>0</predictions_in_cm>
  5279. <highlow>L</highlow>
  5280. </item>
  5281. <item>
  5282. <date>2013/06/20</date>
  5283. <day>Thu</day>
  5284. <time>08:16 AM</time>
  5285. <predictions_in_ft>10.5</predictions_in_ft>
  5286. <predictions_in_cm>320</predictions_in_cm>
  5287. <highlow>H</highlow>
  5288. </item>
  5289. <item>
  5290. <date>2013/06/20</date>
  5291. <day>Thu</day>
  5292. <time>02:21 PM</time>
  5293. <predictions_in_ft>0.4</predictions_in_ft>
  5294. <predictions_in_cm>12</predictions_in_cm>
  5295. <highlow>L</highlow>
  5296. </item>
  5297. <item>
  5298. <date>2013/06/20</date>
  5299. <day>Thu</day>
  5300. <time>08:37 PM</time>
  5301. <predictions_in_ft>12.2</predictions_in_ft>
  5302. <predictions_in_cm>372</predictions_in_cm>
  5303. <highlow>H</highlow>
  5304. </item>
  5305. <item>
  5306. <date>2013/06/21</date>
  5307. <day>Fri</day>
  5308. <time>03:06 AM</time>
  5309. <predictions_in_ft>-0.6</predictions_in_ft>
  5310. <predictions_in_cm>-18</predictions_in_cm>
  5311. <highlow>L</highlow>
  5312. </item>
  5313. <item>
  5314. <date>2013/06/21</date>
  5315. <day>Fri</day>
  5316. <time>09:15 AM</time>
  5317. <predictions_in_ft>10.9</predictions_in_ft>
  5318. <predictions_in_cm>332</predictions_in_cm>
  5319. <highlow>H</highlow>
  5320. </item>
  5321. <item>
  5322. <date>2013/06/21</date>
  5323. <day>Fri</day>
  5324. <time>03:18 PM</time>
  5325. <predictions_in_ft>0.0</predictions_in_ft>
  5326. <predictions_in_cm>0</predictions_in_cm>
  5327. <highlow>L</highlow>
  5328. </item>
  5329. <item>
  5330. <date>2013/06/21</date>
  5331. <day>Fri</day>
  5332. <time>09:33 PM</time>
  5333. <predictions_in_ft>12.7</predictions_in_ft>
  5334. <predictions_in_cm>387</predictions_in_cm>
  5335. <highlow>H</highlow>
  5336. </item>
  5337. <item>
  5338. <date>2013/06/22</date>
  5339. <day>Sat</day>
  5340. <time>04:02 AM</time>
  5341. <predictions_in_ft>-1.2</predictions_in_ft>
  5342. <predictions_in_cm>-37</predictions_in_cm>
  5343. <highlow>L</highlow>
  5344. </item>
  5345. <item>
  5346. <date>2013/06/22</date>
  5347. <day>Sat</day>
  5348. <time>10:12 AM</time>
  5349. <predictions_in_ft>11.3</predictions_in_ft>
  5350. <predictions_in_cm>344</predictions_in_cm>
  5351. <highlow>H</highlow>
  5352. </item>
  5353. <item>
  5354. <date>2013/06/22</date>
  5355. <day>Sat</day>
  5356. <time>04:15 PM</time>
  5357. <predictions_in_ft>-0.3</predictions_in_ft>
  5358. <predictions_in_cm>-9</predictions_in_cm>
  5359. <highlow>L</highlow>
  5360. </item>
  5361. <item>
  5362. <date>2013/06/22</date>
  5363. <day>Sat</day>
  5364. <time>10:29 PM</time>
  5365. <predictions_in_ft>13.2</predictions_in_ft>
  5366. <predictions_in_cm>402</predictions_in_cm>
  5367. <highlow>H</highlow>
  5368. </item>
  5369. <item>
  5370. <date>2013/06/23</date>
  5371. <day>Sun</day>
  5372. <time>04:57 AM</time>
  5373. <predictions_in_ft>-1.7</predictions_in_ft>
  5374. <predictions_in_cm>-52</predictions_in_cm>
  5375. <highlow>L</highlow>
  5376. </item>
  5377. <item>
  5378. <date>2013/06/23</date>
  5379. <day>Sun</day>
  5380. <time>11:08 AM</time>
  5381. <predictions_in_ft>11.7</predictions_in_ft>
  5382. <predictions_in_cm>357</predictions_in_cm>
  5383. <highlow>H</highlow>
  5384. </item>
  5385. <item>
  5386. <date>2013/06/23</date>
  5387. <day>Sun</day>
  5388. <time>05:10 PM</time>
  5389. <predictions_in_ft>-0.6</predictions_in_ft>
  5390. <predictions_in_cm>-18</predictions_in_cm>
  5391. <highlow>L</highlow>
  5392. </item>
  5393. <item>
  5394. <date>2013/06/23</date>
  5395. <day>Sun</day>
  5396. <time>11:24 PM</time>
  5397. <predictions_in_ft>13.4</predictions_in_ft>
  5398. <predictions_in_cm>408</predictions_in_cm>
  5399. <highlow>H</highlow>
  5400. </item>
  5401. <item>
  5402. <date>2013/06/24</date>
  5403. <day>Mon</day>
  5404. <time>05:51 AM</time>
  5405. <predictions_in_ft>-2.0</predictions_in_ft>
  5406. <predictions_in_cm>-61</predictions_in_cm>
  5407. <highlow>L</highlow>
  5408. </item>
  5409. <item>
  5410. <date>2013/06/24</date>
  5411. <day>Mon</day>
  5412. <time>12:02 PM</time>
  5413. <predictions_in_ft>12.0</predictions_in_ft>
  5414. <predictions_in_cm>366</predictions_in_cm>
  5415. <highlow>H</highlow>
  5416. </item>
  5417. <item>
  5418. <date>2013/06/24</date>
  5419. <day>Mon</day>
  5420. <time>06:06 PM</time>
  5421. <predictions_in_ft>-0.8</predictions_in_ft>
  5422. <predictions_in_cm>-24</predictions_in_cm>
  5423. <highlow>L</highlow>
  5424. </item>
  5425. <item>
  5426. <date>2013/06/25</date>
  5427. <day>Tue</day>
  5428. <time>12:18 AM</time>
  5429. <predictions_in_ft>13.5</predictions_in_ft>
  5430. <predictions_in_cm>411</predictions_in_cm>
  5431. <highlow>H</highlow>
  5432. </item>
  5433. <item>
  5434. <date>2013/06/25</date>
  5435. <day>Tue</day>
  5436. <time>06:44 AM</time>
  5437. <predictions_in_ft>-2.0</predictions_in_ft>
  5438. <predictions_in_cm>-61</predictions_in_cm>
  5439. <highlow>L</highlow>
  5440. </item>
  5441. <item>
  5442. <date>2013/06/25</date>
  5443. <day>Tue</day>
  5444. <time>12:57 PM</time>
  5445. <predictions_in_ft>12.1</predictions_in_ft>
  5446. <predictions_in_cm>369</predictions_in_cm>
  5447. <highlow>H</highlow>
  5448. </item>
  5449. <item>
  5450. <date>2013/06/25</date>
  5451. <day>Tue</day>
  5452. <time>07:02 PM</time>
  5453. <predictions_in_ft>-0.8</predictions_in_ft>
  5454. <predictions_in_cm>-24</predictions_in_cm>
  5455. <highlow>L</highlow>
  5456. </item>
  5457. <item>
  5458. <date>2013/06/26</date>
  5459. <day>Wed</day>
  5460. <time>01:13 AM</time>
  5461. <predictions_in_ft>13.3</predictions_in_ft>
  5462. <predictions_in_cm>405</predictions_in_cm>
  5463. <highlow>H</highlow>
  5464. </item>
  5465. <item>
  5466. <date>2013/06/26</date>
  5467. <day>Wed</day>
  5468. <time>07:38 AM</time>
  5469. <predictions_in_ft>-1.9</predictions_in_ft>
  5470. <predictions_in_cm>-58</predictions_in_cm>
  5471. <highlow>L</highlow>
  5472. </item>
  5473. <item>
  5474. <date>2013/06/26</date>
  5475. <day>Wed</day>
  5476. <time>01:51 PM</time>
  5477. <predictions_in_ft>12.1</predictions_in_ft>
  5478. <predictions_in_cm>369</predictions_in_cm>
  5479. <highlow>H</highlow>
  5480. </item>
  5481. <item>
  5482. <date>2013/06/26</date>
  5483. <day>Wed</day>
  5484. <time>07:58 PM</time>
  5485. <predictions_in_ft>-0.7</predictions_in_ft>
  5486. <predictions_in_cm>-21</predictions_in_cm>
  5487. <highlow>L</highlow>
  5488. </item>
  5489. <item>
  5490. <date>2013/06/27</date>
  5491. <day>Thu</day>
  5492. <time>02:09 AM</time>
  5493. <predictions_in_ft>12.8</predictions_in_ft>
  5494. <predictions_in_cm>390</predictions_in_cm>
  5495. <highlow>H</highlow>
  5496. </item>
  5497. <item>
  5498. <date>2013/06/27</date>
  5499. <day>Thu</day>
  5500. <time>08:32 AM</time>
  5501. <predictions_in_ft>-1.5</predictions_in_ft>
  5502. <predictions_in_cm>-46</predictions_in_cm>
  5503. <highlow>L</highlow>
  5504. </item>
  5505. <item>
  5506. <date>2013/06/27</date>
  5507. <day>Thu</day>
  5508. <time>02:47 PM</time>
  5509. <predictions_in_ft>12.0</predictions_in_ft>
  5510. <predictions_in_cm>366</predictions_in_cm>
  5511. <highlow>H</highlow>
  5512. </item>
  5513. <item>
  5514. <date>2013/06/27</date>
  5515. <day>Thu</day>
  5516. <time>08:56 PM</time>
  5517. <predictions_in_ft>-0.4</predictions_in_ft>
  5518. <predictions_in_cm>-12</predictions_in_cm>
  5519. <highlow>L</highlow>
  5520. </item>
  5521. <item>
  5522. <date>2013/06/28</date>
  5523. <day>Fri</day>
  5524. <time>03:06 AM</time>
  5525. <predictions_in_ft>12.3</predictions_in_ft>
  5526. <predictions_in_cm>375</predictions_in_cm>
  5527. <highlow>H</highlow>
  5528. </item>
  5529. <item>
  5530. <date>2013/06/28</date>
  5531. <day>Fri</day>
  5532. <time>09:27 AM</time>
  5533. <predictions_in_ft>-1.0</predictions_in_ft>
  5534. <predictions_in_cm>-30</predictions_in_cm>
  5535. <highlow>L</highlow>
  5536. </item>
  5537. <item>
  5538. <date>2013/06/28</date>
  5539. <day>Fri</day>
  5540. <time>03:43 PM</time>
  5541. <predictions_in_ft>11.8</predictions_in_ft>
  5542. <predictions_in_cm>360</predictions_in_cm>
  5543. <highlow>H</highlow>
  5544. </item>
  5545. <item>
  5546. <date>2013/06/28</date>
  5547. <day>Fri</day>
  5548. <time>09:56 PM</time>
  5549. <predictions_in_ft>-0.1</predictions_in_ft>
  5550. <predictions_in_cm>-3</predictions_in_cm>
  5551. <highlow>L</highlow>
  5552. </item>
  5553. <item>
  5554. <date>2013/06/29</date>
  5555. <day>Sat</day>
  5556. <time>04:05 AM</time>
  5557. <predictions_in_ft>11.6</predictions_in_ft>
  5558. <predictions_in_cm>354</predictions_in_cm>
  5559. <highlow>H</highlow>
  5560. </item>
  5561. <item>
  5562. <date>2013/06/29</date>
  5563. <day>Sat</day>
  5564. <time>10:23 AM</time>
  5565. <predictions_in_ft>-0.5</predictions_in_ft>
  5566. <predictions_in_cm>-15</predictions_in_cm>
  5567. <highlow>L</highlow>
  5568. </item>
  5569. <item>
  5570. <date>2013/06/29</date>
  5571. <day>Sat</day>
  5572. <time>04:40 PM</time>
  5573. <predictions_in_ft>11.5</predictions_in_ft>
  5574. <predictions_in_cm>351</predictions_in_cm>
  5575. <highlow>H</highlow>
  5576. </item>
  5577. <item>
  5578. <date>2013/06/29</date>
  5579. <day>Sat</day>
  5580. <time>10:57 PM</time>
  5581. <predictions_in_ft>0.2</predictions_in_ft>
  5582. <predictions_in_cm>6</predictions_in_cm>
  5583. <highlow>L</highlow>
  5584. </item>
  5585. <item>
  5586. <date>2013/06/30</date>
  5587. <day>Sun</day>
  5588. <time>05:05 AM</time>
  5589. <predictions_in_ft>11.0</predictions_in_ft>
  5590. <predictions_in_cm>335</predictions_in_cm>
  5591. <highlow>H</highlow>
  5592. </item>
  5593. <item>
  5594. <date>2013/06/30</date>
  5595. <day>Sun</day>
  5596. <time>11:20 AM</time>
  5597. <predictions_in_ft>0.1</predictions_in_ft>
  5598. <predictions_in_cm>3</predictions_in_cm>
  5599. <highlow>L</highlow>
  5600. </item>
  5601. <item>
  5602. <date>2013/06/30</date>
  5603. <day>Sun</day>
  5604. <time>05:37 PM</time>
  5605. <predictions_in_ft>11.3</predictions_in_ft>
  5606. <predictions_in_cm>344</predictions_in_cm>
  5607. <highlow>H</highlow>
  5608. </item>
  5609. <item>
  5610. <date>2013/06/30</date>
  5611. <day>Sun</day>
  5612. <time>11:58 PM</time>
  5613. <predictions_in_ft>0.5</predictions_in_ft>
  5614. <predictions_in_cm>15</predictions_in_cm>
  5615. <highlow>L</highlow>
  5616. </item>
  5617. <item>
  5618. <date>2013/07/01</date>
  5619. <day>Mon</day>
  5620. <time>06:06 AM</time>
  5621. <predictions_in_ft>10.4</predictions_in_ft>
  5622. <predictions_in_cm>317</predictions_in_cm>
  5623. <highlow>H</highlow>
  5624. </item>
  5625. <item>
  5626. <date>2013/07/01</date>
  5627. <day>Mon</day>
  5628. <time>12:17 PM</time>
  5629. <predictions_in_ft>0.6</predictions_in_ft>
  5630. <predictions_in_cm>18</predictions_in_cm>
  5631. <highlow>L</highlow>
  5632. </item>
  5633. <item>
  5634. <date>2013/07/01</date>
  5635. <day>Mon</day>
  5636. <time>06:35 PM</time>
  5637. <predictions_in_ft>11.1</predictions_in_ft>
  5638. <predictions_in_cm>338</predictions_in_cm>
  5639. <highlow>H</highlow>
  5640. </item>
  5641. <item>
  5642. <date>2013/07/02</date>
  5643. <day>Tue</day>
  5644. <time>12:58 AM</time>
  5645. <predictions_in_ft>0.6</predictions_in_ft>
  5646. <predictions_in_cm>18</predictions_in_cm>
  5647. <highlow>L</highlow>
  5648. </item>
  5649. <item>
  5650. <date>2013/07/02</date>
  5651. <day>Tue</day>
  5652. <time>07:06 AM</time>
  5653. <predictions_in_ft>10.1</predictions_in_ft>
  5654. <predictions_in_cm>308</predictions_in_cm>
  5655. <highlow>H</highlow>
  5656. </item>
  5657. <item>
  5658. <date>2013/07/02</date>
  5659. <day>Tue</day>
  5660. <time>01:14 PM</time>
  5661. <predictions_in_ft>1.0</predictions_in_ft>
  5662. <predictions_in_cm>30</predictions_in_cm>
  5663. <highlow>L</highlow>
  5664. </item>
  5665. <item>
  5666. <date>2013/07/02</date>
  5667. <day>Tue</day>
  5668. <time>07:31 PM</time>
  5669. <predictions_in_ft>11.0</predictions_in_ft>
  5670. <predictions_in_cm>335</predictions_in_cm>
  5671. <highlow>H</highlow>
  5672. </item>
  5673. <item>
  5674. <date>2013/07/03</date>
  5675. <day>Wed</day>
  5676. <time>01:56 AM</time>
  5677. <predictions_in_ft>0.6</predictions_in_ft>
  5678. <predictions_in_cm>18</predictions_in_cm>
  5679. <highlow>L</highlow>
  5680. </item>
  5681. <item>
  5682. <date>2013/07/03</date>
  5683. <day>Wed</day>
  5684. <time>08:05 AM</time>
  5685. <predictions_in_ft>9.9</predictions_in_ft>
  5686. <predictions_in_cm>302</predictions_in_cm>
  5687. <highlow>H</highlow>
  5688. </item>
  5689. <item>
  5690. <date>2013/07/03</date>
  5691. <day>Wed</day>
  5692. <time>02:09 PM</time>
  5693. <predictions_in_ft>1.2</predictions_in_ft>
  5694. <predictions_in_cm>37</predictions_in_cm>
  5695. <highlow>L</highlow>
  5696. </item>
  5697. <item>
  5698. <date>2013/07/03</date>
  5699. <day>Wed</day>
  5700. <time>08:24 PM</time>
  5701. <predictions_in_ft>11.0</predictions_in_ft>
  5702. <predictions_in_cm>335</predictions_in_cm>
  5703. <highlow>H</highlow>
  5704. </item>
  5705. <item>
  5706. <date>2013/07/04</date>
  5707. <day>Thu</day>
  5708. <time>02:51 AM</time>
  5709. <predictions_in_ft>0.5</predictions_in_ft>
  5710. <predictions_in_cm>15</predictions_in_cm>
  5711. <highlow>L</highlow>
  5712. </item>
  5713. <item>
  5714. <date>2013/07/04</date>
  5715. <day>Thu</day>
  5716. <time>09:00 AM</time>
  5717. <predictions_in_ft>9.8</predictions_in_ft>
  5718. <predictions_in_cm>299</predictions_in_cm>
  5719. <highlow>H</highlow>
  5720. </item>
  5721. <item>
  5722. <date>2013/07/04</date>
  5723. <day>Thu</day>
  5724. <time>03:01 PM</time>
  5725. <predictions_in_ft>1.3</predictions_in_ft>
  5726. <predictions_in_cm>40</predictions_in_cm>
  5727. <highlow>L</highlow>
  5728. </item>
  5729. <item>
  5730. <date>2013/07/04</date>
  5731. <day>Thu</day>
  5732. <time>09:14 PM</time>
  5733. <predictions_in_ft>11.0</predictions_in_ft>
  5734. <predictions_in_cm>335</predictions_in_cm>
  5735. <highlow>H</highlow>
  5736. </item>
  5737. <item>
  5738. <date>2013/07/05</date>
  5739. <day>Fri</day>
  5740. <time>03:40 AM</time>
  5741. <predictions_in_ft>0.4</predictions_in_ft>
  5742. <predictions_in_cm>12</predictions_in_cm>
  5743. <highlow>L</highlow>
  5744. </item>
  5745. <item>
  5746. <date>2013/07/05</date>
  5747. <day>Fri</day>
  5748. <time>09:50 AM</time>
  5749. <predictions_in_ft>9.9</predictions_in_ft>
  5750. <predictions_in_cm>302</predictions_in_cm>
  5751. <highlow>H</highlow>
  5752. </item>
  5753. <item>
  5754. <date>2013/07/05</date>
  5755. <day>Fri</day>
  5756. <time>03:49 PM</time>
  5757. <predictions_in_ft>1.3</predictions_in_ft>
  5758. <predictions_in_cm>40</predictions_in_cm>
  5759. <highlow>L</highlow>
  5760. </item>
  5761. <item>
  5762. <date>2013/07/05</date>
  5763. <day>Fri</day>
  5764. <time>10:00 PM</time>
  5765. <predictions_in_ft>11.1</predictions_in_ft>
  5766. <predictions_in_cm>338</predictions_in_cm>
  5767. <highlow>H</highlow>
  5768. </item>
  5769. <item>
  5770. <date>2013/07/06</date>
  5771. <day>Sat</day>
  5772. <time>04:26 AM</time>
  5773. <predictions_in_ft>0.3</predictions_in_ft>
  5774. <predictions_in_cm>9</predictions_in_cm>
  5775. <highlow>L</highlow>
  5776. </item>
  5777. <item>
  5778. <date>2013/07/06</date>
  5779. <day>Sat</day>
  5780. <time>10:35 AM</time>
  5781. <predictions_in_ft>10.0</predictions_in_ft>
  5782. <predictions_in_cm>305</predictions_in_cm>
  5783. <highlow>H</highlow>
  5784. </item>
  5785. <item>
  5786. <date>2013/07/06</date>
  5787. <day>Sat</day>
  5788. <time>04:33 PM</time>
  5789. <predictions_in_ft>1.2</predictions_in_ft>
  5790. <predictions_in_cm>37</predictions_in_cm>
  5791. <highlow>L</highlow>
  5792. </item>
  5793. <item>
  5794. <date>2013/07/06</date>
  5795. <day>Sat</day>
  5796. <time>10:42 PM</time>
  5797. <predictions_in_ft>11.2</predictions_in_ft>
  5798. <predictions_in_cm>341</predictions_in_cm>
  5799. <highlow>H</highlow>
  5800. </item>
  5801. <item>
  5802. <date>2013/07/07</date>
  5803. <day>Sun</day>
  5804. <time>05:07 AM</time>
  5805. <predictions_in_ft>0.2</predictions_in_ft>
  5806. <predictions_in_cm>6</predictions_in_cm>
  5807. <highlow>L</highlow>
  5808. </item>
  5809. <item>
  5810. <date>2013/07/07</date>
  5811. <day>Sun</day>
  5812. <time>11:16 AM</time>
  5813. <predictions_in_ft>10.1</predictions_in_ft>
  5814. <predictions_in_cm>308</predictions_in_cm>
  5815. <highlow>H</highlow>
  5816. </item>
  5817. <item>
  5818. <date>2013/07/07</date>
  5819. <day>Sun</day>
  5820. <time>05:14 PM</time>
  5821. <predictions_in_ft>1.2</predictions_in_ft>
  5822. <predictions_in_cm>37</predictions_in_cm>
  5823. <highlow>L</highlow>
  5824. </item>
  5825. <item>
  5826. <date>2013/07/07</date>
  5827. <day>Sun</day>
  5828. <time>11:22 PM</time>
  5829. <predictions_in_ft>11.3</predictions_in_ft>
  5830. <predictions_in_cm>344</predictions_in_cm>
  5831. <highlow>H</highlow>
  5832. </item>
  5833. <item>
  5834. <date>2013/07/08</date>
  5835. <day>Mon</day>
  5836. <time>05:46 AM</time>
  5837. <predictions_in_ft>0.1</predictions_in_ft>
  5838. <predictions_in_cm>3</predictions_in_cm>
  5839. <highlow>L</highlow>
  5840. </item>
  5841. <item>
  5842. <date>2013/07/08</date>
  5843. <day>Mon</day>
  5844. <time>11:54 AM</time>
  5845. <predictions_in_ft>10.2</predictions_in_ft>
  5846. <predictions_in_cm>311</predictions_in_cm>
  5847. <highlow>H</highlow>
  5848. </item>
  5849. <item>
  5850. <date>2013/07/08</date>
  5851. <day>Mon</day>
  5852. <time>05:53 PM</time>
  5853. <predictions_in_ft>1.1</predictions_in_ft>
  5854. <predictions_in_cm>34</predictions_in_cm>
  5855. <highlow>L</highlow>
  5856. </item>
  5857. <item>
  5858. <date>2013/07/08</date>
  5859. <day>Mon</day>
  5860. <time>11:59 PM</time>
  5861. <predictions_in_ft>11.3</predictions_in_ft>
  5862. <predictions_in_cm>344</predictions_in_cm>
  5863. <highlow>H</highlow>
  5864. </item>
  5865. <item>
  5866. <date>2013/07/09</date>
  5867. <day>Tue</day>
  5868. <time>06:22 AM</time>
  5869. <predictions_in_ft>0.1</predictions_in_ft>
  5870. <predictions_in_cm>3</predictions_in_cm>
  5871. <highlow>L</highlow>
  5872. </item>
  5873. <item>
  5874. <date>2013/07/09</date>
  5875. <day>Tue</day>
  5876. <time>12:30 PM</time>
  5877. <predictions_in_ft>10.3</predictions_in_ft>
  5878. <predictions_in_cm>314</predictions_in_cm>
  5879. <highlow>H</highlow>
  5880. </item>
  5881. <item>
  5882. <date>2013/07/09</date>
  5883. <day>Tue</day>
  5884. <time>06:30 PM</time>
  5885. <predictions_in_ft>1.1</predictions_in_ft>
  5886. <predictions_in_cm>34</predictions_in_cm>
  5887. <highlow>L</highlow>
  5888. </item>
  5889. <item>
  5890. <date>2013/07/10</date>
  5891. <day>Wed</day>
  5892. <time>12:35 AM</time>
  5893. <predictions_in_ft>11.2</predictions_in_ft>
  5894. <predictions_in_cm>341</predictions_in_cm>
  5895. <highlow>H</highlow>
  5896. </item>
  5897. <item>
  5898. <date>2013/07/10</date>
  5899. <day>Wed</day>
  5900. <time>06:57 AM</time>
  5901. <predictions_in_ft>0.1</predictions_in_ft>
  5902. <predictions_in_cm>3</predictions_in_cm>
  5903. <highlow>L</highlow>
  5904. </item>
  5905. <item>
  5906. <date>2013/07/10</date>
  5907. <day>Wed</day>
  5908. <time>01:05 PM</time>
  5909. <predictions_in_ft>10.3</predictions_in_ft>
  5910. <predictions_in_cm>314</predictions_in_cm>
  5911. <highlow>H</highlow>
  5912. </item>
  5913. <item>
  5914. <date>2013/07/10</date>
  5915. <day>Wed</day>
  5916. <time>07:06 PM</time>
  5917. <predictions_in_ft>1.1</predictions_in_ft>
  5918. <predictions_in_cm>34</predictions_in_cm>
  5919. <highlow>L</highlow>
  5920. </item>
  5921. <item>
  5922. <date>2013/07/11</date>
  5923. <day>Thu</day>
  5924. <time>01:12 AM</time>
  5925. <predictions_in_ft>11.1</predictions_in_ft>
  5926. <predictions_in_cm>338</predictions_in_cm>
  5927. <highlow>H</highlow>
  5928. </item>
  5929. <item>
  5930. <date>2013/07/11</date>
  5931. <day>Thu</day>
  5932. <time>07:32 AM</time>
  5933. <predictions_in_ft>0.1</predictions_in_ft>
  5934. <predictions_in_cm>3</predictions_in_cm>
  5935. <highlow>L</highlow>
  5936. </item>
  5937. <item>
  5938. <date>2013/07/11</date>
  5939. <day>Thu</day>
  5940. <time>01:41 PM</time>
  5941. <predictions_in_ft>10.4</predictions_in_ft>
  5942. <predictions_in_cm>317</predictions_in_cm>
  5943. <highlow>H</highlow>
  5944. </item>
  5945. <item>
  5946. <date>2013/07/11</date>
  5947. <day>Thu</day>
  5948. <time>07:44 PM</time>
  5949. <predictions_in_ft>1.1</predictions_in_ft>
  5950. <predictions_in_cm>34</predictions_in_cm>
  5951. <highlow>L</highlow>
  5952. </item>
  5953. <item>
  5954. <date>2013/07/12</date>
  5955. <day>Fri</day>
  5956. <time>01:48 AM</time>
  5957. <predictions_in_ft>11.0</predictions_in_ft>
  5958. <predictions_in_cm>335</predictions_in_cm>
  5959. <highlow>H</highlow>
  5960. </item>
  5961. <item>
  5962. <date>2013/07/12</date>
  5963. <day>Fri</day>
  5964. <time>08:07 AM</time>
  5965. <predictions_in_ft>0.2</predictions_in_ft>
  5966. <predictions_in_cm>6</predictions_in_cm>
  5967. <highlow>L</highlow>
  5968. </item>
  5969. <item>
  5970. <date>2013/07/12</date>
  5971. <day>Fri</day>
  5972. <time>02:17 PM</time>
  5973. <predictions_in_ft>10.5</predictions_in_ft>
  5974. <predictions_in_cm>320</predictions_in_cm>
  5975. <highlow>H</highlow>
  5976. </item>
  5977. <item>
  5978. <date>2013/07/12</date>
  5979. <day>Fri</day>
  5980. <time>08:22 PM</time>
  5981. <predictions_in_ft>1.0</predictions_in_ft>
  5982. <predictions_in_cm>30</predictions_in_cm>
  5983. <highlow>L</highlow>
  5984. </item>
  5985. <item>
  5986. <date>2013/07/13</date>
  5987. <day>Sat</day>
  5988. <time>02:27 AM</time>
  5989. <predictions_in_ft>10.8</predictions_in_ft>
  5990. <predictions_in_cm>329</predictions_in_cm>
  5991. <highlow>H</highlow>
  5992. </item>
  5993. <item>
  5994. <date>2013/07/13</date>
  5995. <day>Sat</day>
  5996. <time>08:44 AM</time>
  5997. <predictions_in_ft>0.3</predictions_in_ft>
  5998. <predictions_in_cm>9</predictions_in_cm>
  5999. <highlow>L</highlow>
  6000. </item>
  6001. <item>
  6002. <date>2013/07/13</date>
  6003. <day>Sat</day>
  6004. <time>02:56 PM</time>
  6005. <predictions_in_ft>10.7</predictions_in_ft>
  6006. <predictions_in_cm>326</predictions_in_cm>
  6007. <highlow>H</highlow>
  6008. </item>
  6009. <item>
  6010. <date>2013/07/13</date>
  6011. <day>Sat</day>
  6012. <time>09:04 PM</time>
  6013. <predictions_in_ft>1.0</predictions_in_ft>
  6014. <predictions_in_cm>30</predictions_in_cm>
  6015. <highlow>L</highlow>
  6016. </item>
  6017. <item>
  6018. <date>2013/07/14</date>
  6019. <day>Sun</day>
  6020. <time>03:10 AM</time>
  6021. <predictions_in_ft>10.7</predictions_in_ft>
  6022. <predictions_in_cm>326</predictions_in_cm>
  6023. <highlow>H</highlow>
  6024. </item>
  6025. <item>
  6026. <date>2013/07/14</date>
  6027. <day>Sun</day>
  6028. <time>09:24 AM</time>
  6029. <predictions_in_ft>0.4</predictions_in_ft>
  6030. <predictions_in_cm>12</predictions_in_cm>
  6031. <highlow>L</highlow>
  6032. </item>
  6033. <item>
  6034. <date>2013/07/14</date>
  6035. <day>Sun</day>
  6036. <time>03:38 PM</time>
  6037. <predictions_in_ft>10.8</predictions_in_ft>
  6038. <predictions_in_cm>329</predictions_in_cm>
  6039. <highlow>H</highlow>
  6040. </item>
  6041. <item>
  6042. <date>2013/07/14</date>
  6043. <day>Sun</day>
  6044. <time>09:50 PM</time>
  6045. <predictions_in_ft>0.9</predictions_in_ft>
  6046. <predictions_in_cm>27</predictions_in_cm>
  6047. <highlow>L</highlow>
  6048. </item>
  6049. <item>
  6050. <date>2013/07/15</date>
  6051. <day>Mon</day>
  6052. <time>03:56 AM</time>
  6053. <predictions_in_ft>10.5</predictions_in_ft>
  6054. <predictions_in_cm>320</predictions_in_cm>
  6055. <highlow>H</highlow>
  6056. </item>
  6057. <item>
  6058. <date>2013/07/15</date>
  6059. <day>Mon</day>
  6060. <time>10:09 AM</time>
  6061. <predictions_in_ft>0.5</predictions_in_ft>
  6062. <predictions_in_cm>15</predictions_in_cm>
  6063. <highlow>L</highlow>
  6064. </item>
  6065. <item>
  6066. <date>2013/07/15</date>
  6067. <day>Mon</day>
  6068. <time>04:24 PM</time>
  6069. <predictions_in_ft>11.0</predictions_in_ft>
  6070. <predictions_in_cm>335</predictions_in_cm>
  6071. <highlow>H</highlow>
  6072. </item>
  6073. <item>
  6074. <date>2013/07/15</date>
  6075. <day>Mon</day>
  6076. <time>10:42 PM</time>
  6077. <predictions_in_ft>0.8</predictions_in_ft>
  6078. <predictions_in_cm>24</predictions_in_cm>
  6079. <highlow>L</highlow>
  6080. </item>
  6081. <item>
  6082. <date>2013/07/16</date>
  6083. <day>Tue</day>
  6084. <time>04:48 AM</time>
  6085. <predictions_in_ft>10.3</predictions_in_ft>
  6086. <predictions_in_cm>314</predictions_in_cm>
  6087. <highlow>H</highlow>
  6088. </item>
  6089. <item>
  6090. <date>2013/07/16</date>
  6091. <day>Tue</day>
  6092. <time>10:59 AM</time>
  6093. <predictions_in_ft>0.6</predictions_in_ft>
  6094. <predictions_in_cm>18</predictions_in_cm>
  6095. <highlow>L</highlow>
  6096. </item>
  6097. <item>
  6098. <date>2013/07/16</date>
  6099. <day>Tue</day>
  6100. <time>05:16 PM</time>
  6101. <predictions_in_ft>11.2</predictions_in_ft>
  6102. <predictions_in_cm>341</predictions_in_cm>
  6103. <highlow>H</highlow>
  6104. </item>
  6105. <item>
  6106. <date>2013/07/16</date>
  6107. <day>Tue</day>
  6108. <time>11:38 PM</time>
  6109. <predictions_in_ft>0.6</predictions_in_ft>
  6110. <predictions_in_cm>18</predictions_in_cm>
  6111. <highlow>L</highlow>
  6112. </item>
  6113. <item>
  6114. <date>2013/07/17</date>
  6115. <day>Wed</day>
  6116. <time>05:46 AM</time>
  6117. <predictions_in_ft>10.2</predictions_in_ft>
  6118. <predictions_in_cm>311</predictions_in_cm>
  6119. <highlow>H</highlow>
  6120. </item>
  6121. <item>
  6122. <date>2013/07/17</date>
  6123. <day>Wed</day>
  6124. <time>11:54 AM</time>
  6125. <predictions_in_ft>0.7</predictions_in_ft>
  6126. <predictions_in_cm>21</predictions_in_cm>
  6127. <highlow>L</highlow>
  6128. </item>
  6129. <item>
  6130. <date>2013/07/17</date>
  6131. <day>Wed</day>
  6132. <time>06:13 PM</time>
  6133. <predictions_in_ft>11.4</predictions_in_ft>
  6134. <predictions_in_cm>347</predictions_in_cm>
  6135. <highlow>H</highlow>
  6136. </item>
  6137. <item>
  6138. <date>2013/07/18</date>
  6139. <day>Thu</day>
  6140. <time>12:40 AM</time>
  6141. <predictions_in_ft>0.3</predictions_in_ft>
  6142. <predictions_in_cm>9</predictions_in_cm>
  6143. <highlow>L</highlow>
  6144. </item>
  6145. <item>
  6146. <date>2013/07/18</date>
  6147. <day>Thu</day>
  6148. <time>06:48 AM</time>
  6149. <predictions_in_ft>10.2</predictions_in_ft>
  6150. <predictions_in_cm>311</predictions_in_cm>
  6151. <highlow>H</highlow>
  6152. </item>
  6153. <item>
  6154. <date>2013/07/18</date>
  6155. <day>Thu</day>
  6156. <time>12:54 PM</time>
  6157. <predictions_in_ft>0.7</predictions_in_ft>
  6158. <predictions_in_cm>21</predictions_in_cm>
  6159. <highlow>L</highlow>
  6160. </item>
  6161. <item>
  6162. <date>2013/07/18</date>
  6163. <day>Thu</day>
  6164. <time>07:13 PM</time>
  6165. <predictions_in_ft>11.8</predictions_in_ft>
  6166. <predictions_in_cm>360</predictions_in_cm>
  6167. <highlow>H</highlow>
  6168. </item>
  6169. <item>
  6170. <date>2013/07/19</date>
  6171. <day>Fri</day>
  6172. <time>01:43 AM</time>
  6173. <predictions_in_ft>-0.1</predictions_in_ft>
  6174. <predictions_in_cm>-3</predictions_in_cm>
  6175. <highlow>L</highlow>
  6176. </item>
  6177. <item>
  6178. <date>2013/07/19</date>
  6179. <day>Fri</day>
  6180. <time>07:52 AM</time>
  6181. <predictions_in_ft>10.4</predictions_in_ft>
  6182. <predictions_in_cm>317</predictions_in_cm>
  6183. <highlow>H</highlow>
  6184. </item>
  6185. <item>
  6186. <date>2013/07/19</date>
  6187. <day>Fri</day>
  6188. <time>01:57 PM</time>
  6189. <predictions_in_ft>0.5</predictions_in_ft>
  6190. <predictions_in_cm>15</predictions_in_cm>
  6191. <highlow>L</highlow>
  6192. </item>
  6193. <item>
  6194. <date>2013/07/19</date>
  6195. <day>Fri</day>
  6196. <time>08:15 PM</time>
  6197. <predictions_in_ft>12.2</predictions_in_ft>
  6198. <predictions_in_cm>372</predictions_in_cm>
  6199. <highlow>H</highlow>
  6200. </item>
  6201. <item>
  6202. <date>2013/07/20</date>
  6203. <day>Sat</day>
  6204. <time>02:45 AM</time>
  6205. <predictions_in_ft>-0.6</predictions_in_ft>
  6206. <predictions_in_cm>-18</predictions_in_cm>
  6207. <highlow>L</highlow>
  6208. </item>
  6209. <item>
  6210. <date>2013/07/20</date>
  6211. <day>Sat</day>
  6212. <time>08:55 AM</time>
  6213. <predictions_in_ft>10.8</predictions_in_ft>
  6214. <predictions_in_cm>329</predictions_in_cm>
  6215. <highlow>H</highlow>
  6216. </item>
  6217. <item>
  6218. <date>2013/07/20</date>
  6219. <day>Sat</day>
  6220. <time>02:59 PM</time>
  6221. <predictions_in_ft>0.1</predictions_in_ft>
  6222. <predictions_in_cm>3</predictions_in_cm>
  6223. <highlow>L</highlow>
  6224. </item>
  6225. <item>
  6226. <date>2013/07/20</date>
  6227. <day>Sat</day>
  6228. <time>09:15 PM</time>
  6229. <predictions_in_ft>12.6</predictions_in_ft>
  6230. <predictions_in_cm>384</predictions_in_cm>
  6231. <highlow>H</highlow>
  6232. </item>
  6233. <item>
  6234. <date>2013/07/21</date>
  6235. <day>Sun</day>
  6236. <time>03:45 AM</time>
  6237. <predictions_in_ft>-1.1</predictions_in_ft>
  6238. <predictions_in_cm>-34</predictions_in_cm>
  6239. <highlow>L</highlow>
  6240. </item>
  6241. <item>
  6242. <date>2013/07/21</date>
  6243. <day>Sun</day>
  6244. <time>09:55 AM</time>
  6245. <predictions_in_ft>11.3</predictions_in_ft>
  6246. <predictions_in_cm>344</predictions_in_cm>
  6247. <highlow>H</highlow>
  6248. </item>
  6249. <item>
  6250. <date>2013/07/21</date>
  6251. <day>Sun</day>
  6252. <time>03:59 PM</time>
  6253. <predictions_in_ft>-0.3</predictions_in_ft>
  6254. <predictions_in_cm>-9</predictions_in_cm>
  6255. <highlow>L</highlow>
  6256. </item>
  6257. <item>
  6258. <date>2013/07/21</date>
  6259. <day>Sun</day>
  6260. <time>10:14 PM</time>
  6261. <predictions_in_ft>13.1</predictions_in_ft>
  6262. <predictions_in_cm>399</predictions_in_cm>
  6263. <highlow>H</highlow>
  6264. </item>
  6265. <item>
  6266. <date>2013/07/22</date>
  6267. <day>Mon</day>
  6268. <time>04:41 AM</time>
  6269. <predictions_in_ft>-1.6</predictions_in_ft>
  6270. <predictions_in_cm>-49</predictions_in_cm>
  6271. <highlow>L</highlow>
  6272. </item>
  6273. <item>
  6274. <date>2013/07/22</date>
  6275. <day>Mon</day>
  6276. <time>10:52 AM</time>
  6277. <predictions_in_ft>11.7</predictions_in_ft>
  6278. <predictions_in_cm>357</predictions_in_cm>
  6279. <highlow>H</highlow>
  6280. </item>
  6281. <item>
  6282. <date>2013/07/22</date>
  6283. <day>Mon</day>
  6284. <time>04:56 PM</time>
  6285. <predictions_in_ft>-0.7</predictions_in_ft>
  6286. <predictions_in_cm>-21</predictions_in_cm>
  6287. <highlow>L</highlow>
  6288. </item>
  6289. <item>
  6290. <date>2013/07/22</date>
  6291. <day>Mon</day>
  6292. <time>11:10 PM</time>
  6293. <predictions_in_ft>13.3</predictions_in_ft>
  6294. <predictions_in_cm>405</predictions_in_cm>
  6295. <highlow>H</highlow>
  6296. </item>
  6297. <item>
  6298. <date>2013/07/23</date>
  6299. <day>Tue</day>
  6300. <time>05:35 AM</time>
  6301. <predictions_in_ft>-1.8</predictions_in_ft>
  6302. <predictions_in_cm>-55</predictions_in_cm>
  6303. <highlow>L</highlow>
  6304. </item>
  6305. <item>
  6306. <date>2013/07/23</date>
  6307. <day>Tue</day>
  6308. <time>11:46 AM</time>
  6309. <predictions_in_ft>12.1</predictions_in_ft>
  6310. <predictions_in_cm>369</predictions_in_cm>
  6311. <highlow>H</highlow>
  6312. </item>
  6313. <item>
  6314. <date>2013/07/23</date>
  6315. <day>Tue</day>
  6316. <time>05:52 PM</time>
  6317. <predictions_in_ft>-1.0</predictions_in_ft>
  6318. <predictions_in_cm>-30</predictions_in_cm>
  6319. <highlow>L</highlow>
  6320. </item>
  6321. <item>
  6322. <date>2013/07/24</date>
  6323. <day>Wed</day>
  6324. <time>12:04 AM</time>
  6325. <predictions_in_ft>13.4</predictions_in_ft>
  6326. <predictions_in_cm>408</predictions_in_cm>
  6327. <highlow>H</highlow>
  6328. </item>
  6329. <item>
  6330. <date>2013/07/24</date>
  6331. <day>Wed</day>
  6332. <time>06:27 AM</time>
  6333. <predictions_in_ft>-1.9</predictions_in_ft>
  6334. <predictions_in_cm>-58</predictions_in_cm>
  6335. <highlow>L</highlow>
  6336. </item>
  6337. <item>
  6338. <date>2013/07/24</date>
  6339. <day>Wed</day>
  6340. <time>12:38 PM</time>
  6341. <predictions_in_ft>12.3</predictions_in_ft>
  6342. <predictions_in_cm>375</predictions_in_cm>
  6343. <highlow>H</highlow>
  6344. </item>
  6345. <item>
  6346. <date>2013/07/24</date>
  6347. <day>Wed</day>
  6348. <time>06:46 PM</time>
  6349. <predictions_in_ft>-1.0</predictions_in_ft>
  6350. <predictions_in_cm>-30</predictions_in_cm>
  6351. <highlow>L</highlow>
  6352. </item>
  6353. <item>
  6354. <date>2013/07/25</date>
  6355. <day>Thu</day>
  6356. <time>12:57 AM</time>
  6357. <predictions_in_ft>13.1</predictions_in_ft>
  6358. <predictions_in_cm>399</predictions_in_cm>
  6359. <highlow>H</highlow>
  6360. </item>
  6361. <item>
  6362. <date>2013/07/25</date>
  6363. <day>Thu</day>
  6364. <time>07:18 AM</time>
  6365. <predictions_in_ft>-1.7</predictions_in_ft>
  6366. <predictions_in_cm>-52</predictions_in_cm>
  6367. <highlow>L</highlow>
  6368. </item>
  6369. <item>
  6370. <date>2013/07/25</date>
  6371. <day>Thu</day>
  6372. <time>01:30 PM</time>
  6373. <predictions_in_ft>12.3</predictions_in_ft>
  6374. <predictions_in_cm>375</predictions_in_cm>
  6375. <highlow>H</highlow>
  6376. </item>
  6377. <item>
  6378. <date>2013/07/25</date>
  6379. <day>Thu</day>
  6380. <time>07:40 PM</time>
  6381. <predictions_in_ft>-0.9</predictions_in_ft>
  6382. <predictions_in_cm>-27</predictions_in_cm>
  6383. <highlow>L</highlow>
  6384. </item>
  6385. <item>
  6386. <date>2013/07/26</date>
  6387. <day>Fri</day>
  6388. <time>01:50 AM</time>
  6389. <predictions_in_ft>12.7</predictions_in_ft>
  6390. <predictions_in_cm>387</predictions_in_cm>
  6391. <highlow>H</highlow>
  6392. </item>
  6393. <item>
  6394. <date>2013/07/26</date>
  6395. <day>Fri</day>
  6396. <time>08:09 AM</time>
  6397. <predictions_in_ft>-1.3</predictions_in_ft>
  6398. <predictions_in_cm>-40</predictions_in_cm>
  6399. <highlow>L</highlow>
  6400. </item>
  6401. <item>
  6402. <date>2013/07/26</date>
  6403. <day>Fri</day>
  6404. <time>02:22 PM</time>
  6405. <predictions_in_ft>12.2</predictions_in_ft>
  6406. <predictions_in_cm>372</predictions_in_cm>
  6407. <highlow>H</highlow>
  6408. </item>
  6409. <item>
  6410. <date>2013/07/26</date>
  6411. <day>Fri</day>
  6412. <time>08:35 PM</time>
  6413. <predictions_in_ft>-0.6</predictions_in_ft>
  6414. <predictions_in_cm>-18</predictions_in_cm>
  6415. <highlow>L</highlow>
  6416. </item>
  6417. <item>
  6418. <date>2013/07/27</date>
  6419. <day>Sat</day>
  6420. <time>02:44 AM</time>
  6421. <predictions_in_ft>12.1</predictions_in_ft>
  6422. <predictions_in_cm>369</predictions_in_cm>
  6423. <highlow>H</highlow>
  6424. </item>
  6425. <item>
  6426. <date>2013/07/27</date>
  6427. <day>Sat</day>
  6428. <time>09:00 AM</time>
  6429. <predictions_in_ft>-0.8</predictions_in_ft>
  6430. <predictions_in_cm>-24</predictions_in_cm>
  6431. <highlow>L</highlow>
  6432. </item>
  6433. <item>
  6434. <date>2013/07/27</date>
  6435. <day>Sat</day>
  6436. <time>03:14 PM</time>
  6437. <predictions_in_ft>11.9</predictions_in_ft>
  6438. <predictions_in_cm>363</predictions_in_cm>
  6439. <highlow>H</highlow>
  6440. </item>
  6441. <item>
  6442. <date>2013/07/27</date>
  6443. <day>Sat</day>
  6444. <time>09:30 PM</time>
  6445. <predictions_in_ft>-0.2</predictions_in_ft>
  6446. <predictions_in_cm>-6</predictions_in_cm>
  6447. <highlow>L</highlow>
  6448. </item>
  6449. <item>
  6450. <date>2013/07/28</date>
  6451. <day>Sun</day>
  6452. <time>03:39 AM</time>
  6453. <predictions_in_ft>11.4</predictions_in_ft>
  6454. <predictions_in_cm>347</predictions_in_cm>
  6455. <highlow>H</highlow>
  6456. </item>
  6457. <item>
  6458. <date>2013/07/28</date>
  6459. <day>Sun</day>
  6460. <time>09:53 AM</time>
  6461. <predictions_in_ft>-0.2</predictions_in_ft>
  6462. <predictions_in_cm>-6</predictions_in_cm>
  6463. <highlow>L</highlow>
  6464. </item>
  6465. <item>
  6466. <date>2013/07/28</date>
  6467. <day>Sun</day>
  6468. <time>04:08 PM</time>
  6469. <predictions_in_ft>11.5</predictions_in_ft>
  6470. <predictions_in_cm>351</predictions_in_cm>
  6471. <highlow>H</highlow>
  6472. </item>
  6473. <item>
  6474. <date>2013/07/28</date>
  6475. <day>Sun</day>
  6476. <time>10:27 PM</time>
  6477. <predictions_in_ft>0.2</predictions_in_ft>
  6478. <predictions_in_cm>6</predictions_in_cm>
  6479. <highlow>L</highlow>
  6480. </item>
  6481. <item>
  6482. <date>2013/07/29</date>
  6483. <day>Mon</day>
  6484. <time>04:35 AM</time>
  6485. <predictions_in_ft>10.7</predictions_in_ft>
  6486. <predictions_in_cm>326</predictions_in_cm>
  6487. <highlow>H</highlow>
  6488. </item>
  6489. <item>
  6490. <date>2013/07/29</date>
  6491. <day>Mon</day>
  6492. <time>10:47 AM</time>
  6493. <predictions_in_ft>0.5</predictions_in_ft>
  6494. <predictions_in_cm>15</predictions_in_cm>
  6495. <highlow>L</highlow>
  6496. </item>
  6497. <item>
  6498. <date>2013/07/29</date>
  6499. <day>Mon</day>
  6500. <time>05:02 PM</time>
  6501. <predictions_in_ft>11.1</predictions_in_ft>
  6502. <predictions_in_cm>338</predictions_in_cm>
  6503. <highlow>H</highlow>
  6504. </item>
  6505. <item>
  6506. <date>2013/07/29</date>
  6507. <day>Mon</day>
  6508. <time>11:25 PM</time>
  6509. <predictions_in_ft>0.6</predictions_in_ft>
  6510. <predictions_in_cm>18</predictions_in_cm>
  6511. <highlow>L</highlow>
  6512. </item>
  6513. <item>
  6514. <date>2013/07/30</date>
  6515. <day>Tue</day>
  6516. <time>05:33 AM</time>
  6517. <predictions_in_ft>10.1</predictions_in_ft>
  6518. <predictions_in_cm>308</predictions_in_cm>
  6519. <highlow>H</highlow>
  6520. </item>
  6521. <item>
  6522. <date>2013/07/30</date>
  6523. <day>Tue</day>
  6524. <time>11:42 AM</time>
  6525. <predictions_in_ft>1.0</predictions_in_ft>
  6526. <predictions_in_cm>30</predictions_in_cm>
  6527. <highlow>L</highlow>
  6528. </item>
  6529. <item>
  6530. <date>2013/07/30</date>
  6531. <day>Tue</day>
  6532. <time>05:58 PM</time>
  6533. <predictions_in_ft>10.8</predictions_in_ft>
  6534. <predictions_in_cm>329</predictions_in_cm>
  6535. <highlow>H</highlow>
  6536. </item>
  6537. <item>
  6538. <date>2013/07/31</date>
  6539. <day>Wed</day>
  6540. <time>12:24 AM</time>
  6541. <predictions_in_ft>0.9</predictions_in_ft>
  6542. <predictions_in_cm>27</predictions_in_cm>
  6543. <highlow>L</highlow>
  6544. </item>
  6545. <item>
  6546. <date>2013/07/31</date>
  6547. <day>Wed</day>
  6548. <time>06:33 AM</time>
  6549. <predictions_in_ft>9.7</predictions_in_ft>
  6550. <predictions_in_cm>296</predictions_in_cm>
  6551. <highlow>H</highlow>
  6552. </item>
  6553. <item>
  6554. <date>2013/07/31</date>
  6555. <day>Wed</day>
  6556. <time>12:39 PM</time>
  6557. <predictions_in_ft>1.4</predictions_in_ft>
  6558. <predictions_in_cm>43</predictions_in_cm>
  6559. <highlow>L</highlow>
  6560. </item>
  6561. <item>
  6562. <date>2013/07/31</date>
  6563. <day>Wed</day>
  6564. <time>06:55 PM</time>
  6565. <predictions_in_ft>10.6</predictions_in_ft>
  6566. <predictions_in_cm>323</predictions_in_cm>
  6567. <highlow>H</highlow>
  6568. </item>
  6569. <item>
  6570. <date>2013/08/01</date>
  6571. <day>Thu</day>
  6572. <time>01:22 AM</time>
  6573. <predictions_in_ft>1.0</predictions_in_ft>
  6574. <predictions_in_cm>30</predictions_in_cm>
  6575. <highlow>L</highlow>
  6576. </item>
  6577. <item>
  6578. <date>2013/08/01</date>
  6579. <day>Thu</day>
  6580. <time>07:32 AM</time>
  6581. <predictions_in_ft>9.5</predictions_in_ft>
  6582. <predictions_in_cm>290</predictions_in_cm>
  6583. <highlow>H</highlow>
  6584. </item>
  6585. <item>
  6586. <date>2013/08/01</date>
  6587. <day>Thu</day>
  6588. <time>01:36 PM</time>
  6589. <predictions_in_ft>1.6</predictions_in_ft>
  6590. <predictions_in_cm>49</predictions_in_cm>
  6591. <highlow>L</highlow>
  6592. </item>
  6593. <item>
  6594. <date>2013/08/01</date>
  6595. <day>Thu</day>
  6596. <time>07:50 PM</time>
  6597. <predictions_in_ft>10.6</predictions_in_ft>
  6598. <predictions_in_cm>323</predictions_in_cm>
  6599. <highlow>H</highlow>
  6600. </item>
  6601. <item>
  6602. <date>2013/08/02</date>
  6603. <day>Fri</day>
  6604. <time>02:18 AM</time>
  6605. <predictions_in_ft>1.0</predictions_in_ft>
  6606. <predictions_in_cm>30</predictions_in_cm>
  6607. <highlow>L</highlow>
  6608. </item>
  6609. <item>
  6610. <date>2013/08/02</date>
  6611. <day>Fri</day>
  6612. <time>08:28 AM</time>
  6613. <predictions_in_ft>9.4</predictions_in_ft>
  6614. <predictions_in_cm>287</predictions_in_cm>
  6615. <highlow>H</highlow>
  6616. </item>
  6617. <item>
  6618. <date>2013/08/02</date>
  6619. <day>Fri</day>
  6620. <time>02:30 PM</time>
  6621. <predictions_in_ft>1.6</predictions_in_ft>
  6622. <predictions_in_cm>49</predictions_in_cm>
  6623. <highlow>L</highlow>
  6624. </item>
  6625. <item>
  6626. <date>2013/08/02</date>
  6627. <day>Fri</day>
  6628. <time>08:43 PM</time>
  6629. <predictions_in_ft>10.6</predictions_in_ft>
  6630. <predictions_in_cm>323</predictions_in_cm>
  6631. <highlow>H</highlow>
  6632. </item>
  6633. <item>
  6634. <date>2013/08/03</date>
  6635. <day>Sat</day>
  6636. <time>03:10 AM</time>
  6637. <predictions_in_ft>0.8</predictions_in_ft>
  6638. <predictions_in_cm>24</predictions_in_cm>
  6639. <highlow>L</highlow>
  6640. </item>
  6641. <item>
  6642. <date>2013/08/03</date>
  6643. <day>Sat</day>
  6644. <time>09:19 AM</time>
  6645. <predictions_in_ft>9.6</predictions_in_ft>
  6646. <predictions_in_cm>293</predictions_in_cm>
  6647. <highlow>H</highlow>
  6648. </item>
  6649. <item>
  6650. <date>2013/08/03</date>
  6651. <day>Sat</day>
  6652. <time>03:20 PM</time>
  6653. <predictions_in_ft>1.5</predictions_in_ft>
  6654. <predictions_in_cm>46</predictions_in_cm>
  6655. <highlow>L</highlow>
  6656. </item>
  6657. <item>
  6658. <date>2013/08/03</date>
  6659. <day>Sat</day>
  6660. <time>09:31 PM</time>
  6661. <predictions_in_ft>10.8</predictions_in_ft>
  6662. <predictions_in_cm>329</predictions_in_cm>
  6663. <highlow>H</highlow>
  6664. </item>
  6665. <item>
  6666. <date>2013/08/04</date>
  6667. <day>Sun</day>
  6668. <time>03:56 AM</time>
  6669. <predictions_in_ft>0.6</predictions_in_ft>
  6670. <predictions_in_cm>18</predictions_in_cm>
  6671. <highlow>L</highlow>
  6672. </item>
  6673. <item>
  6674. <date>2013/08/04</date>
  6675. <day>Sun</day>
  6676. <time>10:05 AM</time>
  6677. <predictions_in_ft>9.8</predictions_in_ft>
  6678. <predictions_in_cm>299</predictions_in_cm>
  6679. <highlow>H</highlow>
  6680. </item>
  6681. <item>
  6682. <date>2013/08/04</date>
  6683. <day>Sun</day>
  6684. <time>04:05 PM</time>
  6685. <predictions_in_ft>1.3</predictions_in_ft>
  6686. <predictions_in_cm>40</predictions_in_cm>
  6687. <highlow>L</highlow>
  6688. </item>
  6689. <item>
  6690. <date>2013/08/04</date>
  6691. <day>Sun</day>
  6692. <time>10:15 PM</time>
  6693. <predictions_in_ft>11.0</predictions_in_ft>
  6694. <predictions_in_cm>335</predictions_in_cm>
  6695. <highlow>H</highlow>
  6696. </item>
  6697. <item>
  6698. <date>2013/08/05</date>
  6699. <day>Mon</day>
  6700. <time>04:38 AM</time>
  6701. <predictions_in_ft>0.4</predictions_in_ft>
  6702. <predictions_in_cm>12</predictions_in_cm>
  6703. <highlow>L</highlow>
  6704. </item>
  6705. <item>
  6706. <date>2013/08/05</date>
  6707. <day>Mon</day>
  6708. <time>10:46 AM</time>
  6709. <predictions_in_ft>10.1</predictions_in_ft>
  6710. <predictions_in_cm>308</predictions_in_cm>
  6711. <highlow>H</highlow>
  6712. </item>
  6713. <item>
  6714. <date>2013/08/05</date>
  6715. <day>Mon</day>
  6716. <time>04:47 PM</time>
  6717. <predictions_in_ft>1.1</predictions_in_ft>
  6718. <predictions_in_cm>34</predictions_in_cm>
  6719. <highlow>L</highlow>
  6720. </item>
  6721. <item>
  6722. <date>2013/08/05</date>
  6723. <day>Mon</day>
  6724. <time>10:55 PM</time>
  6725. <predictions_in_ft>11.2</predictions_in_ft>
  6726. <predictions_in_cm>341</predictions_in_cm>
  6727. <highlow>H</highlow>
  6728. </item>
  6729. <item>
  6730. <date>2013/08/06</date>
  6731. <day>Tue</day>
  6732. <time>05:17 AM</time>
  6733. <predictions_in_ft>0.2</predictions_in_ft>
  6734. <predictions_in_cm>6</predictions_in_cm>
  6735. <highlow>L</highlow>
  6736. </item>
  6737. <item>
  6738. <date>2013/08/06</date>
  6739. <day>Tue</day>
  6740. <time>11:24 AM</time>
  6741. <predictions_in_ft>10.3</predictions_in_ft>
  6742. <predictions_in_cm>314</predictions_in_cm>
  6743. <highlow>H</highlow>
  6744. </item>
  6745. <item>
  6746. <date>2013/08/06</date>
  6747. <day>Tue</day>
  6748. <time>05:26 PM</time>
  6749. <predictions_in_ft>0.9</predictions_in_ft>
  6750. <predictions_in_cm>27</predictions_in_cm>
  6751. <highlow>L</highlow>
  6752. </item>
  6753. <item>
  6754. <date>2013/08/06</date>
  6755. <day>Tue</day>
  6756. <time>11:33 PM</time>
  6757. <predictions_in_ft>11.3</predictions_in_ft>
  6758. <predictions_in_cm>344</predictions_in_cm>
  6759. <highlow>H</highlow>
  6760. </item>
  6761. <item>
  6762. <date>2013/08/07</date>
  6763. <day>Wed</day>
  6764. <time>05:53 AM</time>
  6765. <predictions_in_ft>0.1</predictions_in_ft>
  6766. <predictions_in_cm>3</predictions_in_cm>
  6767. <highlow>L</highlow>
  6768. </item>
  6769. <item>
  6770. <date>2013/08/07</date>
  6771. <day>Wed</day>
  6772. <time>12:00 PM</time>
  6773. <predictions_in_ft>10.5</predictions_in_ft>
  6774. <predictions_in_cm>320</predictions_in_cm>
  6775. <highlow>H</highlow>
  6776. </item>
  6777. <item>
  6778. <date>2013/08/07</date>
  6779. <day>Wed</day>
  6780. <time>06:03 PM</time>
  6781. <predictions_in_ft>0.8</predictions_in_ft>
  6782. <predictions_in_cm>24</predictions_in_cm>
  6783. <highlow>L</highlow>
  6784. </item>
  6785. <item>
  6786. <date>2013/08/08</date>
  6787. <day>Thu</day>
  6788. <time>12:09 AM</time>
  6789. <predictions_in_ft>11.3</predictions_in_ft>
  6790. <predictions_in_cm>344</predictions_in_cm>
  6791. <highlow>H</highlow>
  6792. </item>
  6793. <item>
  6794. <date>2013/08/08</date>
  6795. <day>Thu</day>
  6796. <time>06:27 AM</time>
  6797. <predictions_in_ft>0.0</predictions_in_ft>
  6798. <predictions_in_cm>0</predictions_in_cm>
  6799. <highlow>L</highlow>
  6800. </item>
  6801. <item>
  6802. <date>2013/08/08</date>
  6803. <day>Thu</day>
  6804. <time>12:34 PM</time>
  6805. <predictions_in_ft>10.7</predictions_in_ft>
  6806. <predictions_in_cm>326</predictions_in_cm>
  6807. <highlow>H</highlow>
  6808. </item>
  6809. <item>
  6810. <date>2013/08/08</date>
  6811. <day>Thu</day>
  6812. <time>06:39 PM</time>
  6813. <predictions_in_ft>0.6</predictions_in_ft>
  6814. <predictions_in_cm>18</predictions_in_cm>
  6815. <highlow>L</highlow>
  6816. </item>
  6817. <item>
  6818. <date>2013/08/09</date>
  6819. <day>Fri</day>
  6820. <time>12:45 AM</time>
  6821. <predictions_in_ft>11.3</predictions_in_ft>
  6822. <predictions_in_cm>344</predictions_in_cm>
  6823. <highlow>H</highlow>
  6824. </item>
  6825. <item>
  6826. <date>2013/08/09</date>
  6827. <day>Fri</day>
  6828. <time>07:01 AM</time>
  6829. <predictions_in_ft>0.0</predictions_in_ft>
  6830. <predictions_in_cm>0</predictions_in_cm>
  6831. <highlow>L</highlow>
  6832. </item>
  6833. <item>
  6834. <date>2013/08/09</date>
  6835. <day>Fri</day>
  6836. <time>01:08 PM</time>
  6837. <predictions_in_ft>10.9</predictions_in_ft>
  6838. <predictions_in_cm>332</predictions_in_cm>
  6839. <highlow>H</highlow>
  6840. </item>
  6841. <item>
  6842. <date>2013/08/09</date>
  6843. <day>Fri</day>
  6844. <time>07:15 PM</time>
  6845. <predictions_in_ft>0.5</predictions_in_ft>
  6846. <predictions_in_cm>15</predictions_in_cm>
  6847. <highlow>L</highlow>
  6848. </item>
  6849. <item>
  6850. <date>2013/08/10</date>
  6851. <day>Sat</day>
  6852. <time>01:21 AM</time>
  6853. <predictions_in_ft>11.2</predictions_in_ft>
  6854. <predictions_in_cm>341</predictions_in_cm>
  6855. <highlow>H</highlow>
  6856. </item>
  6857. <item>
  6858. <date>2013/08/10</date>
  6859. <day>Sat</day>
  6860. <time>07:36 AM</time>
  6861. <predictions_in_ft>0.1</predictions_in_ft>
  6862. <predictions_in_cm>3</predictions_in_cm>
  6863. <highlow>L</highlow>
  6864. </item>
  6865. <item>
  6866. <date>2013/08/10</date>
  6867. <day>Sat</day>
  6868. <time>01:44 PM</time>
  6869. <predictions_in_ft>11.0</predictions_in_ft>
  6870. <predictions_in_cm>335</predictions_in_cm>
  6871. <highlow>H</highlow>
  6872. </item>
  6873. <item>
  6874. <date>2013/08/10</date>
  6875. <day>Sat</day>
  6876. <time>07:54 PM</time>
  6877. <predictions_in_ft>0.5</predictions_in_ft>
  6878. <predictions_in_cm>15</predictions_in_cm>
  6879. <highlow>L</highlow>
  6880. </item>
  6881. <item>
  6882. <date>2013/08/11</date>
  6883. <day>Sun</day>
  6884. <time>02:00 AM</time>
  6885. <predictions_in_ft>11.1</predictions_in_ft>
  6886. <predictions_in_cm>338</predictions_in_cm>
  6887. <highlow>H</highlow>
  6888. </item>
  6889. <item>
  6890. <date>2013/08/11</date>
  6891. <day>Sun</day>
  6892. <time>08:13 AM</time>
  6893. <predictions_in_ft>0.2</predictions_in_ft>
  6894. <predictions_in_cm>6</predictions_in_cm>
  6895. <highlow>L</highlow>
  6896. </item>
  6897. <item>
  6898. <date>2013/08/11</date>
  6899. <day>Sun</day>
  6900. <time>02:23 PM</time>
  6901. <predictions_in_ft>11.2</predictions_in_ft>
  6902. <predictions_in_cm>341</predictions_in_cm>
  6903. <highlow>H</highlow>
  6904. </item>
  6905. <item>
  6906. <date>2013/08/11</date>
  6907. <day>Sun</day>
  6908. <time>08:36 PM</time>
  6909. <predictions_in_ft>0.4</predictions_in_ft>
  6910. <predictions_in_cm>12</predictions_in_cm>
  6911. <highlow>L</highlow>
  6912. </item>
  6913. <item>
  6914. <date>2013/08/12</date>
  6915. <day>Mon</day>
  6916. <time>02:43 AM</time>
  6917. <predictions_in_ft>10.9</predictions_in_ft>
  6918. <predictions_in_cm>332</predictions_in_cm>
  6919. <highlow>H</highlow>
  6920. </item>
  6921. <item>
  6922. <date>2013/08/12</date>
  6923. <day>Mon</day>
  6924. <time>08:54 AM</time>
  6925. <predictions_in_ft>0.3</predictions_in_ft>
  6926. <predictions_in_cm>9</predictions_in_cm>
  6927. <highlow>L</highlow>
  6928. </item>
  6929. <item>
  6930. <date>2013/08/12</date>
  6931. <day>Mon</day>
  6932. <time>03:07 PM</time>
  6933. <predictions_in_ft>11.3</predictions_in_ft>
  6934. <predictions_in_cm>344</predictions_in_cm>
  6935. <highlow>H</highlow>
  6936. </item>
  6937. <item>
  6938. <date>2013/08/12</date>
  6939. <day>Mon</day>
  6940. <time>09:24 PM</time>
  6941. <predictions_in_ft>0.4</predictions_in_ft>
  6942. <predictions_in_cm>12</predictions_in_cm>
  6943. <highlow>L</highlow>
  6944. </item>
  6945. <item>
  6946. <date>2013/08/13</date>
  6947. <day>Tue</day>
  6948. <time>03:31 AM</time>
  6949. <predictions_in_ft>10.6</predictions_in_ft>
  6950. <predictions_in_cm>323</predictions_in_cm>
  6951. <highlow>H</highlow>
  6952. </item>
  6953. <item>
  6954. <date>2013/08/13</date>
  6955. <day>Tue</day>
  6956. <time>09:40 AM</time>
  6957. <predictions_in_ft>0.5</predictions_in_ft>
  6958. <predictions_in_cm>15</predictions_in_cm>
  6959. <highlow>L</highlow>
  6960. </item>
  6961. <item>
  6962. <date>2013/08/13</date>
  6963. <day>Tue</day>
  6964. <time>03:55 PM</time>
  6965. <predictions_in_ft>11.4</predictions_in_ft>
  6966. <predictions_in_cm>347</predictions_in_cm>
  6967. <highlow>H</highlow>
  6968. </item>
  6969. <item>
  6970. <date>2013/08/13</date>
  6971. <day>Tue</day>
  6972. <time>10:16 PM</time>
  6973. <predictions_in_ft>0.4</predictions_in_ft>
  6974. <predictions_in_cm>12</predictions_in_cm>
  6975. <highlow>L</highlow>
  6976. </item>
  6977. <item>
  6978. <date>2013/08/14</date>
  6979. <day>Wed</day>
  6980. <time>04:25 AM</time>
  6981. <predictions_in_ft>10.4</predictions_in_ft>
  6982. <predictions_in_cm>317</predictions_in_cm>
  6983. <highlow>H</highlow>
  6984. </item>
  6985. <item>
  6986. <date>2013/08/14</date>
  6987. <day>Wed</day>
  6988. <time>10:32 AM</time>
  6989. <predictions_in_ft>0.6</predictions_in_ft>
  6990. <predictions_in_cm>18</predictions_in_cm>
  6991. <highlow>L</highlow>
  6992. </item>
  6993. <item>
  6994. <date>2013/08/14</date>
  6995. <day>Wed</day>
  6996. <time>04:50 PM</time>
  6997. <predictions_in_ft>11.4</predictions_in_ft>
  6998. <predictions_in_cm>347</predictions_in_cm>
  6999. <highlow>H</highlow>
  7000. </item>
  7001. <item>
  7002. <date>2013/08/14</date>
  7003. <day>Wed</day>
  7004. <time>11:15 PM</time>
  7005. <predictions_in_ft>0.3</predictions_in_ft>
  7006. <predictions_in_cm>9</predictions_in_cm>
  7007. <highlow>L</highlow>
  7008. </item>
  7009. <item>
  7010. <date>2013/08/15</date>
  7011. <day>Thu</day>
  7012. <time>05:25 AM</time>
  7013. <predictions_in_ft>10.2</predictions_in_ft>
  7014. <predictions_in_cm>311</predictions_in_cm>
  7015. <highlow>H</highlow>
  7016. </item>
  7017. <item>
  7018. <date>2013/08/15</date>
  7019. <day>Thu</day>
  7020. <time>11:31 AM</time>
  7021. <predictions_in_ft>0.8</predictions_in_ft>
  7022. <predictions_in_cm>24</predictions_in_cm>
  7023. <highlow>L</highlow>
  7024. </item>
  7025. <item>
  7026. <date>2013/08/15</date>
  7027. <day>Thu</day>
  7028. <time>05:50 PM</time>
  7029. <predictions_in_ft>11.5</predictions_in_ft>
  7030. <predictions_in_cm>351</predictions_in_cm>
  7031. <highlow>H</highlow>
  7032. </item>
  7033. <item>
  7034. <date>2013/08/16</date>
  7035. <day>Fri</day>
  7036. <time>12:19 AM</time>
  7037. <predictions_in_ft>0.2</predictions_in_ft>
  7038. <predictions_in_cm>6</predictions_in_cm>
  7039. <highlow>L</highlow>
  7040. </item>
  7041. <item>
  7042. <date>2013/08/16</date>
  7043. <day>Fri</day>
  7044. <time>06:30 AM</time>
  7045. <predictions_in_ft>10.2</predictions_in_ft>
  7046. <predictions_in_cm>311</predictions_in_cm>
  7047. <highlow>H</highlow>
  7048. </item>
  7049. <item>
  7050. <date>2013/08/16</date>
  7051. <day>Fri</day>
  7052. <time>12:36 PM</time>
  7053. <predictions_in_ft>0.8</predictions_in_ft>
  7054. <predictions_in_cm>24</predictions_in_cm>
  7055. <highlow>L</highlow>
  7056. </item>
  7057. <item>
  7058. <date>2013/08/16</date>
  7059. <day>Fri</day>
  7060. <time>06:55 PM</time>
  7061. <predictions_in_ft>11.7</predictions_in_ft>
  7062. <predictions_in_cm>357</predictions_in_cm>
  7063. <highlow>H</highlow>
  7064. </item>
  7065. <item>
  7066. <date>2013/08/17</date>
  7067. <day>Sat</day>
  7068. <time>01:26 AM</time>
  7069. <predictions_in_ft>0.0</predictions_in_ft>
  7070. <predictions_in_cm>0</predictions_in_cm>
  7071. <highlow>L</highlow>
  7072. </item>
  7073. <item>
  7074. <date>2013/08/17</date>
  7075. <day>Sat</day>
  7076. <time>07:37 AM</time>
  7077. <predictions_in_ft>10.4</predictions_in_ft>
  7078. <predictions_in_cm>317</predictions_in_cm>
  7079. <highlow>H</highlow>
  7080. </item>
  7081. <item>
  7082. <date>2013/08/17</date>
  7083. <day>Sat</day>
  7084. <time>01:43 PM</time>
  7085. <predictions_in_ft>0.5</predictions_in_ft>
  7086. <predictions_in_cm>15</predictions_in_cm>
  7087. <highlow>L</highlow>
  7088. </item>
  7089. <item>
  7090. <date>2013/08/17</date>
  7091. <day>Sat</day>
  7092. <time>08:00 PM</time>
  7093. <predictions_in_ft>12.0</predictions_in_ft>
  7094. <predictions_in_cm>366</predictions_in_cm>
  7095. <highlow>H</highlow>
  7096. </item>
  7097. <item>
  7098. <date>2013/08/18</date>
  7099. <day>Sun</day>
  7100. <time>02:30 AM</time>
  7101. <predictions_in_ft>-0.5</predictions_in_ft>
  7102. <predictions_in_cm>-15</predictions_in_cm>
  7103. <highlow>L</highlow>
  7104. </item>
  7105. <item>
  7106. <date>2013/08/18</date>
  7107. <day>Sun</day>
  7108. <time>08:41 AM</time>
  7109. <predictions_in_ft>10.8</predictions_in_ft>
  7110. <predictions_in_cm>329</predictions_in_cm>
  7111. <highlow>H</highlow>
  7112. </item>
  7113. <item>
  7114. <date>2013/08/18</date>
  7115. <day>Sun</day>
  7116. <time>02:47 PM</time>
  7117. <predictions_in_ft>0.1</predictions_in_ft>
  7118. <predictions_in_cm>3</predictions_in_cm>
  7119. <highlow>L</highlow>
  7120. </item>
  7121. <item>
  7122. <date>2013/08/18</date>
  7123. <day>Sun</day>
  7124. <time>09:03 PM</time>
  7125. <predictions_in_ft>12.4</predictions_in_ft>
  7126. <predictions_in_cm>378</predictions_in_cm>
  7127. <highlow>H</highlow>
  7128. </item>
  7129. <item>
  7130. <date>2013/08/19</date>
  7131. <day>Mon</day>
  7132. <time>03:30 AM</time>
  7133. <predictions_in_ft>-0.9</predictions_in_ft>
  7134. <predictions_in_cm>-27</predictions_in_cm>
  7135. <highlow>L</highlow>
  7136. </item>
  7137. <item>
  7138. <date>2013/08/19</date>
  7139. <day>Mon</day>
  7140. <time>09:41 AM</time>
  7141. <predictions_in_ft>11.3</predictions_in_ft>
  7142. <predictions_in_cm>344</predictions_in_cm>
  7143. <highlow>H</highlow>
  7144. </item>
  7145. <item>
  7146. <date>2013/08/19</date>
  7147. <day>Mon</day>
  7148. <time>03:48 PM</time>
  7149. <predictions_in_ft>-0.4</predictions_in_ft>
  7150. <predictions_in_cm>-12</predictions_in_cm>
  7151. <highlow>L</highlow>
  7152. </item>
  7153. <item>
  7154. <date>2013/08/19</date>
  7155. <day>Mon</day>
  7156. <time>10:02 PM</time>
  7157. <predictions_in_ft>12.8</predictions_in_ft>
  7158. <predictions_in_cm>390</predictions_in_cm>
  7159. <highlow>H</highlow>
  7160. </item>
  7161. <item>
  7162. <date>2013/08/20</date>
  7163. <day>Tue</day>
  7164. <time>04:25 AM</time>
  7165. <predictions_in_ft>-1.3</predictions_in_ft>
  7166. <predictions_in_cm>-40</predictions_in_cm>
  7167. <highlow>L</highlow>
  7168. </item>
  7169. <item>
  7170. <date>2013/08/20</date>
  7171. <day>Tue</day>
  7172. <time>10:36 AM</time>
  7173. <predictions_in_ft>11.9</predictions_in_ft>
  7174. <predictions_in_cm>363</predictions_in_cm>
  7175. <highlow>H</highlow>
  7176. </item>
  7177. <item>
  7178. <date>2013/08/20</date>
  7179. <day>Tue</day>
  7180. <time>04:44 PM</time>
  7181. <predictions_in_ft>-0.8</predictions_in_ft>
  7182. <predictions_in_cm>-24</predictions_in_cm>
  7183. <highlow>L</highlow>
  7184. </item>
  7185. <item>
  7186. <date>2013/08/20</date>
  7187. <day>Tue</day>
  7188. <time>10:57 PM</time>
  7189. <predictions_in_ft>13.0</predictions_in_ft>
  7190. <predictions_in_cm>396</predictions_in_cm>
  7191. <highlow>H</highlow>
  7192. </item>
  7193. <item>
  7194. <date>2013/08/21</date>
  7195. <day>Wed</day>
  7196. <time>05:17 AM</time>
  7197. <predictions_in_ft>-1.6</predictions_in_ft>
  7198. <predictions_in_cm>-49</predictions_in_cm>
  7199. <highlow>L</highlow>
  7200. </item>
  7201. <item>
  7202. <date>2013/08/21</date>
  7203. <day>Wed</day>
  7204. <time>11:28 AM</time>
  7205. <predictions_in_ft>12.3</predictions_in_ft>
  7206. <predictions_in_cm>375</predictions_in_cm>
  7207. <highlow>H</highlow>
  7208. </item>
  7209. <item>
  7210. <date>2013/08/21</date>
  7211. <day>Wed</day>
  7212. <time>05:38 PM</time>
  7213. <predictions_in_ft>-1.1</predictions_in_ft>
  7214. <predictions_in_cm>-34</predictions_in_cm>
  7215. <highlow>L</highlow>
  7216. </item>
  7217. <item>
  7218. <date>2013/08/21</date>
  7219. <day>Wed</day>
  7220. <time>11:49 PM</time>
  7221. <predictions_in_ft>13.0</predictions_in_ft>
  7222. <predictions_in_cm>396</predictions_in_cm>
  7223. <highlow>H</highlow>
  7224. </item>
  7225. <item>
  7226. <date>2013/08/22</date>
  7227. <day>Thu</day>
  7228. <time>06:07 AM</time>
  7229. <predictions_in_ft>-1.6</predictions_in_ft>
  7230. <predictions_in_cm>-49</predictions_in_cm>
  7231. <highlow>L</highlow>
  7232. </item>
  7233. <item>
  7234. <date>2013/08/22</date>
  7235. <day>Thu</day>
  7236. <time>12:18 PM</time>
  7237. <predictions_in_ft>12.4</predictions_in_ft>
  7238. <predictions_in_cm>378</predictions_in_cm>
  7239. <highlow>H</highlow>
  7240. </item>
  7241. <item>
  7242. <date>2013/08/22</date>
  7243. <day>Thu</day>
  7244. <time>06:29 PM</time>
  7245. <predictions_in_ft>-1.2</predictions_in_ft>
  7246. <predictions_in_cm>-37</predictions_in_cm>
  7247. <highlow>L</highlow>
  7248. </item>
  7249. <item>
  7250. <date>2013/08/23</date>
  7251. <day>Fri</day>
  7252. <time>12:39 AM</time>
  7253. <predictions_in_ft>12.8</predictions_in_ft>
  7254. <predictions_in_cm>390</predictions_in_cm>
  7255. <highlow>H</highlow>
  7256. </item>
  7257. <item>
  7258. <date>2013/08/23</date>
  7259. <day>Fri</day>
  7260. <time>06:55 AM</time>
  7261. <predictions_in_ft>-1.3</predictions_in_ft>
  7262. <predictions_in_cm>-40</predictions_in_cm>
  7263. <highlow>L</highlow>
  7264. </item>
  7265. <item>
  7266. <date>2013/08/23</date>
  7267. <day>Fri</day>
  7268. <time>01:06 PM</time>
  7269. <predictions_in_ft>12.4</predictions_in_ft>
  7270. <predictions_in_cm>378</predictions_in_cm>
  7271. <highlow>H</highlow>
  7272. </item>
  7273. <item>
  7274. <date>2013/08/23</date>
  7275. <day>Fri</day>
  7276. <time>07:19 PM</time>
  7277. <predictions_in_ft>-1.0</predictions_in_ft>
  7278. <predictions_in_cm>-30</predictions_in_cm>
  7279. <highlow>L</highlow>
  7280. </item>
  7281. <item>
  7282. <date>2013/08/24</date>
  7283. <day>Sat</day>
  7284. <time>01:29 AM</time>
  7285. <predictions_in_ft>12.3</predictions_in_ft>
  7286. <predictions_in_cm>375</predictions_in_cm>
  7287. <highlow>H</highlow>
  7288. </item>
  7289. <item>
  7290. <date>2013/08/24</date>
  7291. <day>Sat</day>
  7292. <time>07:42 AM</time>
  7293. <predictions_in_ft>-0.9</predictions_in_ft>
  7294. <predictions_in_cm>-27</predictions_in_cm>
  7295. <highlow>L</highlow>
  7296. </item>
  7297. <item>
  7298. <date>2013/08/24</date>
  7299. <day>Sat</day>
  7300. <time>01:54 PM</time>
  7301. <predictions_in_ft>12.2</predictions_in_ft>
  7302. <predictions_in_cm>372</predictions_in_cm>
  7303. <highlow>H</highlow>
  7304. </item>
  7305. <item>
  7306. <date>2013/08/24</date>
  7307. <day>Sat</day>
  7308. <time>08:09 PM</time>
  7309. <predictions_in_ft>-0.7</predictions_in_ft>
  7310. <predictions_in_cm>-21</predictions_in_cm>
  7311. <highlow>L</highlow>
  7312. </item>
  7313. <item>
  7314. <date>2013/08/25</date>
  7315. <day>Sun</day>
  7316. <time>02:19 AM</time>
  7317. <predictions_in_ft>11.7</predictions_in_ft>
  7318. <predictions_in_cm>357</predictions_in_cm>
  7319. <highlow>H</highlow>
  7320. </item>
  7321. <item>
  7322. <date>2013/08/25</date>
  7323. <day>Sun</day>
  7324. <time>08:30 AM</time>
  7325. <predictions_in_ft>-0.3</predictions_in_ft>
  7326. <predictions_in_cm>-9</predictions_in_cm>
  7327. <highlow>L</highlow>
  7328. </item>
  7329. <item>
  7330. <date>2013/08/25</date>
  7331. <day>Sun</day>
  7332. <time>02:42 PM</time>
  7333. <predictions_in_ft>11.8</predictions_in_ft>
  7334. <predictions_in_cm>360</predictions_in_cm>
  7335. <highlow>H</highlow>
  7336. </item>
  7337. <item>
  7338. <date>2013/08/25</date>
  7339. <day>Sun</day>
  7340. <time>09:00 PM</time>
  7341. <predictions_in_ft>-0.2</predictions_in_ft>
  7342. <predictions_in_cm>-6</predictions_in_cm>
  7343. <highlow>L</highlow>
  7344. </item>
  7345. <item>
  7346. <date>2013/08/26</date>
  7347. <day>Mon</day>
  7348. <time>03:09 AM</time>
  7349. <predictions_in_ft>11.0</predictions_in_ft>
  7350. <predictions_in_cm>335</predictions_in_cm>
  7351. <highlow>H</highlow>
  7352. </item>
  7353. <item>
  7354. <date>2013/08/26</date>
  7355. <day>Mon</day>
  7356. <time>09:19 AM</time>
  7357. <predictions_in_ft>0.3</predictions_in_ft>
  7358. <predictions_in_cm>9</predictions_in_cm>
  7359. <highlow>L</highlow>
  7360. </item>
  7361. <item>
  7362. <date>2013/08/26</date>
  7363. <day>Mon</day>
  7364. <time>03:31 PM</time>
  7365. <predictions_in_ft>11.3</predictions_in_ft>
  7366. <predictions_in_cm>344</predictions_in_cm>
  7367. <highlow>H</highlow>
  7368. </item>
  7369. <item>
  7370. <date>2013/08/26</date>
  7371. <day>Mon</day>
  7372. <time>09:53 PM</time>
  7373. <predictions_in_ft>0.3</predictions_in_ft>
  7374. <predictions_in_cm>9</predictions_in_cm>
  7375. <highlow>L</highlow>
  7376. </item>
  7377. <item>
  7378. <date>2013/08/27</date>
  7379. <day>Tue</day>
  7380. <time>04:02 AM</time>
  7381. <predictions_in_ft>10.3</predictions_in_ft>
  7382. <predictions_in_cm>314</predictions_in_cm>
  7383. <highlow>H</highlow>
  7384. </item>
  7385. <item>
  7386. <date>2013/08/27</date>
  7387. <day>Tue</day>
  7388. <time>10:10 AM</time>
  7389. <predictions_in_ft>0.9</predictions_in_ft>
  7390. <predictions_in_cm>27</predictions_in_cm>
  7391. <highlow>L</highlow>
  7392. </item>
  7393. <item>
  7394. <date>2013/08/27</date>
  7395. <day>Tue</day>
  7396. <time>04:23 PM</time>
  7397. <predictions_in_ft>10.8</predictions_in_ft>
  7398. <predictions_in_cm>329</predictions_in_cm>
  7399. <highlow>H</highlow>
  7400. </item>
  7401. <item>
  7402. <date>2013/08/27</date>
  7403. <day>Tue</day>
  7404. <time>10:48 PM</time>
  7405. <predictions_in_ft>0.8</predictions_in_ft>
  7406. <predictions_in_cm>24</predictions_in_cm>
  7407. <highlow>L</highlow>
  7408. </item>
  7409. <item>
  7410. <date>2013/08/28</date>
  7411. <day>Wed</day>
  7412. <time>04:57 AM</time>
  7413. <predictions_in_ft>9.8</predictions_in_ft>
  7414. <predictions_in_cm>299</predictions_in_cm>
  7415. <highlow>H</highlow>
  7416. </item>
  7417. <item>
  7418. <date>2013/08/28</date>
  7419. <day>Wed</day>
  7420. <time>11:04 AM</time>
  7421. <predictions_in_ft>1.5</predictions_in_ft>
  7422. <predictions_in_cm>46</predictions_in_cm>
  7423. <highlow>L</highlow>
  7424. </item>
  7425. <item>
  7426. <date>2013/08/28</date>
  7427. <day>Wed</day>
  7428. <time>05:18 PM</time>
  7429. <predictions_in_ft>10.5</predictions_in_ft>
  7430. <predictions_in_cm>320</predictions_in_cm>
  7431. <highlow>H</highlow>
  7432. </item>
  7433. <item>
  7434. <date>2013/08/28</date>
  7435. <day>Wed</day>
  7436. <time>11:45 PM</time>
  7437. <predictions_in_ft>1.1</predictions_in_ft>
  7438. <predictions_in_cm>34</predictions_in_cm>
  7439. <highlow>L</highlow>
  7440. </item>
  7441. <item>
  7442. <date>2013/08/29</date>
  7443. <day>Thu</day>
  7444. <time>05:55 AM</time>
  7445. <predictions_in_ft>9.4</predictions_in_ft>
  7446. <predictions_in_cm>287</predictions_in_cm>
  7447. <highlow>H</highlow>
  7448. </item>
  7449. <item>
  7450. <date>2013/08/29</date>
  7451. <day>Thu</day>
  7452. <time>12:01 PM</time>
  7453. <predictions_in_ft>1.8</predictions_in_ft>
  7454. <predictions_in_cm>55</predictions_in_cm>
  7455. <highlow>L</highlow>
  7456. </item>
  7457. <item>
  7458. <date>2013/08/29</date>
  7459. <day>Thu</day>
  7460. <time>06:15 PM</time>
  7461. <predictions_in_ft>10.2</predictions_in_ft>
  7462. <predictions_in_cm>311</predictions_in_cm>
  7463. <highlow>H</highlow>
  7464. </item>
  7465. <item>
  7466. <date>2013/08/30</date>
  7467. <day>Fri</day>
  7468. <time>12:43 AM</time>
  7469. <predictions_in_ft>1.3</predictions_in_ft>
  7470. <predictions_in_cm>40</predictions_in_cm>
  7471. <highlow>L</highlow>
  7472. </item>
  7473. <item>
  7474. <date>2013/08/30</date>
  7475. <day>Fri</day>
  7476. <time>06:54 AM</time>
  7477. <predictions_in_ft>9.2</predictions_in_ft>
  7478. <predictions_in_cm>280</predictions_in_cm>
  7479. <highlow>H</highlow>
  7480. </item>
  7481. <item>
  7482. <date>2013/08/30</date>
  7483. <day>Fri</day>
  7484. <time>12:59 PM</time>
  7485. <predictions_in_ft>1.9</predictions_in_ft>
  7486. <predictions_in_cm>58</predictions_in_cm>
  7487. <highlow>L</highlow>
  7488. </item>
  7489. <item>
  7490. <date>2013/08/30</date>
  7491. <day>Fri</day>
  7492. <time>07:12 PM</time>
  7493. <predictions_in_ft>10.2</predictions_in_ft>
  7494. <predictions_in_cm>311</predictions_in_cm>
  7495. <highlow>H</highlow>
  7496. </item>
  7497. <item>
  7498. <date>2013/08/31</date>
  7499. <day>Sat</day>
  7500. <time>01:40 AM</time>
  7501. <predictions_in_ft>1.3</predictions_in_ft>
  7502. <predictions_in_cm>40</predictions_in_cm>
  7503. <highlow>L</highlow>
  7504. </item>
  7505. <item>
  7506. <date>2013/08/31</date>
  7507. <day>Sat</day>
  7508. <time>07:50 AM</time>
  7509. <predictions_in_ft>9.3</predictions_in_ft>
  7510. <predictions_in_cm>283</predictions_in_cm>
  7511. <highlow>H</highlow>
  7512. </item>
  7513. <item>
  7514. <date>2013/08/31</date>
  7515. <day>Sat</day>
  7516. <time>01:55 PM</time>
  7517. <predictions_in_ft>1.8</predictions_in_ft>
  7518. <predictions_in_cm>55</predictions_in_cm>
  7519. <highlow>L</highlow>
  7520. </item>
  7521. <item>
  7522. <date>2013/08/31</date>
  7523. <day>Sat</day>
  7524. <time>08:07 PM</time>
  7525. <predictions_in_ft>10.3</predictions_in_ft>
  7526. <predictions_in_cm>314</predictions_in_cm>
  7527. <highlow>H</highlow>
  7528. </item>
  7529. <item>
  7530. <date>2013/09/01</date>
  7531. <day>Sun</day>
  7532. <time>02:33 AM</time>
  7533. <predictions_in_ft>1.1</predictions_in_ft>
  7534. <predictions_in_cm>34</predictions_in_cm>
  7535. <highlow>L</highlow>
  7536. </item>
  7537. <item>
  7538. <date>2013/09/01</date>
  7539. <day>Sun</day>
  7540. <time>08:42 AM</time>
  7541. <predictions_in_ft>9.5</predictions_in_ft>
  7542. <predictions_in_cm>290</predictions_in_cm>
  7543. <highlow>H</highlow>
  7544. </item>
  7545. <item>
  7546. <date>2013/09/01</date>
  7547. <day>Sun</day>
  7548. <time>02:47 PM</time>
  7549. <predictions_in_ft>1.6</predictions_in_ft>
  7550. <predictions_in_cm>49</predictions_in_cm>
  7551. <highlow>L</highlow>
  7552. </item>
  7553. <item>
  7554. <date>2013/09/01</date>
  7555. <day>Sun</day>
  7556. <time>08:57 PM</time>
  7557. <predictions_in_ft>10.5</predictions_in_ft>
  7558. <predictions_in_cm>320</predictions_in_cm>
  7559. <highlow>H</highlow>
  7560. </item>
  7561. <item>
  7562. <date>2013/09/02</date>
  7563. <day>Mon</day>
  7564. <time>03:20 AM</time>
  7565. <predictions_in_ft>0.9</predictions_in_ft>
  7566. <predictions_in_cm>27</predictions_in_cm>
  7567. <highlow>L</highlow>
  7568. </item>
  7569. <item>
  7570. <date>2013/09/02</date>
  7571. <day>Mon</day>
  7572. <time>09:29 AM</time>
  7573. <predictions_in_ft>9.8</predictions_in_ft>
  7574. <predictions_in_cm>299</predictions_in_cm>
  7575. <highlow>H</highlow>
  7576. </item>
  7577. <item>
  7578. <date>2013/09/02</date>
  7579. <day>Mon</day>
  7580. <time>03:34 PM</time>
  7581. <predictions_in_ft>1.3</predictions_in_ft>
  7582. <predictions_in_cm>40</predictions_in_cm>
  7583. <highlow>L</highlow>
  7584. </item>
  7585. <item>
  7586. <date>2013/09/02</date>
  7587. <day>Mon</day>
  7588. <time>09:43 PM</time>
  7589. <predictions_in_ft>10.8</predictions_in_ft>
  7590. <predictions_in_cm>329</predictions_in_cm>
  7591. <highlow>H</highlow>
  7592. </item>
  7593. <item>
  7594. <date>2013/09/03</date>
  7595. <day>Tue</day>
  7596. <time>04:03 AM</time>
  7597. <predictions_in_ft>0.6</predictions_in_ft>
  7598. <predictions_in_cm>18</predictions_in_cm>
  7599. <highlow>L</highlow>
  7600. </item>
  7601. <item>
  7602. <date>2013/09/03</date>
  7603. <day>Tue</day>
  7604. <time>10:11 AM</time>
  7605. <predictions_in_ft>10.2</predictions_in_ft>
  7606. <predictions_in_cm>311</predictions_in_cm>
  7607. <highlow>H</highlow>
  7608. </item>
  7609. <item>
  7610. <date>2013/09/03</date>
  7611. <day>Tue</day>
  7612. <time>04:16 PM</time>
  7613. <predictions_in_ft>0.9</predictions_in_ft>
  7614. <predictions_in_cm>27</predictions_in_cm>
  7615. <highlow>L</highlow>
  7616. </item>
  7617. <item>
  7618. <date>2013/09/03</date>
  7619. <day>Tue</day>
  7620. <time>10:24 PM</time>
  7621. <predictions_in_ft>11.0</predictions_in_ft>
  7622. <predictions_in_cm>335</predictions_in_cm>
  7623. <highlow>H</highlow>
  7624. </item>
  7625. <item>
  7626. <date>2013/09/04</date>
  7627. <day>Wed</day>
  7628. <time>04:42 AM</time>
  7629. <predictions_in_ft>0.3</predictions_in_ft>
  7630. <predictions_in_cm>9</predictions_in_cm>
  7631. <highlow>L</highlow>
  7632. </item>
  7633. <item>
  7634. <date>2013/09/04</date>
  7635. <day>Wed</day>
  7636. <time>10:49 AM</time>
  7637. <predictions_in_ft>10.6</predictions_in_ft>
  7638. <predictions_in_cm>323</predictions_in_cm>
  7639. <highlow>H</highlow>
  7640. </item>
  7641. <item>
  7642. <date>2013/09/04</date>
  7643. <day>Wed</day>
  7644. <time>04:55 PM</time>
  7645. <predictions_in_ft>0.6</predictions_in_ft>
  7646. <predictions_in_cm>18</predictions_in_cm>
  7647. <highlow>L</highlow>
  7648. </item>
  7649. <item>
  7650. <date>2013/09/04</date>
  7651. <day>Wed</day>
  7652. <time>11:03 PM</time>
  7653. <predictions_in_ft>11.2</predictions_in_ft>
  7654. <predictions_in_cm>341</predictions_in_cm>
  7655. <highlow>H</highlow>
  7656. </item>
  7657. <item>
  7658. <date>2013/09/05</date>
  7659. <day>Thu</day>
  7660. <time>05:18 AM</time>
  7661. <predictions_in_ft>0.1</predictions_in_ft>
  7662. <predictions_in_cm>3</predictions_in_cm>
  7663. <highlow>L</highlow>
  7664. </item>
  7665. <item>
  7666. <date>2013/09/05</date>
  7667. <day>Thu</day>
  7668. <time>11:24 AM</time>
  7669. <predictions_in_ft>10.9</predictions_in_ft>
  7670. <predictions_in_cm>332</predictions_in_cm>
  7671. <highlow>H</highlow>
  7672. </item>
  7673. <item>
  7674. <date>2013/09/05</date>
  7675. <day>Thu</day>
  7676. <time>05:33 PM</time>
  7677. <predictions_in_ft>0.3</predictions_in_ft>
  7678. <predictions_in_cm>9</predictions_in_cm>
  7679. <highlow>L</highlow>
  7680. </item>
  7681. <item>
  7682. <date>2013/09/05</date>
  7683. <day>Thu</day>
  7684. <time>11:40 PM</time>
  7685. <predictions_in_ft>11.4</predictions_in_ft>
  7686. <predictions_in_cm>347</predictions_in_cm>
  7687. <highlow>H</highlow>
  7688. </item>
  7689. <item>
  7690. <date>2013/09/06</date>
  7691. <day>Fri</day>
  7692. <time>05:53 AM</time>
  7693. <predictions_in_ft>0.0</predictions_in_ft>
  7694. <predictions_in_cm>0</predictions_in_cm>
  7695. <highlow>L</highlow>
  7696. </item>
  7697. <item>
  7698. <date>2013/09/06</date>
  7699. <day>Fri</day>
  7700. <time>11:59 AM</time>
  7701. <predictions_in_ft>11.2</predictions_in_ft>
  7702. <predictions_in_cm>341</predictions_in_cm>
  7703. <highlow>H</highlow>
  7704. </item>
  7705. <item>
  7706. <date>2013/09/06</date>
  7707. <day>Fri</day>
  7708. <time>06:10 PM</time>
  7709. <predictions_in_ft>0.1</predictions_in_ft>
  7710. <predictions_in_cm>3</predictions_in_cm>
  7711. <highlow>L</highlow>
  7712. </item>
  7713. <item>
  7714. <date>2013/09/07</date>
  7715. <day>Sat</day>
  7716. <time>12:16 AM</time>
  7717. <predictions_in_ft>11.4</predictions_in_ft>
  7718. <predictions_in_cm>347</predictions_in_cm>
  7719. <highlow>H</highlow>
  7720. </item>
  7721. <item>
  7722. <date>2013/09/07</date>
  7723. <day>Sat</day>
  7724. <time>06:28 AM</time>
  7725. <predictions_in_ft>-0.1</predictions_in_ft>
  7726. <predictions_in_cm>-3</predictions_in_cm>
  7727. <highlow>L</highlow>
  7728. </item>
  7729. <item>
  7730. <date>2013/09/07</date>
  7731. <day>Sat</day>
  7732. <time>12:35 PM</time>
  7733. <predictions_in_ft>11.5</predictions_in_ft>
  7734. <predictions_in_cm>351</predictions_in_cm>
  7735. <highlow>H</highlow>
  7736. </item>
  7737. <item>
  7738. <date>2013/09/07</date>
  7739. <day>Sat</day>
  7740. <time>06:48 PM</time>
  7741. <predictions_in_ft>-0.1</predictions_in_ft>
  7742. <predictions_in_cm>-3</predictions_in_cm>
  7743. <highlow>L</highlow>
  7744. </item>
  7745. <item>
  7746. <date>2013/09/08</date>
  7747. <day>Sun</day>
  7748. <time>12:55 AM</time>
  7749. <predictions_in_ft>11.4</predictions_in_ft>
  7750. <predictions_in_cm>347</predictions_in_cm>
  7751. <highlow>H</highlow>
  7752. </item>
  7753. <item>
  7754. <date>2013/09/08</date>
  7755. <day>Sun</day>
  7756. <time>07:04 AM</time>
  7757. <predictions_in_ft>-0.1</predictions_in_ft>
  7758. <predictions_in_cm>-3</predictions_in_cm>
  7759. <highlow>L</highlow>
  7760. </item>
  7761. <item>
  7762. <date>2013/09/08</date>
  7763. <day>Sun</day>
  7764. <time>01:13 PM</time>
  7765. <predictions_in_ft>11.7</predictions_in_ft>
  7766. <predictions_in_cm>357</predictions_in_cm>
  7767. <highlow>H</highlow>
  7768. </item>
  7769. <item>
  7770. <date>2013/09/08</date>
  7771. <day>Sun</day>
  7772. <time>07:28 PM</time>
  7773. <predictions_in_ft>-0.2</predictions_in_ft>
  7774. <predictions_in_cm>-6</predictions_in_cm>
  7775. <highlow>L</highlow>
  7776. </item>
  7777. <item>
  7778. <date>2013/09/09</date>
  7779. <day>Mon</day>
  7780. <time>01:36 AM</time>
  7781. <predictions_in_ft>11.2</predictions_in_ft>
  7782. <predictions_in_cm>341</predictions_in_cm>
  7783. <highlow>H</highlow>
  7784. </item>
  7785. <item>
  7786. <date>2013/09/09</date>
  7787. <day>Mon</day>
  7788. <time>07:44 AM</time>
  7789. <predictions_in_ft>0.1</predictions_in_ft>
  7790. <predictions_in_cm>3</predictions_in_cm>
  7791. <highlow>L</highlow>
  7792. </item>
  7793. <item>
  7794. <date>2013/09/09</date>
  7795. <day>Mon</day>
  7796. <time>01:55 PM</time>
  7797. <predictions_in_ft>11.7</predictions_in_ft>
  7798. <predictions_in_cm>357</predictions_in_cm>
  7799. <highlow>H</highlow>
  7800. </item>
  7801. <item>
  7802. <date>2013/09/09</date>
  7803. <day>Mon</day>
  7804. <time>08:13 PM</time>
  7805. <predictions_in_ft>-0.2</predictions_in_ft>
  7806. <predictions_in_cm>-6</predictions_in_cm>
  7807. <highlow>L</highlow>
  7808. </item>
  7809. <item>
  7810. <date>2013/09/10</date>
  7811. <day>Tue</day>
  7812. <time>02:22 AM</time>
  7813. <predictions_in_ft>11.0</predictions_in_ft>
  7814. <predictions_in_cm>335</predictions_in_cm>
  7815. <highlow>H</highlow>
  7816. </item>
  7817. <item>
  7818. <date>2013/09/10</date>
  7819. <day>Tue</day>
  7820. <time>08:28 AM</time>
  7821. <predictions_in_ft>0.2</predictions_in_ft>
  7822. <predictions_in_cm>6</predictions_in_cm>
  7823. <highlow>L</highlow>
  7824. </item>
  7825. <item>
  7826. <date>2013/09/10</date>
  7827. <day>Tue</day>
  7828. <time>02:41 PM</time>
  7829. <predictions_in_ft>11.7</predictions_in_ft>
  7830. <predictions_in_cm>357</predictions_in_cm>
  7831. <highlow>H</highlow>
  7832. </item>
  7833. <item>
  7834. <date>2013/09/10</date>
  7835. <day>Tue</day>
  7836. <time>09:02 PM</time>
  7837. <predictions_in_ft>-0.1</predictions_in_ft>
  7838. <predictions_in_cm>-3</predictions_in_cm>
  7839. <highlow>L</highlow>
  7840. </item>
  7841. <item>
  7842. <date>2013/09/11</date>
  7843. <day>Wed</day>
  7844. <time>03:12 AM</time>
  7845. <predictions_in_ft>10.8</predictions_in_ft>
  7846. <predictions_in_cm>329</predictions_in_cm>
  7847. <highlow>H</highlow>
  7848. </item>
  7849. <item>
  7850. <date>2013/09/11</date>
  7851. <day>Wed</day>
  7852. <time>09:18 AM</time>
  7853. <predictions_in_ft>0.5</predictions_in_ft>
  7854. <predictions_in_cm>15</predictions_in_cm>
  7855. <highlow>L</highlow>
  7856. </item>
  7857. <item>
  7858. <date>2013/09/11</date>
  7859. <day>Wed</day>
  7860. <time>03:33 PM</time>
  7861. <predictions_in_ft>11.6</predictions_in_ft>
  7862. <predictions_in_cm>354</predictions_in_cm>
  7863. <highlow>H</highlow>
  7864. </item>
  7865. <item>
  7866. <date>2013/09/11</date>
  7867. <day>Wed</day>
  7868. <time>09:58 PM</time>
  7869. <predictions_in_ft>0.0</predictions_in_ft>
  7870. <predictions_in_cm>0</predictions_in_cm>
  7871. <highlow>L</highlow>
  7872. </item>
  7873. <item>
  7874. <date>2013/09/12</date>
  7875. <day>Thu</day>
  7876. <time>04:09 AM</time>
  7877. <predictions_in_ft>10.5</predictions_in_ft>
  7878. <predictions_in_cm>320</predictions_in_cm>
  7879. <highlow>H</highlow>
  7880. </item>
  7881. <item>
  7882. <date>2013/09/12</date>
  7883. <day>Thu</day>
  7884. <time>10:15 AM</time>
  7885. <predictions_in_ft>0.7</predictions_in_ft>
  7886. <predictions_in_cm>21</predictions_in_cm>
  7887. <highlow>L</highlow>
  7888. </item>
  7889. <item>
  7890. <date>2013/09/12</date>
  7891. <day>Thu</day>
  7892. <time>04:31 PM</time>
  7893. <predictions_in_ft>11.5</predictions_in_ft>
  7894. <predictions_in_cm>351</predictions_in_cm>
  7895. <highlow>H</highlow>
  7896. </item>
  7897. <item>
  7898. <date>2013/09/12</date>
  7899. <day>Thu</day>
  7900. <time>10:59 PM</time>
  7901. <predictions_in_ft>0.1</predictions_in_ft>
  7902. <predictions_in_cm>3</predictions_in_cm>
  7903. <highlow>L</highlow>
  7904. </item>
  7905. <item>
  7906. <date>2013/09/13</date>
  7907. <day>Fri</day>
  7908. <time>05:11 AM</time>
  7909. <predictions_in_ft>10.3</predictions_in_ft>
  7910. <predictions_in_cm>314</predictions_in_cm>
  7911. <highlow>H</highlow>
  7912. </item>
  7913. <item>
  7914. <date>2013/09/13</date>
  7915. <day>Fri</day>
  7916. <time>11:18 AM</time>
  7917. <predictions_in_ft>0.9</predictions_in_ft>
  7918. <predictions_in_cm>27</predictions_in_cm>
  7919. <highlow>L</highlow>
  7920. </item>
  7921. <item>
  7922. <date>2013/09/13</date>
  7923. <day>Fri</day>
  7924. <time>05:35 PM</time>
  7925. <predictions_in_ft>11.4</predictions_in_ft>
  7926. <predictions_in_cm>347</predictions_in_cm>
  7927. <highlow>H</highlow>
  7928. </item>
  7929. <item>
  7930. <date>2013/09/14</date>
  7931. <day>Sat</day>
  7932. <time>12:06 AM</time>
  7933. <predictions_in_ft>0.1</predictions_in_ft>
  7934. <predictions_in_cm>3</predictions_in_cm>
  7935. <highlow>L</highlow>
  7936. </item>
  7937. <item>
  7938. <date>2013/09/14</date>
  7939. <day>Sat</day>
  7940. <time>06:19 AM</time>
  7941. <predictions_in_ft>10.3</predictions_in_ft>
  7942. <predictions_in_cm>314</predictions_in_cm>
  7943. <highlow>H</highlow>
  7944. </item>
  7945. <item>
  7946. <date>2013/09/14</date>
  7947. <day>Sat</day>
  7948. <time>12:27 PM</time>
  7949. <predictions_in_ft>0.8</predictions_in_ft>
  7950. <predictions_in_cm>24</predictions_in_cm>
  7951. <highlow>L</highlow>
  7952. </item>
  7953. <item>
  7954. <date>2013/09/14</date>
  7955. <day>Sat</day>
  7956. <time>06:43 PM</time>
  7957. <predictions_in_ft>11.5</predictions_in_ft>
  7958. <predictions_in_cm>351</predictions_in_cm>
  7959. <highlow>H</highlow>
  7960. </item>
  7961. <item>
  7962. <date>2013/09/15</date>
  7963. <day>Sun</day>
  7964. <time>01:13 AM</time>
  7965. <predictions_in_ft>0.0</predictions_in_ft>
  7966. <predictions_in_cm>0</predictions_in_cm>
  7967. <highlow>L</highlow>
  7968. </item>
  7969. <item>
  7970. <date>2013/09/15</date>
  7971. <day>Sun</day>
  7972. <time>07:26 AM</time>
  7973. <predictions_in_ft>10.6</predictions_in_ft>
  7974. <predictions_in_cm>323</predictions_in_cm>
  7975. <highlow>H</highlow>
  7976. </item>
  7977. <item>
  7978. <date>2013/09/15</date>
  7979. <day>Sun</day>
  7980. <time>01:35 PM</time>
  7981. <predictions_in_ft>0.5</predictions_in_ft>
  7982. <predictions_in_cm>15</predictions_in_cm>
  7983. <highlow>L</highlow>
  7984. </item>
  7985. <item>
  7986. <date>2013/09/15</date>
  7987. <day>Sun</day>
  7988. <time>07:50 PM</time>
  7989. <predictions_in_ft>11.7</predictions_in_ft>
  7990. <predictions_in_cm>357</predictions_in_cm>
  7991. <highlow>H</highlow>
  7992. </item>
  7993. <item>
  7994. <date>2013/09/16</date>
  7995. <day>Mon</day>
  7996. <time>02:17 AM</time>
  7997. <predictions_in_ft>-0.3</predictions_in_ft>
  7998. <predictions_in_cm>-9</predictions_in_cm>
  7999. <highlow>L</highlow>
  8000. </item>
  8001. <item>
  8002. <date>2013/09/16</date>
  8003. <day>Mon</day>
  8004. <time>08:29 AM</time>
  8005. <predictions_in_ft>11.0</predictions_in_ft>
  8006. <predictions_in_cm>335</predictions_in_cm>
  8007. <highlow>H</highlow>
  8008. </item>
  8009. <item>
  8010. <date>2013/09/16</date>
  8011. <day>Mon</day>
  8012. <time>02:39 PM</time>
  8013. <predictions_in_ft>0.1</predictions_in_ft>
  8014. <predictions_in_cm>3</predictions_in_cm>
  8015. <highlow>L</highlow>
  8016. </item>
  8017. <item>
  8018. <date>2013/09/16</date>
  8019. <day>Mon</day>
  8020. <time>08:53 PM</time>
  8021. <predictions_in_ft>12.1</predictions_in_ft>
  8022. <predictions_in_cm>369</predictions_in_cm>
  8023. <highlow>H</highlow>
  8024. </item>
  8025. <item>
  8026. <date>2013/09/17</date>
  8027. <day>Tue</day>
  8028. <time>03:15 AM</time>
  8029. <predictions_in_ft>-0.7</predictions_in_ft>
  8030. <predictions_in_cm>-21</predictions_in_cm>
  8031. <highlow>L</highlow>
  8032. </item>
  8033. <item>
  8034. <date>2013/09/17</date>
  8035. <day>Tue</day>
  8036. <time>09:27 AM</time>
  8037. <predictions_in_ft>11.6</predictions_in_ft>
  8038. <predictions_in_cm>354</predictions_in_cm>
  8039. <highlow>H</highlow>
  8040. </item>
  8041. <item>
  8042. <date>2013/09/17</date>
  8043. <day>Tue</day>
  8044. <time>03:38 PM</time>
  8045. <predictions_in_ft>-0.5</predictions_in_ft>
  8046. <predictions_in_cm>-15</predictions_in_cm>
  8047. <highlow>L</highlow>
  8048. </item>
  8049. <item>
  8050. <date>2013/09/17</date>
  8051. <day>Tue</day>
  8052. <time>09:50 PM</time>
  8053. <predictions_in_ft>12.3</predictions_in_ft>
  8054. <predictions_in_cm>375</predictions_in_cm>
  8055. <highlow>H</highlow>
  8056. </item>
  8057. <item>
  8058. <date>2013/09/18</date>
  8059. <day>Wed</day>
  8060. <time>04:09 AM</time>
  8061. <predictions_in_ft>-1.0</predictions_in_ft>
  8062. <predictions_in_cm>-30</predictions_in_cm>
  8063. <highlow>L</highlow>
  8064. </item>
  8065. <item>
  8066. <date>2013/09/18</date>
  8067. <day>Wed</day>
  8068. <time>10:20 AM</time>
  8069. <predictions_in_ft>12.0</predictions_in_ft>
  8070. <predictions_in_cm>366</predictions_in_cm>
  8071. <highlow>H</highlow>
  8072. </item>
  8073. <item>
  8074. <date>2013/09/18</date>
  8075. <day>Wed</day>
  8076. <time>04:32 PM</time>
  8077. <predictions_in_ft>-0.9</predictions_in_ft>
  8078. <predictions_in_cm>-27</predictions_in_cm>
  8079. <highlow>L</highlow>
  8080. </item>
  8081. <item>
  8082. <date>2013/09/18</date>
  8083. <day>Wed</day>
  8084. <time>10:43 PM</time>
  8085. <predictions_in_ft>12.5</predictions_in_ft>
  8086. <predictions_in_cm>381</predictions_in_cm>
  8087. <highlow>H</highlow>
  8088. </item>
  8089. <item>
  8090. <date>2013/09/19</date>
  8091. <day>Thu</day>
  8092. <time>04:58 AM</time>
  8093. <predictions_in_ft>-1.1</predictions_in_ft>
  8094. <predictions_in_cm>-34</predictions_in_cm>
  8095. <highlow>L</highlow>
  8096. </item>
  8097. <item>
  8098. <date>2013/09/19</date>
  8099. <day>Thu</day>
  8100. <time>11:09 AM</time>
  8101. <predictions_in_ft>12.4</predictions_in_ft>
  8102. <predictions_in_cm>378</predictions_in_cm>
  8103. <highlow>H</highlow>
  8104. </item>
  8105. <item>
  8106. <date>2013/09/19</date>
  8107. <day>Thu</day>
  8108. <time>05:23 PM</time>
  8109. <predictions_in_ft>-1.1</predictions_in_ft>
  8110. <predictions_in_cm>-34</predictions_in_cm>
  8111. <highlow>L</highlow>
  8112. </item>
  8113. <item>
  8114. <date>2013/09/19</date>
  8115. <day>Thu</day>
  8116. <time>11:33 PM</time>
  8117. <predictions_in_ft>12.5</predictions_in_ft>
  8118. <predictions_in_cm>381</predictions_in_cm>
  8119. <highlow>H</highlow>
  8120. </item>
  8121. <item>
  8122. <date>2013/09/20</date>
  8123. <day>Fri</day>
  8124. <time>05:45 AM</time>
  8125. <predictions_in_ft>-1.1</predictions_in_ft>
  8126. <predictions_in_cm>-34</predictions_in_cm>
  8127. <highlow>L</highlow>
  8128. </item>
  8129. <item>
  8130. <date>2013/09/20</date>
  8131. <day>Fri</day>
  8132. <time>11:55 AM</time>
  8133. <predictions_in_ft>12.5</predictions_in_ft>
  8134. <predictions_in_cm>381</predictions_in_cm>
  8135. <highlow>H</highlow>
  8136. </item>
  8137. <item>
  8138. <date>2013/09/20</date>
  8139. <day>Fri</day>
  8140. <time>06:10 PM</time>
  8141. <predictions_in_ft>-1.2</predictions_in_ft>
  8142. <predictions_in_cm>-37</predictions_in_cm>
  8143. <highlow>L</highlow>
  8144. </item>
  8145. <item>
  8146. <date>2013/09/21</date>
  8147. <day>Sat</day>
  8148. <time>12:20 AM</time>
  8149. <predictions_in_ft>12.2</predictions_in_ft>
  8150. <predictions_in_cm>372</predictions_in_cm>
  8151. <highlow>H</highlow>
  8152. </item>
  8153. <item>
  8154. <date>2013/09/21</date>
  8155. <day>Sat</day>
  8156. <time>06:30 AM</time>
  8157. <predictions_in_ft>-0.8</predictions_in_ft>
  8158. <predictions_in_cm>-24</predictions_in_cm>
  8159. <highlow>L</highlow>
  8160. </item>
  8161. <item>
  8162. <date>2013/09/21</date>
  8163. <day>Sat</day>
  8164. <time>12:40 PM</time>
  8165. <predictions_in_ft>12.3</predictions_in_ft>
  8166. <predictions_in_cm>375</predictions_in_cm>
  8167. <highlow>H</highlow>
  8168. </item>
  8169. <item>
  8170. <date>2013/09/21</date>
  8171. <day>Sat</day>
  8172. <time>06:57 PM</time>
  8173. <predictions_in_ft>-1.0</predictions_in_ft>
  8174. <predictions_in_cm>-30</predictions_in_cm>
  8175. <highlow>L</highlow>
  8176. </item>
  8177. <item>
  8178. <date>2013/09/22</date>
  8179. <day>Sun</day>
  8180. <time>01:06 AM</time>
  8181. <predictions_in_ft>11.8</predictions_in_ft>
  8182. <predictions_in_cm>360</predictions_in_cm>
  8183. <highlow>H</highlow>
  8184. </item>
  8185. <item>
  8186. <date>2013/09/22</date>
  8187. <day>Sun</day>
  8188. <time>07:15 AM</time>
  8189. <predictions_in_ft>-0.3</predictions_in_ft>
  8190. <predictions_in_cm>-9</predictions_in_cm>
  8191. <highlow>L</highlow>
  8192. </item>
  8193. <item>
  8194. <date>2013/09/22</date>
  8195. <day>Sun</day>
  8196. <time>01:24 PM</time>
  8197. <predictions_in_ft>12.0</predictions_in_ft>
  8198. <predictions_in_cm>366</predictions_in_cm>
  8199. <highlow>H</highlow>
  8200. </item>
  8201. <item>
  8202. <date>2013/09/22</date>
  8203. <day>Sun</day>
  8204. <time>07:43 PM</time>
  8205. <predictions_in_ft>-0.6</predictions_in_ft>
  8206. <predictions_in_cm>-18</predictions_in_cm>
  8207. <highlow>L</highlow>
  8208. </item>
  8209. <item>
  8210. <date>2013/09/23</date>
  8211. <day>Mon</day>
  8212. <time>01:52 AM</time>
  8213. <predictions_in_ft>11.2</predictions_in_ft>
  8214. <predictions_in_cm>341</predictions_in_cm>
  8215. <highlow>H</highlow>
  8216. </item>
  8217. <item>
  8218. <date>2013/09/23</date>
  8219. <day>Mon</day>
  8220. <time>07:59 AM</time>
  8221. <predictions_in_ft>0.2</predictions_in_ft>
  8222. <predictions_in_cm>6</predictions_in_cm>
  8223. <highlow>L</highlow>
  8224. </item>
  8225. <item>
  8226. <date>2013/09/23</date>
  8227. <day>Mon</day>
  8228. <time>02:08 PM</time>
  8229. <predictions_in_ft>11.6</predictions_in_ft>
  8230. <predictions_in_cm>354</predictions_in_cm>
  8231. <highlow>H</highlow>
  8232. </item>
  8233. <item>
  8234. <date>2013/09/23</date>
  8235. <day>Mon</day>
  8236. <time>08:29 PM</time>
  8237. <predictions_in_ft>-0.1</predictions_in_ft>
  8238. <predictions_in_cm>-3</predictions_in_cm>
  8239. <highlow>L</highlow>
  8240. </item>
  8241. <item>
  8242. <date>2013/09/24</date>
  8243. <day>Tue</day>
  8244. <time>02:39 AM</time>
  8245. <predictions_in_ft>10.6</predictions_in_ft>
  8246. <predictions_in_cm>323</predictions_in_cm>
  8247. <highlow>H</highlow>
  8248. </item>
  8249. <item>
  8250. <date>2013/09/24</date>
  8251. <day>Tue</day>
  8252. <time>08:45 AM</time>
  8253. <predictions_in_ft>0.8</predictions_in_ft>
  8254. <predictions_in_cm>24</predictions_in_cm>
  8255. <highlow>L</highlow>
  8256. </item>
  8257. <item>
  8258. <date>2013/09/24</date>
  8259. <day>Tue</day>
  8260. <time>02:54 PM</time>
  8261. <predictions_in_ft>11.1</predictions_in_ft>
  8262. <predictions_in_cm>338</predictions_in_cm>
  8263. <highlow>H</highlow>
  8264. </item>
  8265. <item>
  8266. <date>2013/09/24</date>
  8267. <day>Tue</day>
  8268. <time>09:18 PM</time>
  8269. <predictions_in_ft>0.4</predictions_in_ft>
  8270. <predictions_in_cm>12</predictions_in_cm>
  8271. <highlow>L</highlow>
  8272. </item>
  8273. <item>
  8274. <date>2013/09/25</date>
  8275. <day>Wed</day>
  8276. <time>03:28 AM</time>
  8277. <predictions_in_ft>10.1</predictions_in_ft>
  8278. <predictions_in_cm>308</predictions_in_cm>
  8279. <highlow>H</highlow>
  8280. </item>
  8281. <item>
  8282. <date>2013/09/25</date>
  8283. <day>Wed</day>
  8284. <time>09:33 AM</time>
  8285. <predictions_in_ft>1.3</predictions_in_ft>
  8286. <predictions_in_cm>40</predictions_in_cm>
  8287. <highlow>L</highlow>
  8288. </item>
  8289. <item>
  8290. <date>2013/09/25</date>
  8291. <day>Wed</day>
  8292. <time>03:43 PM</time>
  8293. <predictions_in_ft>10.6</predictions_in_ft>
  8294. <predictions_in_cm>323</predictions_in_cm>
  8295. <highlow>H</highlow>
  8296. </item>
  8297. <item>
  8298. <date>2013/09/25</date>
  8299. <day>Wed</day>
  8300. <time>10:09 PM</time>
  8301. <predictions_in_ft>0.9</predictions_in_ft>
  8302. <predictions_in_cm>27</predictions_in_cm>
  8303. <highlow>L</highlow>
  8304. </item>
  8305. <item>
  8306. <date>2013/09/26</date>
  8307. <day>Thu</day>
  8308. <time>04:20 AM</time>
  8309. <predictions_in_ft>9.6</predictions_in_ft>
  8310. <predictions_in_cm>293</predictions_in_cm>
  8311. <highlow>H</highlow>
  8312. </item>
  8313. <item>
  8314. <date>2013/09/26</date>
  8315. <day>Thu</day>
  8316. <time>10:25 AM</time>
  8317. <predictions_in_ft>1.8</predictions_in_ft>
  8318. <predictions_in_cm>55</predictions_in_cm>
  8319. <highlow>L</highlow>
  8320. </item>
  8321. <item>
  8322. <date>2013/09/26</date>
  8323. <day>Thu</day>
  8324. <time>04:35 PM</time>
  8325. <predictions_in_ft>10.2</predictions_in_ft>
  8326. <predictions_in_cm>311</predictions_in_cm>
  8327. <highlow>H</highlow>
  8328. </item>
  8329. <item>
  8330. <date>2013/09/26</date>
  8331. <day>Thu</day>
  8332. <time>11:03 PM</time>
  8333. <predictions_in_ft>1.2</predictions_in_ft>
  8334. <predictions_in_cm>37</predictions_in_cm>
  8335. <highlow>L</highlow>
  8336. </item>
  8337. <item>
  8338. <date>2013/09/27</date>
  8339. <day>Fri</day>
  8340. <time>05:15 AM</time>
  8341. <predictions_in_ft>9.3</predictions_in_ft>
  8342. <predictions_in_cm>283</predictions_in_cm>
  8343. <highlow>H</highlow>
  8344. </item>
  8345. <item>
  8346. <date>2013/09/27</date>
  8347. <day>Fri</day>
  8348. <time>11:20 AM</time>
  8349. <predictions_in_ft>2.0</predictions_in_ft>
  8350. <predictions_in_cm>61</predictions_in_cm>
  8351. <highlow>L</highlow>
  8352. </item>
  8353. <item>
  8354. <date>2013/09/27</date>
  8355. <day>Fri</day>
  8356. <time>05:31 PM</time>
  8357. <predictions_in_ft>10.0</predictions_in_ft>
  8358. <predictions_in_cm>305</predictions_in_cm>
  8359. <highlow>H</highlow>
  8360. </item>
  8361. <item>
  8362. <date>2013/09/28</date>
  8363. <day>Sat</day>
  8364. <time>12:00 AM</time>
  8365. <predictions_in_ft>1.4</predictions_in_ft>
  8366. <predictions_in_cm>43</predictions_in_cm>
  8367. <highlow>L</highlow>
  8368. </item>
  8369. <item>
  8370. <date>2013/09/28</date>
  8371. <day>Sat</day>
  8372. <time>06:11 AM</time>
  8373. <predictions_in_ft>9.2</predictions_in_ft>
  8374. <predictions_in_cm>280</predictions_in_cm>
  8375. <highlow>H</highlow>
  8376. </item>
  8377. <item>
  8378. <date>2013/09/28</date>
  8379. <day>Sat</day>
  8380. <time>12:18 PM</time>
  8381. <predictions_in_ft>2.1</predictions_in_ft>
  8382. <predictions_in_cm>64</predictions_in_cm>
  8383. <highlow>L</highlow>
  8384. </item>
  8385. <item>
  8386. <date>2013/09/28</date>
  8387. <day>Sat</day>
  8388. <time>06:29 PM</time>
  8389. <predictions_in_ft>9.9</predictions_in_ft>
  8390. <predictions_in_cm>302</predictions_in_cm>
  8391. <highlow>H</highlow>
  8392. </item>
  8393. <item>
  8394. <date>2013/09/29</date>
  8395. <day>Sun</day>
  8396. <time>12:56 AM</time>
  8397. <predictions_in_ft>1.5</predictions_in_ft>
  8398. <predictions_in_cm>46</predictions_in_cm>
  8399. <highlow>L</highlow>
  8400. </item>
  8401. <item>
  8402. <date>2013/09/29</date>
  8403. <day>Sun</day>
  8404. <time>07:07 AM</time>
  8405. <predictions_in_ft>9.3</predictions_in_ft>
  8406. <predictions_in_cm>283</predictions_in_cm>
  8407. <highlow>H</highlow>
  8408. </item>
  8409. <item>
  8410. <date>2013/09/29</date>
  8411. <day>Sun</day>
  8412. <time>01:15 PM</time>
  8413. <predictions_in_ft>2.0</predictions_in_ft>
  8414. <predictions_in_cm>61</predictions_in_cm>
  8415. <highlow>L</highlow>
  8416. </item>
  8417. <item>
  8418. <date>2013/09/29</date>
  8419. <day>Sun</day>
  8420. <time>07:25 PM</time>
  8421. <predictions_in_ft>10.0</predictions_in_ft>
  8422. <predictions_in_cm>305</predictions_in_cm>
  8423. <highlow>H</highlow>
  8424. </item>
  8425. <item>
  8426. <date>2013/09/30</date>
  8427. <day>Mon</day>
  8428. <time>01:49 AM</time>
  8429. <predictions_in_ft>1.3</predictions_in_ft>
  8430. <predictions_in_cm>40</predictions_in_cm>
  8431. <highlow>L</highlow>
  8432. </item>
  8433. <item>
  8434. <date>2013/09/30</date>
  8435. <day>Mon</day>
  8436. <time>08:00 AM</time>
  8437. <predictions_in_ft>9.6</predictions_in_ft>
  8438. <predictions_in_cm>293</predictions_in_cm>
  8439. <highlow>H</highlow>
  8440. </item>
  8441. <item>
  8442. <date>2013/09/30</date>
  8443. <day>Mon</day>
  8444. <time>02:08 PM</time>
  8445. <predictions_in_ft>1.7</predictions_in_ft>
  8446. <predictions_in_cm>52</predictions_in_cm>
  8447. <highlow>L</highlow>
  8448. </item>
  8449. <item>
  8450. <date>2013/09/30</date>
  8451. <day>Mon</day>
  8452. <time>08:17 PM</time>
  8453. <predictions_in_ft>10.2</predictions_in_ft>
  8454. <predictions_in_cm>311</predictions_in_cm>
  8455. <highlow>H</highlow>
  8456. </item>
  8457. <item>
  8458. <date>2013/10/01</date>
  8459. <day>Tue</day>
  8460. <time>02:37 AM</time>
  8461. <predictions_in_ft>1.1</predictions_in_ft>
  8462. <predictions_in_cm>34</predictions_in_cm>
  8463. <highlow>L</highlow>
  8464. </item>
  8465. <item>
  8466. <date>2013/10/01</date>
  8467. <day>Tue</day>
  8468. <time>08:47 AM</time>
  8469. <predictions_in_ft>10.0</predictions_in_ft>
  8470. <predictions_in_cm>305</predictions_in_cm>
  8471. <highlow>H</highlow>
  8472. </item>
  8473. <item>
  8474. <date>2013/10/01</date>
  8475. <day>Tue</day>
  8476. <time>02:57 PM</time>
  8477. <predictions_in_ft>1.2</predictions_in_ft>
  8478. <predictions_in_cm>37</predictions_in_cm>
  8479. <highlow>L</highlow>
  8480. </item>
  8481. <item>
  8482. <date>2013/10/01</date>
  8483. <day>Tue</day>
  8484. <time>09:05 PM</time>
  8485. <predictions_in_ft>10.5</predictions_in_ft>
  8486. <predictions_in_cm>320</predictions_in_cm>
  8487. <highlow>H</highlow>
  8488. </item>
  8489. <item>
  8490. <date>2013/10/02</date>
  8491. <day>Wed</day>
  8492. <time>03:21 AM</time>
  8493. <predictions_in_ft>0.7</predictions_in_ft>
  8494. <predictions_in_cm>21</predictions_in_cm>
  8495. <highlow>L</highlow>
  8496. </item>
  8497. <item>
  8498. <date>2013/10/02</date>
  8499. <day>Wed</day>
  8500. <time>09:30 AM</time>
  8501. <predictions_in_ft>10.4</predictions_in_ft>
  8502. <predictions_in_cm>317</predictions_in_cm>
  8503. <highlow>H</highlow>
  8504. </item>
  8505. <item>
  8506. <date>2013/10/02</date>
  8507. <day>Wed</day>
  8508. <time>03:41 PM</time>
  8509. <predictions_in_ft>0.8</predictions_in_ft>
  8510. <predictions_in_cm>24</predictions_in_cm>
  8511. <highlow>L</highlow>
  8512. </item>
  8513. <item>
  8514. <date>2013/10/02</date>
  8515. <day>Wed</day>
  8516. <time>09:48 PM</time>
  8517. <predictions_in_ft>10.8</predictions_in_ft>
  8518. <predictions_in_cm>329</predictions_in_cm>
  8519. <highlow>H</highlow>
  8520. </item>
  8521. <item>
  8522. <date>2013/10/03</date>
  8523. <day>Thu</day>
  8524. <time>04:01 AM</time>
  8525. <predictions_in_ft>0.4</predictions_in_ft>
  8526. <predictions_in_cm>12</predictions_in_cm>
  8527. <highlow>L</highlow>
  8528. </item>
  8529. <item>
  8530. <date>2013/10/03</date>
  8531. <day>Thu</day>
  8532. <time>10:09 AM</time>
  8533. <predictions_in_ft>10.9</predictions_in_ft>
  8534. <predictions_in_cm>332</predictions_in_cm>
  8535. <highlow>H</highlow>
  8536. </item>
  8537. <item>
  8538. <date>2013/10/03</date>
  8539. <day>Thu</day>
  8540. <time>04:22 PM</time>
  8541. <predictions_in_ft>0.3</predictions_in_ft>
  8542. <predictions_in_cm>9</predictions_in_cm>
  8543. <highlow>L</highlow>
  8544. </item>
  8545. <item>
  8546. <date>2013/10/03</date>
  8547. <day>Thu</day>
  8548. <time>10:29 PM</time>
  8549. <predictions_in_ft>11.1</predictions_in_ft>
  8550. <predictions_in_cm>338</predictions_in_cm>
  8551. <highlow>H</highlow>
  8552. </item>
  8553. <item>
  8554. <date>2013/10/04</date>
  8555. <day>Fri</day>
  8556. <time>04:39 AM</time>
  8557. <predictions_in_ft>0.2</predictions_in_ft>
  8558. <predictions_in_cm>6</predictions_in_cm>
  8559. <highlow>L</highlow>
  8560. </item>
  8561. <item>
  8562. <date>2013/10/04</date>
  8563. <day>Fri</day>
  8564. <time>10:47 AM</time>
  8565. <predictions_in_ft>11.4</predictions_in_ft>
  8566. <predictions_in_cm>347</predictions_in_cm>
  8567. <highlow>H</highlow>
  8568. </item>
  8569. <item>
  8570. <date>2013/10/04</date>
  8571. <day>Fri</day>
  8572. <time>05:01 PM</time>
  8573. <predictions_in_ft>-0.1</predictions_in_ft>
  8574. <predictions_in_cm>-3</predictions_in_cm>
  8575. <highlow>L</highlow>
  8576. </item>
  8577. <item>
  8578. <date>2013/10/04</date>
  8579. <day>Fri</day>
  8580. <time>11:09 PM</time>
  8581. <predictions_in_ft>11.3</predictions_in_ft>
  8582. <predictions_in_cm>344</predictions_in_cm>
  8583. <highlow>H</highlow>
  8584. </item>
  8585. <item>
  8586. <date>2013/10/05</date>
  8587. <day>Sat</day>
  8588. <time>05:17 AM</time>
  8589. <predictions_in_ft>-0.1</predictions_in_ft>
  8590. <predictions_in_cm>-3</predictions_in_cm>
  8591. <highlow>L</highlow>
  8592. </item>
  8593. <item>
  8594. <date>2013/10/05</date>
  8595. <day>Sat</day>
  8596. <time>11:24 AM</time>
  8597. <predictions_in_ft>11.8</predictions_in_ft>
  8598. <predictions_in_cm>360</predictions_in_cm>
  8599. <highlow>H</highlow>
  8600. </item>
  8601. <item>
  8602. <date>2013/10/05</date>
  8603. <day>Sat</day>
  8604. <time>05:41 PM</time>
  8605. <predictions_in_ft>-0.5</predictions_in_ft>
  8606. <predictions_in_cm>-15</predictions_in_cm>
  8607. <highlow>L</highlow>
  8608. </item>
  8609. <item>
  8610. <date>2013/10/05</date>
  8611. <day>Sat</day>
  8612. <time>11:49 PM</time>
  8613. <predictions_in_ft>11.5</predictions_in_ft>
  8614. <predictions_in_cm>351</predictions_in_cm>
  8615. <highlow>H</highlow>
  8616. </item>
  8617. <item>
  8618. <date>2013/10/06</date>
  8619. <day>Sun</day>
  8620. <time>05:55 AM</time>
  8621. <predictions_in_ft>-0.2</predictions_in_ft>
  8622. <predictions_in_cm>-6</predictions_in_cm>
  8623. <highlow>L</highlow>
  8624. </item>
  8625. <item>
  8626. <date>2013/10/06</date>
  8627. <day>Sun</day>
  8628. <time>12:03 PM</time>
  8629. <predictions_in_ft>12.1</predictions_in_ft>
  8630. <predictions_in_cm>369</predictions_in_cm>
  8631. <highlow>H</highlow>
  8632. </item>
  8633. <item>
  8634. <date>2013/10/06</date>
  8635. <day>Sun</day>
  8636. <time>06:22 PM</time>
  8637. <predictions_in_ft>-0.8</predictions_in_ft>
  8638. <predictions_in_cm>-24</predictions_in_cm>
  8639. <highlow>L</highlow>
  8640. </item>
  8641. <item>
  8642. <date>2013/10/07</date>
  8643. <day>Mon</day>
  8644. <time>12:31 AM</time>
  8645. <predictions_in_ft>11.5</predictions_in_ft>
  8646. <predictions_in_cm>351</predictions_in_cm>
  8647. <highlow>H</highlow>
  8648. </item>
  8649. <item>
  8650. <date>2013/10/07</date>
  8651. <day>Mon</day>
  8652. <time>06:36 AM</time>
  8653. <predictions_in_ft>-0.2</predictions_in_ft>
  8654. <predictions_in_cm>-6</predictions_in_cm>
  8655. <highlow>L</highlow>
  8656. </item>
  8657. <item>
  8658. <date>2013/10/07</date>
  8659. <day>Mon</day>
  8660. <time>12:45 PM</time>
  8661. <predictions_in_ft>12.3</predictions_in_ft>
  8662. <predictions_in_cm>375</predictions_in_cm>
  8663. <highlow>H</highlow>
  8664. </item>
  8665. <item>
  8666. <date>2013/10/07</date>
  8667. <day>Mon</day>
  8668. <time>07:06 PM</time>
  8669. <predictions_in_ft>-0.9</predictions_in_ft>
  8670. <predictions_in_cm>-27</predictions_in_cm>
  8671. <highlow>L</highlow>
  8672. </item>
  8673. <item>
  8674. <date>2013/10/08</date>
  8675. <day>Tue</day>
  8676. <time>01:15 AM</time>
  8677. <predictions_in_ft>11.4</predictions_in_ft>
  8678. <predictions_in_cm>347</predictions_in_cm>
  8679. <highlow>H</highlow>
  8680. </item>
  8681. <item>
  8682. <date>2013/10/08</date>
  8683. <day>Tue</day>
  8684. <time>07:20 AM</time>
  8685. <predictions_in_ft>-0.1</predictions_in_ft>
  8686. <predictions_in_cm>-3</predictions_in_cm>
  8687. <highlow>L</highlow>
  8688. </item>
  8689. <item>
  8690. <date>2013/10/08</date>
  8691. <day>Tue</day>
  8692. <time>01:31 PM</time>
  8693. <predictions_in_ft>12.3</predictions_in_ft>
  8694. <predictions_in_cm>375</predictions_in_cm>
  8695. <highlow>H</highlow>
  8696. </item>
  8697. <item>
  8698. <date>2013/10/08</date>
  8699. <day>Tue</day>
  8700. <time>07:54 PM</time>
  8701. <predictions_in_ft>-0.8</predictions_in_ft>
  8702. <predictions_in_cm>-24</predictions_in_cm>
  8703. <highlow>L</highlow>
  8704. </item>
  8705. <item>
  8706. <date>2013/10/09</date>
  8707. <day>Wed</day>
  8708. <time>02:04 AM</time>
  8709. <predictions_in_ft>11.2</predictions_in_ft>
  8710. <predictions_in_cm>341</predictions_in_cm>
  8711. <highlow>H</highlow>
  8712. </item>
  8713. <item>
  8714. <date>2013/10/09</date>
  8715. <day>Wed</day>
  8716. <time>08:08 AM</time>
  8717. <predictions_in_ft>0.1</predictions_in_ft>
  8718. <predictions_in_cm>3</predictions_in_cm>
  8719. <highlow>L</highlow>
  8720. </item>
  8721. <item>
  8722. <date>2013/10/09</date>
  8723. <day>Wed</day>
  8724. <time>02:21 PM</time>
  8725. <predictions_in_ft>12.2</predictions_in_ft>
  8726. <predictions_in_cm>372</predictions_in_cm>
  8727. <highlow>H</highlow>
  8728. </item>
  8729. <item>
  8730. <date>2013/10/09</date>
  8731. <day>Wed</day>
  8732. <time>08:46 PM</time>
  8733. <predictions_in_ft>-0.6</predictions_in_ft>
  8734. <predictions_in_cm>-18</predictions_in_cm>
  8735. <highlow>L</highlow>
  8736. </item>
  8737. <item>
  8738. <date>2013/10/10</date>
  8739. <day>Thu</day>
  8740. <time>02:58 AM</time>
  8741. <predictions_in_ft>10.9</predictions_in_ft>
  8742. <predictions_in_cm>332</predictions_in_cm>
  8743. <highlow>H</highlow>
  8744. </item>
  8745. <item>
  8746. <date>2013/10/10</date>
  8747. <day>Thu</day>
  8748. <time>09:03 AM</time>
  8749. <predictions_in_ft>0.4</predictions_in_ft>
  8750. <predictions_in_cm>12</predictions_in_cm>
  8751. <highlow>L</highlow>
  8752. </item>
  8753. <item>
  8754. <date>2013/10/10</date>
  8755. <day>Thu</day>
  8756. <time>03:16 PM</time>
  8757. <predictions_in_ft>11.9</predictions_in_ft>
  8758. <predictions_in_cm>363</predictions_in_cm>
  8759. <highlow>H</highlow>
  8760. </item>
  8761. <item>
  8762. <date>2013/10/10</date>
  8763. <day>Thu</day>
  8764. <time>09:44 PM</time>
  8765. <predictions_in_ft>-0.4</predictions_in_ft>
  8766. <predictions_in_cm>-12</predictions_in_cm>
  8767. <highlow>L</highlow>
  8768. </item>
  8769. <item>
  8770. <date>2013/10/11</date>
  8771. <day>Fri</day>
  8772. <time>03:57 AM</time>
  8773. <predictions_in_ft>10.7</predictions_in_ft>
  8774. <predictions_in_cm>326</predictions_in_cm>
  8775. <highlow>H</highlow>
  8776. </item>
  8777. <item>
  8778. <date>2013/10/11</date>
  8779. <day>Fri</day>
  8780. <time>10:04 AM</time>
  8781. <predictions_in_ft>0.7</predictions_in_ft>
  8782. <predictions_in_cm>21</predictions_in_cm>
  8783. <highlow>L</highlow>
  8784. </item>
  8785. <item>
  8786. <date>2013/10/11</date>
  8787. <day>Fri</day>
  8788. <time>04:18 PM</time>
  8789. <predictions_in_ft>11.6</predictions_in_ft>
  8790. <predictions_in_cm>354</predictions_in_cm>
  8791. <highlow>H</highlow>
  8792. </item>
  8793. <item>
  8794. <date>2013/10/11</date>
  8795. <day>Fri</day>
  8796. <time>10:47 PM</time>
  8797. <predictions_in_ft>-0.1</predictions_in_ft>
  8798. <predictions_in_cm>-3</predictions_in_cm>
  8799. <highlow>L</highlow>
  8800. </item>
  8801. <item>
  8802. <date>2013/10/12</date>
  8803. <day>Sat</day>
  8804. <time>05:02 AM</time>
  8805. <predictions_in_ft>10.5</predictions_in_ft>
  8806. <predictions_in_cm>320</predictions_in_cm>
  8807. <highlow>H</highlow>
  8808. </item>
  8809. <item>
  8810. <date>2013/10/12</date>
  8811. <day>Sat</day>
  8812. <time>11:10 AM</time>
  8813. <predictions_in_ft>0.8</predictions_in_ft>
  8814. <predictions_in_cm>24</predictions_in_cm>
  8815. <highlow>L</highlow>
  8816. </item>
  8817. <item>
  8818. <date>2013/10/12</date>
  8819. <day>Sat</day>
  8820. <time>05:25 PM</time>
  8821. <predictions_in_ft>11.4</predictions_in_ft>
  8822. <predictions_in_cm>347</predictions_in_cm>
  8823. <highlow>H</highlow>
  8824. </item>
  8825. <item>
  8826. <date>2013/10/12</date>
  8827. <day>Sat</day>
  8828. <time>11:53 PM</time>
  8829. <predictions_in_ft>0.0</predictions_in_ft>
  8830. <predictions_in_cm>0</predictions_in_cm>
  8831. <highlow>L</highlow>
  8832. </item>
  8833. <item>
  8834. <date>2013/10/13</date>
  8835. <day>Sun</day>
  8836. <time>06:09 AM</time>
  8837. <predictions_in_ft>10.6</predictions_in_ft>
  8838. <predictions_in_cm>323</predictions_in_cm>
  8839. <highlow>H</highlow>
  8840. </item>
  8841. <item>
  8842. <date>2013/10/13</date>
  8843. <day>Sun</day>
  8844. <time>12:20 PM</time>
  8845. <predictions_in_ft>0.7</predictions_in_ft>
  8846. <predictions_in_cm>21</predictions_in_cm>
  8847. <highlow>L</highlow>
  8848. </item>
  8849. <item>
  8850. <date>2013/10/13</date>
  8851. <day>Sun</day>
  8852. <time>06:33 PM</time>
  8853. <predictions_in_ft>11.3</predictions_in_ft>
  8854. <predictions_in_cm>344</predictions_in_cm>
  8855. <highlow>H</highlow>
  8856. </item>
  8857. <item>
  8858. <date>2013/10/14</date>
  8859. <day>Mon</day>
  8860. <time>12:59 AM</time>
  8861. <predictions_in_ft>0.0</predictions_in_ft>
  8862. <predictions_in_cm>0</predictions_in_cm>
  8863. <highlow>L</highlow>
  8864. </item>
  8865. <item>
  8866. <date>2013/10/14</date>
  8867. <day>Mon</day>
  8868. <time>07:15 AM</time>
  8869. <predictions_in_ft>10.9</predictions_in_ft>
  8870. <predictions_in_cm>332</predictions_in_cm>
  8871. <highlow>H</highlow>
  8872. </item>
  8873. <item>
  8874. <date>2013/10/14</date>
  8875. <day>Mon</day>
  8876. <time>01:28 PM</time>
  8877. <predictions_in_ft>0.4</predictions_in_ft>
  8878. <predictions_in_cm>12</predictions_in_cm>
  8879. <highlow>L</highlow>
  8880. </item>
  8881. <item>
  8882. <date>2013/10/14</date>
  8883. <day>Mon</day>
  8884. <time>07:40 PM</time>
  8885. <predictions_in_ft>11.4</predictions_in_ft>
  8886. <predictions_in_cm>347</predictions_in_cm>
  8887. <highlow>H</highlow>
  8888. </item>
  8889. <item>
  8890. <date>2013/10/15</date>
  8891. <day>Tue</day>
  8892. <time>02:01 AM</time>
  8893. <predictions_in_ft>-0.2</predictions_in_ft>
  8894. <predictions_in_cm>-6</predictions_in_cm>
  8895. <highlow>L</highlow>
  8896. </item>
  8897. <item>
  8898. <date>2013/10/15</date>
  8899. <day>Tue</day>
  8900. <time>08:16 AM</time>
  8901. <predictions_in_ft>11.3</predictions_in_ft>
  8902. <predictions_in_cm>344</predictions_in_cm>
  8903. <highlow>H</highlow>
  8904. </item>
  8905. <item>
  8906. <date>2013/10/15</date>
  8907. <day>Tue</day>
  8908. <time>02:30 PM</time>
  8909. <predictions_in_ft>0.0</predictions_in_ft>
  8910. <predictions_in_cm>0</predictions_in_cm>
  8911. <highlow>L</highlow>
  8912. </item>
  8913. <item>
  8914. <date>2013/10/15</date>
  8915. <day>Tue</day>
  8916. <time>08:42 PM</time>
  8917. <predictions_in_ft>11.6</predictions_in_ft>
  8918. <predictions_in_cm>354</predictions_in_cm>
  8919. <highlow>H</highlow>
  8920. </item>
  8921. <item>
  8922. <date>2013/10/16</date>
  8923. <day>Wed</day>
  8924. <time>02:58 AM</time>
  8925. <predictions_in_ft>-0.4</predictions_in_ft>
  8926. <predictions_in_cm>-12</predictions_in_cm>
  8927. <highlow>L</highlow>
  8928. </item>
  8929. <item>
  8930. <date>2013/10/16</date>
  8931. <day>Wed</day>
  8932. <time>09:11 AM</time>
  8933. <predictions_in_ft>11.7</predictions_in_ft>
  8934. <predictions_in_cm>357</predictions_in_cm>
  8935. <highlow>H</highlow>
  8936. </item>
  8937. <item>
  8938. <date>2013/10/16</date>
  8939. <day>Wed</day>
  8940. <time>03:27 PM</time>
  8941. <predictions_in_ft>-0.5</predictions_in_ft>
  8942. <predictions_in_cm>-15</predictions_in_cm>
  8943. <highlow>L</highlow>
  8944. </item>
  8945. <item>
  8946. <date>2013/10/16</date>
  8947. <day>Wed</day>
  8948. <time>09:38 PM</time>
  8949. <predictions_in_ft>11.8</predictions_in_ft>
  8950. <predictions_in_cm>360</predictions_in_cm>
  8951. <highlow>H</highlow>
  8952. </item>
  8953. <item>
  8954. <date>2013/10/17</date>
  8955. <day>Thu</day>
  8956. <time>03:50 AM</time>
  8957. <predictions_in_ft>-0.5</predictions_in_ft>
  8958. <predictions_in_cm>-15</predictions_in_cm>
  8959. <highlow>L</highlow>
  8960. </item>
  8961. <item>
  8962. <date>2013/10/17</date>
  8963. <day>Thu</day>
  8964. <time>10:02 AM</time>
  8965. <predictions_in_ft>12.1</predictions_in_ft>
  8966. <predictions_in_cm>369</predictions_in_cm>
  8967. <highlow>H</highlow>
  8968. </item>
  8969. <item>
  8970. <date>2013/10/17</date>
  8971. <day>Thu</day>
  8972. <time>04:19 PM</time>
  8973. <predictions_in_ft>-0.8</predictions_in_ft>
  8974. <predictions_in_cm>-24</predictions_in_cm>
  8975. <highlow>L</highlow>
  8976. </item>
  8977. <item>
  8978. <date>2013/10/17</date>
  8979. <day>Thu</day>
  8980. <time>10:29 PM</time>
  8981. <predictions_in_ft>11.9</predictions_in_ft>
  8982. <predictions_in_cm>363</predictions_in_cm>
  8983. <highlow>H</highlow>
  8984. </item>
  8985. <item>
  8986. <date>2013/10/18</date>
  8987. <day>Fri</day>
  8988. <time>04:38 AM</time>
  8989. <predictions_in_ft>-0.6</predictions_in_ft>
  8990. <predictions_in_cm>-18</predictions_in_cm>
  8991. <highlow>L</highlow>
  8992. </item>
  8993. <item>
  8994. <date>2013/10/18</date>
  8995. <day>Fri</day>
  8996. <time>10:49 AM</time>
  8997. <predictions_in_ft>12.3</predictions_in_ft>
  8998. <predictions_in_cm>375</predictions_in_cm>
  8999. <highlow>H</highlow>
  9000. </item>
  9001. <item>
  9002. <date>2013/10/18</date>
  9003. <day>Fri</day>
  9004. <time>05:07 PM</time>
  9005. <predictions_in_ft>-1.0</predictions_in_ft>
  9006. <predictions_in_cm>-30</predictions_in_cm>
  9007. <highlow>L</highlow>
  9008. </item>
  9009. <item>
  9010. <date>2013/10/18</date>
  9011. <day>Fri</day>
  9012. <time>11:16 PM</time>
  9013. <predictions_in_ft>11.8</predictions_in_ft>
  9014. <predictions_in_cm>360</predictions_in_cm>
  9015. <highlow>H</highlow>
  9016. </item>
  9017. <item>
  9018. <date>2013/10/19</date>
  9019. <day>Sat</day>
  9020. <time>05:23 AM</time>
  9021. <predictions_in_ft>-0.4</predictions_in_ft>
  9022. <predictions_in_cm>-12</predictions_in_cm>
  9023. <highlow>L</highlow>
  9024. </item>
  9025. <item>
  9026. <date>2013/10/19</date>
  9027. <day>Sat</day>
  9028. <time>11:33 AM</time>
  9029. <predictions_in_ft>12.3</predictions_in_ft>
  9030. <predictions_in_cm>375</predictions_in_cm>
  9031. <highlow>H</highlow>
  9032. </item>
  9033. <item>
  9034. <date>2013/10/19</date>
  9035. <day>Sat</day>
  9036. <time>05:52 PM</time>
  9037. <predictions_in_ft>-1.0</predictions_in_ft>
  9038. <predictions_in_cm>-30</predictions_in_cm>
  9039. <highlow>L</highlow>
  9040. </item>
  9041. <item>
  9042. <date>2013/10/20</date>
  9043. <day>Sun</day>
  9044. <time>12:01 AM</time>
  9045. <predictions_in_ft>11.6</predictions_in_ft>
  9046. <predictions_in_cm>354</predictions_in_cm>
  9047. <highlow>H</highlow>
  9048. </item>
  9049. <item>
  9050. <date>2013/10/20</date>
  9051. <day>Sun</day>
  9052. <time>06:06 AM</time>
  9053. <predictions_in_ft>-0.1</predictions_in_ft>
  9054. <predictions_in_cm>-3</predictions_in_cm>
  9055. <highlow>L</highlow>
  9056. </item>
  9057. <item>
  9058. <date>2013/10/20</date>
  9059. <day>Sun</day>
  9060. <time>12:14 PM</time>
  9061. <predictions_in_ft>12.1</predictions_in_ft>
  9062. <predictions_in_cm>369</predictions_in_cm>
  9063. <highlow>H</highlow>
  9064. </item>
  9065. <item>
  9066. <date>2013/10/20</date>
  9067. <day>Sun</day>
  9068. <time>06:35 PM</time>
  9069. <predictions_in_ft>-0.8</predictions_in_ft>
  9070. <predictions_in_cm>-24</predictions_in_cm>
  9071. <highlow>L</highlow>
  9072. </item>
  9073. <item>
  9074. <date>2013/10/21</date>
  9075. <day>Mon</day>
  9076. <time>12:44 AM</time>
  9077. <predictions_in_ft>11.2</predictions_in_ft>
  9078. <predictions_in_cm>341</predictions_in_cm>
  9079. <highlow>H</highlow>
  9080. </item>
  9081. <item>
  9082. <date>2013/10/21</date>
  9083. <day>Mon</day>
  9084. <time>06:48 AM</time>
  9085. <predictions_in_ft>0.2</predictions_in_ft>
  9086. <predictions_in_cm>6</predictions_in_cm>
  9087. <highlow>L</highlow>
  9088. </item>
  9089. <item>
  9090. <date>2013/10/21</date>
  9091. <day>Mon</day>
  9092. <time>12:55 PM</time>
  9093. <predictions_in_ft>11.8</predictions_in_ft>
  9094. <predictions_in_cm>360</predictions_in_cm>
  9095. <highlow>H</highlow>
  9096. </item>
  9097. <item>
  9098. <date>2013/10/21</date>
  9099. <day>Mon</day>
  9100. <time>07:17 PM</time>
  9101. <predictions_in_ft>-0.4</predictions_in_ft>
  9102. <predictions_in_cm>-12</predictions_in_cm>
  9103. <highlow>L</highlow>
  9104. </item>
  9105. <item>
  9106. <date>2013/10/22</date>
  9107. <day>Tue</day>
  9108. <time>01:27 AM</time>
  9109. <predictions_in_ft>10.8</predictions_in_ft>
  9110. <predictions_in_cm>329</predictions_in_cm>
  9111. <highlow>H</highlow>
  9112. </item>
  9113. <item>
  9114. <date>2013/10/22</date>
  9115. <day>Tue</day>
  9116. <time>07:29 AM</time>
  9117. <predictions_in_ft>0.7</predictions_in_ft>
  9118. <predictions_in_cm>21</predictions_in_cm>
  9119. <highlow>L</highlow>
  9120. </item>
  9121. <item>
  9122. <date>2013/10/22</date>
  9123. <day>Tue</day>
  9124. <time>01:37 PM</time>
  9125. <predictions_in_ft>11.4</predictions_in_ft>
  9126. <predictions_in_cm>347</predictions_in_cm>
  9127. <highlow>H</highlow>
  9128. </item>
  9129. <item>
  9130. <date>2013/10/22</date>
  9131. <day>Tue</day>
  9132. <time>08:00 PM</time>
  9133. <predictions_in_ft>0.0</predictions_in_ft>
  9134. <predictions_in_cm>0</predictions_in_cm>
  9135. <highlow>L</highlow>
  9136. </item>
  9137. <item>
  9138. <date>2013/10/23</date>
  9139. <day>Wed</day>
  9140. <time>02:10 AM</time>
  9141. <predictions_in_ft>10.4</predictions_in_ft>
  9142. <predictions_in_cm>317</predictions_in_cm>
  9143. <highlow>H</highlow>
  9144. </item>
  9145. <item>
  9146. <date>2013/10/23</date>
  9147. <day>Wed</day>
  9148. <time>08:12 AM</time>
  9149. <predictions_in_ft>1.1</predictions_in_ft>
  9150. <predictions_in_cm>34</predictions_in_cm>
  9151. <highlow>L</highlow>
  9152. </item>
  9153. <item>
  9154. <date>2013/10/23</date>
  9155. <day>Wed</day>
  9156. <time>02:19 PM</time>
  9157. <predictions_in_ft>11.0</predictions_in_ft>
  9158. <predictions_in_cm>335</predictions_in_cm>
  9159. <highlow>H</highlow>
  9160. </item>
  9161. <item>
  9162. <date>2013/10/23</date>
  9163. <day>Wed</day>
  9164. <time>08:44 PM</time>
  9165. <predictions_in_ft>0.4</predictions_in_ft>
  9166. <predictions_in_cm>12</predictions_in_cm>
  9167. <highlow>L</highlow>
  9168. </item>
  9169. <item>
  9170. <date>2013/10/24</date>
  9171. <day>Thu</day>
  9172. <time>02:55 AM</time>
  9173. <predictions_in_ft>9.9</predictions_in_ft>
  9174. <predictions_in_cm>302</predictions_in_cm>
  9175. <highlow>H</highlow>
  9176. </item>
  9177. <item>
  9178. <date>2013/10/24</date>
  9179. <day>Thu</day>
  9180. <time>08:57 AM</time>
  9181. <predictions_in_ft>1.5</predictions_in_ft>
  9182. <predictions_in_cm>46</predictions_in_cm>
  9183. <highlow>L</highlow>
  9184. </item>
  9185. <item>
  9186. <date>2013/10/24</date>
  9187. <day>Thu</day>
  9188. <time>03:04 PM</time>
  9189. <predictions_in_ft>10.6</predictions_in_ft>
  9190. <predictions_in_cm>323</predictions_in_cm>
  9191. <highlow>H</highlow>
  9192. </item>
  9193. <item>
  9194. <date>2013/10/24</date>
  9195. <day>Thu</day>
  9196. <time>09:31 PM</time>
  9197. <predictions_in_ft>0.8</predictions_in_ft>
  9198. <predictions_in_cm>24</predictions_in_cm>
  9199. <highlow>L</highlow>
  9200. </item>
  9201. <item>
  9202. <date>2013/10/25</date>
  9203. <day>Fri</day>
  9204. <time>03:42 AM</time>
  9205. <predictions_in_ft>9.6</predictions_in_ft>
  9206. <predictions_in_cm>293</predictions_in_cm>
  9207. <highlow>H</highlow>
  9208. </item>
  9209. <item>
  9210. <date>2013/10/25</date>
  9211. <day>Fri</day>
  9212. <time>09:46 AM</time>
  9213. <predictions_in_ft>1.9</predictions_in_ft>
  9214. <predictions_in_cm>58</predictions_in_cm>
  9215. <highlow>L</highlow>
  9216. </item>
  9217. <item>
  9218. <date>2013/10/25</date>
  9219. <day>Fri</day>
  9220. <time>03:53 PM</time>
  9221. <predictions_in_ft>10.2</predictions_in_ft>
  9222. <predictions_in_cm>311</predictions_in_cm>
  9223. <highlow>H</highlow>
  9224. </item>
  9225. <item>
  9226. <date>2013/10/25</date>
  9227. <day>Fri</day>
  9228. <time>10:20 PM</time>
  9229. <predictions_in_ft>1.2</predictions_in_ft>
  9230. <predictions_in_cm>37</predictions_in_cm>
  9231. <highlow>L</highlow>
  9232. </item>
  9233. <item>
  9234. <date>2013/10/26</date>
  9235. <day>Sat</day>
  9236. <time>04:33 AM</time>
  9237. <predictions_in_ft>9.4</predictions_in_ft>
  9238. <predictions_in_cm>287</predictions_in_cm>
  9239. <highlow>H</highlow>
  9240. </item>
  9241. <item>
  9242. <date>2013/10/26</date>
  9243. <day>Sat</day>
  9244. <time>10:38 AM</time>
  9245. <predictions_in_ft>2.1</predictions_in_ft>
  9246. <predictions_in_cm>64</predictions_in_cm>
  9247. <highlow>L</highlow>
  9248. </item>
  9249. <item>
  9250. <date>2013/10/26</date>
  9251. <day>Sat</day>
  9252. <time>04:46 PM</time>
  9253. <predictions_in_ft>9.9</predictions_in_ft>
  9254. <predictions_in_cm>302</predictions_in_cm>
  9255. <highlow>H</highlow>
  9256. </item>
  9257. <item>
  9258. <date>2013/10/26</date>
  9259. <day>Sat</day>
  9260. <time>11:12 PM</time>
  9261. <predictions_in_ft>1.4</predictions_in_ft>
  9262. <predictions_in_cm>43</predictions_in_cm>
  9263. <highlow>L</highlow>
  9264. </item>
  9265. <item>
  9266. <date>2013/10/27</date>
  9267. <day>Sun</day>
  9268. <time>05:26 AM</time>
  9269. <predictions_in_ft>9.3</predictions_in_ft>
  9270. <predictions_in_cm>283</predictions_in_cm>
  9271. <highlow>H</highlow>
  9272. </item>
  9273. <item>
  9274. <date>2013/10/27</date>
  9275. <day>Sun</day>
  9276. <time>11:34 AM</time>
  9277. <predictions_in_ft>2.1</predictions_in_ft>
  9278. <predictions_in_cm>64</predictions_in_cm>
  9279. <highlow>L</highlow>
  9280. </item>
  9281. <item>
  9282. <date>2013/10/27</date>
  9283. <day>Sun</day>
  9284. <time>05:41 PM</time>
  9285. <predictions_in_ft>9.8</predictions_in_ft>
  9286. <predictions_in_cm>299</predictions_in_cm>
  9287. <highlow>H</highlow>
  9288. </item>
  9289. <item>
  9290. <date>2013/10/28</date>
  9291. <day>Mon</day>
  9292. <time>12:06 AM</time>
  9293. <predictions_in_ft>1.5</predictions_in_ft>
  9294. <predictions_in_cm>46</predictions_in_cm>
  9295. <highlow>L</highlow>
  9296. </item>
  9297. <item>
  9298. <date>2013/10/28</date>
  9299. <day>Mon</day>
  9300. <time>06:19 AM</time>
  9301. <predictions_in_ft>9.4</predictions_in_ft>
  9302. <predictions_in_cm>287</predictions_in_cm>
  9303. <highlow>H</highlow>
  9304. </item>
  9305. <item>
  9306. <date>2013/10/28</date>
  9307. <day>Mon</day>
  9308. <time>12:30 PM</time>
  9309. <predictions_in_ft>2.0</predictions_in_ft>
  9310. <predictions_in_cm>61</predictions_in_cm>
  9311. <highlow>L</highlow>
  9312. </item>
  9313. <item>
  9314. <date>2013/10/28</date>
  9315. <day>Mon</day>
  9316. <time>06:37 PM</time>
  9317. <predictions_in_ft>9.8</predictions_in_ft>
  9318. <predictions_in_cm>299</predictions_in_cm>
  9319. <highlow>H</highlow>
  9320. </item>
  9321. <item>
  9322. <date>2013/10/29</date>
  9323. <day>Tue</day>
  9324. <time>12:58 AM</time>
  9325. <predictions_in_ft>1.4</predictions_in_ft>
  9326. <predictions_in_cm>43</predictions_in_cm>
  9327. <highlow>L</highlow>
  9328. </item>
  9329. <item>
  9330. <date>2013/10/29</date>
  9331. <day>Tue</day>
  9332. <time>07:11 AM</time>
  9333. <predictions_in_ft>9.7</predictions_in_ft>
  9334. <predictions_in_cm>296</predictions_in_cm>
  9335. <highlow>H</highlow>
  9336. </item>
  9337. <item>
  9338. <date>2013/10/29</date>
  9339. <day>Tue</day>
  9340. <time>01:24 PM</time>
  9341. <predictions_in_ft>1.7</predictions_in_ft>
  9342. <predictions_in_cm>52</predictions_in_cm>
  9343. <highlow>L</highlow>
  9344. </item>
  9345. <item>
  9346. <date>2013/10/29</date>
  9347. <day>Tue</day>
  9348. <time>07:31 PM</time>
  9349. <predictions_in_ft>9.9</predictions_in_ft>
  9350. <predictions_in_cm>302</predictions_in_cm>
  9351. <highlow>H</highlow>
  9352. </item>
  9353. <item>
  9354. <date>2013/10/30</date>
  9355. <day>Wed</day>
  9356. <time>01:48 AM</time>
  9357. <predictions_in_ft>1.2</predictions_in_ft>
  9358. <predictions_in_cm>37</predictions_in_cm>
  9359. <highlow>L</highlow>
  9360. </item>
  9361. <item>
  9362. <date>2013/10/30</date>
  9363. <day>Wed</day>
  9364. <time>08:00 AM</time>
  9365. <predictions_in_ft>10.1</predictions_in_ft>
  9366. <predictions_in_cm>308</predictions_in_cm>
  9367. <highlow>H</highlow>
  9368. </item>
  9369. <item>
  9370. <date>2013/10/30</date>
  9371. <day>Wed</day>
  9372. <time>02:15 PM</time>
  9373. <predictions_in_ft>1.2</predictions_in_ft>
  9374. <predictions_in_cm>37</predictions_in_cm>
  9375. <highlow>L</highlow>
  9376. </item>
  9377. <item>
  9378. <date>2013/10/30</date>
  9379. <day>Wed</day>
  9380. <time>08:22 PM</time>
  9381. <predictions_in_ft>10.2</predictions_in_ft>
  9382. <predictions_in_cm>311</predictions_in_cm>
  9383. <highlow>H</highlow>
  9384. </item>
  9385. <item>
  9386. <date>2013/10/31</date>
  9387. <day>Thu</day>
  9388. <time>02:34 AM</time>
  9389. <predictions_in_ft>0.9</predictions_in_ft>
  9390. <predictions_in_cm>27</predictions_in_cm>
  9391. <highlow>L</highlow>
  9392. </item>
  9393. <item>
  9394. <date>2013/10/31</date>
  9395. <day>Thu</day>
  9396. <time>08:45 AM</time>
  9397. <predictions_in_ft>10.7</predictions_in_ft>
  9398. <predictions_in_cm>326</predictions_in_cm>
  9399. <highlow>H</highlow>
  9400. </item>
  9401. <item>
  9402. <date>2013/10/31</date>
  9403. <day>Thu</day>
  9404. <time>03:02 PM</time>
  9405. <predictions_in_ft>0.7</predictions_in_ft>
  9406. <predictions_in_cm>21</predictions_in_cm>
  9407. <highlow>L</highlow>
  9408. </item>
  9409. <item>
  9410. <date>2013/10/31</date>
  9411. <day>Thu</day>
  9412. <time>09:09 PM</time>
  9413. <predictions_in_ft>10.6</predictions_in_ft>
  9414. <predictions_in_cm>323</predictions_in_cm>
  9415. <highlow>H</highlow>
  9416. </item>
  9417. <item>
  9418. <date>2013/11/01</date>
  9419. <day>Fri</day>
  9420. <time>03:18 AM</time>
  9421. <predictions_in_ft>0.6</predictions_in_ft>
  9422. <predictions_in_cm>18</predictions_in_cm>
  9423. <highlow>L</highlow>
  9424. </item>
  9425. <item>
  9426. <date>2013/11/01</date>
  9427. <day>Fri</day>
  9428. <time>09:28 AM</time>
  9429. <predictions_in_ft>11.3</predictions_in_ft>
  9430. <predictions_in_cm>344</predictions_in_cm>
  9431. <highlow>H</highlow>
  9432. </item>
  9433. <item>
  9434. <date>2013/11/01</date>
  9435. <day>Fri</day>
  9436. <time>03:47 PM</time>
  9437. <predictions_in_ft>0.1</predictions_in_ft>
  9438. <predictions_in_cm>3</predictions_in_cm>
  9439. <highlow>L</highlow>
  9440. </item>
  9441. <item>
  9442. <date>2013/11/01</date>
  9443. <day>Fri</day>
  9444. <time>09:54 PM</time>
  9445. <predictions_in_ft>10.9</predictions_in_ft>
  9446. <predictions_in_cm>332</predictions_in_cm>
  9447. <highlow>H</highlow>
  9448. </item>
  9449. <item>
  9450. <date>2013/11/02</date>
  9451. <day>Sat</day>
  9452. <time>04:01 AM</time>
  9453. <predictions_in_ft>0.2</predictions_in_ft>
  9454. <predictions_in_cm>6</predictions_in_cm>
  9455. <highlow>L</highlow>
  9456. </item>
  9457. <item>
  9458. <date>2013/11/02</date>
  9459. <day>Sat</day>
  9460. <time>10:10 AM</time>
  9461. <predictions_in_ft>11.8</predictions_in_ft>
  9462. <predictions_in_cm>360</predictions_in_cm>
  9463. <highlow>H</highlow>
  9464. </item>
  9465. <item>
  9466. <date>2013/11/02</date>
  9467. <day>Sat</day>
  9468. <time>04:30 PM</time>
  9469. <predictions_in_ft>-0.5</predictions_in_ft>
  9470. <predictions_in_cm>-15</predictions_in_cm>
  9471. <highlow>L</highlow>
  9472. </item>
  9473. <item>
  9474. <date>2013/11/02</date>
  9475. <day>Sat</day>
  9476. <time>10:39 PM</time>
  9477. <predictions_in_ft>11.3</predictions_in_ft>
  9478. <predictions_in_cm>344</predictions_in_cm>
  9479. <highlow>H</highlow>
  9480. </item>
  9481. <item>
  9482. <date>2013/11/03</date>
  9483. <day>Sun</day>
  9484. <time>03:43 AM</time>
  9485. <predictions_in_ft>-0.1</predictions_in_ft>
  9486. <predictions_in_cm>-3</predictions_in_cm>
  9487. <highlow>L</highlow>
  9488. </item>
  9489. <item>
  9490. <date>2013/11/03</date>
  9491. <day>Sun</day>
  9492. <time>09:52 AM</time>
  9493. <predictions_in_ft>12.3</predictions_in_ft>
  9494. <predictions_in_cm>375</predictions_in_cm>
  9495. <highlow>H</highlow>
  9496. </item>
  9497. <item>
  9498. <date>2013/11/03</date>
  9499. <day>Sun</day>
  9500. <time>04:14 PM</time>
  9501. <predictions_in_ft>-1.0</predictions_in_ft>
  9502. <predictions_in_cm>-30</predictions_in_cm>
  9503. <highlow>L</highlow>
  9504. </item>
  9505. <item>
  9506. <date>2013/11/03</date>
  9507. <day>Sun</day>
  9508. <time>10:23 PM</time>
  9509. <predictions_in_ft>11.5</predictions_in_ft>
  9510. <predictions_in_cm>351</predictions_in_cm>
  9511. <highlow>H</highlow>
  9512. </item>
  9513. <item>
  9514. <date>2013/11/04</date>
  9515. <day>Mon</day>
  9516. <time>04:26 AM</time>
  9517. <predictions_in_ft>-0.3</predictions_in_ft>
  9518. <predictions_in_cm>-9</predictions_in_cm>
  9519. <highlow>L</highlow>
  9520. </item>
  9521. <item>
  9522. <date>2013/11/04</date>
  9523. <day>Mon</day>
  9524. <time>10:36 AM</time>
  9525. <predictions_in_ft>12.7</predictions_in_ft>
  9526. <predictions_in_cm>387</predictions_in_cm>
  9527. <highlow>H</highlow>
  9528. </item>
  9529. <item>
  9530. <date>2013/11/04</date>
  9531. <day>Mon</day>
  9532. <time>04:59 PM</time>
  9533. <predictions_in_ft>-1.3</predictions_in_ft>
  9534. <predictions_in_cm>-40</predictions_in_cm>
  9535. <highlow>L</highlow>
  9536. </item>
  9537. <item>
  9538. <date>2013/11/04</date>
  9539. <day>Mon</day>
  9540. <time>11:09 PM</time>
  9541. <predictions_in_ft>11.6</predictions_in_ft>
  9542. <predictions_in_cm>354</predictions_in_cm>
  9543. <highlow>H</highlow>
  9544. </item>
  9545. <item>
  9546. <date>2013/11/05</date>
  9547. <day>Tue</day>
  9548. <time>05:12 AM</time>
  9549. <predictions_in_ft>-0.3</predictions_in_ft>
  9550. <predictions_in_cm>-9</predictions_in_cm>
  9551. <highlow>L</highlow>
  9552. </item>
  9553. <item>
  9554. <date>2013/11/05</date>
  9555. <day>Tue</day>
  9556. <time>11:22 AM</time>
  9557. <predictions_in_ft>12.9</predictions_in_ft>
  9558. <predictions_in_cm>393</predictions_in_cm>
  9559. <highlow>H</highlow>
  9560. </item>
  9561. <item>
  9562. <date>2013/11/05</date>
  9563. <day>Tue</day>
  9564. <time>05:47 PM</time>
  9565. <predictions_in_ft>-1.4</predictions_in_ft>
  9566. <predictions_in_cm>-43</predictions_in_cm>
  9567. <highlow>L</highlow>
  9568. </item>
  9569. <item>
  9570. <date>2013/11/05</date>
  9571. <day>Tue</day>
  9572. <time>11:58 PM</time>
  9573. <predictions_in_ft>11.6</predictions_in_ft>
  9574. <predictions_in_cm>354</predictions_in_cm>
  9575. <highlow>H</highlow>
  9576. </item>
  9577. <item>
  9578. <date>2013/11/06</date>
  9579. <day>Wed</day>
  9580. <time>06:00 AM</time>
  9581. <predictions_in_ft>-0.3</predictions_in_ft>
  9582. <predictions_in_cm>-9</predictions_in_cm>
  9583. <highlow>L</highlow>
  9584. </item>
  9585. <item>
  9586. <date>2013/11/06</date>
  9587. <day>Wed</day>
  9588. <time>12:12 PM</time>
  9589. <predictions_in_ft>12.8</predictions_in_ft>
  9590. <predictions_in_cm>390</predictions_in_cm>
  9591. <highlow>H</highlow>
  9592. </item>
  9593. <item>
  9594. <date>2013/11/06</date>
  9595. <day>Wed</day>
  9596. <time>06:38 PM</time>
  9597. <predictions_in_ft>-1.3</predictions_in_ft>
  9598. <predictions_in_cm>-40</predictions_in_cm>
  9599. <highlow>L</highlow>
  9600. </item>
  9601. <item>
  9602. <date>2013/11/07</date>
  9603. <day>Thu</day>
  9604. <time>12:50 AM</time>
  9605. <predictions_in_ft>11.4</predictions_in_ft>
  9606. <predictions_in_cm>347</predictions_in_cm>
  9607. <highlow>H</highlow>
  9608. </item>
  9609. <item>
  9610. <date>2013/11/07</date>
  9611. <day>Thu</day>
  9612. <time>06:53 AM</time>
  9613. <predictions_in_ft>-0.1</predictions_in_ft>
  9614. <predictions_in_cm>-3</predictions_in_cm>
  9615. <highlow>L</highlow>
  9616. </item>
  9617. <item>
  9618. <date>2013/11/07</date>
  9619. <day>Thu</day>
  9620. <time>01:05 PM</time>
  9621. <predictions_in_ft>12.6</predictions_in_ft>
  9622. <predictions_in_cm>384</predictions_in_cm>
  9623. <highlow>H</highlow>
  9624. </item>
  9625. <item>
  9626. <date>2013/11/07</date>
  9627. <day>Thu</day>
  9628. <time>07:32 PM</time>
  9629. <predictions_in_ft>-1.1</predictions_in_ft>
  9630. <predictions_in_cm>-34</predictions_in_cm>
  9631. <highlow>L</highlow>
  9632. </item>
  9633. <item>
  9634. <date>2013/11/08</date>
  9635. <day>Fri</day>
  9636. <time>01:45 AM</time>
  9637. <predictions_in_ft>11.2</predictions_in_ft>
  9638. <predictions_in_cm>341</predictions_in_cm>
  9639. <highlow>H</highlow>
  9640. </item>
  9641. <item>
  9642. <date>2013/11/08</date>
  9643. <day>Fri</day>
  9644. <time>07:51 AM</time>
  9645. <predictions_in_ft>0.2</predictions_in_ft>
  9646. <predictions_in_cm>6</predictions_in_cm>
  9647. <highlow>L</highlow>
  9648. </item>
  9649. <item>
  9650. <date>2013/11/08</date>
  9651. <day>Fri</day>
  9652. <time>02:03 PM</time>
  9653. <predictions_in_ft>12.2</predictions_in_ft>
  9654. <predictions_in_cm>372</predictions_in_cm>
  9655. <highlow>H</highlow>
  9656. </item>
  9657. <item>
  9658. <date>2013/11/08</date>
  9659. <day>Fri</day>
  9660. <time>08:31 PM</time>
  9661. <predictions_in_ft>-0.8</predictions_in_ft>
  9662. <predictions_in_cm>-24</predictions_in_cm>
  9663. <highlow>L</highlow>
  9664. </item>
  9665. <item>
  9666. <date>2013/11/09</date>
  9667. <day>Sat</day>
  9668. <time>02:46 AM</time>
  9669. <predictions_in_ft>11.0</predictions_in_ft>
  9670. <predictions_in_cm>335</predictions_in_cm>
  9671. <highlow>H</highlow>
  9672. </item>
  9673. <item>
  9674. <date>2013/11/09</date>
  9675. <day>Sat</day>
  9676. <time>08:53 AM</time>
  9677. <predictions_in_ft>0.4</predictions_in_ft>
  9678. <predictions_in_cm>12</predictions_in_cm>
  9679. <highlow>L</highlow>
  9680. </item>
  9681. <item>
  9682. <date>2013/11/09</date>
  9683. <day>Sat</day>
  9684. <time>03:06 PM</time>
  9685. <predictions_in_ft>11.8</predictions_in_ft>
  9686. <predictions_in_cm>360</predictions_in_cm>
  9687. <highlow>H</highlow>
  9688. </item>
  9689. <item>
  9690. <date>2013/11/09</date>
  9691. <day>Sat</day>
  9692. <time>09:33 PM</time>
  9693. <predictions_in_ft>-0.4</predictions_in_ft>
  9694. <predictions_in_cm>-12</predictions_in_cm>
  9695. <highlow>L</highlow>
  9696. </item>
  9697. <item>
  9698. <date>2013/11/10</date>
  9699. <day>Sun</day>
  9700. <time>03:49 AM</time>
  9701. <predictions_in_ft>10.9</predictions_in_ft>
  9702. <predictions_in_cm>332</predictions_in_cm>
  9703. <highlow>H</highlow>
  9704. </item>
  9705. <item>
  9706. <date>2013/11/10</date>
  9707. <day>Sun</day>
  9708. <time>10:00 AM</time>
  9709. <predictions_in_ft>0.6</predictions_in_ft>
  9710. <predictions_in_cm>18</predictions_in_cm>
  9711. <highlow>L</highlow>
  9712. </item>
  9713. <item>
  9714. <date>2013/11/10</date>
  9715. <day>Sun</day>
  9716. <time>04:12 PM</time>
  9717. <predictions_in_ft>11.4</predictions_in_ft>
  9718. <predictions_in_cm>347</predictions_in_cm>
  9719. <highlow>H</highlow>
  9720. </item>
  9721. <item>
  9722. <date>2013/11/10</date>
  9723. <day>Sun</day>
  9724. <time>10:37 PM</time>
  9725. <predictions_in_ft>-0.2</predictions_in_ft>
  9726. <predictions_in_cm>-6</predictions_in_cm>
  9727. <highlow>L</highlow>
  9728. </item>
  9729. <item>
  9730. <date>2013/11/11</date>
  9731. <day>Mon</day>
  9732. <time>04:54 AM</time>
  9733. <predictions_in_ft>11.0</predictions_in_ft>
  9734. <predictions_in_cm>335</predictions_in_cm>
  9735. <highlow>H</highlow>
  9736. </item>
  9737. <item>
  9738. <date>2013/11/11</date>
  9739. <day>Mon</day>
  9740. <time>11:09 AM</time>
  9741. <predictions_in_ft>0.5</predictions_in_ft>
  9742. <predictions_in_cm>15</predictions_in_cm>
  9743. <highlow>L</highlow>
  9744. </item>
  9745. <item>
  9746. <date>2013/11/11</date>
  9747. <day>Mon</day>
  9748. <time>05:20 PM</time>
  9749. <predictions_in_ft>11.1</predictions_in_ft>
  9750. <predictions_in_cm>338</predictions_in_cm>
  9751. <highlow>H</highlow>
  9752. </item>
  9753. <item>
  9754. <date>2013/11/11</date>
  9755. <day>Mon</day>
  9756. <time>11:41 PM</time>
  9757. <predictions_in_ft>0.0</predictions_in_ft>
  9758. <predictions_in_cm>0</predictions_in_cm>
  9759. <highlow>L</highlow>
  9760. </item>
  9761. <item>
  9762. <date>2013/11/12</date>
  9763. <day>Tue</day>
  9764. <time>05:58 AM</time>
  9765. <predictions_in_ft>11.2</predictions_in_ft>
  9766. <predictions_in_cm>341</predictions_in_cm>
  9767. <highlow>H</highlow>
  9768. </item>
  9769. <item>
  9770. <date>2013/11/12</date>
  9771. <day>Tue</day>
  9772. <time>12:15 PM</time>
  9773. <predictions_in_ft>0.3</predictions_in_ft>
  9774. <predictions_in_cm>9</predictions_in_cm>
  9775. <highlow>L</highlow>
  9776. </item>
  9777. <item>
  9778. <date>2013/11/12</date>
  9779. <day>Tue</day>
  9780. <time>06:26 PM</time>
  9781. <predictions_in_ft>11.1</predictions_in_ft>
  9782. <predictions_in_cm>338</predictions_in_cm>
  9783. <highlow>H</highlow>
  9784. </item>
  9785. <item>
  9786. <date>2013/11/13</date>
  9787. <day>Wed</day>
  9788. <time>12:42 AM</time>
  9789. <predictions_in_ft>0.0</predictions_in_ft>
  9790. <predictions_in_cm>0</predictions_in_cm>
  9791. <highlow>L</highlow>
  9792. </item>
  9793. <item>
  9794. <date>2013/11/13</date>
  9795. <day>Wed</day>
  9796. <time>06:58 AM</time>
  9797. <predictions_in_ft>11.4</predictions_in_ft>
  9798. <predictions_in_cm>347</predictions_in_cm>
  9799. <highlow>H</highlow>
  9800. </item>
  9801. <item>
  9802. <date>2013/11/13</date>
  9803. <day>Wed</day>
  9804. <time>01:17 PM</time>
  9805. <predictions_in_ft>0.0</predictions_in_ft>
  9806. <predictions_in_cm>0</predictions_in_cm>
  9807. <highlow>L</highlow>
  9808. </item>
  9809. <item>
  9810. <date>2013/11/13</date>
  9811. <day>Wed</day>
  9812. <time>07:27 PM</time>
  9813. <predictions_in_ft>11.1</predictions_in_ft>
  9814. <predictions_in_cm>338</predictions_in_cm>
  9815. <highlow>H</highlow>
  9816. </item>
  9817. <item>
  9818. <date>2013/11/14</date>
  9819. <day>Thu</day>
  9820. <time>01:38 AM</time>
  9821. <predictions_in_ft>0.0</predictions_in_ft>
  9822. <predictions_in_cm>0</predictions_in_cm>
  9823. <highlow>L</highlow>
  9824. </item>
  9825. <item>
  9826. <date>2013/11/14</date>
  9827. <day>Thu</day>
  9828. <time>07:53 AM</time>
  9829. <predictions_in_ft>11.7</predictions_in_ft>
  9830. <predictions_in_cm>357</predictions_in_cm>
  9831. <highlow>H</highlow>
  9832. </item>
  9833. <item>
  9834. <date>2013/11/14</date>
  9835. <day>Thu</day>
  9836. <time>02:13 PM</time>
  9837. <predictions_in_ft>-0.3</predictions_in_ft>
  9838. <predictions_in_cm>-9</predictions_in_cm>
  9839. <highlow>L</highlow>
  9840. </item>
  9841. <item>
  9842. <date>2013/11/14</date>
  9843. <day>Thu</day>
  9844. <time>08:23 PM</time>
  9845. <predictions_in_ft>11.1</predictions_in_ft>
  9846. <predictions_in_cm>338</predictions_in_cm>
  9847. <highlow>H</highlow>
  9848. </item>
  9849. <item>
  9850. <date>2013/11/15</date>
  9851. <day>Fri</day>
  9852. <time>02:30 AM</time>
  9853. <predictions_in_ft>0.0</predictions_in_ft>
  9854. <predictions_in_cm>0</predictions_in_cm>
  9855. <highlow>L</highlow>
  9856. </item>
  9857. <item>
  9858. <date>2013/11/15</date>
  9859. <day>Fri</day>
  9860. <time>08:43 AM</time>
  9861. <predictions_in_ft>12.0</predictions_in_ft>
  9862. <predictions_in_cm>366</predictions_in_cm>
  9863. <highlow>H</highlow>
  9864. </item>
  9865. <item>
  9866. <date>2013/11/15</date>
  9867. <day>Fri</day>
  9868. <time>03:04 PM</time>
  9869. <predictions_in_ft>-0.6</predictions_in_ft>
  9870. <predictions_in_cm>-18</predictions_in_cm>
  9871. <highlow>L</highlow>
  9872. </item>
  9873. <item>
  9874. <date>2013/11/15</date>
  9875. <day>Fri</day>
  9876. <time>09:13 PM</time>
  9877. <predictions_in_ft>11.2</predictions_in_ft>
  9878. <predictions_in_cm>341</predictions_in_cm>
  9879. <highlow>H</highlow>
  9880. </item>
  9881. <item>
  9882. <date>2013/11/16</date>
  9883. <day>Sat</day>
  9884. <time>03:18 AM</time>
  9885. <predictions_in_ft>0.1</predictions_in_ft>
  9886. <predictions_in_cm>3</predictions_in_cm>
  9887. <highlow>L</highlow>
  9888. </item>
  9889. <item>
  9890. <date>2013/11/16</date>
  9891. <day>Sat</day>
  9892. <time>09:29 AM</time>
  9893. <predictions_in_ft>12.1</predictions_in_ft>
  9894. <predictions_in_cm>369</predictions_in_cm>
  9895. <highlow>H</highlow>
  9896. </item>
  9897. <item>
  9898. <date>2013/11/16</date>
  9899. <day>Sat</day>
  9900. <time>03:51 PM</time>
  9901. <predictions_in_ft>-0.7</predictions_in_ft>
  9902. <predictions_in_cm>-21</predictions_in_cm>
  9903. <highlow>L</highlow>
  9904. </item>
  9905. <item>
  9906. <date>2013/11/16</date>
  9907. <day>Sat</day>
  9908. <time>10:00 PM</time>
  9909. <predictions_in_ft>11.1</predictions_in_ft>
  9910. <predictions_in_cm>338</predictions_in_cm>
  9911. <highlow>H</highlow>
  9912. </item>
  9913. <item>
  9914. <date>2013/11/17</date>
  9915. <day>Sun</day>
  9916. <time>04:03 AM</time>
  9917. <predictions_in_ft>0.2</predictions_in_ft>
  9918. <predictions_in_cm>6</predictions_in_cm>
  9919. <highlow>L</highlow>
  9920. </item>
  9921. <item>
  9922. <date>2013/11/17</date>
  9923. <day>Sun</day>
  9924. <time>10:12 AM</time>
  9925. <predictions_in_ft>12.0</predictions_in_ft>
  9926. <predictions_in_cm>366</predictions_in_cm>
  9927. <highlow>H</highlow>
  9928. </item>
  9929. <item>
  9930. <date>2013/11/17</date>
  9931. <day>Sun</day>
  9932. <time>04:34 PM</time>
  9933. <predictions_in_ft>-0.7</predictions_in_ft>
  9934. <predictions_in_cm>-21</predictions_in_cm>
  9935. <highlow>L</highlow>
  9936. </item>
  9937. <item>
  9938. <date>2013/11/17</date>
  9939. <day>Sun</day>
  9940. <time>10:43 PM</time>
  9941. <predictions_in_ft>11.0</predictions_in_ft>
  9942. <predictions_in_cm>335</predictions_in_cm>
  9943. <highlow>H</highlow>
  9944. </item>
  9945. <item>
  9946. <date>2013/11/18</date>
  9947. <day>Mon</day>
  9948. <time>04:44 AM</time>
  9949. <predictions_in_ft>0.4</predictions_in_ft>
  9950. <predictions_in_cm>12</predictions_in_cm>
  9951. <highlow>L</highlow>
  9952. </item>
  9953. <item>
  9954. <date>2013/11/18</date>
  9955. <day>Mon</day>
  9956. <time>10:52 AM</time>
  9957. <predictions_in_ft>11.9</predictions_in_ft>
  9958. <predictions_in_cm>363</predictions_in_cm>
  9959. <highlow>H</highlow>
  9960. </item>
  9961. <item>
  9962. <date>2013/11/18</date>
  9963. <day>Mon</day>
  9964. <time>05:15 PM</time>
  9965. <predictions_in_ft>-0.5</predictions_in_ft>
  9966. <predictions_in_cm>-15</predictions_in_cm>
  9967. <highlow>L</highlow>
  9968. </item>
  9969. <item>
  9970. <date>2013/11/18</date>
  9971. <day>Mon</day>
  9972. <time>11:24 PM</time>
  9973. <predictions_in_ft>10.8</predictions_in_ft>
  9974. <predictions_in_cm>329</predictions_in_cm>
  9975. <highlow>H</highlow>
  9976. </item>
  9977. <item>
  9978. <date>2013/11/19</date>
  9979. <day>Tue</day>
  9980. <time>05:24 AM</time>
  9981. <predictions_in_ft>0.7</predictions_in_ft>
  9982. <predictions_in_cm>21</predictions_in_cm>
  9983. <highlow>L</highlow>
  9984. </item>
  9985. <item>
  9986. <date>2013/11/19</date>
  9987. <day>Tue</day>
  9988. <time>11:31 AM</time>
  9989. <predictions_in_ft>11.6</predictions_in_ft>
  9990. <predictions_in_cm>354</predictions_in_cm>
  9991. <highlow>H</highlow>
  9992. </item>
  9993. <item>
  9994. <date>2013/11/19</date>
  9995. <day>Tue</day>
  9996. <time>05:54 PM</time>
  9997. <predictions_in_ft>-0.3</predictions_in_ft>
  9998. <predictions_in_cm>-9</predictions_in_cm>
  9999. <highlow>L</highlow>
  10000. </item>
  10001. <item>
  10002. <date>2013/11/20</date>
  10003. <day>Wed</day>
  10004. <time>12:03 AM</time>
  10005. <predictions_in_ft>10.5</predictions_in_ft>
  10006. <predictions_in_cm>320</predictions_in_cm>
  10007. <highlow>H</highlow>
  10008. </item>
  10009. <item>
  10010. <date>2013/11/20</date>
  10011. <day>Wed</day>
  10012. <time>06:03 AM</time>
  10013. <predictions_in_ft>0.9</predictions_in_ft>
  10014. <predictions_in_cm>27</predictions_in_cm>
  10015. <highlow>L</highlow>
  10016. </item>
  10017. <item>
  10018. <date>2013/11/20</date>
  10019. <day>Wed</day>
  10020. <time>12:10 PM</time>
  10021. <predictions_in_ft>11.4</predictions_in_ft>
  10022. <predictions_in_cm>347</predictions_in_cm>
  10023. <highlow>H</highlow>
  10024. </item>
  10025. <item>
  10026. <date>2013/11/20</date>
  10027. <day>Wed</day>
  10028. <time>06:34 PM</time>
  10029. <predictions_in_ft>0.0</predictions_in_ft>
  10030. <predictions_in_cm>0</predictions_in_cm>
  10031. <highlow>L</highlow>
  10032. </item>
  10033. <item>
  10034. <date>2013/11/21</date>
  10035. <day>Thu</day>
  10036. <time>12:43 AM</time>
  10037. <predictions_in_ft>10.2</predictions_in_ft>
  10038. <predictions_in_cm>311</predictions_in_cm>
  10039. <highlow>H</highlow>
  10040. </item>
  10041. <item>
  10042. <date>2013/11/21</date>
  10043. <day>Thu</day>
  10044. <time>06:43 AM</time>
  10045. <predictions_in_ft>1.2</predictions_in_ft>
  10046. <predictions_in_cm>37</predictions_in_cm>
  10047. <highlow>L</highlow>
  10048. </item>
  10049. <item>
  10050. <date>2013/11/21</date>
  10051. <day>Thu</day>
  10052. <time>12:49 PM</time>
  10053. <predictions_in_ft>11.0</predictions_in_ft>
  10054. <predictions_in_cm>335</predictions_in_cm>
  10055. <highlow>H</highlow>
  10056. </item>
  10057. <item>
  10058. <date>2013/11/21</date>
  10059. <day>Thu</day>
  10060. <time>07:14 PM</time>
  10061. <predictions_in_ft>0.3</predictions_in_ft>
  10062. <predictions_in_cm>9</predictions_in_cm>
  10063. <highlow>L</highlow>
  10064. </item>
  10065. <item>
  10066. <date>2013/11/22</date>
  10067. <day>Fri</day>
  10068. <time>01:24 AM</time>
  10069. <predictions_in_ft>10.0</predictions_in_ft>
  10070. <predictions_in_cm>305</predictions_in_cm>
  10071. <highlow>H</highlow>
  10072. </item>
  10073. <item>
  10074. <date>2013/11/22</date>
  10075. <day>Fri</day>
  10076. <time>07:25 AM</time>
  10077. <predictions_in_ft>1.5</predictions_in_ft>
  10078. <predictions_in_cm>46</predictions_in_cm>
  10079. <highlow>L</highlow>
  10080. </item>
  10081. <item>
  10082. <date>2013/11/22</date>
  10083. <day>Fri</day>
  10084. <time>01:31 PM</time>
  10085. <predictions_in_ft>10.7</predictions_in_ft>
  10086. <predictions_in_cm>326</predictions_in_cm>
  10087. <highlow>H</highlow>
  10088. </item>
  10089. <item>
  10090. <date>2013/11/22</date>
  10091. <day>Fri</day>
  10092. <time>07:55 PM</time>
  10093. <predictions_in_ft>0.7</predictions_in_ft>
  10094. <predictions_in_cm>21</predictions_in_cm>
  10095. <highlow>L</highlow>
  10096. </item>
  10097. <item>
  10098. <date>2013/11/23</date>
  10099. <day>Sat</day>
  10100. <time>02:06 AM</time>
  10101. <predictions_in_ft>9.8</predictions_in_ft>
  10102. <predictions_in_cm>299</predictions_in_cm>
  10103. <highlow>H</highlow>
  10104. </item>
  10105. <item>
  10106. <date>2013/11/23</date>
  10107. <day>Sat</day>
  10108. <time>08:09 AM</time>
  10109. <predictions_in_ft>1.7</predictions_in_ft>
  10110. <predictions_in_cm>52</predictions_in_cm>
  10111. <highlow>L</highlow>
  10112. </item>
  10113. <item>
  10114. <date>2013/11/23</date>
  10115. <day>Sat</day>
  10116. <time>02:15 PM</time>
  10117. <predictions_in_ft>10.4</predictions_in_ft>
  10118. <predictions_in_cm>317</predictions_in_cm>
  10119. <highlow>H</highlow>
  10120. </item>
  10121. <item>
  10122. <date>2013/11/23</date>
  10123. <day>Sat</day>
  10124. <time>08:39 PM</time>
  10125. <predictions_in_ft>0.9</predictions_in_ft>
  10126. <predictions_in_cm>27</predictions_in_cm>
  10127. <highlow>L</highlow>
  10128. </item>
  10129. <item>
  10130. <date>2013/11/24</date>
  10131. <day>Sun</day>
  10132. <time>02:51 AM</time>
  10133. <predictions_in_ft>9.7</predictions_in_ft>
  10134. <predictions_in_cm>296</predictions_in_cm>
  10135. <highlow>H</highlow>
  10136. </item>
  10137. <item>
  10138. <date>2013/11/24</date>
  10139. <day>Sun</day>
  10140. <time>08:57 AM</time>
  10141. <predictions_in_ft>1.9</predictions_in_ft>
  10142. <predictions_in_cm>58</predictions_in_cm>
  10143. <highlow>L</highlow>
  10144. </item>
  10145. <item>
  10146. <date>2013/11/24</date>
  10147. <day>Sun</day>
  10148. <time>03:02 PM</time>
  10149. <predictions_in_ft>10.1</predictions_in_ft>
  10150. <predictions_in_cm>308</predictions_in_cm>
  10151. <highlow>H</highlow>
  10152. </item>
  10153. <item>
  10154. <date>2013/11/24</date>
  10155. <day>Sun</day>
  10156. <time>09:25 PM</time>
  10157. <predictions_in_ft>1.2</predictions_in_ft>
  10158. <predictions_in_cm>37</predictions_in_cm>
  10159. <highlow>L</highlow>
  10160. </item>
  10161. <item>
  10162. <date>2013/11/25</date>
  10163. <day>Mon</day>
  10164. <time>03:39 AM</time>
  10165. <predictions_in_ft>9.6</predictions_in_ft>
  10166. <predictions_in_cm>293</predictions_in_cm>
  10167. <highlow>H</highlow>
  10168. </item>
  10169. <item>
  10170. <date>2013/11/25</date>
  10171. <day>Mon</day>
  10172. <time>09:47 AM</time>
  10173. <predictions_in_ft>1.9</predictions_in_ft>
  10174. <predictions_in_cm>58</predictions_in_cm>
  10175. <highlow>L</highlow>
  10176. </item>
  10177. <item>
  10178. <date>2013/11/25</date>
  10179. <day>Mon</day>
  10180. <time>03:53 PM</time>
  10181. <predictions_in_ft>9.8</predictions_in_ft>
  10182. <predictions_in_cm>299</predictions_in_cm>
  10183. <highlow>H</highlow>
  10184. </item>
  10185. <item>
  10186. <date>2013/11/25</date>
  10187. <day>Mon</day>
  10188. <time>10:14 PM</time>
  10189. <predictions_in_ft>1.3</predictions_in_ft>
  10190. <predictions_in_cm>40</predictions_in_cm>
  10191. <highlow>L</highlow>
  10192. </item>
  10193. <item>
  10194. <date>2013/11/26</date>
  10195. <day>Tue</day>
  10196. <time>04:28 AM</time>
  10197. <predictions_in_ft>9.7</predictions_in_ft>
  10198. <predictions_in_cm>296</predictions_in_cm>
  10199. <highlow>H</highlow>
  10200. </item>
  10201. <item>
  10202. <date>2013/11/26</date>
  10203. <day>Tue</day>
  10204. <time>10:41 AM</time>
  10205. <predictions_in_ft>1.9</predictions_in_ft>
  10206. <predictions_in_cm>58</predictions_in_cm>
  10207. <highlow>L</highlow>
  10208. </item>
  10209. <item>
  10210. <date>2013/11/26</date>
  10211. <day>Tue</day>
  10212. <time>04:46 PM</time>
  10213. <predictions_in_ft>9.7</predictions_in_ft>
  10214. <predictions_in_cm>296</predictions_in_cm>
  10215. <highlow>H</highlow>
  10216. </item>
  10217. <item>
  10218. <date>2013/11/26</date>
  10219. <day>Tue</day>
  10220. <time>11:04 PM</time>
  10221. <predictions_in_ft>1.3</predictions_in_ft>
  10222. <predictions_in_cm>40</predictions_in_cm>
  10223. <highlow>L</highlow>
  10224. </item>
  10225. <item>
  10226. <date>2013/11/27</date>
  10227. <day>Wed</day>
  10228. <time>05:19 AM</time>
  10229. <predictions_in_ft>10.0</predictions_in_ft>
  10230. <predictions_in_cm>305</predictions_in_cm>
  10231. <highlow>H</highlow>
  10232. </item>
  10233. <item>
  10234. <date>2013/11/27</date>
  10235. <day>Wed</day>
  10236. <time>11:36 AM</time>
  10237. <predictions_in_ft>1.6</predictions_in_ft>
  10238. <predictions_in_cm>49</predictions_in_cm>
  10239. <highlow>L</highlow>
  10240. </item>
  10241. <item>
  10242. <date>2013/11/27</date>
  10243. <day>Wed</day>
  10244. <time>05:41 PM</time>
  10245. <predictions_in_ft>9.8</predictions_in_ft>
  10246. <predictions_in_cm>299</predictions_in_cm>
  10247. <highlow>H</highlow>
  10248. </item>
  10249. <item>
  10250. <date>2013/11/27</date>
  10251. <day>Wed</day>
  10252. <time>11:55 PM</time>
  10253. <predictions_in_ft>1.2</predictions_in_ft>
  10254. <predictions_in_cm>37</predictions_in_cm>
  10255. <highlow>L</highlow>
  10256. </item>
  10257. <item>
  10258. <date>2013/11/28</date>
  10259. <day>Thu</day>
  10260. <time>06:10 AM</time>
  10261. <predictions_in_ft>10.4</predictions_in_ft>
  10262. <predictions_in_cm>317</predictions_in_cm>
  10263. <highlow>H</highlow>
  10264. </item>
  10265. <item>
  10266. <date>2013/11/28</date>
  10267. <day>Thu</day>
  10268. <time>12:30 PM</time>
  10269. <predictions_in_ft>1.2</predictions_in_ft>
  10270. <predictions_in_cm>37</predictions_in_cm>
  10271. <highlow>L</highlow>
  10272. </item>
  10273. <item>
  10274. <date>2013/11/28</date>
  10275. <day>Thu</day>
  10276. <time>06:36 PM</time>
  10277. <predictions_in_ft>10.0</predictions_in_ft>
  10278. <predictions_in_cm>305</predictions_in_cm>
  10279. <highlow>H</highlow>
  10280. </item>
  10281. <item>
  10282. <date>2013/11/29</date>
  10283. <day>Fri</day>
  10284. <time>12:45 AM</time>
  10285. <predictions_in_ft>1.0</predictions_in_ft>
  10286. <predictions_in_cm>30</predictions_in_cm>
  10287. <highlow>L</highlow>
  10288. </item>
  10289. <item>
  10290. <date>2013/11/29</date>
  10291. <day>Fri</day>
  10292. <time>07:00 AM</time>
  10293. <predictions_in_ft>10.9</predictions_in_ft>
  10294. <predictions_in_cm>332</predictions_in_cm>
  10295. <highlow>H</highlow>
  10296. </item>
  10297. <item>
  10298. <date>2013/11/29</date>
  10299. <day>Fri</day>
  10300. <time>01:22 PM</time>
  10301. <predictions_in_ft>0.6</predictions_in_ft>
  10302. <predictions_in_cm>18</predictions_in_cm>
  10303. <highlow>L</highlow>
  10304. </item>
  10305. <item>
  10306. <date>2013/11/29</date>
  10307. <day>Fri</day>
  10308. <time>07:29 PM</time>
  10309. <predictions_in_ft>10.3</predictions_in_ft>
  10310. <predictions_in_cm>314</predictions_in_cm>
  10311. <highlow>H</highlow>
  10312. </item>
  10313. <item>
  10314. <date>2013/11/30</date>
  10315. <day>Sat</day>
  10316. <time>01:35 AM</time>
  10317. <predictions_in_ft>0.7</predictions_in_ft>
  10318. <predictions_in_cm>21</predictions_in_cm>
  10319. <highlow>L</highlow>
  10320. </item>
  10321. <item>
  10322. <date>2013/11/30</date>
  10323. <day>Sat</day>
  10324. <time>07:49 AM</time>
  10325. <predictions_in_ft>11.5</predictions_in_ft>
  10326. <predictions_in_cm>351</predictions_in_cm>
  10327. <highlow>H</highlow>
  10328. </item>
  10329. <item>
  10330. <date>2013/11/30</date>
  10331. <day>Sat</day>
  10332. <time>02:13 PM</time>
  10333. <predictions_in_ft>-0.1</predictions_in_ft>
  10334. <predictions_in_cm>-3</predictions_in_cm>
  10335. <highlow>L</highlow>
  10336. </item>
  10337. <item>
  10338. <date>2013/11/30</date>
  10339. <day>Sat</day>
  10340. <time>08:21 PM</time>
  10341. <predictions_in_ft>10.7</predictions_in_ft>
  10342. <predictions_in_cm>326</predictions_in_cm>
  10343. <highlow>H</highlow>
  10344. </item>
  10345. <item>
  10346. <date>2013/12/01</date>
  10347. <day>Sun</day>
  10348. <time>02:25 AM</time>
  10349. <predictions_in_ft>0.3</predictions_in_ft>
  10350. <predictions_in_cm>9</predictions_in_cm>
  10351. <highlow>L</highlow>
  10352. </item>
  10353. <item>
  10354. <date>2013/12/01</date>
  10355. <day>Sun</day>
  10356. <time>08:37 AM</time>
  10357. <predictions_in_ft>12.1</predictions_in_ft>
  10358. <predictions_in_cm>369</predictions_in_cm>
  10359. <highlow>H</highlow>
  10360. </item>
  10361. <item>
  10362. <date>2013/12/01</date>
  10363. <day>Sun</day>
  10364. <time>03:02 PM</time>
  10365. <predictions_in_ft>-0.7</predictions_in_ft>
  10366. <predictions_in_cm>-21</predictions_in_cm>
  10367. <highlow>L</highlow>
  10368. </item>
  10369. <item>
  10370. <date>2013/12/01</date>
  10371. <day>Sun</day>
  10372. <time>09:11 PM</time>
  10373. <predictions_in_ft>11.1</predictions_in_ft>
  10374. <predictions_in_cm>338</predictions_in_cm>
  10375. <highlow>H</highlow>
  10376. </item>
  10377. <item>
  10378. <date>2013/12/02</date>
  10379. <day>Mon</day>
  10380. <time>03:13 AM</time>
  10381. <predictions_in_ft>-0.1</predictions_in_ft>
  10382. <predictions_in_cm>-3</predictions_in_cm>
  10383. <highlow>L</highlow>
  10384. </item>
  10385. <item>
  10386. <date>2013/12/02</date>
  10387. <day>Mon</day>
  10388. <time>09:25 AM</time>
  10389. <predictions_in_ft>12.7</predictions_in_ft>
  10390. <predictions_in_cm>387</predictions_in_cm>
  10391. <highlow>H</highlow>
  10392. </item>
  10393. <item>
  10394. <date>2013/12/02</date>
  10395. <day>Mon</day>
  10396. <time>03:51 PM</time>
  10397. <predictions_in_ft>-1.3</predictions_in_ft>
  10398. <predictions_in_cm>-40</predictions_in_cm>
  10399. <highlow>L</highlow>
  10400. </item>
  10401. <item>
  10402. <date>2013/12/02</date>
  10403. <day>Mon</day>
  10404. <time>10:01 PM</time>
  10405. <predictions_in_ft>11.5</predictions_in_ft>
  10406. <predictions_in_cm>351</predictions_in_cm>
  10407. <highlow>H</highlow>
  10408. </item>
  10409. <item>
  10410. <date>2013/12/03</date>
  10411. <day>Tue</day>
  10412. <time>04:02 AM</time>
  10413. <predictions_in_ft>-0.4</predictions_in_ft>
  10414. <predictions_in_cm>-12</predictions_in_cm>
  10415. <highlow>L</highlow>
  10416. </item>
  10417. <item>
  10418. <date>2013/12/03</date>
  10419. <day>Tue</day>
  10420. <time>10:14 AM</time>
  10421. <predictions_in_ft>13.1</predictions_in_ft>
  10422. <predictions_in_cm>399</predictions_in_cm>
  10423. <highlow>H</highlow>
  10424. </item>
  10425. <item>
  10426. <date>2013/12/03</date>
  10427. <day>Tue</day>
  10428. <time>04:40 PM</time>
  10429. <predictions_in_ft>-1.7</predictions_in_ft>
  10430. <predictions_in_cm>-52</predictions_in_cm>
  10431. <highlow>L</highlow>
  10432. </item>
  10433. <item>
  10434. <date>2013/12/03</date>
  10435. <day>Tue</day>
  10436. <time>10:51 PM</time>
  10437. <predictions_in_ft>11.7</predictions_in_ft>
  10438. <predictions_in_cm>357</predictions_in_cm>
  10439. <highlow>H</highlow>
  10440. </item>
  10441. <item>
  10442. <date>2013/12/04</date>
  10443. <day>Wed</day>
  10444. <time>04:53 AM</time>
  10445. <predictions_in_ft>-0.6</predictions_in_ft>
  10446. <predictions_in_cm>-18</predictions_in_cm>
  10447. <highlow>L</highlow>
  10448. </item>
  10449. <item>
  10450. <date>2013/12/04</date>
  10451. <day>Wed</day>
  10452. <time>11:05 AM</time>
  10453. <predictions_in_ft>13.3</predictions_in_ft>
  10454. <predictions_in_cm>405</predictions_in_cm>
  10455. <highlow>H</highlow>
  10456. </item>
  10457. <item>
  10458. <date>2013/12/04</date>
  10459. <day>Wed</day>
  10460. <time>05:31 PM</time>
  10461. <predictions_in_ft>-1.8</predictions_in_ft>
  10462. <predictions_in_cm>-55</predictions_in_cm>
  10463. <highlow>L</highlow>
  10464. </item>
  10465. <item>
  10466. <date>2013/12/04</date>
  10467. <day>Wed</day>
  10468. <time>11:42 PM</time>
  10469. <predictions_in_ft>11.9</predictions_in_ft>
  10470. <predictions_in_cm>363</predictions_in_cm>
  10471. <highlow>H</highlow>
  10472. </item>
  10473. <item>
  10474. <date>2013/12/05</date>
  10475. <day>Thu</day>
  10476. <time>05:45 AM</time>
  10477. <predictions_in_ft>-0.6</predictions_in_ft>
  10478. <predictions_in_cm>-18</predictions_in_cm>
  10479. <highlow>L</highlow>
  10480. </item>
  10481. <item>
  10482. <date>2013/12/05</date>
  10483. <day>Thu</day>
  10484. <time>11:57 AM</time>
  10485. <predictions_in_ft>13.2</predictions_in_ft>
  10486. <predictions_in_cm>402</predictions_in_cm>
  10487. <highlow>H</highlow>
  10488. </item>
  10489. <item>
  10490. <date>2013/12/05</date>
  10491. <day>Thu</day>
  10492. <time>06:23 PM</time>
  10493. <predictions_in_ft>-1.8</predictions_in_ft>
  10494. <predictions_in_cm>-55</predictions_in_cm>
  10495. <highlow>L</highlow>
  10496. </item>
  10497. <item>
  10498. <date>2013/12/06</date>
  10499. <day>Fri</day>
  10500. <time>12:35 AM</time>
  10501. <predictions_in_ft>11.8</predictions_in_ft>
  10502. <predictions_in_cm>360</predictions_in_cm>
  10503. <highlow>H</highlow>
  10504. </item>
  10505. <item>
  10506. <date>2013/12/06</date>
  10507. <day>Fri</day>
  10508. <time>06:40 AM</time>
  10509. <predictions_in_ft>-0.5</predictions_in_ft>
  10510. <predictions_in_cm>-15</predictions_in_cm>
  10511. <highlow>L</highlow>
  10512. </item>
  10513. <item>
  10514. <date>2013/12/06</date>
  10515. <day>Fri</day>
  10516. <time>12:52 PM</time>
  10517. <predictions_in_ft>12.9</predictions_in_ft>
  10518. <predictions_in_cm>393</predictions_in_cm>
  10519. <highlow>H</highlow>
  10520. </item>
  10521. <item>
  10522. <date>2013/12/06</date>
  10523. <day>Fri</day>
  10524. <time>07:17 PM</time>
  10525. <predictions_in_ft>-1.5</predictions_in_ft>
  10526. <predictions_in_cm>-46</predictions_in_cm>
  10527. <highlow>L</highlow>
  10528. </item>
  10529. <item>
  10530. <date>2013/12/07</date>
  10531. <day>Sat</day>
  10532. <time>01:31 AM</time>
  10533. <predictions_in_ft>11.7</predictions_in_ft>
  10534. <predictions_in_cm>357</predictions_in_cm>
  10535. <highlow>H</highlow>
  10536. </item>
  10537. <item>
  10538. <date>2013/12/07</date>
  10539. <day>Sat</day>
  10540. <time>07:38 AM</time>
  10541. <predictions_in_ft>-0.3</predictions_in_ft>
  10542. <predictions_in_cm>-9</predictions_in_cm>
  10543. <highlow>L</highlow>
  10544. </item>
  10545. <item>
  10546. <date>2013/12/07</date>
  10547. <day>Sat</day>
  10548. <time>01:49 PM</time>
  10549. <predictions_in_ft>12.5</predictions_in_ft>
  10550. <predictions_in_cm>381</predictions_in_cm>
  10551. <highlow>H</highlow>
  10552. </item>
  10553. <item>
  10554. <date>2013/12/07</date>
  10555. <day>Sat</day>
  10556. <time>08:14 PM</time>
  10557. <predictions_in_ft>-1.1</predictions_in_ft>
  10558. <predictions_in_cm>-34</predictions_in_cm>
  10559. <highlow>L</highlow>
  10560. </item>
  10561. <item>
  10562. <date>2013/12/08</date>
  10563. <day>Sun</day>
  10564. <time>02:29 AM</time>
  10565. <predictions_in_ft>11.6</predictions_in_ft>
  10566. <predictions_in_cm>354</predictions_in_cm>
  10567. <highlow>H</highlow>
  10568. </item>
  10569. <item>
  10570. <date>2013/12/08</date>
  10571. <day>Sun</day>
  10572. <time>08:40 AM</time>
  10573. <predictions_in_ft>0.0</predictions_in_ft>
  10574. <predictions_in_cm>0</predictions_in_cm>
  10575. <highlow>L</highlow>
  10576. </item>
  10577. <item>
  10578. <date>2013/12/08</date>
  10579. <day>Sun</day>
  10580. <time>02:51 PM</time>
  10581. <predictions_in_ft>11.9</predictions_in_ft>
  10582. <predictions_in_cm>363</predictions_in_cm>
  10583. <highlow>H</highlow>
  10584. </item>
  10585. <item>
  10586. <date>2013/12/08</date>
  10587. <day>Sun</day>
  10588. <time>09:14 PM</time>
  10589. <predictions_in_ft>-0.6</predictions_in_ft>
  10590. <predictions_in_cm>-18</predictions_in_cm>
  10591. <highlow>L</highlow>
  10592. </item>
  10593. <item>
  10594. <date>2013/12/09</date>
  10595. <day>Mon</day>
  10596. <time>03:30 AM</time>
  10597. <predictions_in_ft>11.4</predictions_in_ft>
  10598. <predictions_in_cm>347</predictions_in_cm>
  10599. <highlow>H</highlow>
  10600. </item>
  10601. <item>
  10602. <date>2013/12/09</date>
  10603. <day>Mon</day>
  10604. <time>09:45 AM</time>
  10605. <predictions_in_ft>0.2</predictions_in_ft>
  10606. <predictions_in_cm>6</predictions_in_cm>
  10607. <highlow>L</highlow>
  10608. </item>
  10609. <item>
  10610. <date>2013/12/09</date>
  10611. <day>Mon</day>
  10612. <time>03:55 PM</time>
  10613. <predictions_in_ft>11.4</predictions_in_ft>
  10614. <predictions_in_cm>347</predictions_in_cm>
  10615. <highlow>H</highlow>
  10616. </item>
  10617. <item>
  10618. <date>2013/12/09</date>
  10619. <day>Mon</day>
  10620. <time>10:15 PM</time>
  10621. <predictions_in_ft>-0.2</predictions_in_ft>
  10622. <predictions_in_cm>-6</predictions_in_cm>
  10623. <highlow>L</highlow>
  10624. </item>
  10625. <item>
  10626. <date>2013/12/10</date>
  10627. <day>Tue</day>
  10628. <time>04:33 AM</time>
  10629. <predictions_in_ft>11.3</predictions_in_ft>
  10630. <predictions_in_cm>344</predictions_in_cm>
  10631. <highlow>H</highlow>
  10632. </item>
  10633. <item>
  10634. <date>2013/12/10</date>
  10635. <day>Tue</day>
  10636. <time>10:51 AM</time>
  10637. <predictions_in_ft>0.3</predictions_in_ft>
  10638. <predictions_in_cm>9</predictions_in_cm>
  10639. <highlow>L</highlow>
  10640. </item>
  10641. <item>
  10642. <date>2013/12/10</date>
  10643. <day>Tue</day>
  10644. <time>05:00 PM</time>
  10645. <predictions_in_ft>10.9</predictions_in_ft>
  10646. <predictions_in_cm>332</predictions_in_cm>
  10647. <highlow>H</highlow>
  10648. </item>
  10649. <item>
  10650. <date>2013/12/10</date>
  10651. <day>Tue</day>
  10652. <time>11:17 PM</time>
  10653. <predictions_in_ft>0.2</predictions_in_ft>
  10654. <predictions_in_cm>6</predictions_in_cm>
  10655. <highlow>L</highlow>
  10656. </item>
  10657. <item>
  10658. <date>2013/12/11</date>
  10659. <day>Wed</day>
  10660. <time>05:35 AM</time>
  10661. <predictions_in_ft>11.3</predictions_in_ft>
  10662. <predictions_in_cm>344</predictions_in_cm>
  10663. <highlow>H</highlow>
  10664. </item>
  10665. <item>
  10666. <date>2013/12/11</date>
  10667. <day>Wed</day>
  10668. <time>11:56 AM</time>
  10669. <predictions_in_ft>0.3</predictions_in_ft>
  10670. <predictions_in_cm>9</predictions_in_cm>
  10671. <highlow>L</highlow>
  10672. </item>
  10673. <item>
  10674. <date>2013/12/11</date>
  10675. <day>Wed</day>
  10676. <time>06:05 PM</time>
  10677. <predictions_in_ft>10.6</predictions_in_ft>
  10678. <predictions_in_cm>323</predictions_in_cm>
  10679. <highlow>H</highlow>
  10680. </item>
  10681. <item>
  10682. <date>2013/12/12</date>
  10683. <day>Thu</day>
  10684. <time>12:18 AM</time>
  10685. <predictions_in_ft>0.4</predictions_in_ft>
  10686. <predictions_in_cm>12</predictions_in_cm>
  10687. <highlow>L</highlow>
  10688. </item>
  10689. <item>
  10690. <date>2013/12/12</date>
  10691. <day>Thu</day>
  10692. <time>06:35 AM</time>
  10693. <predictions_in_ft>11.4</predictions_in_ft>
  10694. <predictions_in_cm>347</predictions_in_cm>
  10695. <highlow>H</highlow>
  10696. </item>
  10697. <item>
  10698. <date>2013/12/12</date>
  10699. <day>Thu</day>
  10700. <time>12:58 PM</time>
  10701. <predictions_in_ft>0.2</predictions_in_ft>
  10702. <predictions_in_cm>6</predictions_in_cm>
  10703. <highlow>L</highlow>
  10704. </item>
  10705. <item>
  10706. <date>2013/12/12</date>
  10707. <day>Thu</day>
  10708. <time>07:07 PM</time>
  10709. <predictions_in_ft>10.5</predictions_in_ft>
  10710. <predictions_in_cm>320</predictions_in_cm>
  10711. <highlow>H</highlow>
  10712. </item>
  10713. <item>
  10714. <date>2013/12/13</date>
  10715. <day>Fri</day>
  10716. <time>01:15 AM</time>
  10717. <predictions_in_ft>0.6</predictions_in_ft>
  10718. <predictions_in_cm>18</predictions_in_cm>
  10719. <highlow>L</highlow>
  10720. </item>
  10721. <item>
  10722. <date>2013/12/13</date>
  10723. <day>Fri</day>
  10724. <time>07:31 AM</time>
  10725. <predictions_in_ft>11.5</predictions_in_ft>
  10726. <predictions_in_cm>351</predictions_in_cm>
  10727. <highlow>H</highlow>
  10728. </item>
  10729. <item>
  10730. <date>2013/12/13</date>
  10731. <day>Fri</day>
  10732. <time>01:55 PM</time>
  10733. <predictions_in_ft>0.0</predictions_in_ft>
  10734. <predictions_in_cm>0</predictions_in_cm>
  10735. <highlow>L</highlow>
  10736. </item>
  10737. <item>
  10738. <date>2013/12/13</date>
  10739. <day>Fri</day>
  10740. <time>08:04 PM</time>
  10741. <predictions_in_ft>10.5</predictions_in_ft>
  10742. <predictions_in_cm>320</predictions_in_cm>
  10743. <highlow>H</highlow>
  10744. </item>
  10745. <item>
  10746. <date>2013/12/14</date>
  10747. <day>Sat</day>
  10748. <time>02:09 AM</time>
  10749. <predictions_in_ft>0.6</predictions_in_ft>
  10750. <predictions_in_cm>18</predictions_in_cm>
  10751. <highlow>L</highlow>
  10752. </item>
  10753. <item>
  10754. <date>2013/12/14</date>
  10755. <day>Sat</day>
  10756. <time>08:22 AM</time>
  10757. <predictions_in_ft>11.6</predictions_in_ft>
  10758. <predictions_in_cm>354</predictions_in_cm>
  10759. <highlow>H</highlow>
  10760. </item>
  10761. <item>
  10762. <date>2013/12/14</date>
  10763. <day>Sat</day>
  10764. <time>02:46 PM</time>
  10765. <predictions_in_ft>-0.2</predictions_in_ft>
  10766. <predictions_in_cm>-6</predictions_in_cm>
  10767. <highlow>L</highlow>
  10768. </item>
  10769. <item>
  10770. <date>2013/12/14</date>
  10771. <day>Sat</day>
  10772. <time>08:56 PM</time>
  10773. <predictions_in_ft>10.5</predictions_in_ft>
  10774. <predictions_in_cm>320</predictions_in_cm>
  10775. <highlow>H</highlow>
  10776. </item>
  10777. <item>
  10778. <date>2013/12/15</date>
  10779. <day>Sun</day>
  10780. <time>02:58 AM</time>
  10781. <predictions_in_ft>0.7</predictions_in_ft>
  10782. <predictions_in_cm>21</predictions_in_cm>
  10783. <highlow>L</highlow>
  10784. </item>
  10785. <item>
  10786. <date>2013/12/15</date>
  10787. <day>Sun</day>
  10788. <time>09:09 AM</time>
  10789. <predictions_in_ft>11.7</predictions_in_ft>
  10790. <predictions_in_cm>357</predictions_in_cm>
  10791. <highlow>H</highlow>
  10792. </item>
  10793. <item>
  10794. <date>2013/12/15</date>
  10795. <day>Sun</day>
  10796. <time>03:33 PM</time>
  10797. <predictions_in_ft>-0.3</predictions_in_ft>
  10798. <predictions_in_cm>-9</predictions_in_cm>
  10799. <highlow>L</highlow>
  10800. </item>
  10801. <item>
  10802. <date>2013/12/15</date>
  10803. <day>Sun</day>
  10804. <time>09:42 PM</time>
  10805. <predictions_in_ft>10.5</predictions_in_ft>
  10806. <predictions_in_cm>320</predictions_in_cm>
  10807. <highlow>H</highlow>
  10808. </item>
  10809. <item>
  10810. <date>2013/12/16</date>
  10811. <day>Mon</day>
  10812. <time>03:43 AM</time>
  10813. <predictions_in_ft>0.7</predictions_in_ft>
  10814. <predictions_in_cm>21</predictions_in_cm>
  10815. <highlow>L</highlow>
  10816. </item>
  10817. <item>
  10818. <date>2013/12/16</date>
  10819. <day>Mon</day>
  10820. <time>09:52 AM</time>
  10821. <predictions_in_ft>11.7</predictions_in_ft>
  10822. <predictions_in_cm>357</predictions_in_cm>
  10823. <highlow>H</highlow>
  10824. </item>
  10825. <item>
  10826. <date>2013/12/16</date>
  10827. <day>Mon</day>
  10828. <time>04:16 PM</time>
  10829. <predictions_in_ft>-0.3</predictions_in_ft>
  10830. <predictions_in_cm>-9</predictions_in_cm>
  10831. <highlow>L</highlow>
  10832. </item>
  10833. <item>
  10834. <date>2013/12/16</date>
  10835. <day>Mon</day>
  10836. <time>10:25 PM</time>
  10837. <predictions_in_ft>10.5</predictions_in_ft>
  10838. <predictions_in_cm>320</predictions_in_cm>
  10839. <highlow>H</highlow>
  10840. </item>
  10841. <item>
  10842. <date>2013/12/17</date>
  10843. <day>Tue</day>
  10844. <time>04:24 AM</time>
  10845. <predictions_in_ft>0.8</predictions_in_ft>
  10846. <predictions_in_cm>24</predictions_in_cm>
  10847. <highlow>L</highlow>
  10848. </item>
  10849. <item>
  10850. <date>2013/12/17</date>
  10851. <day>Tue</day>
  10852. <time>10:32 AM</time>
  10853. <predictions_in_ft>11.6</predictions_in_ft>
  10854. <predictions_in_cm>354</predictions_in_cm>
  10855. <highlow>H</highlow>
  10856. </item>
  10857. <item>
  10858. <date>2013/12/17</date>
  10859. <day>Tue</day>
  10860. <time>04:55 PM</time>
  10861. <predictions_in_ft>-0.3</predictions_in_ft>
  10862. <predictions_in_cm>-9</predictions_in_cm>
  10863. <highlow>L</highlow>
  10864. </item>
  10865. <item>
  10866. <date>2013/12/17</date>
  10867. <day>Tue</day>
  10868. <time>11:04 PM</time>
  10869. <predictions_in_ft>10.5</predictions_in_ft>
  10870. <predictions_in_cm>320</predictions_in_cm>
  10871. <highlow>H</highlow>
  10872. </item>
  10873. <item>
  10874. <date>2013/12/18</date>
  10875. <day>Wed</day>
  10876. <time>05:03 AM</time>
  10877. <predictions_in_ft>0.8</predictions_in_ft>
  10878. <predictions_in_cm>24</predictions_in_cm>
  10879. <highlow>L</highlow>
  10880. </item>
  10881. <item>
  10882. <date>2013/12/18</date>
  10883. <day>Wed</day>
  10884. <time>11:10 AM</time>
  10885. <predictions_in_ft>11.5</predictions_in_ft>
  10886. <predictions_in_cm>351</predictions_in_cm>
  10887. <highlow>H</highlow>
  10888. </item>
  10889. <item>
  10890. <date>2013/12/18</date>
  10891. <day>Wed</day>
  10892. <time>05:33 PM</time>
  10893. <predictions_in_ft>-0.2</predictions_in_ft>
  10894. <predictions_in_cm>-6</predictions_in_cm>
  10895. <highlow>L</highlow>
  10896. </item>
  10897. <item>
  10898. <date>2013/12/18</date>
  10899. <day>Wed</day>
  10900. <time>11:41 PM</time>
  10901. <predictions_in_ft>10.4</predictions_in_ft>
  10902. <predictions_in_cm>317</predictions_in_cm>
  10903. <highlow>H</highlow>
  10904. </item>
  10905. <item>
  10906. <date>2013/12/19</date>
  10907. <day>Thu</day>
  10908. <time>05:41 AM</time>
  10909. <predictions_in_ft>1.0</predictions_in_ft>
  10910. <predictions_in_cm>30</predictions_in_cm>
  10911. <highlow>L</highlow>
  10912. </item>
  10913. <item>
  10914. <date>2013/12/19</date>
  10915. <day>Thu</day>
  10916. <time>11:47 AM</time>
  10917. <predictions_in_ft>11.4</predictions_in_ft>
  10918. <predictions_in_cm>347</predictions_in_cm>
  10919. <highlow>H</highlow>
  10920. </item>
  10921. <item>
  10922. <date>2013/12/19</date>
  10923. <day>Thu</day>
  10924. <time>06:09 PM</time>
  10925. <predictions_in_ft>0.0</predictions_in_ft>
  10926. <predictions_in_cm>0</predictions_in_cm>
  10927. <highlow>L</highlow>
  10928. </item>
  10929. <item>
  10930. <date>2013/12/20</date>
  10931. <day>Fri</day>
  10932. <time>12:18 AM</time>
  10933. <predictions_in_ft>10.3</predictions_in_ft>
  10934. <predictions_in_cm>314</predictions_in_cm>
  10935. <highlow>H</highlow>
  10936. </item>
  10937. <item>
  10938. <date>2013/12/20</date>
  10939. <day>Fri</day>
  10940. <time>06:18 AM</time>
  10941. <predictions_in_ft>1.1</predictions_in_ft>
  10942. <predictions_in_cm>34</predictions_in_cm>
  10943. <highlow>L</highlow>
  10944. </item>
  10945. <item>
  10946. <date>2013/12/20</date>
  10947. <day>Fri</day>
  10948. <time>12:23 PM</time>
  10949. <predictions_in_ft>11.1</predictions_in_ft>
  10950. <predictions_in_cm>338</predictions_in_cm>
  10951. <highlow>H</highlow>
  10952. </item>
  10953. <item>
  10954. <date>2013/12/20</date>
  10955. <day>Fri</day>
  10956. <time>06:46 PM</time>
  10957. <predictions_in_ft>0.2</predictions_in_ft>
  10958. <predictions_in_cm>6</predictions_in_cm>
  10959. <highlow>L</highlow>
  10960. </item>
  10961. <item>
  10962. <date>2013/12/21</date>
  10963. <day>Sat</day>
  10964. <time>12:55 AM</time>
  10965. <predictions_in_ft>10.2</predictions_in_ft>
  10966. <predictions_in_cm>311</predictions_in_cm>
  10967. <highlow>H</highlow>
  10968. </item>
  10969. <item>
  10970. <date>2013/12/21</date>
  10971. <day>Sat</day>
  10972. <time>06:56 AM</time>
  10973. <predictions_in_ft>1.2</predictions_in_ft>
  10974. <predictions_in_cm>37</predictions_in_cm>
  10975. <highlow>L</highlow>
  10976. </item>
  10977. <item>
  10978. <date>2013/12/21</date>
  10979. <day>Sat</day>
  10980. <time>01:01 PM</time>
  10981. <predictions_in_ft>10.9</predictions_in_ft>
  10982. <predictions_in_cm>332</predictions_in_cm>
  10983. <highlow>H</highlow>
  10984. </item>
  10985. <item>
  10986. <date>2013/12/21</date>
  10987. <day>Sat</day>
  10988. <time>07:23 PM</time>
  10989. <predictions_in_ft>0.4</predictions_in_ft>
  10990. <predictions_in_cm>12</predictions_in_cm>
  10991. <highlow>L</highlow>
  10992. </item>
  10993. <item>
  10994. <date>2013/12/22</date>
  10995. <day>Sun</day>
  10996. <time>01:32 AM</time>
  10997. <predictions_in_ft>10.1</predictions_in_ft>
  10998. <predictions_in_cm>308</predictions_in_cm>
  10999. <highlow>H</highlow>
  11000. </item>
  11001. <item>
  11002. <date>2013/12/22</date>
  11003. <day>Sun</day>
  11004. <time>07:36 AM</time>
  11005. <predictions_in_ft>1.4</predictions_in_ft>
  11006. <predictions_in_cm>43</predictions_in_cm>
  11007. <highlow>L</highlow>
  11008. </item>
  11009. <item>
  11010. <date>2013/12/22</date>
  11011. <day>Sun</day>
  11012. <time>01:41 PM</time>
  11013. <predictions_in_ft>10.6</predictions_in_ft>
  11014. <predictions_in_cm>323</predictions_in_cm>
  11015. <highlow>H</highlow>
  11016. </item>
  11017. <item>
  11018. <date>2013/12/22</date>
  11019. <day>Sun</day>
  11020. <time>08:01 PM</time>
  11021. <predictions_in_ft>0.6</predictions_in_ft>
  11022. <predictions_in_cm>18</predictions_in_cm>
  11023. <highlow>L</highlow>
  11024. </item>
  11025. <item>
  11026. <date>2013/12/23</date>
  11027. <day>Mon</day>
  11028. <time>02:12 AM</time>
  11029. <predictions_in_ft>10.1</predictions_in_ft>
  11030. <predictions_in_cm>308</predictions_in_cm>
  11031. <highlow>H</highlow>
  11032. </item>
  11033. <item>
  11034. <date>2013/12/23</date>
  11035. <day>Mon</day>
  11036. <time>08:18 AM</time>
  11037. <predictions_in_ft>1.5</predictions_in_ft>
  11038. <predictions_in_cm>46</predictions_in_cm>
  11039. <highlow>L</highlow>
  11040. </item>
  11041. <item>
  11042. <date>2013/12/23</date>
  11043. <day>Mon</day>
  11044. <time>02:23 PM</time>
  11045. <predictions_in_ft>10.3</predictions_in_ft>
  11046. <predictions_in_cm>314</predictions_in_cm>
  11047. <highlow>H</highlow>
  11048. </item>
  11049. <item>
  11050. <date>2013/12/23</date>
  11051. <day>Mon</day>
  11052. <time>08:41 PM</time>
  11053. <predictions_in_ft>0.8</predictions_in_ft>
  11054. <predictions_in_cm>24</predictions_in_cm>
  11055. <highlow>L</highlow>
  11056. </item>
  11057. <item>
  11058. <date>2013/12/24</date>
  11059. <day>Tue</day>
  11060. <time>02:54 AM</time>
  11061. <predictions_in_ft>10.1</predictions_in_ft>
  11062. <predictions_in_cm>308</predictions_in_cm>
  11063. <highlow>H</highlow>
  11064. </item>
  11065. <item>
  11066. <date>2013/12/24</date>
  11067. <day>Tue</day>
  11068. <time>09:04 AM</time>
  11069. <predictions_in_ft>1.6</predictions_in_ft>
  11070. <predictions_in_cm>49</predictions_in_cm>
  11071. <highlow>L</highlow>
  11072. </item>
  11073. <item>
  11074. <date>2013/12/24</date>
  11075. <day>Tue</day>
  11076. <time>03:09 PM</time>
  11077. <predictions_in_ft>10.1</predictions_in_ft>
  11078. <predictions_in_cm>308</predictions_in_cm>
  11079. <highlow>H</highlow>
  11080. </item>
  11081. <item>
  11082. <date>2013/12/24</date>
  11083. <day>Tue</day>
  11084. <time>09:25 PM</time>
  11085. <predictions_in_ft>1.0</predictions_in_ft>
  11086. <predictions_in_cm>30</predictions_in_cm>
  11087. <highlow>L</highlow>
  11088. </item>
  11089. <item>
  11090. <date>2013/12/25</date>
  11091. <day>Wed</day>
  11092. <time>03:40 AM</time>
  11093. <predictions_in_ft>10.2</predictions_in_ft>
  11094. <predictions_in_cm>311</predictions_in_cm>
  11095. <highlow>H</highlow>
  11096. </item>
  11097. <item>
  11098. <date>2013/12/25</date>
  11099. <day>Wed</day>
  11100. <time>09:54 AM</time>
  11101. <predictions_in_ft>1.5</predictions_in_ft>
  11102. <predictions_in_cm>46</predictions_in_cm>
  11103. <highlow>L</highlow>
  11104. </item>
  11105. <item>
  11106. <date>2013/12/25</date>
  11107. <day>Wed</day>
  11108. <time>03:59 PM</time>
  11109. <predictions_in_ft>9.9</predictions_in_ft>
  11110. <predictions_in_cm>302</predictions_in_cm>
  11111. <highlow>H</highlow>
  11112. </item>
  11113. <item>
  11114. <date>2013/12/25</date>
  11115. <day>Wed</day>
  11116. <time>10:13 PM</time>
  11117. <predictions_in_ft>1.1</predictions_in_ft>
  11118. <predictions_in_cm>34</predictions_in_cm>
  11119. <highlow>L</highlow>
  11120. </item>
  11121. <item>
  11122. <date>2013/12/26</date>
  11123. <day>Thu</day>
  11124. <time>04:29 AM</time>
  11125. <predictions_in_ft>10.4</predictions_in_ft>
  11126. <predictions_in_cm>317</predictions_in_cm>
  11127. <highlow>H</highlow>
  11128. </item>
  11129. <item>
  11130. <date>2013/12/26</date>
  11131. <day>Thu</day>
  11132. <time>10:48 AM</time>
  11133. <predictions_in_ft>1.3</predictions_in_ft>
  11134. <predictions_in_cm>40</predictions_in_cm>
  11135. <highlow>L</highlow>
  11136. </item>
  11137. <item>
  11138. <date>2013/12/26</date>
  11139. <day>Thu</day>
  11140. <time>04:54 PM</time>
  11141. <predictions_in_ft>9.8</predictions_in_ft>
  11142. <predictions_in_cm>299</predictions_in_cm>
  11143. <highlow>H</highlow>
  11144. </item>
  11145. <item>
  11146. <date>2013/12/26</date>
  11147. <day>Thu</day>
  11148. <time>11:05 PM</time>
  11149. <predictions_in_ft>1.2</predictions_in_ft>
  11150. <predictions_in_cm>37</predictions_in_cm>
  11151. <highlow>L</highlow>
  11152. </item>
  11153. <item>
  11154. <date>2013/12/27</date>
  11155. <day>Fri</day>
  11156. <time>05:22 AM</time>
  11157. <predictions_in_ft>10.7</predictions_in_ft>
  11158. <predictions_in_cm>326</predictions_in_cm>
  11159. <highlow>H</highlow>
  11160. </item>
  11161. <item>
  11162. <date>2013/12/27</date>
  11163. <day>Fri</day>
  11164. <time>11:46 AM</time>
  11165. <predictions_in_ft>1.0</predictions_in_ft>
  11166. <predictions_in_cm>30</predictions_in_cm>
  11167. <highlow>L</highlow>
  11168. </item>
  11169. <item>
  11170. <date>2013/12/27</date>
  11171. <day>Fri</day>
  11172. <time>05:53 PM</time>
  11173. <predictions_in_ft>9.8</predictions_in_ft>
  11174. <predictions_in_cm>299</predictions_in_cm>
  11175. <highlow>H</highlow>
  11176. </item>
  11177. <item>
  11178. <date>2013/12/28</date>
  11179. <day>Sat</day>
  11180. <time>12:00 AM</time>
  11181. <predictions_in_ft>1.1</predictions_in_ft>
  11182. <predictions_in_cm>34</predictions_in_cm>
  11183. <highlow>L</highlow>
  11184. </item>
  11185. <item>
  11186. <date>2013/12/28</date>
  11187. <day>Sat</day>
  11188. <time>06:18 AM</time>
  11189. <predictions_in_ft>11.1</predictions_in_ft>
  11190. <predictions_in_cm>338</predictions_in_cm>
  11191. <highlow>H</highlow>
  11192. </item>
  11193. <item>
  11194. <date>2013/12/28</date>
  11195. <day>Sat</day>
  11196. <time>12:45 PM</time>
  11197. <predictions_in_ft>0.5</predictions_in_ft>
  11198. <predictions_in_cm>15</predictions_in_cm>
  11199. <highlow>L</highlow>
  11200. </item>
  11201. <item>
  11202. <date>2013/12/28</date>
  11203. <day>Sat</day>
  11204. <time>06:53 PM</time>
  11205. <predictions_in_ft>10.1</predictions_in_ft>
  11206. <predictions_in_cm>308</predictions_in_cm>
  11207. <highlow>H</highlow>
  11208. </item>
  11209. <item>
  11210. <date>2013/12/29</date>
  11211. <day>Sun</day>
  11212. <time>12:58 AM</time>
  11213. <predictions_in_ft>0.8</predictions_in_ft>
  11214. <predictions_in_cm>24</predictions_in_cm>
  11215. <highlow>L</highlow>
  11216. </item>
  11217. <item>
  11218. <date>2013/12/29</date>
  11219. <day>Sun</day>
  11220. <time>07:14 AM</time>
  11221. <predictions_in_ft>11.6</predictions_in_ft>
  11222. <predictions_in_cm>354</predictions_in_cm>
  11223. <highlow>H</highlow>
  11224. </item>
  11225. <item>
  11226. <date>2013/12/29</date>
  11227. <day>Sun</day>
  11228. <time>01:42 PM</time>
  11229. <predictions_in_ft>-0.1</predictions_in_ft>
  11230. <predictions_in_cm>-3</predictions_in_cm>
  11231. <highlow>L</highlow>
  11232. </item>
  11233. <item>
  11234. <date>2013/12/29</date>
  11235. <day>Sun</day>
  11236. <time>07:51 PM</time>
  11237. <predictions_in_ft>10.5</predictions_in_ft>
  11238. <predictions_in_cm>320</predictions_in_cm>
  11239. <highlow>H</highlow>
  11240. </item>
  11241. <item>
  11242. <date>2013/12/30</date>
  11243. <day>Mon</day>
  11244. <time>01:54 AM</time>
  11245. <predictions_in_ft>0.4</predictions_in_ft>
  11246. <predictions_in_cm>12</predictions_in_cm>
  11247. <highlow>L</highlow>
  11248. </item>
  11249. <item>
  11250. <date>2013/12/30</date>
  11251. <day>Mon</day>
  11252. <time>08:09 AM</time>
  11253. <predictions_in_ft>12.3</predictions_in_ft>
  11254. <predictions_in_cm>375</predictions_in_cm>
  11255. <highlow>H</highlow>
  11256. </item>
  11257. <item>
  11258. <date>2013/12/30</date>
  11259. <day>Mon</day>
  11260. <time>02:38 PM</time>
  11261. <predictions_in_ft>-0.8</predictions_in_ft>
  11262. <predictions_in_cm>-24</predictions_in_cm>
  11263. <highlow>L</highlow>
  11264. </item>
  11265. <item>
  11266. <date>2013/12/30</date>
  11267. <day>Mon</day>
  11268. <time>08:47 PM</time>
  11269. <predictions_in_ft>11.0</predictions_in_ft>
  11270. <predictions_in_cm>335</predictions_in_cm>
  11271. <highlow>H</highlow>
  11272. </item>
  11273. <item>
  11274. <date>2013/12/31</date>
  11275. <day>Tue</day>
  11276. <time>02:50 AM</time>
  11277. <predictions_in_ft>-0.1</predictions_in_ft>
  11278. <predictions_in_cm>-3</predictions_in_cm>
  11279. <highlow>L</highlow>
  11280. </item>
  11281. <item>
  11282. <date>2013/12/31</date>
  11283. <day>Tue</day>
  11284. <time>09:04 AM</time>
  11285. <predictions_in_ft>12.9</predictions_in_ft>
  11286. <predictions_in_cm>393</predictions_in_cm>
  11287. <highlow>H</highlow>
  11288. </item>
  11289. <item>
  11290. <date>2013/12/31</date>
  11291. <day>Tue</day>
  11292. <time>03:31 PM</time>
  11293. <predictions_in_ft>-1.4</predictions_in_ft>
  11294. <predictions_in_cm>-43</predictions_in_cm>
  11295. <highlow>L</highlow>
  11296. </item>
  11297. <item>
  11298. <date>2013/12/31</date>
  11299. <day>Tue</day>
  11300. <time>09:41 PM</time>
  11301. <predictions_in_ft>11.5</predictions_in_ft>
  11302. <predictions_in_cm>351</predictions_in_cm>
  11303. <highlow>H</highlow>
  11304. </item>
  11305. </data>
  11306. </datainfo>