Warning: You are using TidyHTML mode! Pages MAY and probably WILL break. To disable, click here or append 'xxx-off=1' to the URL!

Register - Login
Views: 57889938
Main - Memberlist - Active users - Calendar - Wiki - IRC Chat - Online users
Ranks - Rules/FAQ - JCS - Stats - Latest Posts - Color Chart - Smilies
10-16-14 05:38:20 PM
fortyfive-antelope

Jul - Posts by VL-Tone
Pages: 1 2 3 4 5 6 7 8 9 10 ... 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
VL-Tone
Member
Super Mario 64 forum moderator
Level: 48


Posts: 325/620
EXP: 792892
For next: 30651

Since: 07-27-07
From: Montreal, Canada

Since last post: 196 days
Last activity: 9 days

Posted on 10-19-08 03:49:11 PM, in ToadsTool Suggestions Link
Time: Now - Date: Today - Weather: What can be seen outside. - Mood: How it feels. Answer to the universe: 42
Originally posted by messiaen
Sorry, this was entirely my mistake. This was the command that I thought resulted in a script error:

10 0C 05 17 00 12 79 B0 00 12 A7 E0 -- experimental "conditional load" to load mario geo layout segment (main levels script)

TT64 correctly skipped it, but of course a script error will occur later on, because TT64 needs this geo layout to decode Mario polygons.

The solution will be pretty simple: include the original 0x17 commands and use the conditional after, so it works both in the game and in TT64.

Shame on me .




I could always implement this command in TT64, how does it work?

--------------------
VL-Tone
Member
Super Mario 64 forum moderator
Level: 48


Posts: 326/620
EXP: 792892
For next: 30651

Since: 07-27-07
From: Montreal, Canada

Since last post: 196 days
Last activity: 9 days

Posted on 10-19-08 04:35:42 PM, in ToadsTool Suggestions Link
Time: Now - Date: Today - Weather: What can be seen outside. - Mood: How it feels. Answer to the universe: 42
Originally posted by messiaen
It's still just a patchy solution for the specific case of loading Mario/Luigi banks. It justs checks one byte in memory and if it equals the parameter specified, the command is processed.

What I'm working on is a conditional like this:

[10 18 00 0A] [80 40 00 10] [00 00 00 03] [80 44 00 00] [00 C3 AF D5] [00 C4 F9 15]

= if 0x80400010 equals 0x00000003, then load bank 0x0A into extended memory starting at 0x80440000.

But this sort of thing will be better released as separate patches to make more advanced hacking easier, probably what could be implemented is just the extended memory loader, after it's tested more extensively.



TT64 doesn't need the RAM addresses, but it needs to know where the stuff is in the ROM so it can decode levels and scripts.

--------------------
VL-Tone
Member
Super Mario 64 forum moderator
Level: 48


Posts: 327/620
EXP: 792892
For next: 30651

Since: 07-27-07
From: Montreal, Canada

Since last post: 196 days
Last activity: 9 days

Posted on 10-19-08 10:50:19 PM, in Super Mario 64: The Missing Stars RELEASED! (Download link on first post) Link
Time: Now - Date: Today - Weather: What can be seen outside. - Mood: How it feels. Answer to the universe: 42
Wow that's really nice to see this thing progress. I'm eager to see (and play!) the results!

--------------------
VL-Tone
Member
Super Mario 64 forum moderator
Level: 48


Posts: 328/620
EXP: 792892
For next: 30651

Since: 07-27-07
From: Montreal, Canada

Since last post: 196 days
Last activity: 9 days

Posted on 10-21-08 08:22:14 AM, in Count the letters and fill the blanks. Link
Time: Now - Date: Today - Weather: What can be seen outside. - Mood: How it feels. Answer to the universe: 42
Originally posted by NSNick
I take the "only" to mean that there are no letters in the sentence besides the ones listed?

Also, I'm assuming that the sentence is correct grammatically, i.e. there wouldn't be something like "...one n's..."

With these assumptions, looking at the problem, I can begin by placing an upper bound of 39 on the maximum appearance of a letter. That's a start, I guess.



To put it simply, in this particular sentence, there's no "one", and obviously no "zero" either.

Yes the sentence must be correct grammatically, the letter count must be true.

--------------------
VL-Tone
Member
Super Mario 64 forum moderator
Level: 48


Posts: 329/620
EXP: 792892
For next: 30651

Since: 07-27-07
From: Montreal, Canada

Since last post: 196 days
Last activity: 9 days

Posted on 10-26-08 12:05:07 AM, in Toad's Tool 64 v0.5.994b bugfix release! Bug reports go here! (last edited by VL-Tone at 10-26-08 12:08 AM) Link
Time: Now - Date: Today - Weather: What can be seen outside. - Mood: How it feels. Answer to the universe: 42
Originally posted by Blaster
If you click between the orbit camera and reset camera button, TT64 displays the error:

Index out of range

Script Error. Continue?



Ok that's fixed. Clicking on that area would try to trigger an non-existent ninth camera mode.

Originally posted by CarCat
When you start TT64, and wait too long before clicking the title screen, the following error will occur:

Property not found:

*myColor

Script Error, Continue?

( Yes ), ( No )?



Arghh that dreaded *myColor bug!!

