Flex2 Debug Component
1/29/06 Update: I've updated this component for Flex 2.0.1. Go ahead and download the 1.0.5 version of the Flex Components for the update.
Last week, at CFUnited, I showed off debug component for Flex2 development. As promised here is a download of the .swc and source code. Remember this is a work in progress but it is far enough along to be useful now. Keep watching this blog for updates.
What is this debug component?
First let me step back, Flex2 has a useful debug utility class and method called ObjectUtil.toString(). For those of you use to ColdFusion and the CFDUMP tag, this is a flex version of the same thing. However there is no way to easily view this data, I found myself doing a lot of Alerts, such as this: Alert.show(ObjectUtil.toString(event)); However, This works for the small stuff but not for large items, The Alert box doesn't grow to fit things like I would like.
The 2nd problem, was that ColdFusion FlashRemoting requests return a lot of debug information about the request and there is no good way to make sense of it. So to kill two birds with one stone I put this component together.
How to use it:
In your Flex project; go to the project properties panel (Right-Click on the project), select the "Flex Build Path" page, select the "Library Path" tab, then add the .swc file to the project. Once this is done you can import and call the Debug class as needed.
Syntax:
The Debug component can be used in a few different ways, to view a single item or to debug multiple items. The single item example:
You can also add multiple items and view them later.
Debug.add(anotherObject);
//then later, perhaps in a button click handler
Debug.show();
Some screen shots:

The ColdFusion debug data:


