Register - Login
Views: 99393935
Main - Memberlist - Active users - Calendar - Wiki - IRC Chat - Online users
Ranks - Rules/FAQ - Stats - Latest Posts - Color Chart - Smilies
04-24-22 10:53:10 AM
Jul - Innocent Town - C++ New poll - New thread - New reply
Pages: 1 2 Next newer thread | Next older thread
Bloodstar
11360
Buy me a trip to the moon
So I can laugh at my mistakes


Post 7889/11363

Joined
07-06-07
Active
1 day ago
Posted on 01-31-11 03:51:14 AM Link | Quote


____________________
BMF IS A LEAPFROG
Liliana
"A horrible person". That's what it says. "A horrible person."

We weren't even testing for that.


Level: NaN


Posts: 2166/-3841
EXP: NaN
For next: 0

Since: 07-23-07


Since last post: 10.2 years
Last activity: 10.1 years

Posted on 01-31-11 01:04:31 PM Link | Quote
Infinite loops are awesome.

____________________

Most people who visit your Web pages are there in search of useful or entertaining information, not to admire your fancy graphics skills or HTML prowess.
— Apple Web Design Guide, 1996
 
Taryn

Passed away.

Thanks for being a part of us, even if it wasn't always on the best of terms.

1987-2014


Level: 204


Posts: 11462/14742
EXP: 121629485
For next: 1720333

Since: 09-01-09

From: Seattle

Since last post: 10.1 years
Last activity: 9.8 years

Posted on 01-31-11 01:28:57 PM (last edited by Terra at 01-31-11 10:29 AM) Link | Quote
#include <iostream>
using namespace std;

int main()
{
    while (1)
        cout << "Meow ";

    return 0;
}

____________________

TKB Super Mario Bros.TKB Super Mario Bros., Volume II
Nicole

Disk-kun
Level: 146


Posts: 2311/6469
EXP: 38253505
For next: 259789

Since: 07-07-07

Pronouns: she/her
From: Boston, MA

Since last post: 69 days
Last activity: 1 day

Posted on 01-31-11 01:31:01 PM Link | Quote

Why do you need C++ for that?


10 PRINT "Add another? <Y/N, will repeat on other answers>"
20 GOTO 10


____________________
Liliana
"A horrible person". That's what it says. "A horrible person."

We weren't even testing for that.


Level: NaN


Posts: 2168/-3841
EXP: NaN
For next: 0

Since: 07-23-07


Since last post: 10.2 years
Last activity: 10.1 years

Posted on 01-31-11 02:19:21 PM Link | Quote
It should work in batch also:

@echo off
:marker
echo "Add another? <Y/N, will repeat on other answers>"
goto :marker


____________________

Most people who visit your Web pages are there in search of useful or entertaining information, not to admire your fancy graphics skills or HTML prowess.
— Apple Web Design Guide, 1996
 
Bloodstar
11360
Buy me a trip to the moon
So I can laugh at my mistakes


Post 7890/11363

Joined
07-06-07
Active
1 day ago
Posted on 01-31-11 02:50:51 PM Link | Quote
It did that when I entered a non-integer/double value for an integer/double.

____________________
BMF IS A LEAPFROG
Taryn

Passed away.

Thanks for being a part of us, even if it wasn't always on the best of terms.

1987-2014


Level: 204


Posts: 11463/14742
EXP: 121629485
For next: 1720333

Since: 09-01-09

From: Seattle

Since last post: 10.1 years
Last activity: 9.8 years

Posted on 01-31-11 03:00:20 PM (last edited by Terra at 01-31-11 12:00 PM) Link | Quote
Ah.

Silly Bloodstar, if you want a Y or N, use a character variable

I do remember those infinite loops. Seems to me there was some other way to code the loop so it doesn't do that, but I don't remember what it is.

____________________

TKB Super Mario Bros.TKB Super Mario Bros., Volume II
Cirvante
1340
Feel the wrath of eternal damnation please! I would appreciate that very much thank you!
Level: 74


Posts: 1231/1342
EXP: 3613468
For next: 40076

Since: 07-10-07


Since last post: 8.3 years
Last activity: 21 days

Posted on 02-01-11 01:41:15 AM Link | Quote
That isn't C++. Not enough pointers, for starters.
Remember, kids, if you're not overloading operators out the wazoo and your functions don't look like Foo& wtf (Bar const* lol, Baz<double>** wut) const, you're doing it wrong!

____________________


board2 - Jul - OC ReMix
Rick
M'Lord, there's a knife in your head!
Level: 152


Posts: 2441/7539
EXP: 43669787
For next: 631873

Since: 02-15-10

From: Maine

Since last post: 113 days
Last activity: 45 days

Posted on 02-01-11 02:08:34 AM Link | Quote
Can't I just pretend it's C++ so I look like I know something in this conversation? =<

____________________
Bloodstar
11360
Buy me a trip to the moon
So I can laugh at my mistakes


Post 7908/11363

Joined
07-06-07
Active
1 day ago
Posted on 02-02-11 06:52:46 PM Link | Quote
Originally posted by Cirvante
That isn't C++. Not enough pointers, for starters.
Remember, kids, if you're not overloading operators out the wazoo and your functions don't look like Foo& wtf (Bar const* lol, Baz<double>** wut) const, you're doing it wrong!



That's the kind of stuff that scares me, too.

Fuck, I can't wait for May.

____________________
BMF IS A LEAPFROG
Rena
I had one (1) message in Discord deleted and proceeded to make a huge, huge mess about how it was a violation of free speech and how moderators are supposed to be spam janitors and nobody should have the right to tell me not to talk about school shootings
Level: 135


Posts: 4059/5390
EXP: 29051739
For next: 283266

Since: 07-22-07

Pronouns: he/him/whatever
From: RSP Segment 6

Since last post: 333 days
Last activity: 333 days

Posted on 02-06-11 02:59:04 AM Link | Quote
Post #4059 · 02-05-11 09:59:04 PM
I caused a fun segfault today because I did:
myObject *obj = *((myObject**)somepointer);
when I should have done:
myObject *obj = (myObject*)somepointer;
i.e. following one pointer too far. As it happened, that object just happens to have some other pointer at the beginning of memory, so this worked fine until quite a bit later when things went all screwy because my object had all the wrong things in it.

Reasons like this I try to stick to Lua.

____________________
Bloodstar
11360
Buy me a trip to the moon
So I can laugh at my mistakes


Post 8175/11363