But I want to be sure, you mean: when you just launch TT64 and wait too long it will generate the error by itself? I can't reproduce the bug and I can't understand why it could happen in that context. The splash-screen just loops on the first frame of the movie (that's what Director projects are, "movies") until you click on it.

Originally posted by Blaster
Texture importing doesn't work in this version. When you import a texture, it doesn't show a preview in TT64 of it, and saving it to the rom doesn't make it show up in the game. The "Load textures from ROM" checkbox in TT64's preferences doesn't affect this.

Originally posted by VL-Tone
Are you 100% sure that the ROM you used to test is a totally clean extended ROM?

Yes.



Ah well, typical programming error...

I didn't change anything in the import texture code. But I did change something in the EditTexture handler, which is triggered when you select a texture, but also by the import texture routine, which uses it as a way to refresh the display.

To fix the problem with the "Load texture from ROM" mode, I changed the EditTexture handler so that it automatically loads the texture from the ROM (equivalent to "Revert texture from ROM"), doing so meant that the import texture function would correctly import the bitmap, but then revert it to the ROM version.

As a way to fix that I just decided to make texture saving automatic when you import, and removed the "Save Texture" and "Revert Texture" buttons altogether. Anyway, if you import by mistake over a custom texture, you normally should have a .png of it somewhere, and if it's an original texture, at worse you can export it from a clean ROM if you haven't already.

Another thing I improved while I was looking at the import texture code, is that texture should now automatically scale to if the imported size is wrong. You should still try to import textures of the right size, to have optimal quality. Make a habit of using the exported texture .png as a template for a modification.

Now that I fixed that, should I release another version now or do you have any other important bugs to submit (it could be a long standing bug that I forgot about).

I can try to fix the Flatworld bug, but I would need to know if only Blaster is having the problem, it would help me to figure out where to look.

--------------------
VL-Tone
Member
Super Mario 64 forum moderator
Level: 48


Posts: 330/620
EXP: 792892
For next: 30651

Since: 07-27-07
From: Montreal, Canada

Since last post: 196 days
Last activity: 9 days

Posted on 10-26-08 12:32:12 AM, in ToadsTool Suggestions (last edited by VL-Tone at 10-26-08 12:33 AM) Link
Time: Now - Date: Today - Weather: What can be seen outside. - Mood: How it feels. Answer to the universe: 42
Originally posted by AAA
2 Suggestions:
-Luigi's voice should be an octave higher
-In TT64 where you set the Mario size, after you enable Luigi, his size should be set as 1.0 and not 1.8



Luigi with Mario's voice an octave higher would sound like a chipmunk The voice should be higher, but not by that much. Still I don't think it would sound like Luigi at all. The voices need to be replaced by real Luigi voices. Maybe we could call Charles Martinet and ask him to record all the SM64 Mario voices as Luigi

As for Luigi's size. I admit that he's way too big at 1.8x. I made him smaller than in the video, but not enough. I always felt he was too small on the screen when I was trying smaller sizes, and I didn't even try to make any comparison with Mario. On the other hand, 1.0 would make Luigi smaller than Mario. That's because I had to reduce his overall polygonal size because since the transformation made him taller, his feet and legs were going through the ground. Changing the scale of all vertices fixed the problem.

Now, I decided to make a real comparison with Mario to find the ideal value. I determined that it should be 1.5x.



Not that it won't fix the door knob problem. Luigi is taller than Mario, and unless I change the animation data, the hand won't grab the knob at the right height.

Originally posted by GlitchGuy2
I have a suggestion for fitting extra features that may not be fit in the interface, I recall you had some trouble with that, is it possible to make it where right clicking the editor window (where 3D is rendered) to open a nice Windows menu to get to sided features (Perhaps moving the script editor there? As well as the Model importer/exporter in 0.7)
Just a small suggestion, knowing my luck you already found a solution to interface space



The big problem is that with Director, the hardware accelerated 3d view will always appear on top of everything unless I switch to software rendering, which is ugly and slow.

That's why all interface elements are outside the 3d view. That's why the yellow menu is not a pop-up menu that appears where you click on the parameter bar (having it always visible as its advantages though). The exception would be using standard menubar menus, which would appear on top of the 3d view. I hesitated to use these before because in previous versions of Director I read something about memory leaks when changing the menu content but I think it's fixed in Director 11.

--------------------
VL-Tone
Member
Super Mario 64 forum moderator
Level: 48


Posts: 331/620
EXP: 792892
For next: 30651

Since: 07-27-07
From: Montreal, Canada

Since last post: 196 days
Last activity: 9 days

Posted on 10-26-08 12:39:14 AM, in Toad's Tool 64 v0.5.994b bugfix release! Bug reports go here! Link
Time: Now - Date: Today - Weather: What can be seen outside. - Mood: How it feels. Answer to the universe: 42
I doubt I can do anything about the minimized switch crash. It must be a Director bug that may or may not be fixed in version 11.1. I could disable the minimize button though.

I'll try to fix the other bugs you are talking about, and if I can't fix them until monday I'll release the version I have now, with the other fixes.

--------------------
VL-Tone
Member
Super Mario 64 forum moderator
Level: 48


Posts: 332/620
EXP: 792892
For next: 30651

Since: 07-27-07
From: Montreal, Canada

Since last post: 196 days
Last activity: 9 days

Posted on 10-26-08 12:41:26 AM, in The great Luigi 64 easter egg hunt. Link
Time: Now - Date: Today - Weather: What can be seen outside. - Mood: How it feels. Answer to the universe: 42
Previous versions of TT64 didn't support using Enter in the size field, I added that feature at the same time as the Luigi easter egg. So that's a sure sign that 2nd Hero was not using the latest version.

--------------------
VL-Tone
Member
Super Mario 64 forum moderator
Level: 48


Posts: 333/620
EXP: 792892
For next: 30651

Since: 07-27-07
From: Montreal, Canada

Since last post: 196 days
Last activity: 9 days

Posted on 10-26-08 12:43:24 AM, in SM64 Music Editing Link
Time: Now - Date: Today - Weather: What can be seen outside. - Mood: How it feels. Answer to the universe: 42
Originally posted by messiaen

Edit: the input file must be in the .z64 format to avoid endianness (byte-order) issues



I've seen .z64 ROMs that didn't have the expected byte-order, so it may be a problem even with a ROM labelled as .z64.

--------------------
VL-Tone
Member
Super Mario 64 forum moderator
Level: 48


Posts: 334/620
EXP: 792892
For next: 30651

Since: 07-27-07
From: Montreal, Canada

Since last post: 196 days
Last activity: 9 days

Posted on 10-26-08 12:44:54 AM, in Toad's Tool 64 v0.5.994b bugfix release! Bug reports go here! Link
Time: Now - Date: Today - Weather: What can be seen outside. - Mood: How it feels. Answer to the universe: 42
Originally posted by Blaster
Originally posted by VL-Tone
I doubt I can do anything about the minimized switch crash. It must be a Director bug that may or may not be fixed in version 11.1. I could disable the minimize button though.

Well, i'd much prefer if you kept the minimize button there but it's your choice.



Does this crash bug happen often?

--------------------
VL-Tone
Member
Super Mario 64 forum moderator
Level: 48


Posts: 335/620
EXP: 792892
For next: 30651

Since: 07-27-07
From: Montreal, Canada

Since last post: 196 days
Last activity: 9 days

Posted on 10-27-08 11:25:04 PM, in Toad's Tool 64 v0.5.994b bugfix release! Bug reports go here! Link
Time: Now - Date: Today - Weather: What can be seen outside. - Mood: How it feels. Answer to the universe: 42
Originally posted by Blaster
I found out what causes this bug. If you choose the top view camera, and make sure "Select Object" is turned on, click on the view and all the Macro and Special 3d objects will dissappear from the view, along with their selection boxes.

Next, if you click on "Rotate Cam", you won't be able to right click on objects in the view to select them. If you then click on "Select Object", and click on the view, the macro and special objects will reappear and can be selected in the view by clicking and right-clicking on them.

Once you have done that, the "Rotate Cam" mode works normally again. If you click refresh after clicking in the view with the top view camera set and "Select Object" on, the objects and selection boxes will reappear but you won't be able to select any objects by right-clicking on them, unless you change to "Select Object" mode and click on an object.



Ok I fixed that one.



On other news:

These past two days I implemented new commands that will be accessible trough a real OS menu bar on the top of the window (or screen, on the Mac).

For now I have 3 menus.

File:
Open ROM...
Save ROM
Launch ROM
Quit Toad's Tool 64

Edit:
Undo
Copy Objects
Paste Objects (Pastes copied objects sequencially over the current selection)
Insert Objects (Pastes copied objects sequencially over Empty objects)
Clear Objects (Turns the selection into "Empty objects")
Duplicate Objects (Puts the duplicates over available empty objects)
Select All
Copy Params
Copy Hex Data
Paste Params
Revert Objects
Preferences...

Align:
Align X Minimum
Align X Center
Align X Maximum

Align Y Minimum
Align Y Center
Align Y Maximum

Align Z Minimum
Align Z Center
Align Z Maximum

Distribute Along X
Distribute Along Y
Distribute Along Z

Most of the commands found in menus have standard keyboard shortcuts.
All of these features work, but there's still some testing to do, I won't enable the menus until version 6.0b.

Do you have any suggestions on which currently available commands should be added to these menus?

As for bug fixes, I fixed problems with rotation, which would only affect one objects on multiple selection, when using the little rotation widgets in the param bar, or the vertical rotation widget.

Next step is the Background Importer/Exporter. It shouldn't be that complicated, I'll work on it next week-end.


--------------------
VL-Tone
Member
Super Mario 64 forum moderator
Level: 48


Posts: 336/620
EXP: 792892
For next: 30651

Since: 07-27-07
From: Montreal, Canada

Since last post: 196 days
Last activity: 9 days

Posted on 10-27-08 11:31:10 PM, in Super Mario 64: The Missing Stars RELEASED! (Download link on first post) Link
Time: Now - Date: Today - Weather: What can be seen outside. - Mood: How it feels. Answer to the universe: 42
The night-day cycle is a great idea messiaen.

As I just posted on the main TT64 bugfix stickies, I worked this week-end on implementing a lot of new commands planned for version 6.0b (Undo, Copy/Paste/Insert/Duplicate, Align and distribute commands), and my next step is working on the Background importer/exporter.

--------------------
VL-Tone
Member
Super Mario 64 forum moderator
Level: 48


Posts: 337/620
EXP: 792892
For next: 30651

Since: 07-27-07
From: Montreal, Canada

Since last post: 196 days
Last activity: 9 days

Posted on 11-02-08 05:22:04 AM, in 8-bit gamer test (last edited by VL-Tone at 11-02-08 05:24 AM) Link
Time: Now - Date: Today - Weather: What can be seen outside. - Mood: How it feels. Answer to the universe: 42
Got 14/16.

I didn't get:


Edit: I missed the same two as Xkeeper!

--------------------
VL-Tone
Member
Super Mario 64 forum moderator
Level: 48


Posts: 338/620
EXP: 792892
For next: 30651

Since: 07-27-07
From: Montreal, Canada

Since last post: 196 days
Last activity: 9 days

Posted on 11-02-08 05:49:49 PM, in Toad's Tool 64 v0.5.994b bugfix release! Bug reports go here! (last edited by VL-Tone at 11-03-08 12:21 AM) Link
Time: Now - Date: Today - Weather: What can be seen outside. - Mood: How it feels. Answer to the universe: 42

Today I'm releasing Toad's Tool 64 v0.5.994b!


It's available on the TT64 download page.

I skipped v0.5.993b, which was briefly seen on the download page without being officially released here. Thanks to Blaster who worked to find bugs in 0.5.993b.

So here are the bug fixes in v0.5.994b

-Fixed the Load texture button, which stopped working in v0.5.992b

-Fixed a problem where a script error would be generated when the user clicked between the "Orbit camera" and "Reset camera" buttons.''

-Fixed a problem where the right-click selection would stop working in certain circumstances.

-Fixed an issue where some objects would disappear.

-Some typos were corrected in level names.

-Fixed a problem where selecting multiple 0x43 objects of different length would generate an error.

-The Luigi easter egg should now set its size to 1.5x by default, which seems to be a correct size.

-Fixed a bad crash issue on Macs when saving custom labels (I blame the Buddy File Xtra).

-Fixed some other bug/issues.

-You can now double-click on description labels to edit them instead of having to hold the alt key. (Note, it doesn't have to be a quick double-click, once the param is selected, the second click will make the label editable.

-The new menus (File, Edit, Align) which will be officially released in v0.6b, can be enabled in this version by holding shift while clicking on the splash-screen. Very important: only use these menus while in the main editing page, don't use them while in the texture or preference pages.

Edit: If you do use the menus, don't use the copy/paste commands with 0x43 Special objects it could result in level corruption, which would make your level crash, and your ROM unloadable by TT64. The problem happens if you paste 0x43 objects that have a different length.





Originally posted by AAA
Originally posted by VL-Tone
Do you have any suggestions on which currently available commands should be added to these menus?

You can add a "Create Object" command which lets you select a model, assign it a behavior, and then save it for future use.



Well, you can simply clear an object (with the v0.6b menus) or use an empty objects, then select a model, a behavior and a description... I guess that a "Create object" command could automatically select the next empty object, and set all its act stars to ON. What this command couldn't do is add more objects in existing levels. You'd have to clear existing ones to create new ones.

Originally posted by Glitschen
Um, I have a question.
If I recall correctly, some research on Water/HMC Fog in SM64 was done awhile ago, was any of that research large enough that it could turn into a new feature in 0.6 or so?



It's probably well researched enough to add a feature in v0.6b, but it wouldn't magically add water to Flatworld battlefield. I guess that v0.7b will have the ability to specify if you want water or not in your imported level.

--------------------
VL-Tone
Member
Super Mario 64 forum moderator
Level: 48


Posts: 339/620
EXP: 792892
For next: 30651

Since: 07-27-07
From: Montreal, Canada

Since last post: 196 days
Last activity: 9 days

Posted on 11-03-08 12:18:48 AM, in ToadsTool Suggestions Link
Time: Now - Date: Today - Weather: What can be seen outside. - Mood: How it feels. Answer to the universe: 42
Originally posted by Blaster
A suggestion I have is to make the duplicate objects function work on macro objects as well.


Well you can copy and paste to achieve the same result.

The problem is that unlike 0x24 objects, 0x42 objects cannot be made "empty" because they don't have an Act value. Duplicate can only work when there are empty objects available. I guess you could set the Macro Preset param to 0 (labelled as "empty object") but I'm not sure of the implications of this, if the object indeed uses behavior 0, it will waste cpu cycles. I'll think about it, but I don't think it's a pressing issue, the real hacking nowadays seems to happen in Flatworld, and eventually in imported levels, and those will never feature Macro objects since they're just limited versions of 0x24 objects.

Something I just realized. Copying and pasting Special objects could result in level corruption, if you paste over objects that have a different length. I'll try to fix that by preventing you from pasting in that case.



--------------------
VL-Tone
Member
Super Mario 64 forum moderator
Level: 48


Posts: 340/620
EXP: 792892
For next: 30651

Since: 07-27-07
From: Montreal, Canada

Since last post: 196 days
Last activity: 9 days

Posted on 11-03-08 01:38:07 AM, in Toad's Tool 64 v0.5.994b bugfix release! Bug reports go here! Link
Time: Now - Date: Today - Weather: What can be seen outside. - Mood: How it feels. Answer to the universe: 42
Originally posted by Blaster
1. With the copy and paste tools, if you paste onto more objects than what you copied, TT64 will display the error:

Index out of range




Script Error. Continue?

2. I'm not sure if this is a bug or is normal, but if I change a macro object into an empty object, save the rom and then close TT64 and reopen it and the rom, the macro object that was empty dissappears from the list.



1. I'll look into this...

2. No it's not normal...

--------------------
VL-Tone
Member
Super Mario 64 forum moderator
Level: 48


Posts: 341/620
EXP: 792892
For next: 30651

Since: 07-27-07
From: Montreal, Canada

Since last post: 196 days
Last activity: 9 days

Posted on 11-04-08 12:51:15 AM, in Super Mario 64: The Missing Stars RELEASED! (Download link on first post) Link
Time: Now - Date: Today - Weather: What can be seen outside. - Mood: How it feels. Answer to the universe: 42
Originally posted by messiaen
I haven't worked much on this hack for the past week as my time was very limited and I was focusing on the music format. Nice work Celux, I'm looking forward to play this level.

Edit: I started working on something really useful. Now the "Universal Solid" behavior will have Param1 as "Scaling". That is, you can have multiple versions of the same platform in many sizes without doing any behavior/hex edit! I'll test it on the "Flat Lava Land" level and show some screenshots later on.



That's really nice! Man... it's almost how SM64 should've been programmed in the first place!

I assume that the scaling factor also affects the collision map scale? Because Tiny/Huge Island uses the same polygon mesh for both sizes, but two different collision maps, I always thought that the scaling factor didn't affect the collision map, I'm more than probably wrong about it, since I've seen you make oversized green pipes with working collision.

--------------------
VL-Tone
Member
Super Mario 64 forum moderator
Level: 48


Posts: 342/620
EXP: 792892
For next: 30651

Since: 07-27-07
From: Montreal, Canada

Since last post: 196 days
Last activity: 9 days

Posted on 11-04-08 08:38:18 AM, in Level Editing Topic (last edited by VL-Tone at 11-04-08 08:40 AM) Link
Time: Now - Date: Today - Weather: What can be seen outside. - Mood: How it feels. Answer to the universe: 42
Originally posted by Doogie1012


For a while I messed around with trying to find what the address is of what this is pointing to. Then I found the ROM Banks document so 07 on the ROM Banks document was :


007 = 01442528 - 01443440 << Geo/Scr




This is where you went wrong, this is not the right address, and it's not the right place to look for it.

The Bank numbers used in the document you're referring to are only used internally by TT64 to uniquely identify banks. The only place where this could ever be useful to you is if you looked inside the label.txt files, which use those. (The numbers are also used in the GeoLayoutPrts docs and labeled as "ROMBank:", but the real game bank numbers are also used in there.)

Real bank numbers used by the game never go higher than 0x0F anyway. And banks don't always contain the same data depending on the level. Bank 0x07 in particular contains level specific data. To find where this particular 0x15 command is pointing to, you have to know in which level it's used. Then, in the level script for that level, find the 0x17 command that loads data into the 0x07 RAM bank. This is where you'll find the base pointer for bank 0x07 in that particular case.

--------------------
VL-Tone
Member
Super Mario 64 forum moderator
Level: 48


Posts: 343/620
EXP: 792892
For next: 30651

Since: 07-27-07
From: Montreal, Canada

Since last post: 196 days
Last activity: 9 days

Posted on 11-09-08 12:42:08 AM, in Toad's Tool 0.6.0 (On hiatus for an indefinite amount of time) Link
Time: Now - Date: Today - Weather: What can be seen outside. - Mood: How it feels. Answer to the universe: 42
Originally posted by Blaster
Originally posted by AAA
Originally posted by Mario64
I Can't wait
for the Polygon Model
Importer in what for a version coming this?
Greetings Mario64


If you read the first post in this thread, it says 6.0.


No, VL-Tone has changed his mind and is putting the model importer in version 0.7b, not 0.6b (aka, I think, 6.0).



That is correct, I guess I should edit the first post. Version 0.6b should be released in a few weeks, 0.7 will probably be out somewhere in the first month or two of 2009.

BTW, just a little note, I'm currently far away from home, on a "business" trip. I should be back tuesday.

I'm typing this on my iPod touch, I have free wifi in my hotel room

--------------------
VL-Tone
Member
Super Mario 64 forum moderator
Level: 48


Posts: 344/620
EXP: 792892
For next: 30651

Since: 07-27-07
From: Montreal, Canada

Since last post: 196 days
Last activity: 9 days

Posted on 11-16-08 02:23:23 AM, in Help/Questions about Toad's Tool 64 and SM64 hacking Link
Time: Now - Date: Today - Weather: What can be seen outside. - Mood: How it feels. Answer to the universe: 42
Unfortunately, the collision map for the castle tower is stuck to the main terrain collision map, so while you can move the tower (or duplicate it), the collision map won't follow.

--------------------
Pages: 1 2 3 4 5 6 7 8 9 10 ... 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
Jul - Posts by VL-Tone






Rusted Logic

Acmlmboard - 07/23/2013 b378.03
©2000-2013 Acmlm, Xkeeper, Inuyasha, et al.
bargaining-tycoon
31 database queries, 46 query cache hits.
Query execution time:  0.046839 seconds
Script execution time:  0.194136 seconds
Total render time:  0.240975 seconds


TidyHTML vomit below
line 1 column 1 - Warning: missing <!DOCTYPE> declaration
line 94 column 11 - Warning: <form> isn't allowed in <table> elements
line 93 column 10 - Info: <table> previously mentioned
line 95 column 11 - Warning: missing <tr>
line 95 column 124 - Warning: missing </font> before </td>
line 99 column 16 - Warning: plain text isn't allowed in <tr> elements
line 95 column 11 - Info: <tr> previously mentioned
line 100 column 68 - Warning: <nobr> is not approved by W3C
line 100 column 68 - Warning: missing </nobr> before </td>
line 117 column 68 - Warning: <nobr> is not approved by W3C
line 117 column 68 - Warning: missing </nobr> before <tr>
line 141 column 35 - Warning: missing <tr>
line 141 column 50 - Warning: missing </font> before </td>
line 141 column 134 - Warning: missing </font> before </table>
line 143 column 35 - Warning: missing <tr>
line 143 column 94 - Warning: unescaped & or unknown entity "&page"
line 143 column 126 - Warning: unescaped & or unknown entity "&page"
line 143 column 158 - Warning: unescaped & or unknown entity "&page"
line 143 column 190 - Warning: unescaped & or unknown entity "&page"
line 143 column 222 - Warning: unescaped & or unknown entity "&page"
line 143 column 254 - Warning: unescaped & or unknown entity "&page"
line 143 column 286 - Warning: unescaped & or unknown entity "&page"
line 143 column 318 - Warning: unescaped & or unknown entity "&page"
line 143 column 350 - Warning: unescaped & or unknown entity "&page"
line 143 column 382 - Warning: unescaped & or unknown entity "&page"
line 143 column 419 - Warning: unescaped & or unknown entity "&page"
line 143 column 453 - Warning: unescaped & or unknown entity "&page"
line 143 column 487 - Warning: unescaped & or unknown entity "&page"
line 143 column 521 - Warning: unescaped & or unknown entity "&page"
line 143 column 558 - Warning: unescaped & or unknown entity "&page"
line 143 column 592 - Warning: unescaped & or unknown entity "&page"
line 143 column 626 - Warning: unescaped & or unknown entity "&page"
line 143 column 660 - Warning: unescaped & or unknown entity "&page"
line 143 column 694 - Warning: unescaped & or unknown entity "&page"
line 143 column 728 - Warning: unescaped & or unknown entity "&page"
line 143 column 762 - Warning: unescaped & or unknown entity "&page"
line 143 column 796 - Warning: unescaped & or unknown entity "&page"
line 143 column 830 - Warning: unescaped & or unknown entity "&page"
line 143 column 864 - Warning: unescaped & or unknown entity "&page"
line 143 column 898 - Warning: unescaped & or unknown entity "&page"
line 143 column 932 - Warning: unescaped & or unknown entity "&page"
line 143 column 966 - Warning: unescaped & or unknown entity "&page"
line 143 column 1000 - Warning: unescaped & or unknown entity "&page"
line 143 column 50 - Warning: missing </font> before </td>
line 143 column 1037 - Warning: missing </font> before </table>
line 150 column 9 - Warning: <div> isn't allowed in <tr> elements
line 149 column 9 - Info: <tr> previously mentioned
line 152 column 9 - Warning: missing <tr>
line 166 column 13 - Warning: missing <tr>
line 167 column 27 - Warning: <nobr> is not approved by W3C
line 169 column 73 - Warning: <style> isn't allowed in <td> elements
line 169 column 9 - Info: <td> previously mentioned
line 169 column 1511 - Warning: missing </font> before <blockquote>
line 169 column 1590 - Warning: inserting implicit <font>
line 169 column 1590 - Warning: missing </font> before <hr>
line 169 column 1655 - Warning: inserting implicit <font>
line 169 column 1655 - Warning: missing </font> before <hr>
line 178 column 1 - Warning: inserting implicit <font>
line 169 column 137 - Warning: missing </div>
line 182 column 15 - Warning: missing <td>
line 183 column 9 - Warning: <div> isn't allowed in <tr> elements
line 182 column 15 - Info: <tr> previously mentioned
line 185 column 9 - Warning: missing <tr>
line 199 column 13 - Warning: missing <tr>
line 200 column 27 - Warning: <nobr> is not approved by W3C
line 202 column 73 - Warning: <style> isn't allowed in <td> elements
line 202 column 9 - Info: <td> previously mentioned
line 202 column 1511 - Warning: missing </font> before <blockquote>
line 202 column 1590 - Warning: inserting implicit <font>
line 202 column 1590 - Warning: missing </font> before <hr>
line 203 column 1 - Warning: inserting implicit <font>
line 203 column 1 - Warning: missing </font> before <hr>
line 211 column 1 - Warning: inserting implicit <font>
line 202 column 137 - Warning: missing </div>
line 214 column 15 - Warning: missing <td>
line 215 column 9 - Warning: <div> isn't allowed in <tr> elements
line 214 column 15 - Info: <tr> previously mentioned
line 217 column 9 - Warning: missing <tr>
line 231 column 13 - Warning: missing <tr>
line 232 column 27 - Warning: <nobr> is not approved by W3C
line 234 column 73 - Warning: <style> isn't allowed in <td> elements
line 234 column 9 - Info: <td> previously mentioned
line 234 column 137 - Warning: missing </div>
line 236 column 15 - Warning: missing <td>
line 237 column 9 - Warning: <div> isn't allowed in <tr> elements
line 236 column 15 - Info: <tr> previously mentioned
line 239 column 9 - Warning: missing <tr>
line 253 column 13 - Warning: missing <tr>
line 254 column 27 - Warning: <nobr> is not approved by W3C
line 256 column 73 - Warning: <style> isn't allowed in <td> elements
line 256 column 9 - Info: <td> previously mentioned
line 256 column 1511 - Warning: missing </font> before <blockquote>
line 256 column 1590 - Warning: inserting implicit <font>
line 256 column 1590 - Warning: missing </font> before <hr>
line 256 column 1653 - Warning: inserting implicit <font>
line 256 column 1653 - Warning: missing </font> before <hr>
line 261 column 1 - Warning: inserting implicit <font>
line 256 column 137 - Warning: missing </div>
line 266 column 15 - Warning: missing <td>
line 267 column 9 - Warning: <div> isn't allowed in <tr> elements
line 266 column 15 - Info: <tr> previously mentioned
line 269 column 9 - Warning: missing <tr>
line 283 column 13 - Warning: missing <tr>
line 284 column 27 - Warning: <nobr> is not approved by W3C
line 286 column 73 - Warning: <style> isn't allowed in <td> elements
line 286 column 9 - Info: <td> previously mentioned
line 286 column 1511 - Warning: missing </font> before <blockquote>
line 286 column 1590 - Warning: inserting implicit <font>
line 286 column 1590 - Warning: missing </font> before <hr>
line 286 column 1654 - Warning: inserting implicit <font>
line 286 column 1654 - Warning: missing </font> before <hr>
line 291 column 1 - Warning: inserting implicit <font>
line 291 column 1 - Warning: missing </font> before <blockquote>
line 294 column 1937 - Warning: inserting implicit <font>
line 294 column 1937 - Warning: missing </font> before <hr>
line 294 column 2000 - Warning: inserting implicit <font>
line 294 column 2000 - Warning: missing </font> before <hr>
line 303 column 1 - Warning: inserting implicit <font>
line 303 column 1 - Warning: missing </font> before <blockquote>
line 308 column 2618 - Warning: inserting implicit <font>
line 308 column 2618 - Warning: missing </font> before <hr>
line 308 column 2682 - Warning: inserting implicit <font>
line 308 column 2682 - Warning: missing </font> before <blockquote>
line 310 column 2960 - Warning: inserting implicit <font>
line 310 column 2960 - Warning: missing </font> before <hr>
line 310 column 3024 - Warning: inserting implicit <font>
line 310 column 3024 - Warning: missing </font> before <hr>
line 311 column 1 - Warning: inserting implicit <font>
line 311 column 1 - Warning: missing </font> before <hr>
line 312 column 1 - Warning: inserting implicit <font>
line 286 column 137 - Warning: missing </div>
line 327 column 15 - Warning: missing <td>
line 328 column 9 - Warning: <div> isn't allowed in <tr> elements
line 327 column 15 - Info: <tr> previously mentioned
line 330 column 9 - Warning: missing <tr>
line 344 column 13 - Warning: missing <tr>
line 345 column 27 - Warning: <nobr> is not approved by W3C
line 347 column 73 - Warning: <style> isn't allowed in <td> elements
line 347 column 9 - Info: <td> previously mentioned
line 347 column 1511 - Warning: missing </font> before <blockquote>
line 347 column 1590 - Warning: inserting implicit <font>
line 347 column 1590 - Warning: missing </font> before <hr>
line 347 column 1650 - Warning: inserting implicit <font>
line 347 column 1650 - Warning: missing </font> before <hr>
line 350 column 1 - Warning: inserting implicit <font>
line 350 column 1 - Warning: missing </font> before <blockquote>
line 361 column 3173 - Warning: inserting implicit <font>
line 361 column 3173 - Warning: missing </font> before <hr>
line 361 column 3240 - Warning: inserting implicit <font>
line 361 column 3240 - Warning: missing </font> before <hr>
line 363 column 1 - Warning: inserting implicit <font>
line 347 column 137 - Warning: missing </div>
line 368 column 15 - Warning: missing <td>
line 369 column 9 - Warning: <div> isn't allowed in <tr> elements
line 368 column 15 - Info: <tr> previously mentioned
line 371 column 9 - Warning: missing <tr>
line 385 column 13 - Warning: missing <tr>
line 386 column 27 - Warning: <nobr> is not approved by W3C
line 388 column 73 - Warning: <style> isn't allowed in <td> elements
line 388 column 9 - Info: <td> previously mentioned
line 388 column 137 - Warning: missing </div>
line 392 column 15 - Warning: missing <td>
line 393 column 9 - Warning: <div> isn't allowed in <tr> elements
line 392 column 15 - Info: <tr> previously mentioned
line 395 column 9 - Warning: missing <tr>
line 409 column 13 - Warning: missing <tr>
line 410 column 27 - Warning: <nobr> is not approved by W3C
line 412 column 73 - Warning: <style> isn't allowed in <td> elements
line 412 column 9 - Info: <td> previously mentioned
line 412 column 137 - Warning: missing </div>
line 414 column 15 - Warning: missing <td>
line 415 column 9 - Warning: <div> isn't allowed in <tr> elements
line 414 column 15 - Info: <tr> previously mentioned
line 417 column 9 - Warning: missing <tr>
line 431 column 13 - Warning: missing <tr>
line 432 column 27 - Warning: <nobr> is not approved by W3C
line 434 column 73 - Warning: <style> isn't allowed in <td> elements
line 434 column 9 - Info: <td> previously mentioned
line 434 column 1511 - Warning: missing </font> before <blockquote>
line 434 column 1590 - Warning: inserting implicit <font>
line 434 column 1590 - Warning: missing </font> before <hr>
line 435 column 1 - Warning: inserting implicit <font>
line 435 column 1 - Warning: missing </font> before <hr>
line 435 column 1758 - Warning: inserting implicit <font>
line 436 column 1 - Warning: inserting implicit <font>
line 434 column 137 - Warning: missing </div>
line 439 column 15 - Warning: missing <td>
line 440 column 9 - Warning: <div> isn't allowed in <tr> elements
line 439 column 15 - Info: <tr> previously mentioned
line 442 column 9 - Warning: missing <tr>
line 456 column 13 - Warning: missing <tr>
line 457 column 27 - Warning: <nobr> is not approved by W3C
line 459 column 73 - Warning: <style> isn't allowed in <td> elements
line 459 column 9 - Info: <td> previously mentioned
line 459 column 1511 - Warning: missing </font> before <blockquote>
line 459 column 1590 - Warning: inserting implicit <font>
line 459 column 1590 - Warning: missing </font> before <hr>
line 459 column 1666 - Warning: inserting implicit <font>
line 459 column 1666 - Warning: missing </font> before <hr>
line 459 column 1730 - Warning: inserting implicit <font>
line 459 column 1730 - Warning: missing </font> before <hr>
line 460 column 1 - Warning: inserting implicit <font>
line 460 column 1 - Warning: missing </font> before <hr>
line 461 column 1 - Warning: inserting implicit <font>
line 459 column 137 - Warning: missing </div>
line 464 column 15 - Warning: missing <td>
line 465 column 9 - Warning: <div> isn't allowed in <tr> elements
line 464 column 15 - Info: <tr> previously mentioned
line 467 column 9 - Warning: missing <tr>
line 481 column 13 - Warning: missing <tr>
line 482 column 27 - Warning: <nobr> is not approved by W3C
line 484 column 73 - Warning: <style> isn't allowed in <td> elements
line 484 column 9 - Info: <td> previously mentioned
line 484 column 1511 - Warning: missing </font> before <blockquote>
line 484 column 1590 - Warning: inserting implicit <font>
line 484 column 1590 - Warning: missing </font> before <hr>
line 485 column 1 - Warning: inserting implicit <font>
line 485 column 1 - Warning: missing </font> before <hr>
line 488 column 2549 - Warning: inserting implicit <font>
line 489 column 1 - Warning: inserting implicit <font>
line 489 column 1 - Warning: missing </font> before <hr>
line 493 column 1 - Warning: inserting implicit <font>
line 484 column 137 - Warning: missing </div>
line 546 column 15 - Warning: missing <td>
line 547 column 9 - Warning: <div> isn't allowed in <tr> elements
line 546 column 15 - Info: <tr> previously mentioned
line 549 column 9 - Warning: missing <tr>
line 563 column 13 - Warning: missing <tr>
line 564 column 27 - Warning: <nobr> is not approved by W3C
line 566 column 73 - Warning: <style> isn't allowed in <td> elements
line 566 column 9 - Info: <td> previously mentioned
line 566 column 137 - Warning: missing </div>
line 570 column 15 - Warning: missing <td>
line 571 column 9 - Warning: <div> isn't allowed in <tr> elements
line 570 column 15 - Info: <tr> previously mentioned
line 573 column 9 - Warning: missing <tr>
line 587 column 13 - Warning: missing <tr>
line 588 column 27 - Warning: <nobr> is not approved by W3C
line 590 column 73 - Warning: <style> isn't allowed in <td> elements
line 590 column 9 - Info: <td> previously mentioned
line 590 column 137 - Warning: missing </div>
line 597 column 15 - Warning: missing <td>
line 598 column 9 - Warning: <div> isn't allowed in <tr> elements
line 597 column 15 - Info: <tr> previously mentioned
line 600 column 9 - Warning: missing <tr>
line 614 column 13 - Warning: missing <tr>
line 615 column 27 - Warning: <nobr> is not approved by W3C
line 617 column 73 - Warning: <style> isn't allowed in <td> elements
line 617 column 9 - Info: <td> previously mentioned
line 617 column 1511 - Warning: missing </font> before <h2>
line 617 column 1582 - Warning: inserting implicit <font>
line 618 column 1 - Warning: inserting implicit <font>
line 618 column 1 - Warning: missing </font> before <hr>
line 650 column 1 - Warning: inserting implicit <font>
line 650 column 1 - Warning: missing </font> before <blockquote>
line 651 column 3591 - Warning: inserting implicit <font>
line 651 column 3591 - Warning: missing </font> before <hr>
line 651 column 3663 - Warning: inserting implicit <font>
line 651 column 3663 - Warning: missing </font> before <hr>
line 651 column 3727 - Warning: inserting implicit <font>
line 651 column 3727 - Warning: missing </font> before <hr>
line 652 column 1 - Warning: inserting implicit <font>
line 652 column 1 - Warning: missing </font> before <hr>
line 653 column 1 - Warning: inserting implicit <font>
line 653 column 1 - Warning: missing </font> before <blockquote>
line 656 column 4396 - Warning: inserting implicit <font>
line 656 column 4396 - Warning: missing </font> before <hr>
line 656 column 4462 - Warning: inserting implicit <font>
line 656 column 4462 - Warning: missing </font> before <hr>
line 658 column 1 - Warning: inserting implicit <font>
line 617 column 137 - Warning: missing </div>
line 661 column 15 - Warning: missing <td>
line 662 column 9 - Warning: <div> isn't allowed in <tr> elements
line 661 column 15 - Info: <tr> previously mentioned
line 664 column 9 - Warning: missing <tr>
line 678 column 13 - Warning: missing <tr>
line 679 column 27 - Warning: <nobr> is not approved by W3C
line 681 column 73 - Warning: <style> isn't allowed in <td> elements
line 681 column 9 - Info: <td> previously mentioned
line 681 column 1511 - Warning: missing </font> before <blockquote>
line 681 column 1590 - Warning: inserting implicit <font>
line 681 column 1590 - Warning: missing </font> before <hr>
line 681 column 1654 - Warning: inserting implicit <font>
line 681 column 1654 - Warning: missing </font> before <hr>
line 682 column 1 - Warning: inserting implicit <font>
line 681 column 137 - Warning: missing </div>
line 691 column 15 - Warning: missing <td>
line 692 column 9 - Warning: <div> isn't allowed in <tr> elements
line 691 column 15 - Info: <tr> previously mentioned
line 694 column 9 - Warning: missing <tr>
line 708 column 13 - Warning: missing <tr>
line 709 column 27 - Warning: <nobr> is not approved by W3C
line 711 column 73 - Warning: <style> isn't allowed in <td> elements
line 711 column 9 - Info: <td> previously mentioned
line 711 column 1511 - Warning: missing </font> before <blockquote>
line 711 column 1590 - Warning: inserting implicit <font>
line 711 column 1590 - Warning: missing </font> before <hr>
line 711 column 1654 - Warning: inserting implicit <font>
line 711 column 1654 - Warning: missing </font> before <hr>
line 721 column 1 - Warning: inserting implicit <font>
line 711 column 137 - Warning: missing </div>
line 726 column 15 - Warning: missing <td>
line 727 column 9 - Warning: <div> isn't allowed in <tr> elements
line 726 column 15 - Info: <tr> previously mentioned
line 729 column 9 - Warning: missing <tr>
line 743 column 13 - Warning: missing <tr>
line 744 column 27 - Warning: <nobr> is not approved by W3C
line 746 column 73 - Warning: <style> isn't allowed in <td> elements
line 746 column 9 - Info: <td> previously mentioned
line 746 column 1511 - Warning: missing </font> before <blockquote>
line 746 column 1590 - Warning: inserting implicit <font>
line 746 column 1590 - Warning: missing </font> before <hr>
line 746 column 1655 - Warning: inserting implicit <font>
line 746 column 1655 - Warning: missing </font> before <hr>
line 749 column 1 - Warning: inserting implicit <font>
line 746 column 137 - Warning: missing </div>
line 754 column 15 - Warning: missing <td>
line 755 column 9 - Warning: <div> isn't allowed in <tr> elements
line 754 column 15 - Info: <tr> previously mentioned
line 757 column 9 - Warning: missing <tr>
line 771 column 13 - Warning: missing <tr>
line 772 column 27 - Warning: <nobr> is not approved by W3C
line 774 column 73 - Warning: <style> isn't allowed in <td> elements
line 774 column 9 - Info: <td> previously mentioned
line 774 column 1511 - Warning: missing </font> before <blockquote>
line 774 column 1590 - Warning: inserting implicit <font>
line 774 column 1590 - Warning: missing </font> before <hr>
line 775 column 1 - Warning: inserting implicit <font>
line 775 column 1 - Warning: missing </font> before <blockquote>
line 778 column 1855 - Warning: inserting implicit <font>
line 778 column 1855 - Warning: missing </font> before <hr>
line 778 column 1859 - Warning: inserting implicit <font>
line 778 column 1859 - Warning: missing </font> before <hr>
line 779 column 1 - Warning: inserting implicit <font>
line 779 column 1 - Warning: missing </font> before <hr>
line 780 column 1 - Warning: inserting implicit <font>
line 774 column 137 - Warning: missing </div>
line 787 column 15 - Warning: missing <td>
line 788 column 9 - Warning: <div> isn't allowed in <tr> elements
line 787 column 15 - Info: <tr> previously mentioned
line 790 column 9 - Warning: missing <tr>
line 804 column 13 - Warning: missing <tr>
line 805 column 27 - Warning: <nobr> is not approved by W3C
line 807 column 73 - Warning: <style> isn't allowed in <td> elements
line 807 column 9 - Info: <td> previously mentioned
line 807 column 1511 - Warning: missing </font> before <blockquote>
line 807 column 1590 - Warning: inserting implicit <font>
line 807 column 1590 - Warning: missing </font> before <hr>
line 807 column 1666 - Warning: inserting implicit <font>
line 807 column 1666 - Warning: missing </font> before <hr>
line 807 column 1738 - Warning: inserting implicit <font>
line 807 column 1738 - Warning: missing </font> before <hr>
line 807 column 1802 - Warning: inserting implicit <font>
line 807 column 1802 - Warning: missing </font> before <hr>
line 811 column 1915 - Warning: inserting implicit <font>
line 812 column 1 - Warning: inserting implicit <font>
line 812 column 1 - Warning: missing </font> before <hr>
line 813 column 1 - Warning: inserting implicit <font>
line 813 column 1 - Warning: missing </font> before <hr>
line 814 column 1 - Warning: inserting implicit <font>
line 807 column 137 - Warning: missing </div>
line 821 column 15 - Warning: missing <td>
line 822 column 9 - Warning: <div> isn't allowed in <tr> elements
line 821 column 15 - Info: <tr> previously mentioned
line 824 column 9 - Warning: missing <tr>
line 838 column 13 - Warning: missing <tr>
line 839 column 27 - Warning: <nobr> is not approved by W3C
line 841 column 73 - Warning: <style> isn't allowed in <td> elements
line 841 column 9 - Info: <td> previously mentioned
line 841 column 137 - Warning: missing </div>
line 844 column 17 - Warning: discarding unexpected <table>
line 847 column 35 - Warning: missing <tr>
line 847 column 94 - Warning: unescaped & or unknown entity "&page"
line 847 column 126 - Warning: unescaped & or unknown entity "&page"
line 847 column 158 - Warning: unescaped & or unknown entity "&page"
line 847 column 190 - Warning: unescaped & or unknown entity "&page"
line 847 column 222 - Warning: unescaped & or unknown entity "&page"
line 847 column 254 - Warning: unescaped & or unknown entity "&page"
line 847 column 286 - Warning: unescaped & or unknown entity "&page"
line 847 column 318 - Warning: unescaped & or unknown entity "&page"
line 847 column 350 - Warning: unescaped & or unknown entity "&page"
line 847 column 382 - Warning: unescaped & or unknown entity "&page"
line 847 column 419 - Warning: unescaped & or unknown entity "&page"
line 847 column 453 - Warning: unescaped & or unknown entity "&page"
line 847 column 487 - Warning: unescaped & or unknown entity "&page"
line 847 column 521 - Warning: unescaped & or unknown entity "&page"
line 847 column 558 - Warning: unescaped & or unknown entity "&page"
line 847 column 592 - Warning: unescaped & or unknown entity "&page"
line 847 column 626 - Warning: unescaped & or unknown entity "&page"
line 847 column 660 - Warning: unescaped & or unknown entity "&page"
line 847 column 694 - Warning: unescaped & or unknown entity "&page"
line 847 column 728 - Warning: unescaped & or unknown entity "&page"
line 847 column 762 - Warning: unescaped & or unknown entity "&page"
line 847 column 796 - Warning: unescaped & or unknown entity "&page"
line 847 column 830 - Warning: unescaped & or unknown entity "&page"
line 847 column 864 - Warning: unescaped & or unknown entity "&page"
line 847 column 898 - Warning: unescaped & or unknown entity "&page"
line 847 column 932 - Warning: unescaped & or unknown entity "&page"
line 847 column 966 - Warning: unescaped & or unknown entity "&page"
line 847 column 1000 - Warning: unescaped & or unknown entity "&page"
line 847 column 50 - Warning: missing </font> before </td>
line 847 column 1037 - Warning: missing </font> before </table>
line 849 column 35 - Warning: missing <tr>
line 849 column 50 - Warning: missing </font> before </td>
line 849 column 134 - Warning: missing </font> before </table>
line 851 column 17 - Warning: discarding unexpected </textarea>
line 851 column 28 - Warning: discarding unexpected </form>
line 851 column 35 - Warning: discarding unexpected </embed>
line 851 column 43 - Warning: discarding unexpected </noembed>
line 851 column 53 - Warning: discarding unexpected </noscript>
line 851 column 64 - Warning: discarding unexpected </noembed>
line 851 column 74 - Warning: discarding unexpected </embed>
line 851 column 82 - Warning: discarding unexpected </table>
line 851 column 90 - Warning: discarding unexpected </table>
line 860 column 9 - Warning: missing </font> before <table>
line 876 column 9 - Warning: inserting implicit <font>
line 888 column 23 - Warning: inserting implicit <font>
line 895 column 58 - Warning: discarding unexpected </font>
line 853 column 1 - Warning: missing </center>
line 91 column 9 - Warning: <img> lacks "alt" attribute
line 93 column 10 - Warning: <table> lacks "summary" attribute
line 95 column 63 - Warning: <img> lacks "alt" attribute
line 100 column 19 - Warning: <td> attribute "width" has invalid value "120px"
line 100 column 93 - Warning: <img> lacks "alt" attribute
line 117 column 19 - Warning: <td> attribute "width" has invalid value "120px"
line 117 column 98 - Warning: <img> lacks "alt" attribute
line 136 column 1 - Warning: <table> lacks "summary" attribute
line 136 column 240 - Warning: <td> attribute "bgcolor" lacks value
line 141 column 17 - Warning: <table> lacks "summary" attribute
line 143 column 17 - Warning: <table> lacks "summary" attribute
line 151 column 9 - Warning: <table> lacks "summary" attribute
line 155 column 22 - Warning: <img> lacks "alt" attribute
line 155 column 63 - Warning: <img> lacks "alt" attribute
line 155 column 112 - Warning: <img> lacks "alt" attribute
line 155 column 162 - Warning: <img> lacks "alt" attribute
line 162 column 15 - Warning: <img> lacks "alt" attribute
line 165 column 11 - Warning: <table> lacks "summary" attribute
line 169 column 157 - Warning: <table> proprietary attribute "height"
line 169 column 157 - Warning: <table> lacks "summary" attribute
line 169 column 222 - Warning: <td> proprietary attribute "background"
line 169 column 318 - Warning: <td> proprietary attribute "background"
line 169 column 408 - Warning: <table> proprietary attribute "height"
line 169 column 408 - Warning: <table> lacks "summary" attribute
line 169 column 488 - Warning: <td> proprietary attribute "background"
line 169 column 693 - Warning: <img> lacks "alt" attribute
line 169 column 1443 - Warning: <td> proprietary attribute "background"
line 177 column 2211 - Warning: <img> proprietary attribute value "absmiddle"
line 177 column 2211 - Warning: <img> lacks "alt" attribute
line 180 column 2438 - Warning: <img> lacks "alt" attribute
line 180 column 2597 - Warning: <img> lacks "alt" attribute
line 184 column 9 - Warning: <table> lacks "summary" attribute
line 188 column 22 - Warning: <img> lacks "alt" attribute
line 188 column 63 - Warning: <img> lacks "alt" attribute
line 188 column 112 - Warning: <img> lacks "alt" attribute
line 188 column 162 - Warning: <img> lacks "alt" attribute
line 195 column 15 - Warning: <img> lacks "alt" attribute
line 198 column 11 - Warning: <table> lacks "summary" attribute
line 202 column 157 - Warning: <table> proprietary attribute "height"
line 202 column 157 - Warning: <table> lacks "summary" attribute
line 202 column 222 - Warning: <td> proprietary attribute "background"
line 202 column 318 - Warning: <td> proprietary attribute "background"
line 202 column 408 - Warning: <table> proprietary attribute "height"
line 202 column 408 - Warning: <table> lacks "summary" attribute
line 202 column 488 - Warning: <td> proprietary attribute "background"
line 202 column 693 - Warning: <img> lacks "alt" attribute
line 202 column 1443 - Warning: <td> proprietary attribute "background"
line 212 column 2548 - Warning: <img> lacks "alt" attribute
line 212 column 2707 - Warning: <img> lacks "alt" attribute
line 216 column 9 - Warning: <table> lacks "summary" attribute
line 220 column 22 - Warning: <img> lacks "alt" attribute
line 220 column 63 - Warning: <img> lacks "alt" attribute
line 220 column 112 - Warning: <img> lacks "alt" attribute
line 220 column 162 - Warning: <img> lacks "alt" attribute
line 227 column 15 - Warning: <img> lacks "alt" attribute
line 230 column 11 - Warning: <table> lacks "summary" attribute
line 234 column 157 - Warning: <table> proprietary attribute "height"
line 234 column 157 - Warning: <table> lacks "summary" attribute
line 234 column 222 - Warning: <td> proprietary attribute "background"
line 234 column 318 - Warning: <td> proprietary attribute "background"
line 234 column 408 - Warning: <table> proprietary attribute "height"
line 234 column 408 - Warning: <table> lacks "summary" attribute
line 234 column 488 - Warning: <td> proprietary attribute "background"
line 234 column 693 - Warning: <img> lacks "alt" attribute
line 234 column 1443 - Warning: <td> proprietary attribute "background"
line 234 column 1752 - Warning: <img> lacks "alt" attribute
line 234 column 1911 - Warning: <img> lacks "alt" attribute
line 238 column 9 - Warning: <table> lacks "summary" attribute
line 242 column 22 - Warning: <img> lacks "alt" attribute
line 242 column 63 - Warning: <img> lacks "alt" attribute
line 242 column 112 - Warning: <img> lacks "alt" attribute
line 242 column 162 - Warning: <img> lacks "alt" attribute
line 249 column 15 - Warning: <img> lacks "alt" attribute
line 252 column 11 - Warning: <table> lacks "summary" attribute
line 256 column 157 - Warning: <table> proprietary attribute "height"
line 256 column 157 - Warning: <table> lacks "summary" attribute
line 256 column 222 - Warning: <td> proprietary attribute "background"
line 256 column 318 - Warning: <td> proprietary attribute "background"
line 256 column 408 - Warning: <table> proprietary attribute "height"
line 256 column 408 - Warning: <table> lacks "summary" attribute
line 256 column 488 - Warning: <td> proprietary attribute "background"
line 256 column 693 - Warning: <img> lacks "alt" attribute
line 256 column 1443 - Warning: <td> proprietary attribute "background"
line 260 column 2033 - Warning: <img> proprietary attribute value "absmiddle"
line 260 column 2033 - Warning: <img> lacks "alt" attribute
line 260 column 2084 - Warning: <img> proprietary attribute value "absmiddle"
line 260 column 2084 - Warning: <img> lacks "alt" attribute
line 264 column 2423 - Warning: <img> lacks "alt" attribute
line 264 column 2582 - Warning: <img> lacks "alt" attribute
line 268 column 9 - Warning: <table> lacks "summary" attribute
line 272 column 22 - Warning: <img> lacks "alt" attribute
line 272 column 63 - Warning: <img> lacks "alt" attribute
line 272 column 112 - Warning: <img> lacks "alt" attribute
line 272 column 162 - Warning: <img> lacks "alt" attribute
line 279 column 15 - Warning: <img> lacks "alt" attribute
line 282 column 11 - Warning: <table> lacks "summary" attribute
line 286 column 157 - Warning: <table> proprietary attribute "height"
line 286 column 157 - Warning: <table> lacks "summary" attribute
line 286 column 222 - Warning: <td> proprietary attribute "background"
line 286 column 318 - Warning: <td> proprietary attribute "background"
line 286 column 408 - Warning: <table> proprietary attribute "height"
line 286 column 408 - Warning: <table> lacks "summary" attribute
line 286 column 488 - Warning: <td> proprietary attribute "background"
line 286 column 693 - Warning: <img> lacks "alt" attribute
line 286 column 1443 - Warning: <td> proprietary attribute "background"
line 325 column 4864 - Warning: <img> lacks "alt" attribute
line 325 column 5023 - Warning: <img> lacks "alt" attribute
line 329 column 9 - Warning: <table> lacks "summary" attribute
line 333 column 22 - Warning: <img> lacks "alt" attribute
line 333 column 63 - Warning: <img> lacks "alt" attribute
line 333 column 112 - Warning: <img> lacks "alt" attribute
line 333 column 162 - Warning: <img> lacks "alt" attribute
line 340 column 15 - Warning: <img> lacks "alt" attribute
line 343 column 11 - Warning: <table> lacks "summary" attribute
line 347 column 157 - Warning: <table> proprietary attribute "height"
line 347 column 157 - Warning: <table> lacks "summary" attribute
line 347 column 222 - Warning: <td> proprietary attribute "background"
line 347 column 318 - Warning: <td> proprietary attribute "background"
line 347 column 408 - Warning: <table> proprietary attribute "height"
line 347 column 408 - Warning: <table> lacks "summary" attribute
line 347 column 488 - Warning: <td> proprietary attribute "background"
line 347 column 693 - Warning: <img> lacks "alt" attribute
line 347 column 1443 - Warning: <td> proprietary attribute "background"
line 351 column 1912 - Warning: <img> proprietary attribute value "absmiddle"
line 351 column 1912 - Warning: <img> lacks "alt" attribute
line 351 column 2214 - Warning: <img> proprietary attribute value "absmiddle"
line 351 column 2214 - Warning: <img> lacks "alt" attribute
line 357 column 2920 - Warning: <img> lacks "alt" attribute
line 362 column 3687 - Warning: <img> proprietary attribute value "absmiddle"
line 362 column 3687 - Warning: <img> lacks "alt" attribute
line 366 column 4511 - Warning: <img> lacks "alt" attribute
line 366 column 4670 - Warning: <img> lacks "alt" attribute
line 370 column 9 - Warning: <table> lacks "summary" attribute
line 374 column 22 - Warning: <img> lacks "alt" attribute
line 374 column 63 - Warning: <img> lacks "alt" attribute
line 374 column 112 - Warning: <img> lacks "alt" attribute
line 374 column 162 - Warning: <img> lacks "alt" attribute
line 381 column 15 - Warning: <img> lacks "alt" attribute
line 384 column 11 - Warning: <table> lacks "summary" attribute
line 388 column 157 - Warning: <table> proprietary attribute "height"
line 388 column 157 - Warning: <table> lacks "summary" attribute
line 388 column 222 - Warning: <td> proprietary attribute "background"
line 388 column 318 - Warning: <td> proprietary attribute "background"
line 388 column 408 - Warning: <table> proprietary attribute "height"
line 388 column 408 - Warning: <table> lacks "summary" attribute
line 388 column 488 - Warning: <td> proprietary attribute "background"
line 388 column 693 - Warning: <img> lacks "alt" attribute
line 388 column 1443 - Warning: <td> proprietary attribute "background"
line 390 column 1992 - Warning: <img> lacks "alt" attribute
line 390 column 2151 - Warning: <img> lacks "alt" attribute
line 394 column 9 - Warning: <table> lacks "summary" attribute
line 398 column 22 - Warning: <img> lacks "alt" attribute
line 398 column 63 - Warning: <img> lacks "alt" attribute
line 398 column 112 - Warning: <img> lacks "alt" attribute
line 398 column 162 - Warning: <img> lacks "alt" attribute
line 405 column 15 - Warning: <img> lacks "alt" attribute
line 408 column 11 - Warning: <table> lacks "summary" attribute
line 412 column 157 - Warning: <table> proprietary attribute "height"
line 412 column 157 - Warning: <table> lacks "summary" attribute
line 412 column 222 - Warning: <td> proprietary attribute "background"
line 412 column 318 - Warning: <td> proprietary attribute "background"
line 412 column 408 - Warning: <table> proprietary attribute "height"
line 412 column 408 - Warning: <table> lacks "summary" attribute
line 412 column 488 - Warning: <td> proprietary attribute "background"
line 412 column 693 - Warning: <img> lacks "alt" attribute
line 412 column 1443 - Warning: <td> proprietary attribute "background"
line 412 column 1864 - Warning: <img> lacks "alt" attribute
line 412 column 2023 - Warning: <img> lacks "alt" attribute
line 416 column 9 - Warning: <table> lacks "summary" attribute
line 420 column 22 - Warning: <img> lacks "alt" attribute
line 420 column 63 - Warning: <img> lacks "alt" attribute
line 420 column 112 - Warning: <img> lacks "alt" attribute
line 420 column 162 - Warning: <img> lacks "alt" attribute
line 427 column 15 - Warning: <img> lacks "alt" attribute
line 430 column 11 - Warning: <table> lacks "summary" attribute
line 434 column 157 - Warning: <table> proprietary attribute "height"
line 434 column 157 - Warning: <table> lacks "summary" attribute
line 434 column 222 - Warning: <td> proprietary attribute "background"
line 434 column 318 - Warning: <td> proprietary attribute "background"
line 434 column 408 - Warning: <table> proprietary attribute "height"
line 434 column 408 - Warning: <table> lacks "summary" attribute
line 434 column 488 - Warning: <td> proprietary attribute "background"
line 434 column 693 - Warning: <img> lacks "alt" attribute
line 434 column 1443 - Warning: <td> proprietary attribute "background"
line 437 column 1979 - Warning: <img> lacks "alt" attribute
line 437 column 2138 - Warning: <img> lacks "alt" attribute
line 441 column 9 - Warning: <table> lacks "summary" attribute
line 445 column 22 - Warning: <img> lacks "alt" attribute
line 445 column 63 - Warning: <img> lacks "alt" attribute
line 445 column 112 - Warning: <img> lacks "alt" attribute
line 445 column 162 - Warning: <img> lacks "alt" attribute
line 452 column 15 - Warning: <img> lacks "alt" attribute
line 455 column 11 - Warning: <table> lacks "summary" attribute
line 459 column 157 - Warning: <table> proprietary attribute "height"
line 459 column 157 - Warning: <table> lacks "summary" attribute
line 459 column 222 - Warning: <td> proprietary attribute "background"
line 459 column 318 - Warning: <td> proprietary attribute "background"
line 459 column 408 - Warning: <table> proprietary attribute "height"
line 459 column 408 - Warning: <table> lacks "summary" attribute
line 459 column 488 - Warning: <td> proprietary attribute "background"
line 459 column 693 - Warning: <img> lacks "alt" attribute
line 459 column 1443 - Warning: <td> proprietary attribute "background"
line 462 column 2147 - Warning: <img> lacks "alt" attribute
line 462 column 2306 - Warning: <img> lacks "alt" attribute
line 466 column 9 - Warning: <table> lacks "summary" attribute
line 470 column 22 - Warning: <img> lacks "alt" attribute
line 470 column 63 - Warning: <img> lacks "alt" attribute
line 470 column 112 - Warning: <img> lacks "alt" attribute
line 470 column 162 - Warning: <img> lacks "alt" attribute
line 477 column 15 - Warning: <img> lacks "alt" attribute
line 480 column 11 - Warning: <table> lacks "summary" attribute
line 484 column 157 - Warning: <table> proprietary attribute "height"
line 484 column 157 - Warning: <table> lacks "summary" attribute
line 484 column 222 - Warning: <td> proprietary attribute "background"
line 484 column 318 - Warning: <td> proprietary attribute "background"
line 484 column 408 - Warning: <table> proprietary attribute "height"
line 484 column 408 - Warning: <table> lacks "summary" attribute
line 484 column 488 - Warning: <td> proprietary attribute "background"
line 484 column 693 - Warning: <img> lacks "alt" attribute
line 484 column 1443 - Warning: <td> proprietary attribute "background"
line 544 column 4271 - Warning: <img> lacks "alt" attribute
line 544 column 4430 - Warning: <img> lacks "alt" attribute
line 548 column 9 - Warning: <table> lacks "summary" attribute
line 552 column 22 - Warning: <img> lacks "alt" attribute
line 552 column 63 - Warning: <img> lacks "alt" attribute
line 552 column 112 - Warning: <img> lacks "alt" attribute
line 552 column 162 - Warning: <img> lacks "alt" attribute
line 559 column 15 - Warning: <img> lacks "alt" attribute
line 562 column 11 - Warning: <table> lacks "summary" attribute
line 566 column 157 - Warning: <table> proprietary attribute "height"
line 566 column 157 - Warning: <table> lacks "summary" attribute
line 566 column 222 - Warning: <td> proprietary attribute "background"
line 566 column 318 - Warning: <td> proprietary attribute "background"
line 566 column 408 - Warning: <table> proprietary attribute "height"
line 566 column 408 - Warning: <table> lacks "summary" attribute
line 566 column 488 - Warning: <td> proprietary attribute "background"
line 566 column 693 - Warning: <img> lacks "alt" attribute
line 566 column 1443 - Warning: <td> proprietary attribute "background"
line 568 column 1982 - Warning: <img> lacks "alt" attribute
line 568 column 2141 - Warning: <img> lacks "alt" attribute
line 572 column 9 - Warning: <table> lacks "summary" attribute
line 576 column 22 - Warning: <img> lacks "alt" attribute
line 576 column 63 - Warning: <img> lacks "alt" attribute
line 576 column 112 - Warning: <img> lacks "alt" attribute
line 576 column 162 - Warning: <img> lacks "alt" attribute
line 583 column 15 - Warning: <img> lacks "alt" attribute
line 586 column 11 - Warning: <table> lacks "summary" attribute
line 590 column 157 - Warning: <table> proprietary attribute "height"
line 590 column 157 - Warning: <table> lacks "summary" attribute
line 590 column 222 - Warning: <td> proprietary attribute "background"
line 590 column 318 - Warning: <td> proprietary attribute "background"
line 590 column 408 - Warning: <table> proprietary attribute "height"
line 590 column 408 - Warning: <table> lacks "summary" attribute
line 590 column 488 - Warning: <td> proprietary attribute "background"
line 590 column 693 - Warning: <img> lacks "alt" attribute
line 590 column 1443 - Warning: <td> proprietary attribute "background"
line 593 column 1613 - Warning: <img> lacks "alt" attribute
line 593 column 1661 - Warning: <img> lacks "alt" attribute
line 595 column 1838 - Warning: <img> lacks "alt" attribute
line 595 column 1997 - Warning: <img> lacks "alt" attribute
line 599 column 9 - Warning: <table> lacks "summary" attribute
line 603 column 22 - Warning: <img> lacks "alt" attribute
line 603 column 63 - Warning: <img> lacks "alt" attribute
line 603 column 112 - Warning: <img> lacks "alt" attribute
line 603 column 162 - Warning: <img> lacks "alt" attribute
line 610 column 15 - Warning: <img> lacks "alt" attribute
line 613 column 11 - Warning: <table> lacks "summary" attribute
line 617 column 157 - Warning: <table> proprietary attribute "height"
line 617 column 157 - Warning: <table> lacks "summary" attribute
line 617 column 222 - Warning: <td> proprietary attribute "background"
line 617 column 318 - Warning: <td> proprietary attribute "background"
line 617 column 408 - Warning: <table> proprietary attribute "height"
line 617 column 408 - Warning: <table> lacks "summary" attribute
line 617 column 488 - Warning: <td> proprietary attribute "background"
line 617 column 693 - Warning: <img> lacks "alt" attribute
line 617 column 1443 - Warning: <td> proprietary attribute "background"
line 659 column 4993 - Warning: <img> lacks "alt" attribute
line 659 column 5152 - Warning: <img> lacks "alt" attribute
line 663 column 9 - Warning: <table> lacks "summary" attribute
line 667 column 22 - Warning: <img> lacks "alt" attribute
line 667 column 63 - Warning: <img> lacks "alt" attribute
line 667 column 112 - Warning: <img> lacks "alt" attribute
line 667 column 162 - Warning: <img> lacks "alt" attribute
line 674 column 15 - Warning: <img> lacks "alt" attribute
line 677 column 11 - Warning: <table> lacks "summary" attribute
line 681 column 157 - Warning: <table> proprietary attribute "height"
line 681 column 157 - Warning: <table> lacks "summary" attribute
line 681 column 222 - Warning: <td> proprietary attribute "background"
line 681 column 318 - Warning: <td> proprietary attribute "background"
line 681 column 408 - Warning: <table> proprietary attribute "height"
line 681 column 408 - Warning: <table> lacks "summary" attribute
line 681 column 488 - Warning: <td> proprietary attribute "background"
line 681 column 693 - Warning: <img> lacks "alt" attribute
line 681 column 1443 - Warning: <td> proprietary attribute "background"
line 689 column 2766 - Warning: <img> lacks "alt" attribute
line 689 column 2925 - Warning: <img> lacks "alt" attribute
line 693 column 9 - Warning: <table> lacks "summary" attribute
line 697 column 22 - Warning: <img> lacks "alt" attribute
line 697 column 63 - Warning: <img> lacks "alt" attribute
line 697 column 112 - Warning: <img> lacks "alt" attribute
line 697 column 162 - Warning: <img> lacks "alt" attribute
line 704 column 15 - Warning: <img> lacks "alt" attribute
line 707 column 11 - Warning: <table> lacks "summary" attribute
line 711 column 157 - Warning: <table> proprietary attribute "height"
line 711 column 157 - Warning: <table> lacks "summary" attribute
line 711 column 222 - Warning: <td> proprietary attribute "background"
line 711 column 318 - Warning: <td> proprietary attribute "background"
line 711 column 408 - Warning: <table> proprietary attribute "height"
line 711 column 408 - Warning: <table> lacks "summary" attribute
line 711 column 488 - Warning: <td> proprietary attribute "background"
line 711 column 693 - Warning: <img> lacks "alt" attribute
line 711 column 1443 - Warning: <td> proprietary attribute "background"
line 724 column 2228 - Warning: <img> lacks "alt" attribute
line 724 column 2387 - Warning: <img> lacks "alt" attribute
line 728 column 9 - Warning: <table> lacks "summary" attribute
line 732 column 22 - Warning: <img> lacks "alt" attribute
line 732 column 63 - Warning: <img> lacks "alt" attribute
line 732 column 112 - Warning: <img> lacks "alt" attribute
line 732 column 162 - Warning: <img> lacks "alt" attribute
line 739 column 15 - Warning: <img> lacks "alt" attribute
line 742 column 11 - Warning: <table> lacks "summary" attribute
line 746 column 157 - Warning: <table> proprietary attribute "height"
line 746 column 157 - Warning: <table> lacks "summary" attribute
line 746 column 222 - Warning: <td> proprietary attribute "background"
line 746 column 318 - Warning: <td> proprietary attribute "background"
line 746 column 408 - Warning: <table> proprietary attribute "height"
line 746 column 408 - Warning: <table> lacks "summary" attribute
line 746 column 488 - Warning: <td> proprietary attribute "background"
line 746 column 693 - Warning: <img> lacks "alt" attribute
line 746 column 1443 - Warning: <td> proprietary attribute "background"
line 752 column 2712 - Warning: <img> lacks "alt" attribute
line 752 column 2871 - Warning: <img> lacks "alt" attribute
line 756 column 9 - Warning: <table> lacks "summary" attribute
line 760 column 22 - Warning: <img> lacks "alt" attribute
line 760 column 63 - Warning: <img> lacks "alt" attribute
line 760 column 112 - Warning: <img> lacks "alt" attribute
line 760 column 162 - Warning: <img> lacks "alt" attribute
line 767 column 15 - Warning: <img> lacks "alt" attribute
line 770 column 11 - Warning: <table> lacks "summary" attribute
line 774 column 157 - Warning: <table> proprietary attribute "height"
line 774 column 157 - Warning: <table> lacks "summary" attribute
line 774 column 222 - Warning: <td> proprietary attribute "background"
line 774 column 318 - Warning: <td> proprietary attribute "background"
line 774 column 408 - Warning: <table> proprietary attribute "height"
line 774 column 408 - Warning: <table> lacks "summary" attribute
line 774 column 488 - Warning: <td> proprietary attribute "background"
line 774 column 693 - Warning: <img> lacks "alt" attribute
line 774 column 1443 - Warning: <td> proprietary attribute "background"
line 785 column 3012 - Warning: <img> lacks "alt" attribute
line 785 column 3171 - Warning: <img> lacks "alt" attribute
line 789 column 9 - Warning: <table> lacks "summary" attribute
line 793 column 22 - Warning: <img> lacks "alt" attribute
line 793 column 63 - Warning: <img> lacks "alt" attribute
line 793 column 112 - Warning: <img> lacks "alt" attribute
line 793 column 162 - Warning: <img> lacks "alt" attribute
line 800 column 15 - Warning: <img> lacks "alt" attribute
line 803 column 11 - Warning: <table> lacks "summary" attribute
line 807 column 157 - Warning: <table> proprietary attribute "height"
line 807 column 157 - Warning: <table> lacks "summary" attribute
line 807 column 222 - Warning: <td> proprietary attribute "background"
line 807 column 318 - Warning: <td> proprietary attribute "background"
line 807 column 408 - Warning: <table> proprietary attribute "height"
line 807 column 408 - Warning: <table> lacks "summary" attribute
line 807 column 488 - Warning: <td> proprietary attribute "background"
line 807 column 693 - Warning: <img> lacks "alt" attribute
line 807 column 1443 - Warning: <td> proprietary attribute "background"
line 819 column 2508 - Warning: <img> proprietary attribute value "absmiddle"
line 819 column 2508 - Warning: <img> lacks "alt" attribute
line 819 column 2641 - Warning: <img> lacks "alt" attribute
line 819 column 2800 - Warning: <img> lacks "alt" attribute
line 823 column 9 - Warning: <table> lacks "summary" attribute
line 827 column 22 - Warning: <img> lacks "alt" attribute
line 827 column 63 - Warning: <img> lacks "alt" attribute
line 827 column 112 - Warning: <img> lacks "alt" attribute
line 827 column 162 - Warning: <img> lacks "alt" attribute
line 834 column 15 - Warning: <img> lacks "alt" attribute
line 837 column 11 - Warning: <table> lacks "summary" attribute
line 841 column 157 - Warning: <table> proprietary attribute "height"
line 841 column 157 - Warning: <table> lacks "summary" attribute
line 841 column 222 - Warning: <td> proprietary attribute "background"
line 841 column 318 - Warning: <td> proprietary attribute "background"
line 841 column 408 - Warning: <table> proprietary attribute "height"
line 841 column 408 - Warning: <table> lacks "summary" attribute
line 841 column 488 - Warning: <td> proprietary attribute "background"
line 841 column 693 - Warning: <img> lacks "alt" attribute
line 841 column 1443 - Warning: <td> proprietary attribute "background"
line 841 column 1840 - Warning: <img> lacks "alt" attribute
line 841 column 1999 - Warning: <img> lacks "alt" attribute
line 146 column 17 - Warning: <table> lacks "summary" attribute
line 847 column 17 - Warning: <table> lacks "summary" attribute
line 849 column 17 - Warning: <table> lacks "summary" attribute
line 855 column 1 - Warning: <img> lacks "alt" attribute
line 856 column 1 - Warning: <img> lacks "alt" attribute
line 857 column 1 - Warning: <img> lacks "alt" attribute
line 864 column 9 - Warning: <table> lacks "summary" attribute
line 866 column 25 - Warning: <img> lacks "alt" attribute
line 896 column 17 - Warning: <table> lacks "summary" attribute
line 141 column 134 - Warning: trimming empty <font>
line 143 column 1037 - Warning: trimming empty <font>
line 169 column 1511 - Warning: trimming empty <font>
line 202 column 1511 - Warning: trimming empty <font>
line 256 column 1511 - Warning: trimming empty <font>
line 286 column 1511 - Warning: trimming empty <font>
line 347 column 1511 - Warning: trimming empty <font>
line 434 column 1511 - Warning: trimming empty <font>
line 435 column 1758 - Warning: trimming empty <font>
line 459 column 1511 - Warning: trimming empty <font>
line 484 column 1511 - Warning: trimming empty <font>
line 488 column 2549 - Warning: trimming empty <font>
line 617 column 1511 - Warning: trimming empty <font>
line 681 column 1511 - Warning: trimming empty <font>
line 711 column 1511 - Warning: trimming empty <font>
line 746 column 1511 - Warning: trimming empty <font>
line 774 column 1511 - Warning: trimming empty <font>
line 778 column 1855 - Warning: trimming empty <font>
line 807 column 1511 - Warning: trimming empty <font>
line 811 column 1915 - Warning: trimming empty <font>
line 821 column 15 - Warning: trimming empty <tr>
line 847 column 1037 - Warning: trimming empty <font>
line 849 column 134 - Warning: trimming empty <font>
line 153 column 11 - Warning: <a> cannot copy name attribute to id
line 186 column 11 - Warning: <a> cannot copy name attribute to id
line 218 column 11 - Warning: <a> cannot copy name attribute to id
line 240 column 11 - Warning: <a> cannot copy name attribute to id
line 270 column 11 - Warning: <a> cannot copy name attribute to id
line 331 column 11 - Warning: <a> cannot copy name attribute to id
line 372 column 11 - Warning: <a> cannot copy name attribute to id
line 396 column 11 - Warning: <a> cannot copy name attribute to id
line 418 column 11 - Warning: <a> cannot copy name attribute to id
line 443 column 11 - Warning: <a> cannot copy name attribute to id
line 468 column 11 - Warning: <a> cannot copy name attribute to id
line 550 column 11 - Warning: <a> cannot copy name attribute to id
line 574 column 11 - Warning: <a> cannot copy name attribute to id
line 601 column 11 - Warning: <a> cannot copy name attribute to id
line 665 column 11 - Warning: <a> cannot copy name attribute to id
line 695 column 11 - Warning: <a> cannot copy name attribute to id
line 730 column 11 - Warning: <a> cannot copy name attribute to id
line 758 column 11 - Warning: <a> cannot copy name attribute to id
line 791 column 11 - Warning: <a> cannot copy name attribute to id
line 825 column 11 - Warning: <a> cannot copy name attribute to id
Info: Document content looks like HTML Proprietary
Info: No system identifier in emitted doctype
817 warnings, 0 errors were found!


The table summary attribute should be used to describe
the table structure. It is very helpful for people using
non-visual browsers. The scope and headers attributes for
table cells are useful for specifying which headers apply
to each table cell, enabling non-visual browsers to provide
a meaningful context for each cell.

The alt attribute should be used to give a short description
of an image; longer descriptions should be given with the
longdesc attribute which takes a URL linked to the description.
These measures are needed for people using non-graphical browsers.

For further advice on how to make your pages accessible
see http://www.w3.org/WAI/GL.
. You may also want to try
"http://www.cast.org/bobby/" which is a free Web-based
service for checking URLs for accessibility.

You are recommended to use CSS to specify the font and
properties such as its size and color. This will reduce
the size of HTML files and make them easier to maintain
compared with using <FONT> elements.

You are recommended to use CSS to control line wrapping.
Use "white-space: nowrap" to inhibit wrapping in place
of inserting <NOBR>...</NOBR> into the markup.

To learn more about HTML Tidy see http://tidy.sourceforge.net
Please fill bug reports and queries using the "tracker" on the Tidy web site.
Additionally, questions can be sent to html-tidy@w3.org
HTML and CSS specifications are available from http://www.w3.org/
Lobby your company to join W3C, see http://www.w3.org/Consortium