I added the swc to my Library path, but now I get an Internal build error and another error that says, "unable to load SWC FlexDebugPanel.swc: unknown element swc found in versions section in catalog.xml.
Any ideas?
Thanks,
Steve
let me know if that works
Clicking on the download link in FF prompts me to download a file called "download.cfm"
I am too getting this error while using FDS express.
unable to load SWC fds.swc: unknown element swc found in versions section in catalog.xml.
Thanks in advance
Vijay
Just go ahead and download and save it to your disk as a .zip file and then open it up.
The download.cfm file is the server side script used to track downloads and serve up the right file.
no idea. Sounds like your library path for the project is linking to the wrong fds.swc file. You'll need to post a message on the adobe forums about that file. My debug component doesn't use fds.swc at all.
import com.mikenimer.components.*;
Or what I do, start typing in the class name "Debug" and as soon as the tag insight popup list appears hit "enter" to select the class. If you do it this way FlexBuilder will automatically add the import statement for you.
Very usefull indeed, thanks for sharing this.
it's running and it's really cool - but I've got some trouble with the tree on the right: if I add an xml-object, the navigation-tree tries to render the list - looks quite ugly, with larger or more complex collection you get some errors. The Idea of the Panel is really cool - nice work!
<code>
var foo:XML = <people><person>...</person></people>;
Dump.show(foo);
</code>
You get an error? Just making sure so I can add the logic to fix the right problem.
Debug.add(model.myXML, 'myXML'); I get the xml of myXML partially rendered in the navigation tree. If I use a xmlCollection, lets call it myModel.myXMLList:XMLList - Flex crashes with an Error.
---nimer
I saw you demo this during CFUnited ? very useful tool.
thanx
I am using Dreamweaver and have setup a nifty little command to compile my flex 2 work with the compiler.
I tried adding:
-library-path C:\flex_sdk_2\Components\nimerComponents.swc to the compiler line
And it does not seem to work for me.
I get an error from the compiler ...
Error: Definition com.mikenimer.components could not be found.
On the line ...
import com.mikenimer.components.*;
And actually, it really helped me fix the problem I was having, so tyvm :)
I added the SWC, copied the .src files to my COM folder and when I call Debug.show(foo) I get the following.
1009: Cannot access a property or method of a null object reference.
at mx.containers::Panel/mx.containers:Panel::commitProperties()
#1009: Cannot access a property or method of a null object reference.
at mx.containers::Panel/::showTitleBar()
Any thoughts?
What version of flex are you using? are you still on 2.0 or 2.0.1?
But I really think that the object you are trying to dump has not been defined yet and thats why you are getting the error (especially if you are not getting compile errors). Remember that generally, they object has to be defined and instantiated for you to be able to dump it, otherwise it doesn't really exist yet. If it is a display object, it has to be drawn in the swf first (generally speaking).
2.0
You may be right on. It's a dragevent and I got errors from ObjUtil.tostring() as well until I excluded the loader stuff. can that be done with Debug.show()?
"There seems to be a problem with this Debug component with Flex 2.0.1 - projects compile correctly, but do not run... "
Flexbuilder shows no errors (Is that a bug, shouldn't it introspect the swc, and report problems?
Debug.call or show () - methods fail in version 2.01
thanks everyone,
--nimer
1. unable to load SWC nimerComponents.swc: multiple points
2. 1017: The definition of base class Locale was not found.
3. Could not resolve <mx:Application> to a component implementation.
The "about" box says I have 2.0.143459 version of Flex Builder.
Any ideas?
Typo: "1/29/06 Update" should be "1/29/07 Update", I think.
Douglas
I love love love your Dedug Component. It worked perfectly first time - I wish all my code was this good :-)
thanks
We need instructions too. =(
I can't find anywhere to download the NetDebug componnent which is what I've used in the past... this is great, thanks alot.
I created a debug component about a month ago. Very similar idea.
I created the same thing with a little different look to keep track of my remote data calls.
You have definitely taken yours to a far higher level than mine.
One observation: I use an event dispatcher to make my debug calls. This way you do not have to have the debugger active when running the program if you want. The debugger captures the data only if it is active. That way I can turn it on and off. Also, I could accidentally leave a dispatcher in the code without any problems. The dispatcher and listener are a global object I use for all my events.
Nice to see someone else with the same thought process.
Tony
I'm not actually using CF for this project but would like to do something similar (so I can have the PHP debug in one or more separate tabs). Any advice would be greatly appreciated as this component will save me lots of time.
Also, if you notice all of the classes extend TreeParent or TreeChild. I use these to render the tree (TreeParent has the chidlren property that the mx:Tree tag looks for.) This way I have generic data for the tree and typed data for the component so I can do " is " checks on the selectedItem in the tree to know which view to show.
As for getting this to work with php. the component itself will be able to dump any object you send it. However the debug won't show. That part is looking for specific data coming back from the Server in a "debug" property in the header of the AMF response. As far as I know PHP doesn't return any debug data. But, I'm sure something like this can be done.
I'm getting the following error when trying to compile. "1024: Overriding a function that is not marked for override." on the SizeableTitleWindow.as. Using Flex 2.0.1
Any Ideas what I'm doing, or not doing?
I create a flex project named teste and in Library Path i add SWC file named nimerComponents.swc
But mode Design in Flex Builder not functional
What should I do?
http://www.youtube.com/user/EdTada
http://worldmp3songs.com/letter/a/
http://worldmp3songs.com/letter/b/
http://worldmp3songs.com/letter/c/
http://worldmp3songs.com/letter/d/
http://worldmp3songs.com/letter/r/
http://jennifervillani.seitenclique.net/software58...
http://marysimmons.247ihost.com/software3130.html
http://hernandezrandy.247ihost.com/software8865.ht...
http://davidchild.bidsex.net/software4536.html
http://www.youtube.com/user/EdTada
http://lesbians.klikfeed.info/index2.html
http://lesbians.klikfeed.info/index3.html
http://lesbians.klikfeed.info/index4.html
http://lesbians.klikfeed.info/index5.html
http://lesbians.klikfeed.info/index6.html
http://lesbians.klikfeed.info/index7.html
http://lesbians.klikfeed.info/index8.html
http://lesbians.klikfeed.info/index9.html
http://lesbians.klikfeed.info/index10.html
http://lesbians.klikfeed.info/index11.html
http://lesbians.klikfeed.info/index12.html
http://lesbians.klikfeed.info/index13.html
http://lesbians.klikfeed.info/index14.html
http://lesbians.klikfeed.info/index15.html
http://lesbians.klikfeed.info/index16.html
cum on her face
sperm atack
female dominations
http://lazerepilasyon-2.blogspot.com/
http://lazerepilasyon-3.blogspot.com/
http://lazerepilasyon-4.blogspot.com/
http://lazerepilasyon-5.blogspot.com/
http://lazerepilasyon-6.blogspot.com/
http://lazerepilasyon-7.blogspot.com/
http://adanaevdenevenakliyat.blogspot.com
http://igdirevdenevenakliyat.blogspot.com
http://ardahanevdenevenakliyat.blogspot.com
http://artvinevdenevenakliyat.blogspot.com
http://bartinevdenevenakliyat.blogspot.com/
http://sirnakevdenevenakliyat.blogspot.com/
http://karamanevdenevenakliyat.blogspot.com/
http://bayburtevdenevenakliyat.blogspot.com/
http://aksarayevdenevenakliyat.blogspot.com/
http://zonguldakevdenevenakliyat.blogspot.com
http://yozgatevdenevenakliyat.blogspot.com/
http://vanevdenevenakliyat.blogspot.com/
http://sanl?urfaevdenevenakliyat.blogspot.com
http://trabzonevdenevenakliyat.blogspot.com
http://sivasevdenevenakliyat.blogspot.com
http://siirtevdenevenakliyat.blogspot.com
http://samsunevdenevenakliyat.blogspot.com/
http://sakaryaevdenevenakliyat.blogspot.com/
http://rizeevdenevenakliyat.blogspot.com/
http://nigdeevdenevenakliyat.blogspot.com
http://muglaevdenevenakliyat.blogspot.com/
http://mardinevdenevenakliyat.blogspot.com/
http://marasevdenevenakliyat.blogspot.com/
http://manisaevdenevenakliyat.blogspot.com/
http://gumüshaneevdenevenakliyat.blogspot.com/
http://giresunevdenevenakliyat.blogspot.com/
http://edirneevdenevenakliyat.blogspot.com/
http://canakkaleevdenevenakliyat.blogspot.com/
http://diyarbakirevdenevenakliyat.blogspot.com/
http://denizlievdenevenakliyat.blogspot.com/
http://cankirievdenevenakliyat.blogspot.com/
http://burdurevdenevenakliyat.blogspot.com/
http://boluevdenevenakliyat.blogspot.com/
http://adiyamanevdenevenakliyat.blogspot.com/
http://afyonevdenevenakliyat.blogspot.com/
http://agrievdenevenakliyat.blogspot.com/
http://amasyaevdenevenakliyat.blogspot.com/
http://antalyaevdenevenakliyat.blogspot.com
http://artvinevdenevenakliyat.blogspot.com/
http://balikesirevdenevenakliyat.blogspot.com/
http://bilecikevdenevenakliyat.blogspot.com/
http://bitlisevdenevenakliyat.blogspot.com/
http://bursaevdenevenakliyat.blogspot.com/
http://corumevdenevenakliyat.blogspot.com/
http://mersinevdenevenakliyat.blogspot.com/
http://iskenderunevdenevenakliyat.blogspot.com/
http://hatayevdenevenakliyat.blogspot.com/
http://eskisehirevdenevenakliyat.blogspot.com/
http://izmitevdenevenakliyat.blogspot.com/
http://malatyaevdenevenakliyat.blogspot.com/
http://kutahyaevdenevenakliyat.blogspot.com/
http://konyaevdenevenakliyat.blogspot.com/
http://kocaelievdenevenakliyat.blogspot.com/
http://kirklarelievdenevenakliyat.blogspot.com/
http://kayserievdenevenakliyat.blogspot.com/
http://kastamonuevdenevenakliyat.blogspot.com/
http://karsevdenevenakliyat.blogspot.com/
http://erzurumevdenevenakliyat.blogspot.com/
http://elazigevdenevenakliyat.blogspot.com/
http://tuncelievdenevenakliyat.blogspot.com/
http://gebzeevdenevenakliyat.blogspot.com/
http://tuzlaevdenevenakliyat.blogspot.com/
http://pendikevdenevenakliyat.blogspot.com/
http://nevsehirevdenevenakliyat.blogspot.com/
http://musevdenevenakliyat.blogspot.com
http://osmaniyeevdenevenakliyat.blogspot.com/
http://duzceevdenevenakliyat.blogspot.com/
http://karabukevdenevenakliyat.blogspot.com/
http://yalovaevdenevenakliyat.blogspot.com/
http://erzincanevdenevenakliyat.blogspot.com/
http://istanbulevdeneve-nakliyat.blogspot.com/
http://izmir-evden-eve-nakliyat.blogspot.com/
http://onlinenikahsekeri.blogspot.com/
http://amyroberts.yourfreehosting.net/emo8747.html...
http://dawnevans.2222mb.com/emo5433.html
http://dustinleo.my3gb.com/emo5927.html
http://kerrychavez.mycyberway.com/emo9546.html
http://jeffreyreavis.freehoxt.com/emo5229.html
http://lorrainenedd.aokhost.com/emo9299.html
http://marvinbean.fizwig.com/skin942.html
http://stacyhinson.gigazu.com/skin1297.html
http://quentincruz.servik.com/skin2699.html
http://robertrussell.rack111.com/skin11.html
http://willieshade.hostedwith.us/skin8754.html
http://justinrose.gigazu.com/skin332.html
http://michaelsimmons.seitenclique.net/skin8358.ht...
http://sharonsmith.fizwig.com/skin9017.html
http://dawnevans.2222mb.com/skin880.html
http://dustinleo.my3gb.com/skin7508.html
http://carriemorgan.10gbfreehost.com/skin3320.html...
http://kerrychavez.mycyberway.com/skin68.html
http://jeffreyreavis.freehoxt.com/skin3756.html
http://robertferrara.hostingtribe.com/skin7795.htm...
http://lorrainenedd.aokhost.com/skin3495.html
http://ralphwilliams.phreesite.com/skin6660.html
http://deborahcarter.007sites.com/skin9465.html
http://winifredhodge.domaingler.com/skin5414.html
http://davidmitchell.freeweb7.com/skin8585.html
http://kathydavis.hostevo.com/skin9408.html
http://veronicakelley.247ihost.com/skin8529.html
http://brandonreillyda.freewebspace-us.com/skin747...
http://marycardella.yourfreehosting.net/skin4347.h...
http://shirleylewis.hostedwith.us/skin9825.html
http://roccoensign.rack111.com/skin2532.html
http://jessebryson.1gb.in/skin8278.html
http://ru-t.com/about antimaulnetizm
http://marthaferrill.servik.com/emo3162.html
http://jessicatubbs.seitenclique.net/emo9024.html
http://marvinbean.fizwig.com/emo8826.html
http://quentincruz.servik.com/emo1871.html
http://thomasrumbaugh.yoyohost.com/emo5527.html
http://willieshade.hostedwith.us/emo1398.html
http://michaelsimmons.seitenclique.net/emo5020.htm...
http://sharonsmith.fizwig.com/emo1219.html
http://amyroberts.yourfreehosting.net/emo3589.html...
http://carriemorgan.10gbfreehost.com/emo2376.html
http://kerrychavez.mycyberway.com/emo2445.html
http://jeffreyreavis.freehoxt.com/emo2499.html
http://robertferrara.hostingtribe.com/emo5856.html...
http://ralphwilliams.phreesite.com/emo3481.html
http://davidmitchell.freeweb7.com/emo70.html
http://veronicakelley.247ihost.com/emo3981.html
http://josephmarks.newsit.es/emo4432.html
http://brandonreillyda.freewebspace-us.com/emo840....
http://heatherthomas.my3gb.com/emo9435.html
http://marycardella.yourfreehosting.net/emo2855.ht...
http://shirleylewis.hostedwith.us/emo4200.html
http://dorothyjones.yoyohost.com/emo575.html
http://jessebryson.1gb.in/emo29.html
http://jennifercrisler.freehoxt.com/emo6502.html
http://leebartz.hostingtribe.com/emo1519.html
http://mattieburke.007sites.com/emo892.html
http://melissaclark.domaingler.com/emo2679.html
http://patrickelder.1gb.in/emo409.html
http://joegreen.freeweb7.com/emo3228.html
http://emilymcknight.hostevo.com/emo589.html
http://joemartin.247ihost.com/emo2826.html
http://marthaferrill.newsit.es/emo4244.html
http://keithburrowes.0buckhost.com/emo3012.html
http://zzzephaniebrown.1122mb.com/emo6543.html
http://zzzteresabrent.1122mb.com/emo7312.html
http://cum.comsearchengi.info/index1.html
http://cum.comsearchengi.info/index2.html
http://cum.comsearchengi.info/index3.html
http://cum.comsearchengi.info/index4.html
http://cum.comsearchengi.info/index5.html
http://cum.comsearchengi.info/index6.html
http://cum.comsearchengi.info/index7.html
http://cum.comsearchengi.info/index8.html
http://cum.comsearchengi.info/index9.html
http://cum.comsearchengi.info/index10.html
http://cum.comsearchengi.info/index11.html
http://cum.comsearchengi.info/index12.html
http://cum.comsearchengi.info/index13.html
http://dustinwhite.phreesite.com/device2382.html
http://robertfrancis.aokhost.com/device6028.html
http://melvincleveland.hostingtribe.com/device9756...
http://williamglover.freehoxt.com/device8987.html
http://alonzobramlett.mycyberway.com/device9446.ht...
http://joycebowlin.my3gb.com/device6176.html
http://elizabethreid.yourfreehosting.net/device979...
http://reginawilkins.seitenclique.net/device559.ht...
http://marciadamato.gigazu.com/device7974.html
http://ethanjohnson.hostedwith.us/device3719.html
http://helenstarr.yoyohost.com/device7392.html
http://charlesmurphy.freemysqlphphosting.com/devic...
http://johnsmith.domaingler.com/device8262.html
http://normaniemi.1gb.in/device5600.html
http://dalehancock.hothostcity.com/device7353.html...
http://jackgrant.freeweb7.com/device7013.html
http://santiagocalfee.hostevo.com/device511.html
http://robertmullen.247ihost.com/device8215.html
http://arthurmarquez.0buckhost.com/device8803.html...
http://jorgeleggett.12gbfree.com/device9933.html
http://qqqlizabethnichol.12gbfree.com/device1732.h...
http://en.netlog.com/GameCheatsForPS2
http://melvincleveland.hostingtribe.com/c1195.html...
http://williamglover.freehoxt.com/c7768.html
http://alonzobramlett.mycyberway.com/c4151.html
http://michaellugo.10gbfreehost.com/c9437.html
http://velmagifford.678host.com/c8516.html
http://reginawilkins.seitenclique.net/c3934.html
http://helenstarr.yoyohost.com/c8124.html
http://sharonward.freeweb7.com/c3673.html
http://brianporter.hostevo.com/c1156.html
http://marybuskirk.247ihost.com/c4684.html
http://donnagarcia.2222mb.com/c7153.html
http://williamyork.0buckhost.com/c9157.html
http://robertcook.seitenclique.net/c2736.html
http://neilsalinas.678host.com/c433.html
http://louisefox.yoyohost.com/web3351.html web
http://stephencowger.phreesite.com/c1243.html c
http://stephencowger.phreesite.com/cisco6947.html cisco
http://jamesjohnson.aokhost.com/web7850.html web
http://jamesjohnson.aokhost.com/web5731.html web
http://janiceknapp.hostingtribe.com/web1001.html web
http://janiceknapp.hostingtribe.com/sql4639.html sql
http://tonyadupont.mycyberway.com/web7845.html web
http://tonyadupont.mycyberway.com/online4393.html online
http://anniefield.10gbfreehost.com/web5179.html web
http://anniefield.10gbfreehost.com/sql8481.html sql
http://nanceebolen.my3gb.com/c1116.html c
http://nanceebolen.my3gb.com/web8317.html web
http://herbertsthilaire.yourfreehosting.net/web926... web
http://herbertsthilaire.yourfreehosting.net/sql795... sql
http://sandychen.678host.com/net3984.html net
http://marthadeblois.seitenclique.net/sql4839.html... sql
http://marthadeblois.seitenclique.net/web6862.html... web
http://johnwalsh.hostedwith.us/web3874.html web
http://johnwalsh.hostedwith.us/c1221.html c
http://sharonlittle.yoyohost.com/web3309.html web
http://sharonlittle.yoyohost.com/sql847.html sql
http://ronaldgordon.007sites.com/web5270.html web
http://ronaldgordon.007sites.com/sql8766.html sql
http://teresasweeney.domaingler.com/web4364.html web
http://teresasweeney.domaingler.com/c8524.html c
http://alexiajames.1gb.in/sql9945.html sql
http://alexiajames.1gb.in/web3412.html web
http://erinconstable.hostevo.com/sql4835.html sql
http://erinconstable.hostevo.com/net9456.html net
http://margaretmcdonough.247ihost.com/sql433.html sql
http://margaretmcdonough.247ihost.com/web2727.html... web
http://waynehumiston.12gbfree.com/sql7614.html sql
http://waynehumiston.12gbfree.com/web553.html web
http://stanleysmith.rack111.com/web6355.html web
http://stanleysmith.rack111.com/sql6000.html sql
http://justincody.seitenclique.net/sql8574.html sql
http://justincody.seitenclique.net/web7906.html web
http://mirianthomason.678host.com/c8886.html c
http://girlsfingeringherself.smut.com/girl-fingering-herself-on-the-bed.htm
http://christopherkunze.phreesite.com/nursing1295.... nursing
http://davidrodriguez.007sites.com/nursing656.html... nursing
http://adrianmurawski.domaingler.com/nursing6867.h... nursing
http://katherineanthony.freewebhosting360.com/nurs... nursing
http://patrickrichardson.hothostcity.com/nursing27... nursing
http://raymondembrey.freeweb7.com/nursing3361.html... nursing
http://maryjohnson.hostevo.com/nursing3627.html nursing
http://brucegarza.247ihost.com/nursing9967.html nursing
http://anthonyjohnson.freehostplace.com/nursing523... nursing
http://chrisflynn.2222mb.com/nursing1010.html nursing
http://colemanjones.yoyohost.com/nursing7490.html nursing
http://johnbecker.seitenclique.net/nursing5213.htm... nursing
http://lloydmorris.678host.com/nursing5664.html nursing
http://chadgriffin.yourfreehosting.net/nursing3671... nursing
http://cherilofton.hostingtribe.com/nursing1096.ht... nursing
http://lauragoldston.aokhost.com/nursing3961.html nursing
http://michellemartinez.007sites.com/nursing217.ht... nursing
http://dessieparker.domaingler.com/nursing1997.htm... nursing
http://nicolewaterbury.freewebhosting360.com/nursi... nursing
http://juanitaloewen.hothostcity.com/nursing480.ht... nursing
http://vernonmorrow.10gbfreehost.com/c6033.html c
http://christopherkunze.phreesite.com/c2513.html c
http://christopherkunze.phreesite.com/online3259.h... online
http://davidrodriguez.007sites.com/c1350.html c
http://davidrodriguez.007sites.com/sql7941.html sql
http://adrianmurawski.domaingler.com/c9316.html c
http://adrianmurawski.domaingler.com/net8234.html net
http://katherineanthony.freewebhosting360.com/c393... c
http://patrickrichardson.hothostcity.com/c5484.htm... c
http://patrickrichardson.hothostcity.com/file5273.... file
http://raymondembrey.freeweb7.com/c4692.html c
http://maryjohnson.hostevo.com/c1866.html c
http://maryjohnson.hostevo.com/c5789.html c
http://brucegarza.247ihost.com/c2096.html c
http://brucegarza.247ihost.com/cisco6818.html cisco
http://anthonyjohnson.freehostplace.com/c3670.html... c
http://colemanjones.yoyohost.com/sql2513.html sql
http://colemanjones.yoyohost.com/web9508.html web
http://johnbecker.seitenclique.net/c1818.html c
http://johnbecker.seitenclique.net/cisco4812.html cisco
http://chadgriffin.yourfreehosting.net/c5068.html c
http://chadgriffin.yourfreehosting.net/sql8387.htm... sql
http://cherilofton.hostingtribe.com/c3573.html c
http://cherilofton.hostingtribe.com/file993.html file
http://lauragoldston.aokhost.com/c2108.html c
http://lauragoldston.aokhost.com/web4016.html web
http://raybumgarner.phreesite.com/c5128.html c
http://raybumgarner.phreesite.com/sql4481.html sql
http://michellemartinez.007sites.com/c9388.html c
http://dessieparker.domaingler.com/c4186.html c
http://nicolewaterbury.freewebhosting360.com/web61... web
http://nicolewaterbury.freewebhosting360.com/c4661... c
http://juanitaloewen.hothostcity.com/c9469.html c
http://juanitaloewen.hothostcity.com/web2497.html web
http://www.youtube.com/user/TyroneTadalafil
http://gracetrevino.phreesite.com/emo230.html model
http://bettyrhodes.007sites.com/emo5528.html rock
http://stephaniepalmer.domaingler.com/emo7271.html... gold
http://billydickerson.freewebhosting360.com/emo932... device
http://emanuelegerton.hothostcity.com/emo1509.html... engine
http://fanniecollins.hostevo.com/emo9760.html optimization
http://michaellay.247ihost.com/emo7969.html technique
http://donaldbarrett.freehostplace.com/emo3795.htm... chat
http://barbarakelly.2222mb.com/emo8611.html pdf
http://aprilwhite.yoyohost.com/emo8929.html skin
http://brendarichards.gigazu.com/emo7857.html wave
http://gregorytrevino.seitenclique.net/emo3867.htm... web
http://yvonnejones.678host.com/emo2729.html file
http://cynthiamcneil.yourfreehosting.net/emo837.ht... black
http://moniqueagarwal.aokhost.com/emo5092.html builder
http://damonbetts.phreesite.com/emo9952.html water
http://wilmaabbott.007sites.com/emo1299.html smart
http://veronicamcdonald.domaingler.com/emo9954.htm... mac
http://bernardsmith.freewebhosting360.com/emo5818.... dna
http://williamcunningham.hothostcity.com/emo8302.h... gta