Joined
07-06-07
Active
1 day ago
Posted on 02-13-11 02:48:30 AM Link | Quote
Time to do an assignment with classes now.

I don't know if this is easy or to be scared. I literally don't.

____________________
BMF IS A LEAPFROG
Bloodstar
11360
Buy me a trip to the moon
So I can laugh at my mistakes


Post 8178/11363

Joined
07-06-07
Active
1 day ago
Posted on 02-13-11 03:22:26 AM Link | Quote
oh btw

*000619 [@Bloodstar] now i'm fucking livid.
*000630 [@Bloodstar] i lost an entire fucking grade because I named my program structures3.cpp
*000634 [@Bloodstar] instead of structures.cpp
*000655 [@Bloodstar] i loathe people who do that kind of thing

yeah i dunno if i want to finish this class.

____________________
BMF IS A LEAPFROG
Bloodstar
11360
Buy me a trip to the moon
So I can laugh at my mistakes


Post 8216/11363

Joined
07-06-07
Active
1 day ago
Posted on 02-23-11 07:18:06 PM Link | Quote
hey guys

user input is bad :specialed:

____________________
BMF IS A LEAPFROG
Orlandu


Holy SwordsMan
Level: 137


Posts: 4386/5913
EXP: 30448747
For next: 424108

Since: 01-12-10

From: Las Vegas, NV

Since last post: 4.0 years
Last activity: 199 days

Posted on 02-23-11 08:39:48 PM Link | Quote
Only if the input is from a bad user.

____________________
4386 406 85 5859755


ffaorlandu@yahoo.com



devin

Yoshi
i'm mima irl
Level: 112


Posts: 1784/3519
EXP: 14919046
For next: 419159

Since: 04-29-08

Pronouns: any
From: FL

Since last post: 297 days
Last activity: 1 day

Posted on 02-23-11 09:58:22 PM Link | Quote
garbage in, garbage out
useful data in, garbage out anyway

____________________

Photo by Luc Viatour
Bloodstar
11360
Buy me a trip to the moon
So I can laugh at my mistakes


Post 8348/11363

Joined
07-06-07
Active
1 day ago
Posted on 03-13-11 04:47:32 AM Link | Quote
Originally posted by Cool Timpani
garbage in, garbage out
useful data in, garbage out anyway


exactly

this assignment hasn't fucking been graded yet
end the suspense already


____________________
BMF IS A LEAPFROG
Bloodstar
11360
Buy me a trip to the moon
So I can laugh at my mistakes


Post 8351/11363

Joined
07-06-07
Active
1 day ago
Posted on 03-13-11 08:35:59 PM Link | Quote
suspense ended

48/50

well 45 after a compiler error deduction thanks to c++, but i'm not going to argue over it

doing another thing today - agrghgrahghr.

____________________
BMF IS A LEAPFROG
Bloodstar
11360
Buy me a trip to the moon
So I can laugh at my mistakes


Post 8394/11363

Joined
07-06-07
Active
1 day ago
Posted on 03-20-11 10:16:42 PM Link | Quote
not graded yet! argh! doing another thing today

now I'm doing pointers

whoo

ow

____________________
1353 Days


8394 Posts


28294862 EXP


292112 EXP Next


5056 EXP per post


8.267 seconds Idle Time


Overall Ranking: 7
Bloodstar
11360
Buy me a trip to the moon
So I can laugh at my mistakes


Post 8400/11363

Joined
07-06-07
Active
1 day ago
Posted on 03-22-11 07:01:29 PM Link | Quote
Hey letting the user know the window may be too small to display the information is bad :specialed:

so are short comments that don't go into excessive details (this one isn't as mindfuckingly dumb but still)

____________________
1355 Days


8400 Posts


28344705 EXP


242269 EXP Next


5061 EXP per post


8.264 seconds Idle Time


Overall Ranking: 7
Pages: 1 2 Next newer thread | Next older thread
Jul - Innocent Town - C++ New poll - New thread - New reply


Rusted Logic

Acmlmboard - commit 47be4dc [2021-08-23]
©2000-2022 Acmlm, Xkeeper, Kaito Sinclaire, et al.

29 database queries.
Query execution time:  0.085528 seconds
Script execution time:  0.055722 seconds
Total render time:  0.141250 seconds


