ANet must have something with that number. Isn't that the same number of becons left to light at borlis pass in another screenie that was posted a while back?
Well, a signed integer variable in C++ has a value range of (-2,147,483,648) to 2,147,483,647. If we use an unsigned integer (absolute value: no + or -) the maximum value is 4,294,967,296 - 1 ( -1 because we count zero) giving us 4,294,967,295. I think we can safely assume that in the program both of those values are being stored in unsigned integer variables. Some kind of glitch is causing them to be displayed as their max value -1. I could speculate on what kind of coding mistake they made to cause this to happen, but I don't want to get too "geeky programmer" on ya. ;-)