TidyHTML vomit below
line 1 column 1 - Warning: missing <!DOCTYPE> declaration
line 2 column 301 - Warning: unescaped & or unknown entity "&page"
line 119 column 11 - Warning: <form> isn't allowed in <table> elements
line 118 column 10 - Info: <table> previously mentioned
line 120 column 11 - Warning: missing <tr>
line 120 column 119 - Warning: missing </font> before </td>
line 124 column 16 - Warning: plain text isn't allowed in <tr> elements
line 120 column 11 - Info: <tr> previously mentioned
line 125 column 68 - Warning: missing </nobr> before </td>
line 141 column 68 - Warning: missing </nobr> before <tr>
line 147 column 35 - Warning: missing <tr>
line 147 column 50 - Warning: missing </font> before </td>
line 148 column 37 - Warning: unescaped & or unknown entity "&id"
line 147 column 165 - Warning: missing </font> before </table>
line 149 column 35 - Warning: missing <tr>
line 149 column 97 - Warning: unescaped & or unknown entity "&page"
line 149 column 50 - Warning: missing </font> before </td>
line 149 column 132 - Warning: missing </font> before </table>
line 155 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 156 column 25 - Warning: missing <tr>
line 158 column 33 - Warning: missing </font> before </td>
line 168 column 25 - Warning: plain text isn't allowed in <tr> elements
line 156 column 25 - Info: <tr> previously mentioned
line 170 column 33 - Warning: missing <tr>
line 171 column 122 - Warning: unescaped & or unknown entity "&postid"
line 171 column 47 - Warning: missing </nobr> before </table>
line 173 column 804 - Warning: missing </span> before <center>
line 173 column 755 - Warning: missing </font> before <center>
line 173 column 857 - Warning: inserting implicit <font>
line 173 column 857 - Warning: inserting implicit <span>
line 173 column 1049 - Warning: inserting implicit <font>
line 173 column 1049 - Warning: inserting implicit <span>
line 175 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 177 column 9 - Warning: missing <tr>
line 195 column 13 - Warning: missing <tr>
line 196 column 102 - Warning: unescaped & or unknown entity "&postid"
line 204 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 206 column 9 - Warning: missing <tr>
line 224 column 13 - Warning: missing <tr>
line 225 column 102 - Warning: unescaped & or unknown entity "&postid"
line 227 column 404 - Warning: missing </div>
line 240 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 242 column 9 - Warning: missing <tr>
line 260 column 13 - Warning: missing <tr>
line 261 column 102 - Warning: unescaped & or unknown entity "&postid"
line 263 column 244 - Warning: missing <tr>
line 263 column 273 - Warning: missing </font> before <pre>
line 267 column 433 - Warning: inserting implicit <font>
line 270 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 272 column 9 - Warning: missing <tr>
line 290 column 13 - Warning: missing <tr>
line 291 column 102 - Warning: unescaped & or unknown entity "&postid"
line 304 column 15 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 305 column 25 - Warning: missing <tr>
line 307 column 33 - Warning: missing </font> before </td>
line 317 column 25 - Warning: plain text isn't allowed in <tr> elements
line 305 column 25 - Info: <tr> previously mentioned
line 319 column 33 - Warning: missing <tr>
line 320 column 122 - Warning: unescaped & or unknown entity "&postid"
line 320 column 47 - Warning: missing </nobr> before </table>
line 324 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 326 column 9 - Warning: missing <tr>
line 344 column 13 - Warning: missing <tr>
line 345 column 102 - Warning: unescaped & or unknown entity "&postid"
line 347 column 404 - Warning: missing </div>
line 355 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 357 column 9 - Warning: missing <tr>
line 375 column 13 - Warning: missing <tr>
line 376 column 102 - Warning: unescaped & or unknown entity "&postid"
line 378 column 74 - Warning: <style> isn't allowed in <td> elements
line 378 column 9 - Info: <td> previously mentioned
line 378 column 2514 - Warning: discarding unexpected </img>
line 379 column 3460 - Error: <z> is not recognized!
line 379 column 3460 - Warning: discarding unexpected <z>
line 379 column 3596 - Warning: missing </span> before </div>
line 381 column 3985 - Warning: discarding unexpected </div>
line 381 column 3991 - Warning: discarding unexpected </span>
line 384 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 386 column 9 - Warning: missing <tr>
line 404 column 13 - Warning: missing <tr>
line 405 column 102 - Warning: unescaped & or unknown entity "&postid"
line 409 column 15 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 410 column 25 - Warning: missing <tr>
line 412 column 33 - Warning: missing </font> before </td>
line 422 column 25 - Warning: plain text isn't allowed in <tr> elements
line 410 column 25 - Info: <tr> previously mentioned
line 424 column 33 - Warning: missing <tr>
line 425 column 122 - Warning: unescaped & or unknown entity "&postid"
line 425 column 47 - Warning: missing </nobr> before </table>
line 427 column 804 - Warning: missing </span> before <blockquote>
line 427 column 755 - Warning: missing </font> before <blockquote>
line 427 column 861 - Warning: inserting implicit <font>
line 427 column 861 - Warning: inserting implicit <span>
line 427 column 861 - Warning: missing </span> before <hr>
line 427 column 861 - Warning: missing </font> before <hr>
line 427 column 926 - Warning: inserting implicit <font>
line 427 column 926 - Warning: inserting implicit <span>
line 428 column 1167 - Error: <z> is not recognized!
line 428 column 1167 - Warning: discarding unexpected <z>
line 427 column 926 - Warning: missing </span> before <hr>
line 427 column 926 - Warning: missing </font> before <hr>
line 429 column 1 - Warning: inserting implicit <font>
line 429 column 1 - Warning: inserting implicit <span>
line 434 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 436 column 9 - Warning: missing <tr>
line 454 column 13 - Warning: missing <tr>
line 455 column 102 - Warning: unescaped & or unknown entity "&postid"
line 463 column 4915 - Warning: replacing unexpected input with </input>
line 463 column 5229 - Warning: discarding unexpected </span>
line 465 column 15 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 466 column 25 - Warning: missing <tr>
line 468 column 33 - Warning: missing </font> before </td>
line 478 column 25 - Warning: plain text isn't allowed in <tr> elements
line 466 column 25 - Info: <tr> previously mentioned
line 480 column 33 - Warning: missing <tr>
line 481 column 122 - Warning: unescaped & or unknown entity "&postid"
line 481 column 47 - Warning: missing </nobr> before </table>
line 486 column 17 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 487 column 25 - Warning: missing <tr>
line 489 column 33 - Warning: missing </font> before </td>
line 499 column 25 - Warning: plain text isn't allowed in <tr> elements
line 487 column 25 - Info: <tr> previously mentioned
line 501 column 33 - Warning: missing <tr>
line 502 column 122 - Warning: unescaped & or unknown entity "&postid"
line 502 column 47 - Warning: missing </nobr> before </table>
line 512 column 17 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 513 column 25 - Warning: missing <tr>
line 515 column 33 - Warning: missing </font> before </td>
line 525 column 25 - Warning: plain text isn't allowed in <tr> elements
line 513 column 25 - Info: <tr> previously mentioned
line 527 column 33 - Warning: missing <tr>
line 528 column 122 - Warning: unescaped & or unknown entity "&postid"
line 528 column 47 - Warning: missing </nobr> before </table>
line 534 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 536 column 9 - Warning: missing <tr>
line 554 column 13 - Warning: missing <tr>
line 555 column 102 - Warning: unescaped & or unknown entity "&postid"
line 557 column 74 - Warning: <style> isn't allowed in <td> elements
line 557 column 9 - Info: <td> previously mentioned
line 557 column 2571 - Warning: missing </font> before </div>
line 560 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 562 column 9 - Warning: missing <tr>
line 580 column 13 - Warning: missing <tr>
line 581 column 102 - Warning: unescaped & or unknown entity "&postid"
line 587 column 15 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 588 column 25 - Warning: missing <tr>
line 590 column 33 - Warning: missing </font> before </td>
line 600 column 25 - Warning: plain text isn't allowed in <tr> elements
line 588 column 25 - Info: <tr> previously mentioned
line 602 column 33 - Warning: missing <tr>
line 603 column 122 - Warning: unescaped & or unknown entity "&postid"
line 603 column 47 - Warning: missing </nobr> before </table>
line 605 column 804 - Warning: missing </span> before <blockquote>
line 605 column 755 - Warning: missing </font> before <blockquote>
line 605 column 861 - Warning: inserting implicit <font>
line 605 column 861 - Warning: inserting implicit <span>
line 605 column 861 - Warning: missing </span> before <hr>
line 605 column 861 - Warning: missing </font> before <hr>
line 605 column 930 - Warning: inserting implicit <font>
line 605 column 930 - Warning: inserting implicit <span>
line 605 column 930 - Warning: missing </span> before <hr>
line 605 column 930 - Warning: missing </font> before <hr>
line 607 column 1 - Warning: inserting implicit <font>
line 607 column 1 - Warning: inserting implicit <span>
line 611 column 17 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 612 column 25 - Warning: missing <tr>
line 614 column 33 - Warning: missing </font> before </td>
line 624 column 25 - Warning: plain text isn't allowed in <tr> elements
line 612 column 25 - Info: <tr> previously mentioned
line 626 column 33 - Warning: missing <tr>
line 627 column 122 - Warning: unescaped & or unknown entity "&postid"
line 627 column 47 - Warning: missing </nobr> before </table>
line 636 column 17 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 637 column 25 - Warning: missing <tr>
line 639 column 33 - Warning: missing </font> before </td>
line 649 column 25 - Warning: plain text isn't allowed in <tr> elements
line 637 column 25 - Info: <tr> previously mentioned
line 651 column 33 - Warning: missing <tr>
line 652 column 122 - Warning: unescaped & or unknown entity "&postid"
line 652 column 47 - Warning: missing </nobr> before </table>
line 654 column 99 - Warning: <style> isn't allowed in <td> elements
line 654 column 25 - Info: <td> previously mentioned
line 660 column 1238 - Warning: replacing unexpected big with </big>
line 672 column 2176 - Warning: discarding unexpected </font>
line 672 column 2183 - Warning: discarding unexpected </font>
line 673 column 17 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 674 column 25 - Warning: missing <tr>
line 676 column 33 - Warning: missing </font> before </td>
line 686 column 25 - Warning: plain text isn't allowed in <tr> elements
line 674 column 25 - Info: <tr> previously mentioned
line 688 column 33 - Warning: missing <tr>
line 689 column 122 - Warning: unescaped & or unknown entity "&postid"
line 689 column 47 - Warning: missing </nobr> before </table>
line 691 column 99 - Warning: <style> isn't allowed in <td> elements
line 691 column 25 - Info: <td> previously mentioned
line 693 column 1360 - Warning: replacing unexpected big with </big>
line 705 column 2298 - Warning: discarding unexpected </font>
line 705 column 2305 - Warning: discarding unexpected </font>
line 707 column 17 - Warning: missing <tr>
line 707 column 17 - Warning: discarding unexpected <table>
line 710 column 35 - Warning: missing <tr>
line 710 column 97 - Warning: unescaped & or unknown entity "&page"
line 710 column 50 - Warning: missing </font> before </td>
line 710 column 132 - Warning: missing </font> before </table>
line 712 column 35 - Warning: missing <tr>
line 712 column 50 - Warning: missing </font> before </td>
line 713 column 37 - Warning: unescaped & or unknown entity "&id"
line 712 column 165 - Warning: missing </font> before </table>
line 714 column 17 - Warning: discarding unexpected </textarea>
line 714 column 28 - Warning: discarding unexpected </form>
line 714 column 35 - Warning: discarding unexpected </embed>
line 714 column 43 - Warning: discarding unexpected </noembed>
line 714 column 53 - Warning: discarding unexpected </noscript>
line 714 column 64 - Warning: discarding unexpected </noembed>
line 714 column 74 - Warning: discarding unexpected </embed>
line 714 column 82 - Warning: discarding unexpected </table>
line 714 column 90 - Warning: discarding unexpected </table>
line 716 column 9 - Warning: missing </font> before <table>
line 728 column 25 - Warning: discarding unexpected </font>
line 737 column 37 - Warning: discarding unexpected </font>
line 715 column 1 - Warning: missing </center>
line 120 column 63 - Warning: <img> lacks "alt" attribute
line 125 column 19 - Warning: <td> attribute "width" has invalid value "120px"
line 125 column 93 - Warning: <img> lacks "alt" attribute
line 141 column 19 - Warning: <td> attribute "width" has invalid value "120px"
line 141 column 98 - Warning: <img> lacks "alt" attribute
line 148 column 44 - Warning: <img> proprietary attribute value "absmiddle"
line 148 column 142 - Warning: <img> proprietary attribute value "absmiddle"
line 148 column 246 - Warning: <img> proprietary attribute value "absmiddle"
line 159 column 43 - Warning: <img> proprietary attribute value "absmiddle"
line 159 column 43 - Warning: <img> lacks "alt" attribute
line 159 column 86 - Warning: <img> proprietary attribute value "absmiddle"
line 159 column 86 - Warning: <img> lacks "alt" attribute
line 159 column 129 - Warning: <img> proprietary attribute value "absmiddle"
line 159 column 129 - Warning: <img> lacks "alt" attribute
line 159 column 172 - Warning: <img> proprietary attribute value "absmiddle"
line 159 column 172 - Warning: <img> lacks "alt" attribute
line 159 column 215 - Warning: <img> proprietary attribute value "absmiddle"
line 159 column 215 - Warning: <img> lacks "alt" attribute
line 159 column 258 - Warning: <img> proprietary attribute value "absmiddle"
line 159 column 258 - Warning: <img> lacks "alt" attribute
line 159 column 301 - Warning: <img> proprietary attribute value "absmiddle"
line 159 column 301 - Warning: <img> lacks "alt" attribute
line 161 column 33 - Warning: <img> lacks "alt" attribute
line 166 column 37 - Warning: <img> lacks "alt" attribute
line 173 column 308 - Warning: <img> lacks "alt" attribute
line 173 column 857 - Warning: <img> lacks "alt" attribute
line 180 column 23 - Warning: <img> lacks "alt" attribute
line 180 column 64 - Warning: <img> lacks "alt" attribute
line 191 column 15 - Warning: <img> lacks "alt" attribute
line 209 column 23 - Warning: <img> lacks "alt" attribute
line 209 column 64 - Warning: <img> lacks "alt" attribute
line 209 column 113 - Warning: <img> lacks "alt" attribute
line 209 column 163 - Warning: <img> lacks "alt" attribute
line 210 column 11 - Warning: <img> lacks "alt" attribute
line 220 column 15 - Warning: <img> lacks "alt" attribute
line 236 column 780 - Warning: <img> lacks "alt" attribute
line 237 column 1089 - Warning: <img> lacks "alt" attribute
line 244 column 11 - Warning: <img> lacks "alt" attribute
line 245 column 23 - Warning: <img> lacks "alt" attribute
line 245 column 64 - Warning: <img> lacks "alt" attribute
line 245 column 113 - Warning: <img> lacks "alt" attribute
line 245 column 163 - Warning: <img> lacks "alt" attribute
line 246 column 11 - Warning: <img> lacks "alt" attribute
line 256 column 15 - Warning: <img> lacks "alt" attribute
line 263 column 163 - Warning: <table> attribute "cellpadding" has invalid value "2px"
line 267 column 433 - Warning: <img> proprietary attribute value "absmiddle"
line 267 column 433 - Warning: <img> lacks "alt" attribute
line 267 column 560 - Warning: <td> attribute "height" has invalid value "128px"
line 275 column 23 - Warning: <img> lacks "alt" attribute
line 275 column 64 - Warning: <img> lacks "alt" attribute
line 286 column 15 - Warning: <img> lacks "alt" attribute
line 308 column 43 - Warning: <img> proprietary attribute value "absmiddle"
line 308 column 43 - Warning: <img> lacks "alt" attribute
line 308 column 86 - Warning: <img> proprietary attribute value "absmiddle"
line 308 column 86 - Warning: <img> lacks "alt" attribute
line 308 column 129 - Warning: <img> proprietary attribute value "absmiddle"
line 308 column 129 - Warning: <img> lacks "alt" attribute
line 308 column 172 - Warning: <img> proprietary attribute value "absmiddle"
line 308 column 172 - Warning: <img> lacks "alt" attribute
line 308 column 215 - Warning: <img> proprietary attribute value "absmiddle"
line 308 column 215 - Warning: <img> lacks "alt" attribute
line 308 column 258 - Warning: <img> proprietary attribute value "absmiddle"
line 308 column 258 - Warning: <img> lacks "alt" attribute
line 308 column 301 - Warning: <img> proprietary attribute value "absmiddle"
line 308 column 301 - Warning: <img> lacks "alt" attribute
line 310 column 33 - Warning: <img> lacks "alt" attribute
line 315 column 37 - Warning: <img> lacks "alt" attribute
line 322 column 308 - Warning: <img> lacks "alt" attribute
line 322 column 926 - Warning: <img> proprietary attribute value "absmiddle"
line 322 column 926 - Warning: <img> lacks "alt" attribute
line 329 column 23 - Warning: <img> lacks "alt" attribute
line 329 column 64 - Warning: <img> lacks "alt" attribute
line 329 column 113 - Warning: <img> lacks "alt" attribute
line 329 column 163 - Warning: <img> lacks "alt" attribute
line 330 column 11 - Warning: <img> lacks "alt" attribute
line 340 column 15 - Warning: <img> lacks "alt" attribute
line 349 column 615 - Warning: <img> proprietary attribute value "absmiddle"
line 349 column 615 - Warning: <img> lacks "alt" attribute
line 351 column 917 - Warning: <img> lacks "alt" attribute
line 352 column 1226 - Warning: <img> lacks "alt" attribute
line 359 column 16 - Warning: <img> proprietary attribute value "absmiddle"
line 359 column 16 - Warning: <img> lacks "alt" attribute
line 359 column 59 - Warning: <img> proprietary attribute value "absmiddle"
line 359 column 59 - Warning: <img> lacks "alt" attribute
line 359 column 102 - Warning: <img> proprietary attribute value "absmiddle"
line 359 column 102 - Warning: <img> lacks "alt" attribute
line 359 column 145 - Warning: <img> proprietary attribute value "absmiddle"
line 359 column 145 - Warning: <img> lacks "alt" attribute
line 359 column 188 - Warning: <img> proprietary attribute value "absmiddle"
line 359 column 188 - Warning: <img> lacks "alt" attribute
line 359 column 231 - Warning: <img> proprietary attribute value "absmiddle"
line 359 column 231 - Warning: <img> lacks "alt" attribute
line 359 column 274 - Warning: <img> proprietary attribute value "absmiddle"
line 359 column 274 - Warning: <img> lacks "alt" attribute
line 360 column 22 - Warning: <img> lacks "alt" attribute
line 360 column 63 - Warning: <img> lacks "alt" attribute
line 360 column 112 - Warning: <img> lacks "alt" attribute
line 360 column 162 - Warning: <img> lacks "alt" attribute
line 361 column 11 - Warning: <img> lacks "alt" attribute
line 371 column 15 - Warning: <img> lacks "alt" attribute
line 378 column 2429 - Warning: <img> lacks "alt" attribute
line 378 column 3270 - Warning: <img> proprietary attribute value "absmiddle"
line 378 column 3270 - Warning: <img> lacks "alt" attribute
line 379 column 3513 - Warning: <img> proprietary attribute value "absmiddle"
line 379 column 3513 - Warning: <img> lacks "alt" attribute
line 379 column 3763 - Warning: <img> lacks "alt" attribute
line 381 column 4023 - Warning: <img> lacks "alt" attribute
line 389 column 23 - Warning: <img> lacks "alt" attribute
line 389 column 64 - Warning: <img> lacks "alt" attribute
line 389 column 113 - Warning: <img> lacks "alt" attribute
line 389 column 163 - Warning: <img> lacks "alt" attribute
line 390 column 11 - Warning: <img> lacks "alt" attribute
line 400 column 15 - Warning: <img> lacks "alt" attribute
line 407 column 192 - Warning: <img> lacks "alt" attribute
line 413 column 43 - Warning: <img> proprietary attribute value "absmiddle"
line 413 column 43 - Warning: <img> lacks "alt" attribute
line 413 column 86 - Warning: <img> proprietary attribute value "absmiddle"
line 413 column 86 - Warning: <img> lacks "alt" attribute
line 413 column 129 - Warning: <img> proprietary attribute value "absmiddle"
line 413 column 129 - Warning: <img> lacks "alt" attribute
line 413 column 172 - Warning: <img> proprietary attribute value "absmiddle"
line 413 column 172 - Warning: <img> lacks "alt" attribute
line 413 column 215 - Warning: <img> proprietary attribute value "absmiddle"
line 413 column 215 - Warning: <img> lacks "alt" attribute
line 413 column 258 - Warning: <img> proprietary attribute value "absmiddle"
line 413 column 258 - Warning: <img> lacks "alt" attribute
line 413 column 301 - Warning: <img> proprietary attribute value "absmiddle"
line 413 column 301 - Warning: <img> lacks "alt" attribute
line 415 column 33 - Warning: <img> lacks "alt" attribute
line 420 column 37 - Warning: <img> lacks "alt" attribute
line 427 column 308 - Warning: <img> lacks "alt" attribute
line 427 column 977 - Warning: <img> proprietary attribute value "absmiddle"
line 427 column 977 - Warning: <img> lacks "alt" attribute
line 428 column 1220 - Warning: <img> proprietary attribute value "absmiddle"
line 428 column 1220 - Warning: <img> lacks "alt" attribute
line 430 column 1342 - Warning: <img> proprietary attribute value "absmiddle"
line 430 column 1342 - Warning: <img> lacks "alt" attribute
line 439 column 23 - Warning: <img> lacks "alt" attribute
line 439 column 64 - Warning: <img> lacks "alt" attribute
line 439 column 113 - Warning: <img> lacks "alt" attribute
line 439 column 163 - Warning: <img> lacks "alt" attribute
line 450 column 15 - Warning: <img> lacks "alt" attribute
line 463 column 4791 - Warning: <img> proprietary attribute value "absmiddle"
line 463 column 4791 - Warning: <img> lacks "alt" attribute
line 469 column 43 - Warning: <img> proprietary attribute value "absmiddle"
line 469 column 43 - Warning: <img> lacks "alt" attribute
line 469 column 86 - Warning: <img> proprietary attribute value "absmiddle"
line 469 column 86 - Warning: <img> lacks "alt" attribute
line 469 column 129 - Warning: <img> proprietary attribute value "absmiddle"
line 469 column 129 - Warning: <img> lacks "alt" attribute
line 469 column 172 - Warning: <img> proprietary attribute value "absmiddle"
line 469 column 172 - Warning: <img> lacks "alt" attribute
line 469 column 215 - Warning: <img> proprietary attribute value "absmiddle"
line 469 column 215 - Warning: <img> lacks "alt" attribute
line 469 column 258 - Warning: <img> proprietary attribute value "absmiddle"
line 469 column 258 - Warning: <img> lacks "alt" attribute
line 469 column 301 - Warning: <img> proprietary attribute value "absmiddle"
line 469 column 301 - Warning: <img> lacks "alt" attribute
line 471 column 33 - Warning: <img> lacks "alt" attribute
line 476 column 37 - Warning: <img> lacks "alt" attribute
line 483 column 308 - Warning: <img> lacks "alt" attribute
line 490 column 43 - Warning: <img> proprietary attribute value "absmiddle"
line 490 column 43 - Warning: <img> lacks "alt" attribute
line 490 column 86 - Warning: <img> proprietary attribute value "absmiddle"
line 490 column 86 - Warning: <img> lacks "alt" attribute
line 490 column 129 - Warning: <img> proprietary attribute value "absmiddle"
line 490 column 129 - Warning: <img> lacks "alt" attribute
line 490 column 172 - Warning: <img> proprietary attribute value "absmiddle"
line 490 column 172 - Warning: <img> lacks "alt" attribute
line 490 column 215 - Warning: <img> proprietary attribute value "absmiddle"
line 490 column 215 - Warning: <img> lacks "alt" attribute
line 490 column 258 - Warning: <img> proprietary attribute value "absmiddle"
line 490 column 258 - Warning: <img> lacks "alt" attribute
line 490 column 301 - Warning: <img> proprietary attribute value "absmiddle"
line 490 column 301 - Warning: <img> lacks "alt" attribute
line 492 column 33 - Warning: <img> lacks "alt" attribute
line 497 column 37 - Warning: <img> lacks "alt" attribute
line 504 column 308 - Warning: <img> lacks "alt" attribute
line 516 column 43 - Warning: <img> proprietary attribute value "absmiddle"
line 516 column 43 - Warning: <img> lacks "alt" attribute
line 516 column 86 - Warning: <img> proprietary attribute value "absmiddle"
line 516 column 86 - Warning: <img> lacks "alt" attribute
line 516 column 129 - Warning: <img> proprietary attribute value "absmiddle"
line 516 column 129 - Warning: <img> lacks "alt" attribute
line 516 column 172 - Warning: <img> proprietary attribute value "absmiddle"
line 516 column 172 - Warning: <img> lacks "alt" attribute
line 516 column 215 - Warning: <img> proprietary attribute value "absmiddle"
line 516 column 215 - Warning: <img> lacks "alt" attribute
line 516 column 258 - Warning: <img> proprietary attribute value "absmiddle"
line 516 column 258 - Warning: <img> lacks "alt" attribute
line 516 column 301 - Warning: <img> proprietary attribute value "absmiddle"
line 516 column 301 - Warning: <img> lacks "alt" attribute
line 518 column 33 - Warning: <img> lacks "alt" attribute
line 523 column 37 - Warning: <img> lacks "alt" attribute
line 530 column 308 - Warning: <img> lacks "alt" attribute
line 538 column 15 - Warning: <img> lacks "alt" attribute
line 539 column 23 - Warning: <img> lacks "alt" attribute
line 539 column 64 - Warning: <img> lacks "alt" attribute
line 539 column 113 - Warning: <img> lacks "alt" attribute
line 539 column 163 - Warning: <img> lacks "alt" attribute
line 540 column 11 - Warning: <img> lacks "alt" attribute
line 550 column 15 - Warning: <img> lacks "alt" attribute
line 557 column 1337 - Warning: <img> lacks "alt" attribute
line 557 column 1413 - Warning: <td> attribute "width" has invalid value "83.6%"
line 557 column 1494 - Warning: <img> lacks "alt" attribute
line 557 column 1555 - Warning: <td> attribute "width" has invalid value "16.4%"
line 557 column 1637 - Warning: <img> lacks "alt" attribute
line 557 column 1716 - Warning: <img> lacks "alt" attribute
line 557 column 2001 - Warning: <img> lacks "alt" attribute
line 557 column 2153 - Warning: <img> lacks "alt" attribute
line 557 column 2218 - Warning: <img> lacks "alt" attribute
line 557 column 2370 - Warning: <img> lacks "alt" attribute
line 557 column 2571 - Warning: <font> attribute "color" had invalid value "bcddf2" and has been replaced
line 557 column 2760 - Warning: <img> lacks "alt" attribute
line 557 column 3109 - Warning: <img> lacks "alt" attribute
line 557 column 3468 - Warning: <img> lacks "alt" attribute
line 557 column 3541 - Warning: <img> lacks "alt" attribute
line 557 column 3739 - Warning: <img> lacks "alt" attribute
line 557 column 3981 - Warning: <img> lacks "alt" attribute
line 557 column 4066 - Warning: <img> lacks "alt" attribute
line 557 column 4287 - Warning: <img> lacks "alt" attribute
line 557 column 4415 - Warning: <img> lacks "alt" attribute
line 557 column 4524 - Warning: <img> lacks "alt" attribute
line 564 column 11 - Warning: <img> lacks "alt" attribute
line 565 column 23 - Warning: <img> lacks "alt" attribute
line 565 column 64 - Warning: <img> lacks "alt" attribute
line 565 column 113 - Warning: <img> lacks "alt" attribute
line 565 column 163 - Warning: <img> lacks "alt" attribute
line 566 column 11 - Warning: <img> lacks "alt" attribute
line 576 column 15 - Warning: <img> lacks "alt" attribute
line 584 column 688 - Warning: <img> lacks "alt" attribute
line 591 column 43 - Warning: <img> proprietary attribute value "absmiddle"
line 591 column 43 - Warning: <img> lacks "alt" attribute
line 591 column 86 - Warning: <img> proprietary attribute value "absmiddle"
line 591 column 86 - Warning: <img> lacks "alt" attribute
line 591 column 129 - Warning: <img> proprietary attribute value "absmiddle"
line 591 column 129 - Warning: <img> lacks "alt" attribute
line 591 column 172 - Warning: <img> proprietary attribute value "absmiddle"
line 591 column 172 - Warning: <img> lacks "alt" attribute
line 591 column 215 - Warning: <img> proprietary attribute value "absmiddle"
line 591 column 215 - Warning: <img> lacks "alt" attribute
line 591 column 258 - Warning: <img> proprietary attribute value "absmiddle"
line 591 column 258 - Warning: <img> lacks "alt" attribute
line 591 column 301 - Warning: <img> proprietary attribute value "absmiddle"
line 591 column 301 - Warning: <img> lacks "alt" attribute
line 593 column 33 - Warning: <img> lacks "alt" attribute
line 598 column 37 - Warning: <img> lacks "alt" attribute
line 605 column 308 - Warning: <img> lacks "alt" attribute
line 615 column 43 - Warning: <img> proprietary attribute value "absmiddle"
line 615 column 43 - Warning: <img> lacks "alt" attribute
line 615 column 86 - Warning: <img> proprietary attribute value "absmiddle"
line 615 column 86 - Warning: <img> lacks "alt" attribute
line 615 column 129 - Warning: <img> proprietary attribute value "absmiddle"
line 615 column 129 - Warning: <img> lacks "alt" attribute
line 615 column 172 - Warning: <img> proprietary attribute value "absmiddle"
line 615 column 172 - Warning: <img> lacks "alt" attribute
line 615 column 215 - Warning: <img> proprietary attribute value "absmiddle"
line 615 column 215 - Warning: <img> lacks "alt" attribute
line 615 column 258 - Warning: <img> proprietary attribute value "absmiddle"
line 615 column 258 - Warning: <img> lacks "alt" attribute
line 615 column 301 - Warning: <img> proprietary attribute value "absmiddle"
line 615 column 301 - Warning: <img> lacks "alt" attribute
line 617 column 33 - Warning: <img> lacks "alt" attribute
line 622 column 37 - Warning: <img> lacks "alt" attribute
line 629 column 308 - Warning: <img> lacks "alt" attribute
line 640 column 43 - Warning: <img> proprietary attribute value "absmiddle"
line 640 column 43 - Warning: <img> lacks "alt" attribute
line 640 column 86 - Warning: <img> proprietary attribute value "absmiddle"
line 640 column 86 - Warning: <img> lacks "alt" attribute
line 640 column 129 - Warning: <img> proprietary attribute value "absmiddle"
line 640 column 129 - Warning: <img> lacks "alt" attribute
line 640 column 172 - Warning: <img> proprietary attribute value "absmiddle"
line 640 column 172 - Warning: <img> lacks "alt" attribute
line 640 column 215 - Warning: <img> proprietary attribute value "absmiddle"
line 640 column 215 - Warning: <img> lacks "alt" attribute
line 640 column 258 - Warning: <img> proprietary attribute value "absmiddle"
line 640 column 258 - Warning: <img> lacks "alt" attribute
line 640 column 301 - Warning: <img> proprietary attribute value "absmiddle"
line 640 column 301 - Warning: <img> lacks "alt" attribute
line 642 column 33 - Warning: <img> lacks "alt" attribute
line 647 column 37 - Warning: <img> lacks "alt" attribute
line 677 column 43 - Warning: <img> proprietary attribute value "absmiddle"
line 677 column 43 - Warning: <img> lacks "alt" attribute
line 677 column 86 - Warning: <img> proprietary attribute value "absmiddle"
line 677 column 86 - Warning: <img> lacks "alt" attribute
line 677 column 129 - Warning: <img> proprietary attribute value "absmiddle"
line 677 column 129 - Warning: <img> lacks "alt" attribute
line 677 column 172 - Warning: <img> proprietary attribute value "absmiddle"
line 677 column 172 - Warning: <img> lacks "alt" attribute
line 677 column 215 - Warning: <img> proprietary attribute value "absmiddle"
line 677 column 215 - Warning: <img> lacks "alt" attribute
line 677 column 258 - Warning: <img> proprietary attribute value "absmiddle"
line 677 column 258 - Warning: <img> lacks "alt" attribute
line 677 column 301 - Warning: <img> proprietary attribute value "absmiddle"
line 677 column 301 - Warning: <img> lacks "alt" attribute
line 679 column 33 - Warning: <img> lacks "alt" attribute
line 684 column 37 - Warning: <img> lacks "alt" attribute
line 713 column 44 - Warning: <img> proprietary attribute value "absmiddle"
line 713 column 142 - Warning: <img> proprietary attribute value "absmiddle"
line 713 column 246 - Warning: <img> proprietary attribute value "absmiddle"
line 722 column 25 - Warning: <img> lacks "alt" attribute
line 727 column 267 - Warning: <img> lacks "alt" attribute
line 173 column 804 - Warning: trimming empty <span>
line 173 column 755 - Warning: trimming empty <font>
line 427 column 804 - Warning: trimming empty <span>
line 427 column 755 - Warning: trimming empty <font>
line 463 column 4982 - Warning: trimming empty <label>
line 605 column 804 - Warning: trimming empty <span>
line 605 column 755 - Warning: trimming empty <font>
line 707 column 17 - Warning: trimming empty <tr>
line 125 column 68 - Warning: <nobr> is not approved by W3C
line 141 column 68 - Warning: <nobr> is not approved by W3C
line 171 column 47 - Warning: <nobr> is not approved by W3C
line 173 column 99 - Warning: <table> proprietary attribute "height"
line 173 column 99 - Warning: <table> proprietary attribute "background"
line 173 column 507 - Warning: <table> proprietary attribute "background"
line 173 column 661 - Warning: <td> proprietary attribute "background"
line 196 column 27 - Warning: <nobr> is not approved by W3C
line 198 column 74 - Warning: <div> proprietary attribute "width"
line 198 column 321 - Warning: <div> proprietary attribute "width"
line 225 column 27 - Warning: <nobr> is not approved by W3C
line 227 column 74 - Warning: <table> proprietary attribute "height"
line 261 column 27 - Warning: <nobr> is not approved by W3C
line 263 column 74 - Warning: <table> proprietary attribute "height"
line 263 column 146 - Warning: <td> proprietary attribute "border"
line 263 column 163 - Warning: <table> proprietary attribute "bordercolor"
line 263 column 244 - Warning: <td> proprietary attribute "border"
line 267 column 560 - Warning: <td> proprietary attribute "border"
line 267 column 560 - Warning: <td> proprietary attribute "background"
line 291 column 27 - Warning: <nobr> is not approved by W3C
line 293 column 74 - Warning: <div> proprietary attribute "width"
line 299 column 439 - Warning: <div> proprietary attribute "width"
line 320 column 47 - Warning: <nobr> is not approved by W3C
line 322 column 99 - Warning: <table> proprietary attribute "height"
line 322 column 99 - Warning: <table> proprietary attribute "background"
line 322 column 507 - Warning: <table> proprietary attribute "background"
line 322 column 661 - Warning: <td> proprietary attribute "background"
line 345 column 27 - Warning: <nobr> is not approved by W3C
line 347 column 74 - Warning: <table> proprietary attribute "height"
line 376 column 27 - Warning: <nobr> is not approved by W3C
line 405 column 27 - Warning: <nobr> is not approved by W3C
line 425 column 47 - Warning: <nobr> is not approved by W3C
line 427 column 99 - Warning: <table> proprietary attribute "height"
line 427 column 99 - Warning: <table> proprietary attribute "background"
line 427 column 507 - Warning: <table> proprietary attribute "background"
line 427 column 661 - Warning: <td> proprietary attribute "background"
line 455 column 27 - Warning: <nobr> is not approved by W3C
line 481 column 47 - Warning: <nobr> is not approved by W3C
line 483 column 99 - Warning: <table> proprietary attribute "height"
line 483 column 99 - Warning: <table> proprietary attribute "background"
line 483 column 507 - Warning: <table> proprietary attribute "background"
line 483 column 661 - Warning: <td> proprietary attribute "background"
line 502 column 47 - Warning: <nobr> is not approved by W3C
line 504 column 99 - Warning: <table> proprietary attribute "height"
line 504 column 99 - Warning: <table> proprietary attribute "background"
line 504 column 507 - Warning: <table> proprietary attribute "background"
line 504 column 661 - Warning: <td> proprietary attribute "background"
line 528 column 47 - Warning: <nobr> is not approved by W3C
line 530 column 99 - Warning: <table> proprietary attribute "height"
line 530 column 99 - Warning: <table> proprietary attribute "background"
line 530 column 507 - Warning: <table> proprietary attribute "background"
line 530 column 661 - Warning: <td> proprietary attribute "background"
line 555 column 27 - Warning: <nobr> is not approved by W3C
line 557 column 1065 - Warning: <table> proprietary attribute "height"
line 557 column 1171 - Warning: <table> proprietary attribute "height"
line 557 column 1256 - Warning: <table> proprietary attribute "height"
line 557 column 1413 - Warning: <td> proprietary attribute "background"
line 557 column 1555 - Warning: <td> proprietary attribute "background"
line 557 column 1828 - Warning: <table> proprietary attribute "height"
line 557 column 1926 - Warning: <table> proprietary attribute "height"
line 557 column 2073 - Warning: <td> proprietary attribute "background"
line 557 column 2300 - Warning: <td> proprietary attribute "background"
line 557 column 2431 - Warning: <td> proprietary attribute "background"
line 557 column 2689 - Warning: <td> proprietary attribute "background"
line 557 column 2852 - Warning: <table> proprietary attribute "height"
line 557 column 2921 - Warning: <td> proprietary attribute "background"
line 557 column 3028 - Warning: <table> proprietary attribute "height"
line 557 column 3396 - Warning: <td> proprietary attribute "background"
line 557 column 3666 - Warning: <table> proprietary attribute "height"
line 557 column 3817 - Warning: <td> proprietary attribute "background"
line 581 column 27 - Warning: <nobr> is not approved by W3C
line 603 column 47 - Warning: <nobr> is not approved by W3C
line 605 column 99 - Warning: <table> proprietary attribute "height"
line 605 column 99 - Warning: <table> proprietary attribute "background"
line 605 column 507 - Warning: <table> proprietary attribute "background"
line 605 column 661 - Warning: <td> proprietary attribute "background"
line 627 column 47 - Warning: <nobr> is not approved by W3C
line 629 column 99 - Warning: <table> proprietary attribute "height"
line 629 column 99 - Warning: <table> proprietary attribute "background"
line 629 column 507 - Warning: <table> proprietary attribute "background"
line 629 column 661 - Warning: <td> proprietary attribute "background"
line 652 column 47 - Warning: <nobr> is not approved by W3C
line 689 column 47 - Warning: <nobr> is not approved by W3C
Info: Document content looks like HTML5
Info: No system identifier in emitted doctype
Tidy found 596 warnings and 2 errors!

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 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.

About HTML Tidy: https://github.com/htacg/tidy-html5
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
Validate your HTML documents: http://validator.w3.org/nu/
Lobby your company to join the W3C: http://www.w3.org/Consortium

Do you speak a language other than English, or a different variant of
English? Consider helping us to localize HTML Tidy. For details please see
https://github.com/htacg/tidy-html5/blob/master/README/LOCALIZE.md