Jump to content

[1.0.4] ScienceAlert 1.8.9: Experiment availability feedback (July 13)


xEvilReeperx

Recommended Posts

Found a bug that causes Kerbal duplication

I made a rover with an external command seat, then brought a kerbal into the world with a MK1 command pod and had him board the external command seat

Is this with 1.8.7? I thought I squished it already. Can you reproduce this on the pad?

Question, in the Options menu, "Crewed Vessel Settings" portion, what is the purpose of the option "Track Surface Sample in Vessel"

Normally the only "phantom" experiment tracked is the EVA report. But if you have an EVA-capable crewman onboard (and the surface sample experiment unlocked), you can enable this option to have the whole vessel treated as though it were capable of surface experiments, prompting alerts if you land. Deploying it while inside a vessel will send somebody on EVA just like the EVA report

Link to comment
Share on other sites

There seems to be a memory leak with this plugin. When returning to the space center from flight, memory usage jumps by 20+ MB more than it does in stock (stock also sees the memory usage jump when returning to the space center, but it isn't as severe and the jump reduces in size each time you return).

I have a large number of mods installed, so this is causing me to bump up against the ~3.5GB memory barrier for 32-bit KSP and crashing.

I'm running KSP 32-bit v1.0.4 with ScienceAlert v1.8.7 on Win7 64-bit. I'm using the --force-opengl command-line argument to make KSP take less memory on startup.

To reproduce:

  • With just KSP and Science Alert installed, start a new campaign.
  • Build a ship that's just a command pod.
  • Go to the launch scene for the ship, but immediately recover the ship. Repeat while watching memory usage in the task manager.

Edited by Akaji
Link to comment
Share on other sites

Is there any condition in which the ScienceAlert Button would not show up at all even though the mod is installed and worked before?

For my current career-mode savegame the button is completely missing (not only greyed out) even though I have the mod installed and it shows up in another test savegame. I suspect that something might have happened to the persistent file when my PC crashed last time I was playing.

Is there some way I could reset the game only in regard to ScienceAlert ? I'v tried reinstalling the mod, but this didn't help. Are there maybe some entries in the persistent file that I can delete and start "fresh" ?

Edited by Josson K.
Link to comment
Share on other sites

There seems to be a memory leak with this plugin. When returning to the space center from flight, memory usage jumps by 20+ MB more than it does in stock (stock also sees the memory usage jump when returning to the space center, but it isn't as severe and the jump reduces in size each time you return).

I'll look into this, but don't have high hopes. No portion of ScienceAlert runs in the SpaceCenter and even fully loaded it shouldn't be taking 20MB of memory, cached BiomeMap and all :huh:

Is there any condition in which the ScienceAlert Button would not show up at all even though the mod is installed and worked before?

The most common cause of this is another ScenarioModule throwing an exception in OnLoad. Have a look in your log to see if there are any exceptions related to this. If you want to start from a clean state, delete profiles.cfg (if exists) in GameData/ScienceAlert and remove the whole of ScienceAlertProfileManager in the ScenarioModules section of your persistent file (make a backup!).

Link to comment
Share on other sites

When is expected to be updated for 1.04 and included in CKAN?

If you look above you'll see it is believed to work. If you look here: https://www.reddit.com/r/KerbalSpaceProgram/comments/3beh00/why_are_there_so_few_ckan_mods_for_104/ (ugh, reddit) you'll find out how you can help to get your favourite mods available for 1.0.4.

Link to comment
Share on other sites

Looking through your code, I'm wondering if there is a leak related to the projection map.

I'll look into this, but don't have high hopes. No portion of ScienceAlert runs in the SpaceCenter and even fully loaded it shouldn't be taking 20MB of memory, cached BiomeMap and all :huh:

I'm having difficulty identifying where the projected biome map is getting cached. It looks to me like any time GameEvents.onDominantBodyChange or GameEvents.onVesselChanged triggers and the new body is not the current body, the projected biome map is regenerated.

Since 'current' is set to null prior to beginning generation, if onDominantBodyChange is sent with from==to (e.g. Kerbin to Kerbin) then the map would get regenerated. It also looks like the map generation will get restarted any time that onVesselChange triggers, even within the same SOI, for the same reason.

If GameEvents.onDominantBodyChange is triggered when going from the space center to the launchpad, and the space center is considered to have a null dominant body, it looks like the projected biome map will get regenerated.

It's possible I was mistaken about where the memory leak happens - it could happen when going to the launch pad, but I only was able to notice it when returning to the space center. It's worth noting that the launch scene uses less memory than the space center scene, so that could be obfuscating where the leak is really happening.

(Sorry if I'm reading the code wrong - I haven't developed in C# before, and my Java experience doesn't translate 1:1)

On a related note, does UnityEngine's Texture2D implementation handle resource disposal automagically with GC? If not, then the projectedMap needs to be disposed/destroyed prior to being set to null so that the underlying resource doesn't stick around indefinitely.

Even if GC should handle the resource, a leak could occur if something prevents the Texture2D object from being collected. I didn't see anything in your code that explicitly allowed the object to be held on indefinitely, but it could be happening somewhere else (maybe Unity itself? I've heard that its resource garbage collection is iffy).

It's also possible that there's some wonkiness with the C# iterator function causing it to hold on to the resource when it gets interrupted.

It might be worth trying manually collecting (dispose/destroy) the projection map prior to unsetting it just to see if that fixes the leak.

Link to comment
Share on other sites

Thanks for the heads up. I'm slightly annoyed that I got so little time to look into it before somebody posts that. But rest assured, if there's a memory leak I won't sleep until it's been found and destroyed

Looking through your code, I'm wondering if there is a leak related to the projection map.

In the 1.8.7 code, technically yes: the biome map leaks a Texture2D every time the dominant body is changed (it should destroy or preferentially re-use the existing one). But those unreferenced Texture2Ds should be cleaned up on a scene change, and each one is ~8mb, not 20. In 1.8.8, I'd already switched to using a no-frills array since there was really no reason to have the overhead of a Texture2D for what it does except for debug purposes.

Link to comment
Share on other sites

I'm also noticing memory leaks, switching from VAB to the Craft and back again I lose a few 100mb each time. It might also be another mod but I haven't taken the time to disable one by one yet, that will be on my agenda today.

Edit: Removed Science Altert and the VAB -> Flight issue is mostly gone. Memory seems to only creep by 1-2MB without it if at all.

My findings with it on:

VAB - Flight - VAB - Flight - etc

2550MB - 2646MB - 2716MB - 2633MB - 2756MB - 2686MB - 2816MB

Seems to jump up 20-30MB on each screen

Will be running the game without it for the rest of today, was crashing on me every few hours due to mem issues so I will see if it's stopped now.

Yay! I hope you can isolate the issue, love this mod but boy has it caused me a lot of crashes since April

Link to comment
Share on other sites

Any luck on finding and fixing the leak? Playing without this mod really makes playing KSP annoying.
Agree with that. Right now only the For Science by Wavefunction makes it still playable. I miss this mod so much. In some missions I can sometimes have as many 10 separate science experiments. In is a pain to manually go in and activate them all. Best of luck with tracking down the memory leak.
Link to comment
Share on other sites

Alright, pretty sure I found the main issue. It's not a leak but a consequence of allocating a large array which I use to process the biome map. I'll test it out tonight and release tomorrow assuming I haven't broken anything with some other changes

Link to comment
Share on other sites

Hey, XEvilReeperx, ScienceAlert is probably my one must-have mod and has been ever since I found out about it probably over a year ago. I was wondering if one piece of functionality is available: namely, if it's possible to get the alert whenever there's still science to be gained from transmitting. I recently realized I can do some experiments, mostly from mods, several times and transmit them from probes to get science I didn't get the first time. The issue is only the first time is activatable by ScienceAlert, and the remaining ones rely on me finding the experiment on the ship and doing them manually however many times is necessary. I realize there's a setting to show alerts whenever an experiment is incomplete, but that would mean that the ones that give more science for recovery than transmission would be on all the time, even after I've transmitted them enough times to make it worth zero science to do it again.

Hopefully I've explained the issue I'm having well enough and you'll be able to tell me if I'm missing a feature or maybe add it to your to-do list.

Thanks for the amazing mod and have a great day!

Link to comment
Share on other sites

if it's possible to get the alert whenever there's still science to be gained from transmitting.

I hope to get this into 2.0. The main problem is conveying this information in an intuitive way. What if transmitting renders the experiment inoperable? Should the UI warn about it? What if that experiment could be reset? Should I assume it will be? And so on. But yes, it's on the map ;)

Ey. Apparantly this doesent work if you install it mid career.

It should work unless you're in sandbox. Are there any error messages or exceptions in the log? Normally the only thing that would prevent SA from working like you described is if you jump past the main menu straight into a game without passing the "start" or "resume game" options which is when KSP adds ScenarioModules to games, or else another ScenarioModule is throwing an exception in OnLoad and preventing the rest from initializing.

Link to comment
Share on other sites

I saw a video for this in Kottabos' mod review / overview series. I'm guessing he made it during a *much* older version of KSP and this mod, because at the time he seemed confused by the material bay constantly spamming "new science" alerts when he reset it. (I'm guessing that at one point, it wasn't a one-per-flight experiment and he didn't realize at the time that resetting the bay was dumping the experiment, which is why the experiment was suddenly available again.) Anyway, in his video, he mentioned that the toolbar mod was required to use this. Since there doesn't seem to be a listing for mod dependencies in the first post, is this still the case? Or will this work with the stock UI now?

Link to comment
Share on other sites

Anyway, in his video, he mentioned that the toolbar mod was required to use this. Since there doesn't seem to be a listing for mod dependencies in the first post, is this still the case? Or will this work with the stock UI now?

It works with the stock ui. IIRC it's on there by default and you have to transfer it over to the real... erm I mean Blizzy's toolbar.

Link to comment
Share on other sites

I am having issues with science alert not "alerting" me to new science.

These are the errors I have been getting in the debug log:

[Warning]: ScienceAlert, Did not find a vessel that matches 98f3a577-3bd9-4569-aec5-15d9f3328527; check destruction event code

[Log]: ScienceAlert, ExperimentManager.OnVesselWasModified: rescanning vessel for experiment modules

[Log]: ScienceAlert, Rebuilding observer list

[Log]: ScienceAlert, StorageCache: Active vessel is not monitored vessel; rebuilding storage cache

[Exception]: NullReferenceException: Object reference not set to an instance of an object

All of those are not in the order they were received, but they are some of the log info I have been getting from the mod. Any help or debugging info would be great to get it fixed

Link to comment
Share on other sites

Here is what i found in the logs from one of the flights that i played last night. If you need a mod list, let me know, i run around 20+ mods from CKAN.

[LOG 18:11:07.497] ------------------- initializing flight mode... ------------------

[LOG 18:11:07.533] Loading ship from file: C:/Program Files (x86)/Steam/steamapps/common/Kerbal Space Program/KSP_Data/../saves/new game 7-6-15/Ships/VAB/Auto-Saved Ship.craft

[LOG 18:11:08.374] v3 loaded!

[LOG 18:11:11.658] putting ship to ground: 0

[LOG 18:11:11.667] [v3]: Ready to Launch - waiting to start physics...

[LOG 18:11:11.716] [FLIGHT GLOBALS]: Switching To Vessel v3 ----------------------

[LOG 18:11:11.718] setting new dominant body: Kerbin

FlightGlobals.mainBody: Kerbin

[LOG 18:11:11.720] Reference Frame: Rotating

[LOG 18:11:11.731] stage manager resuming...

[LOG 18:11:11.733] Vessel assembly complete!

[LOG 18:11:11.733] stage manager starting...

[LOG 18:11:11.734] all systems started

[LOG 18:11:11.767] Parsing double

[LOG 18:11:11.768] Parsing rect

[LOG 18:11:11.769] Parsing bool

[LOG 18:11:11.769] Parsing bool

[LOG 18:11:11.770] Parsing bool

[LOG 18:11:11.771] Parsing bool

[LOG 18:11:11.774] [sCANsatMechJeb] Starting SCANsat - MechJeb Interface...

[LOG 18:11:11.776] ScienceAlert, Waiting on R&D...

[LOG 18:11:11.778] SmokeScreenConfig could not load config

[LOG 18:11:11.779] KerbalDebrisFix.Start(): v01.02

[LOG 18:11:11.780] MPFFixAddon.Start()

[LOG 18:11:11.780] Tac.FuelBalanceController[FFF70ABA][599.24]: Start

[LOG 18:11:11.810] 7/8/2015 6:11:11 PM,KerbalAlarmClock,Searching for KER

[LOG 18:11:11.811] 7/8/2015 6:11:11 PM,KerbalAlarmClock-KERWrapper,Attempting to Grab KER Types...

[LOG 18:11:11.813] 7/8/2015 6:11:11 PM,KerbalAlarmClock,Searching for VOID

[LOG 18:11:11.814] 7/8/2015 6:11:11 PM,KerbalAlarmClock-VOIDWrapper,Attempting to Grab VOID Types...

[LOG 18:11:11.826] Tac.FuelBalanceController[FFF70ABA][599.22]: Rebuilding resource lists.

[LOG 18:11:11.832] PilotRSASFix.Start(): v00.02

[LOG 18:11:11.886] PilotRSASFix.Start(): v00.02

[LOG 18:11:11.945] [sCANsat] start: live

[LOG 18:11:11.946] [sCANsat] sensorType: 384 fov: 2 min_alt: 50000 max_alt: 120000 best_alt: 100000 power: 1

[LOG 18:11:11.948] [sCANsat] Ore Resource Display Module set to Max Alt: 120000 ; Unlock: True

[LOG 18:11:11.980] [sCANsat] MetallicOre Resource Display Module set to Max Alt: 120000 ; Unlock: True

[LOG 18:11:11.981] [sCANsat] Ore Resource Display Module set to Max Alt: 120000 ; Unlock: True

[LOG 18:11:11.988] ModuleParachuteFix.Start(): v01.03

[LOG 18:11:11.989] ModuleParachuteFix.Start(): v01.03

[LOG 18:11:11.990] ModuleParachuteFix.Start(): v01.03

[LOG 18:11:11.994] MGFix.Start(): v00.02

[LOG 18:11:12.001] MGFix.Start(): v00.02

[LOG 18:11:12.004] MGFix.Start(): v00.02

[LOG 18:11:12.008] MCSFix.Start(): v01.03

[LOG 18:11:12.009] MCSFix.Start(): v01.03

[LOG 18:11:12.010] MCSFix.Start(): v01.03

[LOG 18:11:12.010] MCSFix.Start(): v01.03

[LOG 18:11:12.011] MCSFix.Start(): v01.03

[LOG 18:11:12.012] MCSFix.Start(): v01.03

[LOG 18:11:12.013] MCSFix.Start(): v01.03

[LOG 18:11:12.013] MCSFix.Start(): v01.03

[LOG 18:11:12.014] MCSFix.Start(): v01.03

[LOG 18:11:12.015] MCSFix.Start(): v01.03

[LOG 18:11:12.016] MCSFix.Start(): v01.03

[LOG 18:11:12.016] MCSFix.Start(): v01.03

[LOG 18:11:12.017] MCSFix.Start(): v01.03

[LOG 18:11:12.018] MCSFix.Start(): v01.03

[LOG 18:11:12.019] MCSFix.Start(): v01.03

[LOG 18:11:12.019] MCSFix.Start(): v01.03

[LOG 18:11:12.107] DPAI: Reference Part Changed - tick 1

[LOG 18:11:12.109] 7/8/2015 6:11:12 PM,KerbalAlarmClock,Active Vessel unreadable - resetting inqueue flag

[LOG 18:11:12.112] Create button for module Ascent Guidance

[LOG 18:11:12.114] Create button for module Attitude Adjustment

[LOG 18:11:12.115] Create button for module Custom Window Editor

[LOG 18:11:12.116] Create button for module Docking Autopilot

[LOG 18:11:12.118] Create button for module Landing Guidance

[LOG 18:11:12.119] Create button for module Maneuver Node Editor

[LOG 18:11:12.120] Create button for module Maneuver Planner

[LOG 18:11:12.122] Create button for module RCS Balancer

[LOG 18:11:12.123] Create button for module Rendezvous Autopilot

[LOG 18:11:12.124] Create button for module Rendezvous Planner

[LOG 18:11:12.125] Create button for module Rover Autopilot

[LOG 18:11:12.127] Create button for module Settings

[LOG 18:11:12.128] Create button for module Smart A.S.S.

[LOG 18:11:12.129] Create button for module SmartRcs

[LOG 18:11:12.131] [MechJeb2] No icon for SmartRcs

[LOG 18:11:12.131] Create button for module Spaceplane Guidance

[LOG 18:11:12.133] Create button for module Translatron

[LOG 18:11:12.134] Create button for module Utilities

[LOG 18:11:12.135] Create button for module Warp Helper

[LOG 18:11:12.137] Create button for module Delta-V Stats

[LOG 18:11:12.138] Create button for module Misc Info

[LOG 18:11:12.139] [MechJeb2] No icon for Misc_Info

[LOG 18:11:12.140] Create button for module Orbit Info

[LOG 18:11:12.142] Create button for module Surface Info

[LOG 18:11:12.143] Create button for module Target Info

[LOG 18:11:12.145] [MechJeb2] No icon for Target_Info

[LOG 18:11:12.146] Create button for module Vessel Info

[WRN 18:11:12.281] [TweakScale Warning] Duplicate TweakScale module on part [uS.1C10.Wedge.Quadcore] Universal Storage: QuadCore

TweakScale.Tools:LogWf(String, Object[])

TweakScale.TweakScale:CheckForDuplicateTweakScale()

TweakScale.TweakScale:Update()

[WRN 18:11:12.283] [TweakScale Warning] Duplicate TweakScale module on part [uS.1C10.Wedge.Quadcore] Universal Storage: QuadCore

TweakScale.Tools:LogWf(String, Object[])

TweakScale.TweakScale:CheckForDuplicateTweakScale()

TweakScale.TweakScale:Update()

[WRN 18:11:12.285] [TweakScale Warning] Duplicate TweakScale module on part [uS.1C10.Wedge.Quadcore] Universal Storage: QuadCore

TweakScale.Tools:LogWf(String, Object[])

TweakScale.TweakScale:CheckForDuplicateTweakScale()

TweakScale.TweakScale:Update()

[LOG 18:11:12.290] 7/8/2015 6:11:12 PM,KerbalAlarmClock,Vessel Change from 'No Vessel' to 'v3'

[LOG 18:11:12.378] 7/8/2015 6:11:12 PM,KerbalAlarmClock,Loading Textures

[LOG 18:11:12.456] 7/8/2015 6:11:12 PM,KerbalAlarmClock,Loaded Textures

[LOG 18:11:12.459] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Loading Textures

[LOG 18:11:12.668] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,KSPARP Icons Loaded: 90

[LOG 18:11:12.670] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Player Icons Loaded: 0

[LOG 18:11:12.672] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture Aerozine50-RealFuels/Resources/ARPIcons/Aerozine50

[LOG 18:11:12.673] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture AK20-RealFuels/Resources/ARPIcons/AK20

[LOG 18:11:12.674] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture AK27-RealFuels/Resources/ARPIcons/AK27

[LOG 18:11:12.676] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture Aniline-RealFuels/Resources/ARPIcons/Aniline

[LOG 18:11:12.677] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture AvGas-RealFuels/Resources/ARPIcons/AvGas

[LOG 18:11:12.678] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture CaveaB-RealFuels/Resources/ARPIcons/CaveaB

[LOG 18:11:12.679] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture ClF3-RealFuels/Resources/ARPIcons/ClF3

[LOG 18:11:12.681] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture ClF5-RealFuels/Resources/ARPIcons/ClF5

[LOG 18:11:12.682] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture Diborane-RealFuels/Resources/ARPIcons/Diborane

[LOG 18:11:12.683] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture Ethane-RealFuels/Resources/ARPIcons/Ethane

[LOG 18:11:12.684] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture Ethanol-RealFuels/Resources/ARPIcons/Ethanol75

[LOG 18:11:12.686] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture Ethanol75-RealFuels/Resources/ARPIcons/Ethanol75

[LOG 18:11:12.687] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture Ethanol90-RealFuels/Resources/ARPIcons/Ethanol75

[LOG 18:11:12.688] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture Ethylene-RealFuels/Resources/ARPIcons/Ethylene

[LOG 18:11:12.689] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture FLOX30-RealFuels/Resources/ARPIcons/FLOX30

[LOG 18:11:12.691] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture FLOX70-RealFuels/Resources/ARPIcons/FLOX70

[LOG 18:11:12.692] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture FLOX88-RealFuels/Resources/ARPIcons/FLOX88

[LOG 18:11:12.693] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture Furfuryl-RealFuels/Resources/ARPIcons/Furfuryl

[LOG 18:11:12.694] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture Helium-RealFuels/Resources/ARPIcons/Helium

[LOG 18:11:12.695] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture HNIW-RealFuels/Resources/ARPIcons/HNIW

[LOG 18:11:12.697] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture HTP-RealFuels/Resources/ARPIcons/HTP

[LOG 18:11:12.698] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture HTPB-RealFuels/Resources/ARPIcons/HTPB

[LOG 18:11:12.699] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture Hydrazine-RealFuels/Resources/ARPIcons/Hydrazine

[LOG 18:11:12.700] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture Hydyne-RealFuels/Resources/ARPIcons/Hydyne

[LOG 18:11:12.702] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture IRFNA-III-RealFuels/Resources/ARPIcons/IRFNA-III

[LOG 18:11:12.703] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture IRFNA-IV-RealFuels/Resources/ARPIcons/IRFNA-IV

[LOG 18:11:12.704] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture IWFNA-RealFuels/Resources/ARPIcons/IWFNA

[LOG 18:11:12.705] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture Kerosene-RealFuels/Resources/ARPIcons/Kerosene

[LOG 18:11:12.707] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture LeadBallast-RealFuels/Resources/ARPIcons/LeadBallast

[LOG 18:11:12.708] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture LqdFluorine-RealFuels/Resources/ARPIcons/LqdFluorine

[LOG 18:11:12.709] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture LqdMethane-RealFuels/Resources/ARPIcons/LqdMethane

[LOG 18:11:12.710] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture LqdOxygen-RealFuels/Resources/ARPIcons/LqdOxygen

[LOG 18:11:12.712] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture Methane-RealFuels/Resources/ARPIcons/Methane

[LOG 18:11:12.713] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture Methanol-RealFuels/Resources/ARPIcons/Methanol

[LOG 18:11:12.714] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture MMH-RealFuels/Resources/ARPIcons/MMH

[LOG 18:11:12.715] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture MON1-RealFuels/Resources/ARPIcons/MON1

[LOG 18:11:12.717] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture MON3-RealFuels/Resources/ARPIcons/MON3

[LOG 18:11:12.718] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture MON10-RealFuels/Resources/ARPIcons/MON10

[LOG 18:11:12.719] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture MON15-RealFuels/Resources/ARPIcons/MON15

[LOG 18:11:12.720] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture MON20-RealFuels/Resources/ARPIcons/MON20

[LOG 18:11:12.722] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture NGNC-RealFuels/Resources/ARPIcons/NGNC

[LOG 18:11:12.723] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture N2F4-RealFuels/Resources/ARPIcons/N2F4

[LOG 18:11:12.724] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture Nitrogen-RealFuels/Resources/ARPIcons/Nitrogen

[LOG 18:11:12.725] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture NitrousOxide-RealFuels/Resources/ARPIcons/NitrousOxide

[LOG 18:11:12.726] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture NTO-RealFuels/Resources/ARPIcons/NTO

[LOG 18:11:12.728] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture OF2-RealFuels/Resources/ARPIcons/OF2

[LOG 18:11:12.729] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture PBAN-RealFuels/Resources/ARPIcons/PBAN

[LOG 18:11:12.730] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture Pentaborane-RealFuels/Resources/ARPIcons/Pentaborane

[LOG 18:11:12.731] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture PSPC-RealFuels/Resources/ARPIcons/PSPC

[LOG 18:11:12.733] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture Syntin-RealFuels/Resources/ARPIcons/Syntin

[LOG 18:11:12.734] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture TEATEB-RealFuels/Resources/ARPIcons/TEATEB

[LOG 18:11:12.735] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture Tonka250-RealFuels/Resources/ARPIcons/Tonka250

[LOG 18:11:12.736] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture Tonka500-RealFuels/Resources/ARPIcons/Tonka500

[LOG 18:11:12.738] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture UDMH-RealFuels/Resources/ARPIcons/UDMH

[LOG 18:11:12.739] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Unable to load texture UH25-RealFuels/Resources/ARPIcons/UH25

[LOG 18:11:12.740] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Mod Definition Icons Loaded: 0

[LOG 18:11:12.763] 7/8/2015 6:11:12 PM,KSPAlternateResourcePanel,Configuring Styles

[EXC 18:11:12.777] NullReferenceException: Object reference not set to an instance of an object

MuMech.VesselState.ComputeVesselBottomAltitude (Vessel) <0x00050>

MuMech.VesselState.get_altitudeBottom () <0x00021>

(wrapper dynamic-method) System.Runtime.CompilerServices.ExecutionScope.lambda_method (System.Runtime.CompilerServices.ExecutionScope,object) <0x0002d>

MuMech.ValueInfoItem/<ValueInfoItem>c__AnonStorey0.<>m__0 () <0x00019>

MuMech.ValueInfoItem.DrawItem () <0x00027>

MuMech.MechJebModuleCustomInfoWindow.WindowGUI (int) <0x00078>

UnityEngine.GUILayout/LayoutedWindow.DoWindow (int) <0x000bb>

UnityEngine.GUI.CallWindowDelegate (UnityEngine.GUI/WindowFunction,int,UnityEngine.GUISkin,int,single,single,UnityEngine.GUIStyle) <0x00107>

[EXC 18:11:12.782] NullReferenceException: Object reference not set to an instance of an object

MuMech.VesselState.ComputeVesselBottomAltitude (Vessel) <0x00050>

MuMech.VesselState.get_altitudeBottom () <0x00021>

(wrapper dynamic-method) System.Runtime.CompilerServices.ExecutionScope.lambda_method (System.Runtime.CompilerServices.ExecutionScope,object) <0x0002d>

MuMech.ValueInfoItem/<ValueInfoItem>c__AnonStorey0.<>m__0 () <0x00019>

MuMech.ValueInfoItem.DrawItem () <0x00027>

MuMech.MechJebModuleCustomInfoWindow.WindowGUI (int) <0x00078>

UnityEngine.GUILayout/LayoutedWindow.DoWindow (int) <0x000bb>

UnityEngine.GUI.CallWindowDelegate (UnityEngine.GUI/WindowFunction,int,UnityEngine.GUISkin,int,single,single,UnityEngine.GUIStyle) <0x00107>

[LOG 18:11:12.857] [KAE] Registering field prefabs for version 1.7.5.0 (latest)

[LOG 18:11:12.858] [VersionTaggedType] found KSPAPIExtensions.UIPartActionFloatEdit_1_7_5_0 for KSPAPIExtensions.UIPartActionFloatEdit

[LOG 18:11:12.859] [VersionTaggedType] found KSPAPIExtensions.UIPartActionFloatEdit_1_7_5_0 for KSPAPIExtensions.UIPartActionFloatEdit

[LOG 18:11:12.862] [VersionTaggedType] found KSPAPIExtensions.UIPartActionChooseOption_1_7_5_0 for KSPAPIExtensions.UIPartActionChooseOption

[LOG 18:11:12.863] [VersionTaggedType] found KSPAPIExtensions.UIPartActionChooseOption_1_7_5_0 for KSPAPIExtensions.UIPartActionChooseOption

[LOG 18:11:12.875] [scenarioDestructibles]: Loading... 0 objects registered

[LOG 18:11:12.877] [scenarioUpgradeableFacilities]: Loading... 0 objects registered

[LOG 18:11:12.881] [sCANsat] SCANsat Controller: Loading 1 known vessels

[LOG 18:11:12.882] [sCANsat] SCANsat Controller: Loading map for Kerbin

[LOG 18:11:12.899] ScienceAlert, Loading settings from C:\Program Files (x86)\Steam\steamapps\common\Kerbal Space Program\GameData\ScienceAlert/settings.cfg

[LOG 18:11:12.914] ScienceAlert, Loaded LogMask = Normal, Warning, Error from ConfigNode

[WRN 18:11:12.924] ScienceAlert, Did not find a vessel that matches 98f3a577-3bd9-4569-aec5-15d9f3328527; check destruction event code

[LOG 18:11:12.925] Loading Depletion Nodes

[LOG 18:11:12.926] DepNodeCount: 0

[LOG 18:11:12.927] Loading Biome Nodes

[LOG 18:11:12.927] BiomeNodeCount: 0

[LOG 18:11:12.928] Loading Planet Nodes

[LOG 18:11:12.929] PlanetNodeCount: 0

[LOG 18:11:12.930] 7/8/2015 6:11:12 PM,KerbalAlarmClock,BaseLoadDone. Alarms Count (Should be 0):0

[LOG 18:11:12.931] 7/8/2015 6:11:12 PM,KerbalAlarmClock,No Alarms to Load

[LOG 18:11:12.932] 7/8/2015 6:11:12 PM,KerbalAlarmClock,ScenarioLoadDone. Alarms Count:0

[LOG 18:11:14.105] ScienceAlert, Waiting on ProfileManager...

[LOG 18:11:14.106] ScienceAlert, Waiting on AppLauncher

[LOG 18:11:14.107] ScienceAlert, Initializing ScienceAlert

[LOG 18:11:14.110] ScienceAlert, ScienceAlert/sounds/bubbles ready

[LOG 18:11:14.111] ScienceAlert, ScienceAlert/sounds/click1 ready

[LOG 18:11:14.112] ScienceAlert, ScienceAlert/sounds/click2 ready

[LOG 18:11:14.113] ScienceAlert, ScienceAlert/sounds/error ready

[LOG 18:11:14.114] ScienceAlert, Creating biome filter

[LOG 18:11:14.115] ScienceAlert, Creating experiment manager

[LOG 18:11:14.119] ScienceAlert, Creating options window

[LOG 18:11:14.123] ScienceAlert, Configuring NumberFormatInfo for current locale

[LOG 18:11:14.127] ScienceAlert, Creating experiment window

[LOG 18:11:14.129] ScienceAlert, Creating debug window

[LOG 18:11:14.131] ScienceAlert, Finished creating windows

[LOG 18:11:14.135] ScienceAlert, SCANsatInterface: Interface available

[LOG 18:11:14.136] ScienceAlert, Setting scan interface type to ScanSat

[LOG 18:11:14.138] ScienceAlert, Rebuilding observer list

[LOG 18:11:14.140] ScienceAlert, Vessel 5b966d19-66eb-44a3-81ae-ca4ab1c35dcc:v3 does not have a vessel profile entry. Using default.

[LOG 18:11:14.144] ScienceAlert, Scan interface type is now ScanSat

[LOG 18:11:14.159] ScienceAlert, Rebuilding observer list

[LOG 18:11:14.161] ScienceAlert, Toolbar button ready

[LOG 18:11:14.162] ScienceAlert, ScienceAlert initialization finished.

[LOG 18:11:14.179] 7/8/2015 6:11:14 PM,KerbalAlarmClock,Adding DrawGUI to PostRender Queue

[LOG 18:11:14.180] 7/8/2015 6:11:14 PM,KerbalAlarmClock,Skipping version check

[EXC 18:11:14.341] NullReferenceException: Object reference not set to an instance of an object

MuMech.VesselState.ComputeVesselBottomAltitude (Vessel) <0x00050>

MuMech.VesselState.get_altitudeBottom () <0x00021>

(wrapper dynamic-method) System.Runtime.CompilerServices.ExecutionScope.lambda_method (System.Runtime.CompilerServices.ExecutionScope,object) <0x0002d>

MuMech.ValueInfoItem/<ValueInfoItem>c__AnonStorey0.<>m__0 () <0x00019>

MuMech.ValueInfoItem.DrawItem () <0x00027>

MuMech.MechJebModuleCustomInfoWindow.WindowGUI (int) <0x00078>

UnityEngine.GUILayout/LayoutedWindow.DoWindow (int) <0x000bb>

UnityEngine.GUI.CallWindowDelegate (UnityEngine.GUI/WindowFunction,int,UnityEngine.GUISkin,int,single,single,UnityEngine.GUIStyle) <0x00107>

[EXC 18:11:14.346] NullReferenceException: Object reference not set to an instance of an object

MuMech.VesselState.ComputeVesselBottomAltitude (Vessel) <0x00050>

MuMech.VesselState.get_altitudeBottom () <0x00021>

(wrapper dynamic-method) System.Runtime.CompilerServices.ExecutionScope.lambda_method (System.Runtime.CompilerServices.ExecutionScope,object) <0x0002d>

MuMech.ValueInfoItem/<ValueInfoItem>c__AnonStorey0.<>m__0 () <0x00019>

MuMech.ValueInfoItem.DrawItem () <0x00027>

MuMech.MechJebModuleCustomInfoWindow.WindowGUI (int) <0x00078>

UnityEngine.GUILayout/LayoutedWindow.DoWindow (int) <0x000bb>

UnityEngine.GUI.CallWindowDelegate (UnityEngine.GUI/WindowFunction,int,UnityEngine.GUISkin,int,single,single,UnityEngine.GUIStyle) <0x00107>

[LOG 18:11:14.377] DragCubeSystem: Rendering procedural drag for US.1C10.Wedge.Quadcore

[LOG 18:11:14.425] DragCubeSystem: Rendering procedural drag for US.1C10.Wedge.Quadcore

[LOG 18:11:14.465] DragCubeSystem: Rendering procedural drag for US.1C10.Wedge.Quadcore

[LOG 18:11:14.545] [sCANsat] All Height Maps Generated

[LOG 18:11:14.627] 7/8/2015 6:11:14 PM,KerbalAlarmClock,Contracts System Ready

[LOG 18:11:14.733] [PlanetariumCamera]: Focus: v3

[LOG 18:11:14.747] 7/8/2015 6:11:14 PM,KSPAlternateResourcePanel,AppLauncher: Swapping the ARP App for the Stock Resource App - after 7.2888678 secs

[LOG 18:11:15.242] Flight State Captured

[LOG 18:11:15.246] Saving Achievements Tree...

[LOG 18:11:15.247] Saving Achievements Tree...

[LOG 18:11:15.319] Game State Saved as persistent

[LOG 18:11:15.938] Tac.FuelBalanceController[FFF70ABA][600.26]: Rebuilding resource lists.

[LOG 18:11:17.990] [v3]: ground contact! - error: 0.038m

[LOG 18:11:17.994] Unpacking v3

[LOG 18:12:02.498] ScienceAlert, Projected biome map in 47.95 seconds

[LOG 18:13:25.504] activating stage 6 - current stage: 7

[LOG 18:13:25.505] [advSasModule]: Activated

[LOG 18:13:25.506] [fuelTank.long]: Activated

[LOG 18:13:25.507] [solidBooster1-1]: Activated

[LOG 18:13:25.535] ScienceAlert, ExperimentManager.OnVesselWasModified: rescanning vessel for experiment modules

[LOG 18:13:25.537] ScienceAlert, Done

[LOG 18:13:25.539] [launchClamp1]: Activated

[LOG 18:13:25.540] [solidBooster1-1]: Activated

[LOG 18:13:25.552] ScienceAlert, ExperimentManager.OnVesselWasModified: rescanning vessel for experiment modules

[LOG 18:13:25.554] ScienceAlert, Done

[LOG 18:13:25.556] [launchClamp1]: Activated

[LOG 18:13:25.557] [solidBooster1-1]: Activated

[LOG 18:13:25.568] ScienceAlert, ExperimentManager.OnVesselWasModified: rescanning vessel for experiment modules

[LOG 18:13:25.570] ScienceAlert, Done

[LOG 18:13:25.572] [launchClamp1]: Activated

[LOG 18:13:25.573] [solidBooster1-1]: Activated

[LOG 18:13:25.584] ScienceAlert, ExperimentManager.OnVesselWasModified: rescanning vessel for experiment modules

[LOG 18:13:25.586] ScienceAlert, Done

[LOG 18:13:25.589] [launchClamp1]: Activated

[LOG 18:13:25.589] [R8winglet]: Activated

[LOG 18:13:25.590] [R8winglet]: Activated

[LOG 18:13:25.591] [R8winglet]: Activated

[LOG 18:13:25.591] [R8winglet]: Activated

[LOG 18:13:25.593] [00:00:00]: Liftoff!!

[LOG 18:13:25.648] Tac.FuelBalanceController[FFF70ABA][710.16]: Rebuilding resource lists.

[LOG 18:13:41.198] Packing v3 Debris for orbit

[LOG 18:13:41.200] Packing v3 Debris for orbit

[LOG 18:13:41.201] Packing v3 Debris for orbit

[LOG 18:13:41.202] Packing v3 Debris for orbit

[LOG 18:14:04.609] v3 Debris Unloaded

[LOG 18:14:04.611] v3 Debris Unloaded

[LOG 18:14:04.612] v3 Debris Unloaded

[LOG 18:14:04.613] v3 Debris Unloaded

[LOG 18:14:55.118] activating stage 5 - current stage: 6

[LOG 18:14:55.119] [solidBooster1-1]: Activated

[LOG 18:14:55.138] ScienceAlert, ExperimentManager.OnVesselWasModified: rescanning vessel for experiment modules

[LOG 18:14:55.140] ScienceAlert, Done

[LOG 18:14:55.142] [00:00:45]: Separation of stage 6 confirmed

[LOG 18:14:55.143] [radialDecoupler]: Activated

[LOG 18:14:55.164] ScienceAlert, ExperimentManager.OnVesselWasModified: rescanning vessel for experiment modules

[LOG 18:14:55.166] ScienceAlert, Done

[LOG 18:14:55.167] [radialDecoupler]: Activated

[LOG 18:14:55.187] ScienceAlert, ExperimentManager.OnVesselWasModified: rescanning vessel for experiment modules

[LOG 18:14:55.189] ScienceAlert, Done

[LOG 18:14:55.190] [radialDecoupler]: Activated

[LOG 18:14:55.209] ScienceAlert, ExperimentManager.OnVesselWasModified: rescanning vessel for experiment modules

[LOG 18:14:55.210] ScienceAlert, Done

[LOG 18:14:55.211] [radialDecoupler]: Activated

[LOG 18:14:55.295] Tac.FuelBalanceController[FFF70ABA][755.44]: Rebuilding resource lists.

[LOG 18:14:58.308] R8winglet collided into solidBooster1-1 - relative velocity: 15.70571 - impact momentum: 23.6

[LOG 18:14:58.310] R8winglet Exploded!! - blast awesomeness: 0.1

[LOG 18:14:58.312] [R8winglet]: Deactivated

[ERR 18:14:58.313] Destroying components immediately is not permitted during physics trigger/contact, animation event callbacks or OnValidate. You must use Destroy instead.

[LOG 18:14:58.317] [00:00:46]: AV-R8 Winglet collided into BACC "Thumper" Solid Fuel Booster.

[LOG 18:14:58.318] ScienceAlert, StorageCache: Active vessel is not monitored vessel; rebuilding storage cache

[EXC 18:14:58.319] NullReferenceException: Object reference not set to an instance of an object

ScienceAlert.StorageCache+<Rebuild>d__2.MoveNext ()

[LOG 18:14:58.325] 1 explosions created.

[LOG 18:16:17.413] activating stage 4 - current stage: 5

[LOG 18:16:17.414] [fuelTank]: Activated

[LOG 18:16:17.416] [liquidEngine2]: Activated

[LOG 18:16:17.429] ScienceAlert, ExperimentManager.OnVesselWasModified: rescanning vessel for experiment modules

[LOG 18:16:17.431] ScienceAlert, Done

[LOG 18:16:17.432] [00:01:28]: Separation of stage 5 confirmed

[LOG 18:16:17.433] [stackDecoupler]: Activated

[LOG 18:16:17.434] [solarPanels5]: Activated

[LOG 18:16:17.435] [solarPanels5]: Activated

[LOG 18:16:17.436] [solarPanels5]: Activated

[LOG 18:16:17.436] [solarPanels5]: Activated

[LOG 18:16:17.437] [solarPanels5]: Activated

[LOG 18:16:17.438] [solarPanels5]: Activated

[LOG 18:16:17.438] [solarPanels5]: Activated

[LOG 18:16:17.439] [solarPanels5]: Activated

[LOG 18:16:17.440] [solarPanels5]: Activated

[LOG 18:16:17.440] [solarPanels5]: Activated

[LOG 18:16:17.441] [solarPanels5]: Activated

[LOG 18:16:17.442] [solarPanels5]: Activated

[LOG 18:16:17.443] [solarPanels5]: Activated

[LOG 18:16:17.443] [solarPanels5]: Activated

[LOG 18:16:17.444] [solarPanels5]: Activated

[LOG 18:16:17.445] [solarPanels5]: Activated

[LOG 18:16:17.486] Tac.FuelBalanceController[FFF70ABA][798.40]: Rebuilding resource lists.

[LOG 18:16:17.493] [00:01:28]: stackDecoupler was damaged by engine exhaust from liquidEngine2.

[EXC 18:16:17.502] NullReferenceException: Object reference not set to an instance of an object

ScienceAlert.StorageCache+<Rebuild>d__2.MoveNext ()

[LOG 18:16:47.323] v3 Debris Unloaded

[LOG 18:16:47.325] Packing v3 Debris for orbit

[LOG 18:16:47.390] Vessel v3 Debris was on-rails at 34.7 atm pressure and was destroyed.

[LOG 18:16:47.392] [Vessel v3 Debris]: Destroyed. No crews were aboard.

[LOG 18:16:47.643] v3 Debris Unloaded

[LOG 18:16:47.645] Packing v3 Debris for orbit

[LOG 18:16:47.710] Vessel v3 Debris was on-rails at 36.1 atm pressure and was destroyed.

[LOG 18:16:47.712] [Vessel v3 Debris]: Destroyed. No crews were aboard.

[LOG 18:16:52.946] v3 Debris Unloaded

[LOG 18:16:52.948] Packing v3 Debris for orbit

[LOG 18:16:53.004] Vessel v3 Debris was on-rails at 32.5 atm pressure and was destroyed.

[LOG 18:16:53.005] [Vessel v3 Debris]: Destroyed. No crews were aboard.

[LOG 18:16:55.068] v3 Debris Unloaded

[LOG 18:16:55.070] Packing v3 Debris for orbit

[LOG 18:16:55.135] Vessel v3 Debris was on-rails at 29.9 atm pressure and was destroyed.

[LOG 18:16:55.136] [Vessel v3 Debris]: Destroyed. No crews were aboard.

[LOG 18:18:12.514] v3 Debris Unloaded

[LOG 18:18:12.516] Packing v3 Debris for orbit

[LOG 18:18:12.579] Vessel v3 Debris was on-rails at 1.1 atm pressure and was destroyed.

[LOG 18:18:12.580] [Vessel v3 Debris]: Destroyed. No crews were aboard.

[LOG 18:18:27.299] activating stage 3 - current stage: 4

[LOG 18:18:27.301] [liquidEngine2]: Activated

[LOG 18:18:27.313] ScienceAlert, ExperimentManager.OnVesselWasModified: rescanning vessel for experiment modules

[LOG 18:18:27.315] ScienceAlert, Done

[LOG 18:18:27.316] [00:02:33]: Separation of stage 4 confirmed

[LOG 18:18:27.317] [stackDecoupler]: Activated

[LOG 18:18:27.351] Tac.FuelBalanceController[FFF70ABA][863.32]: Rebuilding resource lists.

[LOG 18:18:27.355] [00:02:33]: stackDecoupler was damaged by engine exhaust from liquidEngine2.

[EXC 18:18:27.362] NullReferenceException: Object reference not set to an instance of an object

ScienceAlert.StorageCache+<Rebuild>d__2.MoveNext ()

[LOG 18:19:35.215] Active Vessel is in atmosphere. Cannot save.

[LOG 18:19:56.551] v3 Debris Unloaded

[LOG 18:19:56.553] Packing v3 Debris for orbit

[LOG 18:20:07.615] Tac.FuelBalanceController[FFF70ABA][917.92]: Rebuilding resource lists.

[LOG 18:20:22.245] activating stage 2 - current stage: 3

[LOG 18:20:22.246] [liquidEngine3]: Activated

[LOG 18:20:22.257] ScienceAlert, ExperimentManager.OnVesselWasModified: rescanning vessel for experiment modules

[LOG 18:20:22.259] ScienceAlert, Done

[LOG 18:20:22.260] [00:03:36]: Separation of stage 3 confirmed

[LOG 18:20:22.261] [stackDecoupler]: Activated

[LOG 18:20:22.262] [advSasModule]: Activated

[LOG 18:20:22.262] [fuelTank.long]: Activated

[LOG 18:20:22.263] [R8winglet]: Activated

[LOG 18:20:22.264] [R8winglet]: Activated

[LOG 18:20:22.264] [R8winglet]: Activated

[LOG 18:20:22.265] [R8winglet]: Activated

[LOG 18:20:22.293] Tac.FuelBalanceController[FFF70ABA][926.68]: Rebuilding resource lists.

[LOG 18:20:22.296] [00:03:36]: stackDecoupler was damaged by engine exhaust from liquidEngine3.

[EXC 18:20:22.304] NullReferenceException: Object reference not set to an instance of an object

ScienceAlert.StorageCache+<Rebuild>d__2.MoveNext ()

[LOG 18:20:23.086] [00:03:37]: stackDecoupler was damaged by engine exhaust from liquidEngine3.

[LOG 18:20:26.712] Active Vessel is under acceleration (G = 1.278020910012). Cannot save.

[LOG 18:20:36.371] Packing v3 for orbit

[LOG 18:20:36.375] Packing v3 Debris for orbit

[LOG 18:20:42.880] Vessel v3 Debris was on-rails at 1.1 atm pressure and was destroyed.

[LOG 18:20:42.881] [Vessel v3 Debris]: Destroyed. No crews were aboard.

[LOG 18:20:51.771] Unpacking v3

[LOG 18:21:14.309] Active Vessel is under acceleration (G = 1.30627104049584). Cannot save.

[LOG 18:21:14.588] Reference Frame: Inertial

[LOG 18:21:34.119] Tac.FuelBalanceController[FFF70ABA][972.30]: Rebuilding resource lists.

[LOG 18:21:51.494] v3 Debris Unloaded

[WRN 18:21:58.944] [FlightPersistence]: Vessel v3 Debris not saved because it was debris cluttering up KSC.

[WRN 18:21:58.945] [FlightPersistence]: Vessel v3 Debris not saved because it was debris cluttering up KSC.

[WRN 18:21:58.946] [FlightPersistence]: Vessel v3 Debris not saved because it was debris cluttering up KSC.

[WRN 18:21:58.947] [FlightPersistence]: Vessel v3 Debris not saved because it was debris cluttering up KSC.

[LOG 18:21:58.988] Flight State Captured

[LOG 18:21:58.992] Saving Achievements Tree...

[LOG 18:21:58.993] Saving Achievements Tree...

[LOG 18:21:59.218] Game State Saved to saves/new game 7-6-15/persistent

[LOG 18:21:59.219] [AutoSave]: Game Saved

[LOG 18:22:39.144] [Orbit Targeter]: Target is null

[LOG 18:22:53.193] [Orbit Targeter]: Target is null

[LOG 18:23:03.440] ScienceAlert, Setting scan interface type to None

[LOG 18:23:03.442] ScienceAlert, Rebuilding observer list

[LOG 18:23:03.443] ScienceAlert, Scan interface type is now None

[LOG 18:23:08.845] ScienceAlert, Rebuilding observer list

[LOG 18:23:08.847] ScienceAlert, Rebuilding observer list

[LOG 18:23:23.143] Reference Frame: Rotating

[WRN 18:25:07.964] ScienceAlert, Existing profile named 'default' found! Asking user for overwrite permission.

[WRN 18:25:09.631] ScienceAlert, Overwriting existing profile

[LOG 18:25:09.640] ScienceAlert, Saving settings to C:\Program Files (x86)\Steam\steamapps\common\Kerbal Space Program\GameData\ScienceAlert/settings.cfg

[LOG 18:25:18.616] ScienceAlert, Rebuilding observer list

[LOG 18:25:18.618] ScienceAlert, Rebuilding observer list

[LOG 18:29:22.487] Vessel v3 Debris was on-rails at 1.0 atm pressure and was destroyed.

[LOG 18:29:22.488] [Vessel v3 Debris]: Destroyed. No crews were aboard.

[WRN 18:32:08.597] [FlightPersistence]: Vessel v3 Debris not saved because it was debris cluttering up KSC.

[WRN 18:32:08.598] [FlightPersistence]: Vessel v3 Debris not saved because it was debris cluttering up KSC.

[WRN 18:32:08.599] [FlightPersistence]: Vessel v3 Debris not saved because it was debris cluttering up KSC.

[WRN 18:32:08.600] [FlightPersistence]: Vessel v3 Debris not saved because it was debris cluttering up KSC.

[LOG 18:32:08.638] Flight State Captured

[LOG 18:32:08.642] Saving Achievements Tree...

[LOG 18:32:08.644] Saving Achievements Tree...

[LOG 18:32:08.853] Game State Saved to saves/new game 7-6-15/persistent

[LOG 18:32:08.854] [AutoSave]: Game Saved

[LOG 18:33:58.029] ShowGUI

[LOG 18:33:58.030] Game Paused!

[LOG 18:34:00.755] [FlightDriver]: Flight State Reverted to Prelaunch.

[LOG 18:34:00.766] Game State Saved as persistent

[LOG 18:34:00.778] 7/8/2015 6:34:00 PM,KerbalAlarmClock,AppLauncher: Destroying Button-Button Count:8

[LOG 18:34:00.782] 7/8/2015 6:34:00 PM,KSPAlternateResourcePanel,AppLauncher: Destroying Button-BEFORE NULL CHECK

[LOG 18:34:00.783] 7/8/2015 6:34:00 PM,KSPAlternateResourcePanel,AppLauncher: Destroying Button-AFTER NULL CHECK

[WRN 18:34:00.793] [HighLogic]: =========================== Scene Change : From FLIGHT to EDITOR =====================

Link to comment
Share on other sites

played again today and same errors. Here is the specific parts of the log regarding SA

[LOG 13:35:51.140] ------------------- initializing flight mode... ------------------

[LOG 13:35:51.178] Loading ship from file: C:/Program Files (x86)/Steam/steamapps/common/Kerbal Space Program/KSP_Data/../saves/new game 7-6-15/Ships/VAB/Auto-Saved Ship.craft

[LOG 13:35:52.012] v3 loaded!

[LOG 13:35:55.190] putting ship to ground: 0

[LOG 13:35:55.199] [v3]: Ready to Launch - waiting to start physics...

[LOG 13:35:55.295] [FLIGHT GLOBALS]: Switching To Vessel v3 ----------------------

[LOG 13:35:55.297] setting new dominant body: Kerbin

FlightGlobals.mainBody: Kerbin

[LOG 13:35:55.299] Reference Frame: Rotating

[LOG 13:35:55.310] stage manager resuming...

[LOG 13:35:55.312] Vessel assembly complete!

[LOG 13:35:55.313] stage manager starting...

[LOG 13:35:55.314] all systems started

[LOG 13:35:55.344] Parsing double

[LOG 13:35:55.344] Parsing rect

[LOG 13:35:55.345] Parsing bool

[LOG 13:35:55.346] Parsing bool

[LOG 13:35:55.347] Parsing bool

[LOG 13:35:55.347] Parsing bool

[LOG 13:35:55.350] [sCANsatMechJeb] Starting SCANsat - MechJeb Interface...

[LOG 13:35:55.353] ScienceAlert, Waiting on R&D...

[LOG 13:35:55.354] SmokeScreenConfig could not load config

[LOG 13:35:55.355] KerbalDebrisFix.Start(): v01.02

[LOG 13:35:55.356] MPFFixAddon.Start()

[LOG 13:35:55.357] Tac.FuelBalanceController[FFF8A5EE][124.55]: Start

[LOG 13:35:55.387] 7/9/2015 1:35:55 PM,KerbalAlarmClock,Searching for KER

[LOG 13:35:55.388] 7/9/2015 1:35:55 PM,KerbalAlarmClock-KERWrapper,Attempting to Grab KER Types...

[LOG 13:35:55.391] 7/9/2015 1:35:55 PM,KerbalAlarmClock,Searching for VOID

[LOG 13:35:55.392] 7/9/2015 1:35:55 PM,KerbalAlarmClock-VOIDWrapper,Attempting to Grab VOID Types...

[LOG 13:35:55.403] Tac.FuelBalanceController[FFF8A5EE][124.54]: Rebuilding resource lists.

[LOG 13:35:55.409] PilotRSASFix.Start(): v00.02

[LOG 13:35:55.460] PilotRSASFix.Start(): v00.02

[LOG 13:35:55.515] [sCANsat] start: live

[LOG 13:35:55.515] [sCANsat] sensorType: 384 fov: 2 min_alt: 50000 max_alt: 120000 best_alt: 100000 power: 1

[LOG 13:35:55.518] [sCANsat] Ore Resource Display Module set to Max Alt: 120000 ; Unlock: True

[LOG 13:35:55.549] [sCANsat] MetallicOre Resource Display Module set to Max Alt: 120000 ; Unlock: True

[LOG 13:35:55.550] [sCANsat] Ore Resource Display Module set to Max Alt: 120000 ; Unlock: True

[LOG 13:35:55.556] ModuleParachuteFix.Start(): v01.03

[LOG 13:35:55.558] ModuleParachuteFix.Start(): v01.03

[LOG 13:35:55.559] ModuleParachuteFix.Start(): v01.03

[LOG 13:35:55.562] MGFix.Start(): v00.02

[LOG 13:35:55.570] MGFix.Start(): v00.02

[LOG 13:35:55.573] MGFix.Start(): v00.02

[LOG 13:35:55.577] MCSFix.Start(): v01.03

[LOG 13:35:55.578] MCSFix.Start(): v01.03

[LOG 13:35:55.579] MCSFix.Start(): v01.03

[LOG 13:35:55.580] MCSFix.Start(): v01.03

[LOG 13:35:55.581] MCSFix.Start(): v01.03

[LOG 13:35:55.581] MCSFix.Start(): v01.03

[LOG 13:35:55.582] MCSFix.Start(): v01.03

[LOG 13:35:55.583] MCSFix.Start(): v01.03

[LOG 13:35:55.584] MCSFix.Start(): v01.03

[LOG 13:35:55.584] MCSFix.Start(): v01.03

[LOG 13:35:55.585] MCSFix.Start(): v01.03

[LOG 13:35:55.586] MCSFix.Start(): v01.03

[LOG 13:35:55.587] MCSFix.Start(): v01.03

[LOG 13:35:55.588] MCSFix.Start(): v01.03

[LOG 13:35:55.588] MCSFix.Start(): v01.03

[LOG 13:35:55.589] MCSFix.Start(): v01.03

[LOG 13:35:55.725] DPAI: Reference Part Changed - tick 1

[LOG 13:35:55.726] 7/9/2015 1:35:55 PM,KerbalAlarmClock,Active Vessel unreadable - resetting inqueue flag

[LOG 13:35:55.730] Create button for module Ascent Guidance

[LOG 13:35:55.731] Create button for module Attitude Adjustment

[LOG 13:35:55.733] Create button for module Custom Window Editor

[LOG 13:35:55.734] Create button for module Docking Autopilot

[LOG 13:35:55.735] Create button for module Landing Guidance

[LOG 13:35:55.736] Create button for module Maneuver Node Editor

[LOG 13:35:55.738] Create button for module Maneuver Planner

[LOG 13:35:55.739] Create button for module RCS Balancer

[LOG 13:35:55.740] Create button for module Rendezvous Autopilot

[LOG 13:35:55.742] Create button for module Rendezvous Planner

[LOG 13:35:55.743] Create button for module Rover Autopilot

[LOG 13:35:55.744] Create button for module Settings

[LOG 13:35:55.745] Create button for module Smart A.S.S.

[LOG 13:35:55.747] Create button for module SmartRcs

[LOG 13:35:55.748] [MechJeb2] No icon for SmartRcs

[LOG 13:35:55.749] Create button for module Spaceplane Guidance

[LOG 13:35:55.750] Create button for module Translatron

[LOG 13:35:55.751] Create button for module Utilities

[LOG 13:35:55.753] Create button for module Warp Helper

[LOG 13:35:55.754] Create button for module Delta-V Stats

[LOG 13:35:55.755] Create button for module Misc Info

[LOG 13:35:55.757] [MechJeb2] No icon for Misc_Info

[LOG 13:35:55.758] Create button for module Orbit Info

[LOG 13:35:55.759] Create button for module Surface Info

[LOG 13:35:55.760] Create button for module Target Info

[LOG 13:35:55.762] [MechJeb2] No icon for Target_Info

[LOG 13:35:55.763] Create button for module Vessel Info

[WRN 13:35:55.892] [TweakScale Warning] Duplicate TweakScale module on part [uS.1C10.Wedge.Quadcore] Universal Storage: QuadCore

TweakScale.Tools:LogWf(String, Object[])

TweakScale.TweakScale:CheckForDuplicateTweakScale()

TweakScale.TweakScale:Update()

[WRN 13:35:55.894] [TweakScale Warning] Duplicate TweakScale module on part [uS.1C10.Wedge.Quadcore] Universal Storage: QuadCore

TweakScale.Tools:LogWf(String, Object[])

TweakScale.TweakScale:CheckForDuplicateTweakScale()

TweakScale.TweakScale:Update()

[WRN 13:35:55.896] [TweakScale Warning] Duplicate TweakScale module on part [uS.1C10.Wedge.Quadcore] Universal Storage: QuadCore

TweakScale.Tools:LogWf(String, Object[])

TweakScale.TweakScale:CheckForDuplicateTweakScale()

TweakScale.TweakScale:Update()

[LOG 13:35:55.902] 7/9/2015 1:35:55 PM,KerbalAlarmClock,Vessel Change from 'No Vessel' to 'v3'

[LOG 13:35:55.995] 7/9/2015 1:35:55 PM,KerbalAlarmClock,Loading Textures

[LOG 13:35:56.065] 7/9/2015 1:35:56 PM,KerbalAlarmClock,Loaded Textures

[LOG 13:35:56.068] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Loading Textures

[LOG 13:35:56.129] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,KSPARP Icons Loaded: 90

[LOG 13:35:56.131] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Player Icons Loaded: 0

[LOG 13:35:56.133] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture Aerozine50-RealFuels/Resources/ARPIcons/Aerozine50

[LOG 13:35:56.135] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture AK20-RealFuels/Resources/ARPIcons/AK20

[LOG 13:35:56.136] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture AK27-RealFuels/Resources/ARPIcons/AK27

[LOG 13:35:56.137] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture Aniline-RealFuels/Resources/ARPIcons/Aniline

[LOG 13:35:56.139] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture AvGas-RealFuels/Resources/ARPIcons/AvGas

[LOG 13:35:56.140] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture CaveaB-RealFuels/Resources/ARPIcons/CaveaB

[LOG 13:35:56.141] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture ClF3-RealFuels/Resources/ARPIcons/ClF3

[LOG 13:35:56.143] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture ClF5-RealFuels/Resources/ARPIcons/ClF5

[LOG 13:35:56.144] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture Diborane-RealFuels/Resources/ARPIcons/Diborane

[LOG 13:35:56.145] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture Ethane-RealFuels/Resources/ARPIcons/Ethane

[LOG 13:35:56.147] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture Ethanol-RealFuels/Resources/ARPIcons/Ethanol75

[LOG 13:35:56.148] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture Ethanol75-RealFuels/Resources/ARPIcons/Ethanol75

[LOG 13:35:56.149] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture Ethanol90-RealFuels/Resources/ARPIcons/Ethanol75

[LOG 13:35:56.151] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture Ethylene-RealFuels/Resources/ARPIcons/Ethylene

[LOG 13:35:56.152] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture FLOX30-RealFuels/Resources/ARPIcons/FLOX30

[LOG 13:35:56.153] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture FLOX70-RealFuels/Resources/ARPIcons/FLOX70

[LOG 13:35:56.154] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture FLOX88-RealFuels/Resources/ARPIcons/FLOX88

[LOG 13:35:56.156] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture Furfuryl-RealFuels/Resources/ARPIcons/Furfuryl

[LOG 13:35:56.157] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture Helium-RealFuels/Resources/ARPIcons/Helium

[LOG 13:35:56.158] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture HNIW-RealFuels/Resources/ARPIcons/HNIW

[LOG 13:35:56.160] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture HTP-RealFuels/Resources/ARPIcons/HTP

[LOG 13:35:56.161] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture HTPB-RealFuels/Resources/ARPIcons/HTPB

[LOG 13:35:56.162] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture Hydrazine-RealFuels/Resources/ARPIcons/Hydrazine

[LOG 13:35:56.164] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture Hydyne-RealFuels/Resources/ARPIcons/Hydyne

[LOG 13:35:56.165] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture IRFNA-III-RealFuels/Resources/ARPIcons/IRFNA-III

[LOG 13:35:56.166] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture IRFNA-IV-RealFuels/Resources/ARPIcons/IRFNA-IV

[LOG 13:35:56.167] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture IWFNA-RealFuels/Resources/ARPIcons/IWFNA

[LOG 13:35:56.169] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture Kerosene-RealFuels/Resources/ARPIcons/Kerosene

[LOG 13:35:56.170] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture LeadBallast-RealFuels/Resources/ARPIcons/LeadBallast

[LOG 13:35:56.171] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture LqdFluorine-RealFuels/Resources/ARPIcons/LqdFluorine

[LOG 13:35:56.173] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture LqdMethane-RealFuels/Resources/ARPIcons/LqdMethane

[LOG 13:35:56.174] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture LqdOxygen-RealFuels/Resources/ARPIcons/LqdOxygen

[LOG 13:35:56.175] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture Methane-RealFuels/Resources/ARPIcons/Methane

[LOG 13:35:56.177] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture Methanol-RealFuels/Resources/ARPIcons/Methanol

[LOG 13:35:56.178] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture MMH-RealFuels/Resources/ARPIcons/MMH

[LOG 13:35:56.179] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture MON1-RealFuels/Resources/ARPIcons/MON1

[LOG 13:35:56.180] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture MON3-RealFuels/Resources/ARPIcons/MON3

[LOG 13:35:56.182] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture MON10-RealFuels/Resources/ARPIcons/MON10

[LOG 13:35:56.183] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture MON15-RealFuels/Resources/ARPIcons/MON15

[LOG 13:35:56.184] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture MON20-RealFuels/Resources/ARPIcons/MON20

[LOG 13:35:56.185] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture NGNC-RealFuels/Resources/ARPIcons/NGNC

[LOG 13:35:56.187] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture N2F4-RealFuels/Resources/ARPIcons/N2F4

[LOG 13:35:56.188] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture Nitrogen-RealFuels/Resources/ARPIcons/Nitrogen

[LOG 13:35:56.189] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture NitrousOxide-RealFuels/Resources/ARPIcons/NitrousOxide

[LOG 13:35:56.191] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture NTO-RealFuels/Resources/ARPIcons/NTO

[LOG 13:35:56.192] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture OF2-RealFuels/Resources/ARPIcons/OF2

[LOG 13:35:56.193] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture PBAN-RealFuels/Resources/ARPIcons/PBAN

[LOG 13:35:56.194] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture Pentaborane-RealFuels/Resources/ARPIcons/Pentaborane

[LOG 13:35:56.196] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture PSPC-RealFuels/Resources/ARPIcons/PSPC

[LOG 13:35:56.197] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture Syntin-RealFuels/Resources/ARPIcons/Syntin

[LOG 13:35:56.198] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture TEATEB-RealFuels/Resources/ARPIcons/TEATEB

[LOG 13:35:56.200] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture Tonka250-RealFuels/Resources/ARPIcons/Tonka250

[LOG 13:35:56.201] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture Tonka500-RealFuels/Resources/ARPIcons/Tonka500

[LOG 13:35:56.202] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture UDMH-RealFuels/Resources/ARPIcons/UDMH

[LOG 13:35:56.203] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Unable to load texture UH25-RealFuels/Resources/ARPIcons/UH25

[LOG 13:35:56.205] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Mod Definition Icons Loaded: 0

[LOG 13:35:56.226] 7/9/2015 1:35:56 PM,KSPAlternateResourcePanel,Configuring Styles

[EXC 13:35:56.284] NullReferenceException: Object reference not set to an instance of an object

MuMech.VesselState.ComputeVesselBottomAltitude (Vessel) <0x00050>

MuMech.VesselState.get_altitudeBottom () <0x00021>

(wrapper dynamic-method) System.Runtime.CompilerServices.ExecutionScope.lambda_method (System.Runtime.CompilerServices.ExecutionScope,object) <0x0002d>

MuMech.ValueInfoItem/<ValueInfoItem>c__AnonStorey0.<>m__0 () <0x00019>

MuMech.ValueInfoItem.DrawItem () <0x00027>

MuMech.MechJebModuleCustomInfoWindow.WindowGUI (int) <0x00078>

UnityEngine.GUILayout/LayoutedWindow.DoWindow (int) <0x000bb>

UnityEngine.GUI.CallWindowDelegate (UnityEngine.GUI/WindowFunction,int,UnityEngine.GUISkin,int,single,single,UnityEngine.GUIStyle) <0x00107>

[EXC 13:35:56.289] NullReferenceException: Object reference not set to an instance of an object

MuMech.VesselState.ComputeVesselBottomAltitude (Vessel) <0x00050>

MuMech.VesselState.get_altitudeBottom () <0x00021>

(wrapper dynamic-method) System.Runtime.CompilerServices.ExecutionScope.lambda_method (System.Runtime.CompilerServices.ExecutionScope,object) <0x0002d>

MuMech.ValueInfoItem/<ValueInfoItem>c__AnonStorey0.<>m__0 () <0x00019>

MuMech.ValueInfoItem.DrawItem () <0x00027>

MuMech.MechJebModuleCustomInfoWindow.WindowGUI (int) <0x00078>

UnityEngine.GUILayout/LayoutedWindow.DoWindow (int) <0x000bb>

UnityEngine.GUI.CallWindowDelegate (UnityEngine.GUI/WindowFunction,int,UnityEngine.GUISkin,int,single,single,UnityEngine.GUIStyle) <0x00107>

[LOG 13:35:56.367] [KAE] Registering field prefabs for version 1.7.5.0 (latest)

[LOG 13:35:56.368] [VersionTaggedType] found KSPAPIExtensions.UIPartActionFloatEdit_1_7_5_0 for KSPAPIExtensions.UIPartActionFloatEdit

[LOG 13:35:56.370] [VersionTaggedType] found KSPAPIExtensions.UIPartActionFloatEdit_1_7_5_0 for KSPAPIExtensions.UIPartActionFloatEdit

[LOG 13:35:56.372] [VersionTaggedType] found KSPAPIExtensions.UIPartActionChooseOption_1_7_5_0 for KSPAPIExtensions.UIPartActionChooseOption

[LOG 13:35:56.374] [VersionTaggedType] found KSPAPIExtensions.UIPartActionChooseOption_1_7_5_0 for KSPAPIExtensions.UIPartActionChooseOption

[LOG 13:35:56.386] [scenarioDestructibles]: Loading... 0 objects registered

[LOG 13:35:56.388] [scenarioUpgradeableFacilities]: Loading... 0 objects registered

[LOG 13:35:56.394] [sCANsat] SCANsat Controller: Loading 1 known vessels

[LOG 13:35:56.394] [sCANsat] SCANsat Controller: Loading map for Kerbin

[LOG 13:35:56.412] ScienceAlert, Loading settings from C:\Program Files (x86)\Steam\steamapps\common\Kerbal Space Program\GameData\ScienceAlert/settings.cfg

[LOG 13:35:56.427] ScienceAlert, Loaded LogMask = Normal, Warning, Error from ConfigNode

[WRN 13:35:56.437] ScienceAlert, Did not find a vessel that matches 98f3a577-3bd9-4569-aec5-15d9f3328527; check destruction event code

[LOG 13:35:56.439] Loading Depletion Nodes

[LOG 13:35:56.440] DepNodeCount: 0

[LOG 13:35:56.441] Loading Biome Nodes

[LOG 13:35:56.441] BiomeNodeCount: 0

[LOG 13:35:56.442] Loading Planet Nodes

[LOG 13:35:56.443] PlanetNodeCount: 0

[LOG 13:35:56.444] 7/9/2015 1:35:56 PM,KerbalAlarmClock,BaseLoadDone. Alarms Count (Should be 0):0

[LOG 13:35:56.445] 7/9/2015 1:35:56 PM,KerbalAlarmClock,No Alarms to Load

[LOG 13:35:56.446] 7/9/2015 1:35:56 PM,KerbalAlarmClock,ScenarioLoadDone. Alarms Count:0

[LOG 13:35:57.645] ScienceAlert, Waiting on ProfileManager...

[LOG 13:35:57.646] ScienceAlert, Waiting on AppLauncher

[LOG 13:35:57.647] ScienceAlert, Initializing ScienceAlert

[LOG 13:35:57.650] ScienceAlert, ScienceAlert/sounds/bubbles ready

[LOG 13:35:57.651] ScienceAlert, ScienceAlert/sounds/click1 ready

[LOG 13:35:57.652] ScienceAlert, ScienceAlert/sounds/click2 ready

[LOG 13:35:57.653] ScienceAlert, ScienceAlert/sounds/error ready

[LOG 13:35:57.654] ScienceAlert, Creating biome filter

[LOG 13:35:57.655] ScienceAlert, Creating experiment manager

[LOG 13:35:57.659] ScienceAlert, Creating options window

[LOG 13:35:57.663] ScienceAlert, Configuring NumberFormatInfo for current locale

[LOG 13:35:57.667] ScienceAlert, Creating experiment window

[LOG 13:35:57.669] ScienceAlert, Creating debug window

[LOG 13:35:57.671] ScienceAlert, Finished creating windows

[LOG 13:35:57.672] ScienceAlert, Setting scan interface type to None

[LOG 13:35:57.674] ScienceAlert, Rebuilding observer list

[LOG 13:35:57.676] ScienceAlert, Vessel cb9f7925-3621-4552-affe-df560f5fda73:v3 does not have a vessel profile entry. Using default.

[LOG 13:35:57.680] ScienceAlert, Scan interface type is now None

[LOG 13:35:57.695] ScienceAlert, Rebuilding observer list

[LOG 13:35:57.697] ScienceAlert, Toolbar button ready

[LOG 13:35:57.698] ScienceAlert, ScienceAlert initialization finished.

[LOG 13:35:57.715] 7/9/2015 1:35:57 PM,KerbalAlarmClock,Adding DrawGUI to PostRender Queue

[LOG 13:35:57.716] 7/9/2015 1:35:57 PM,KerbalAlarmClock,Starting Version Check-stored date is not today

[EXC 13:35:57.857] NullReferenceException: Object reference not set to an instance of an object

MuMech.VesselState.ComputeVesselBottomAltitude (Vessel) <0x00050>

MuMech.VesselState.get_altitudeBottom () <0x00021>

(wrapper dynamic-method) System.Runtime.CompilerServices.ExecutionScope.lambda_method (System.Runtime.CompilerServices.ExecutionScope,object) <0x0002d>

MuMech.ValueInfoItem/<ValueInfoItem>c__AnonStorey0.<>m__0 () <0x00019>

MuMech.ValueInfoItem.DrawItem () <0x00027>

MuMech.MechJebModuleCustomInfoWindow.WindowGUI (int) <0x00078>

UnityEngine.GUILayout/LayoutedWindow.DoWindow (int) <0x000bb>

UnityEngine.GUI.CallWindowDelegate (UnityEngine.GUI/WindowFunction,int,UnityEngine.GUISkin,int,single,single,UnityEngine.GUIStyle) <0x00107>

[EXC 13:35:57.862] NullReferenceException: Object reference not set to an instance of an object

MuMech.VesselState.ComputeVesselBottomAltitude (Vessel) <0x00050>

MuMech.VesselState.get_altitudeBottom () <0x00021>

(wrapper dynamic-method) System.Runtime.CompilerServices.ExecutionScope.lambda_method (System.Runtime.CompilerServices.ExecutionScope,object) <0x0002d>

MuMech.ValueInfoItem/<ValueInfoItem>c__AnonStorey0.<>m__0 () <0x00019>

MuMech.ValueInfoItem.DrawItem () <0x00027>

MuMech.MechJebModuleCustomInfoWindow.WindowGUI (int) <0x00078>

UnityEngine.GUILayout/LayoutedWindow.DoWindow (int) <0x000bb>

UnityEngine.GUI.CallWindowDelegate (UnityEngine.GUI/WindowFunction,int,UnityEngine.GUISkin,int,single,single,UnityEngine.GUIStyle) <0x00107>

[LOG 13:35:57.894] DragCubeSystem: Rendering procedural drag for US.1C10.Wedge.Quadcore

[LOG 13:35:57.943] DragCubeSystem: Rendering procedural drag for US.1C10.Wedge.Quadcore

[LOG 13:35:57.983] DragCubeSystem: Rendering procedural drag for US.1C10.Wedge.Quadcore

[LOG 13:35:58.182] 7/9/2015 1:35:58 PM,KerbalAlarmClock,Contracts System Ready

[LOG 13:35:58.290] [PlanetariumCamera]: Focus: v3

[LOG 13:35:58.303] 7/9/2015 1:35:58 PM,KSPAlternateResourcePanel,AppLauncher: Swapping the ARP App for the Stock Resource App - after 7.2059351 secs

[LOG 13:35:58.806] Flight State Captured

[LOG 13:35:58.810] Saving Achievements Tree...

[LOG 13:35:58.811] Saving Achievements Tree...

[LOG 13:35:58.884] Game State Saved as persistent

[LOG 13:35:59.497] Tac.FuelBalanceController[FFF8A5EE][125.56]: Rebuilding resource lists.

[LOG 13:36:01.567] [v3]: ground contact! - error: 0.012m

[LOG 13:36:01.571] Unpacking v3

[LOG 13:36:05.130] activating stage 6 - current stage: 7

[LOG 13:36:05.131] [advSasModule]: Activated

[LOG 13:36:05.132] [fuelTank.long]: Activated

[LOG 13:36:05.133] [solidBooster1-1]: Activated

[LOG 13:36:05.162] ScienceAlert, ExperimentManager.OnVesselWasModified: rescanning vessel for experiment modules

[LOG 13:36:05.163] ScienceAlert, Done

[LOG 13:36:05.165] [launchClamp1]: Activated

[LOG 13:36:05.167] [solidBooster1-1]: Activated

[LOG 13:36:05.179] ScienceAlert, ExperimentManager.OnVesselWasModified: rescanning vessel for experiment modules

[LOG 13:36:05.181] ScienceAlert, Done

[LOG 13:36:05.182] [launchClamp1]: Activated

[LOG 13:36:05.184] [solidBooster1-1]: Activated

[LOG 13:36:05.196] ScienceAlert, ExperimentManager.OnVesselWasModified: rescanning vessel for experiment modules

[LOG 13:36:05.197] ScienceAlert, Done

[LOG 13:36:05.199] [launchClamp1]: Activated

[LOG 13:36:05.201] [solidBooster1-1]: Activated

[LOG 13:36:05.212] ScienceAlert, ExperimentManager.OnVesselWasModified: rescanning vessel for experiment modules

[LOG 13:36:05.214] ScienceAlert, Done

[LOG 13:36:05.216] [launchClamp1]: Activated

[LOG 13:36:05.216] [R8winglet]: Activated

[LOG 13:36:05.217] [R8winglet]: Activated

[LOG 13:36:05.218] [R8winglet]: Activated

[LOG 13:36:05.218] [R8winglet]: Activated

[LOG 13:36:05.220] [00:00:00]: Liftoff!!

[LOG 13:36:05.336] Tac.FuelBalanceController[FFF8A5EE][130.38]: Rebuilding resource lists.

[LOG 13:36:05.387] ScienceAlert, Experiment mobileMaterialsLab@KerbinSrfLandedShores just became available! Total potential science onboard currently: 0 (Cap is 28.8, threshold is NotMaxed, current sci is 0, expected next report value: 28.8)

[LOG 13:36:05.432] ScienceAlert, Experiment mysteryGoo@KerbinSrfLandedShores just became available! Total potential science onboard currently: 0 (Cap is 21.6, threshold is NotMaxed, current sci is 0, expected next report value: 21.6)

[LOG 13:36:05.661] ScienceAlert, Experiment telemetryReport@KerbinSrfLandedShores just became available! Total potential science onboard currently: 0 (Cap is 1.2, threshold is NotMaxed, current sci is 0, expected next report value: 1.2)

[LOG 13:36:05.712] ScienceAlert, Experiment temperatureScan@KerbinSrfLandedShores just became available! Total potential science onboard currently: 0 (Cap is 3.6, threshold is NotMaxed, current sci is 0, expected next report value: 3.6)

[LOG 13:36:20.037] Packing v3 Debris for orbit

[LOG 13:36:20.040] Packing v3 Debris for orbit

[LOG 13:36:20.040] Packing v3 Debris for orbit

[LOG 13:36:20.042] Packing v3 Debris for orbit

[LOG 13:36:30.068] [sCANsat] Height Map Of [Kerbin] Completed...

[LOG 13:36:30.134] [sCANsat] All Height Maps Generated

[LOG 13:36:44.551] v3 Debris Unloaded

[LOG 13:36:44.553] v3 Debris Unloaded

[LOG 13:36:44.554] v3 Debris Unloaded

[LOG 13:36:44.555] v3 Debris Unloaded

[LOG 13:37:05.577] ScienceAlert, Projected biome map in 67.47 seconds

[LOG 13:37:23.254] activating stage 5 - current stage: 6

[LOG 13:37:23.255] [solidBooster1-1]: Activated

[LOG 13:37:23.274] ScienceAlert, ExperimentManager.OnVesselWasModified: rescanning vessel for experiment modules

[LOG 13:37:23.275] ScienceAlert, Done

[LOG 13:37:23.278] [00:00:43]: Separation of stage 6 confirmed

[LOG 13:37:23.278] [radialDecoupler]: Activated

[LOG 13:37:23.297] ScienceAlert, ExperimentManager.OnVesselWasModified: rescanning vessel for experiment modules

[LOG 13:37:23.299] ScienceAlert, Done

[LOG 13:37:23.301] [radialDecoupler]: Activated

[LOG 13:37:23.319] ScienceAlert, ExperimentManager.OnVesselWasModified: rescanning vessel for experiment modules

[LOG 13:37:23.321] ScienceAlert, Done

[LOG 13:37:23.322] [radialDecoupler]: Activated

[LOG 13:37:23.339] ScienceAlert, ExperimentManager.OnVesselWasModified: rescanning vessel for experiment modules

[LOG 13:37:23.341] ScienceAlert, Done

[LOG 13:37:23.342] [radialDecoupler]: Activated

[LOG 13:37:23.415] Tac.FuelBalanceController[FFF8A5EE][173.46]: Rebuilding resource lists.

[LOG 13:37:25.877] noseCone collided into solidBooster1-1 - relative velocity: 13.41633 - impact momentum: 20.1

[LOG 13:37:25.879] noseCone Exploded!! - blast awesomeness: 0.5

[LOG 13:37:25.881] [noseCone]: Deactivated

[ERR 13:37:25.882] Destroying components immediately is not permitted during physics trigger/contact, animation event callbacks or OnValidate. You must use Destroy instead.

[LOG 13:37:25.885] [00:00:44]: Aerodynamic Nose Cone collided into BACC "Thumper" Solid Fuel Booster.

[LOG 13:37:25.886] solidBooster1-1 collided into solidBooster1-1 - relative velocity: 11.23745 - impact momentum: 16.9

[LOG 13:37:25.887] [Explosion] Combined.

[LOG 13:37:25.888] solidBooster1-1 Exploded!! - blast awesomeness: 0.5

[LOG 13:37:25.889] [strutConnector]: Deactivated

[LOG 13:37:25.892] [strutConnector]: Deactivated

[LOG 13:37:25.894] [strutConnector]: Deactivated

[LOG 13:37:25.901] [solidBooster1-1]: Deactivated

[LOG 13:37:25.904] [00:00:44]: BACC "Thumper" Solid Fuel Booster collided into BACC "Thumper" Solid Fuel Booster.

[LOG 13:37:25.906] ScienceAlert, StorageCache: Active vessel is not monitored vessel; rebuilding storage cache

[EXC 13:37:25.907] NullReferenceException: Object reference not set to an instance of an object

ScienceAlert.StorageCache+<Rebuild>d__2.MoveNext ()

[LOG 13:37:25.922] 1 explosions created.

[LOG 13:37:26.216] R8winglet collided into solidBooster1-1 - relative velocity: 17.10279 - impact momentum: 25.7

[LOG 13:37:26.217] R8winglet Exploded!! - blast awesomeness: 0.1

[LOG 13:37:26.218] [R8winglet]: Deactivated

[LOG 13:37:26.221] [00:00:44]: AV-R8 Winglet collided into BACC "Thumper" Solid Fuel Booster.

[LOG 13:37:26.222] ScienceAlert, StorageCache: Active vessel is not monitored vessel; rebuilding storage cache

[EXC 13:37:26.223] NullReferenceException: Object reference not set to an instance of an object

ScienceAlert.StorageCache+<Rebuild>d__2.MoveNext ()

[LOG 13:37:26.240] 1 explosions created.

[LOG 13:37:26.459] noseCone collided into solidBooster1-1 - relative velocity: 72.99208 - impact momentum: 109.5

[LOG 13:37:26.460] noseCone Exploded!! - blast awesomeness: 0.5

[LOG 13:37:26.461] [noseCone]: Deactivated

[LOG 13:37:26.463] [00:00:44]: Aerodynamic Nose Cone collided into BACC "Thumper" Solid Fuel Booster.

[LOG 13:37:26.464] ScienceAlert, StorageCache: Active vessel is not monitored vessel; rebuilding storage cache

[EXC 13:37:26.465] NullReferenceException: Object reference not set to an instance of an object

ScienceAlert.StorageCache+<Rebuild>d__2.MoveNext ()

[LOG 13:37:26.506] 1 explosions created.

[LOG 13:38:28.323] activating stage 4 - current stage: 5

[LOG 13:38:28.324] [fuelTank]: Activated

[LOG 13:38:28.326] [liquidEngine2]: Activated

[LOG 13:38:28.339] ScienceAlert, ExperimentManager.OnVesselWasModified: rescanning vessel for experiment modules

[LOG 13:38:28.341] ScienceAlert, Done

[LOG 13:38:28.342] [00:01:25]: Separation of stage 5 confirmed

[LOG 13:38:28.343] [stackDecoupler]: Activated

[LOG 13:38:28.344] [solarPanels5]: Activated

[LOG 13:38:28.345] [solarPanels5]: Activated

[LOG 13:38:28.346] [solarPanels5]: Activated

[LOG 13:38:28.347] [solarPanels5]: Activated

[LOG 13:38:28.347] [solarPanels5]: Activated

[LOG 13:38:28.348] [solarPanels5]: Activated

[LOG 13:38:28.349] [solarPanels5]: Activated

[LOG 13:38:28.350] [solarPanels5]: Activated

[LOG 13:38:28.350] [solarPanels5]: Activated

[LOG 13:38:28.351] [solarPanels5]: Activated

[LOG 13:38:28.352] [solarPanels5]: Activated

[LOG 13:38:28.352] [solarPanels5]: Activated

[LOG 13:38:28.353] [solarPanels5]: Activated

[LOG 13:38:28.354] [solarPanels5]: Activated

[LOG 13:38:28.355] [solarPanels5]: Activated

[LOG 13:38:28.355] [solarPanels5]: Activated

[LOG 13:38:28.396] Tac.FuelBalanceController[FFF8A5EE][216.18]: Rebuilding resource lists.

[LOG 13:38:28.403] [00:01:25]: stackDecoupler was damaged by engine exhaust from liquidEngine2.

[EXC 13:38:28.412] NullReferenceException: Object reference not set to an instance of an object

ScienceAlert.StorageCache+<Rebuild>d__2.MoveNext ()

[LOG 13:38:28.759] [00:01:26]: stackDecoupler was damaged by engine exhaust from liquidEngine2.

[LOG 13:38:54.394] v3 Debris Unloaded

[LOG 13:38:54.395] Packing v3 Debris for orbit

[LOG 13:38:54.452] Vessel v3 Debris was on-rails at 35.4 atm pressure and was destroyed.

[LOG 13:38:54.453] [Vessel v3 Debris]: Destroyed. No crews were aboard.

[LOG 13:38:56.881] v3 Debris Unloaded

[LOG 13:38:56.882] Packing v3 Debris for orbit

[LOG 13:38:56.933] Vessel v3 Debris was on-rails at 30.3 atm pressure and was destroyed.

[LOG 13:38:56.934] [Vessel v3 Debris]: Destroyed. No crews were aboard.

[LOG 13:39:01.095] v3 Debris Unloaded

[LOG 13:39:01.096] Packing v3 Debris for orbit

[LOG 13:39:01.153] Vessel v3 Debris was on-rails at 35.7 atm pressure and was destroyed.

[LOG 13:39:01.154] [Vessel v3 Debris]: Destroyed. No crews were aboard.

[LOG 13:39:02.851] v3 Debris Unloaded

[LOG 13:39:02.853] Packing v3 Debris for orbit

[LOG 13:39:02.910] Vessel v3 Debris was on-rails at 31.4 atm pressure and was destroyed.

[LOG 13:39:02.911] [Vessel v3 Debris]: Destroyed. No crews were aboard.

[LOG 13:40:07.569] v3 Debris Unloaded

[LOG 13:40:07.571] Packing v3 Debris for orbit

[LOG 13:40:07.621] Vessel v3 Debris was on-rails at 1.7 atm pressure and was destroyed.

[LOG 13:40:07.622] [Vessel v3 Debris]: Destroyed. No crews were aboard.

[LOG 13:40:19.204] activating stage 3 - current stage: 4

[LOG 13:40:19.205] [liquidEngine2]: Activated

[LOG 13:40:19.218] ScienceAlert, ExperimentManager.OnVesselWasModified: rescanning vessel for experiment modules

[LOG 13:40:19.219] ScienceAlert, Done

[LOG 13:40:19.221] [00:02:29]: Separation of stage 4 confirmed

[LOG 13:40:19.221] [stackDecoupler]: Activated

[LOG 13:40:19.260] Tac.FuelBalanceController[FFF8A5EE][279.94]: Rebuilding resource lists.

[LOG 13:40:19.264] [00:02:29]: stackDecoupler was damaged by engine exhaust from liquidEngine2.

[EXC 13:40:19.272] NullReferenceException: Object reference not set to an instance of an object

ScienceAlert.StorageCache+<Rebuild>d__2.MoveNext ()

[LOG 13:41:34.777] v3 Debris Unloaded

[LOG 13:41:34.779] Packing v3 Debris for orbit

[LOG 13:42:07.170] activating stage 2 - current stage: 3

[LOG 13:42:07.171] [liquidEngine3]: Activated

[LOG 13:42:07.183] ScienceAlert, ExperimentManager.OnVesselWasModified: rescanning vessel for experiment modules

[LOG 13:42:07.184] ScienceAlert, Done

[LOG 13:42:07.185] [00:03:36]: Separation of stage 3 confirmed

[LOG 13:42:07.186] [stackDecoupler]: Activated

[LOG 13:42:07.187] [advSasModule]: Activated

[LOG 13:42:07.188] [fuelTank.long]: Activated

[LOG 13:42:07.188] [R8winglet]: Activated

[LOG 13:42:07.189] [R8winglet]: Activated

[LOG 13:42:07.190] [R8winglet]: Activated

[LOG 13:42:07.191] [R8winglet]: Activated

[LOG 13:42:07.218] Tac.FuelBalanceController[FFF8A5EE][346.98]: Rebuilding resource lists.

[EXC 13:42:07.227] NullReferenceException: Object reference not set to an instance of an object

ScienceAlert.StorageCache+<Rebuild>d__2.MoveNext ()

[LOG 13:42:32.355] Tac.FuelBalanceController[FFF8A5EE][362.12]: Rebuilding resource lists.

[LOG 13:42:32.411] Packing v3 for orbit

[LOG 13:42:32.415] Packing v3 Debris for orbit

[LOG 13:42:37.506] Vessel v3 Debris was on-rails at 1.0 atm pressure and was destroyed.

[LOG 13:42:37.507] [Vessel v3 Debris]: Destroyed. No crews were aboard.

[LOG 13:42:38.950] Reference Frame: Inertial

[LOG 13:42:51.953] Unpacking v3

[LOG 13:43:22.397] Tac.FuelBalanceController[FFF8A5EE][394.52]: Rebuilding resource lists.

[LOG 13:43:52.539] [PlanetariumCamera]: Focus: v3

[LOG 13:43:58.497] [Orbit Targeter]: Target is Mun

[WRN 13:44:00.099] [FlightPersistence]: Vessel v3 Debris not saved because it was debris cluttering up KSC.

[WRN 13:44:00.100] [FlightPersistence]: Vessel v3 Debris not saved because it was debris cluttering up KSC.

[WRN 13:44:00.101] [FlightPersistence]: Vessel v3 Debris not saved because it was debris cluttering up KSC.

[WRN 13:44:00.102] [FlightPersistence]: Vessel v3 Debris not saved because it was debris cluttering up KSC.

[LOG 13:44:00.143] Flight State Captured

[LOG 13:44:00.147] Saving Achievements Tree...

[LOG 13:44:00.148] Saving Achievements Tree...

[LOG 13:44:00.349] Game State Saved to saves/new game 7-6-15/persistent

[LOG 13:44:00.350] [AutoSave]: Game Saved

[LOG 13:44:03.805] Maneuver Mode toggle

[LOG 13:44:03.806] Maneuver Mode enabled

[LOG 13:44:41.911] v3 Debris Unloaded

[LOG 13:44:55.184] Packing v3 for orbit

[LOG 13:45:02.014] Vessel v3 Debris was on-rails at 1.0 atm pressure and was destroyed.

[LOG 13:45:02.015] [Vessel v3 Debris]: Destroyed. No crews were aboard.

[LOG 13:45:23.749] Unpacking v3

[LOG 13:45:46.682] [Progress Node Reached]: RecordsSpeed

[LOG 13:45:55.507] [Progress Node Complete]: RecordsSpeed

[LOG 13:46:39.962] Packing v3 for orbit

[LOG 13:46:42.550] Unpacking v3

[LOG 13:46:43.060] Packing v3 for orbit

[LOG 13:46:44.922] Unpacking v3

[LOG 13:46:45.905] Camera Mode: AUTO

[LOG 13:46:51.206] Score for transmitter: 1.225 - Data Rate: 5.714 - Data Cost: 6.000

[LOG 13:46:51.207] Score for transmitter: 1.225 - Data Rate: 5.714 - Data Cost: 6.000

[LOG 13:46:51.985] [Research & Development]: +6 data on Orbital Telescope Observations from space just above Kerbin's Shores. +24.0 Science Added. Subject value is 0.00

[LOG 13:47:01.371] Packing v3 for orbit

[LOG 13:47:04.098] Unpacking v3

[LOG 13:47:12.398] Score for transmitter: 1.225 - Data Rate: 5.714 - Data Cost: 6.000

[LOG 13:47:12.399] Score for transmitter: 1.225 - Data Rate: 5.714 - Data Cost: 6.000

[LOG 13:47:13.210] [Research & Development]: +6 data on Orbital Telescope Observations while in space high over Kerbin. +36.0 Science Added. Subject value is 0.00

[LOG 13:47:48.301] [Experiments]: Setting FX Modules to 1...

[LOG 13:47:48.302] [Experiments]: FX Modules set: 1

[LOG 13:47:49.258] [Experiments]: Setting FX Modules to 0...

[LOG 13:47:49.258] [Experiments]: FX Modules set: 0

[LOG 13:48:09.584] Score for transmitter: 1.225 - Data Rate: 5.714 - Data Cost: 6.000

[LOG 13:48:09.585] Score for transmitter: 1.225 - Data Rate: 5.714 - Data Cost: 6.000

[LOG 13:48:10.363] [Research & Development]: +5 data on Magnetometer Scan while in space high over Kerbin. +30.0 Science Added. Subject value is 0.00

[LOG 13:48:37.501] [PlanetariumCamera]: Focus: v3

[LOG 13:48:37.508] Maneuver Mode enabled

[LOG 13:48:38.216] Packing v3 for orbit

[WRN 13:49:07.893] [FlightPersistence]: Vessel v3 Debris not saved because it was debris cluttering up KSC.

[WRN 13:49:07.894] [FlightPersistence]: Vessel v3 Debris not saved because it was debris cluttering up KSC.

[WRN 13:49:07.895] [FlightPersistence]: Vessel v3 Debris not saved because it was debris cluttering up KSC.

[WRN 13:49:07.896] [FlightPersistence]: Vessel v3 Debris not saved because it was debris cluttering up KSC.

[LOG 13:49:07.933] Flight State Captured

[LOG 13:49:07.937] Saving Achievements Tree...

[LOG 13:49:07.938] Saving Achievements Tree...

[LOG 13:49:08.144] Game State Saved to saves/new game 7-6-15/persistent

[LOG 13:49:08.145] [AutoSave]: Game Saved

[LOG 13:49:12.068] [OrbitDriver]: On-Rails SOI Transition from Mun to Mun.

Transition UT Range: 119462.594 - 120139.569.

Transition UT: 120139.569. Iterations: 17.

[LOG 13:49:12.072] [Progress Node Reached]: Flyby

[LOG 13:49:12.073] [Progress Node Reached]: Mun

[LOG 13:49:12.074] [Progress Node Complete]: Flyby

[LOG 13:49:12.077] Awarding 319266.049146652 funds to player for contract completion

[LOG 13:49:12.078] Awarding 32 science to player for contract completion

[LOG 13:49:12.079] Awarding 17.44 reputation to player for contract completion

[LOG 13:49:12.080] Added 17.28664 (17.44) reputation: 'ContractReward'.

[LOG 13:49:12.092] Contract (Fly by the Mun.): Talk about close encounters! Any closer and there'd be paperwork.

<b><#8BED8B>Completion Rewards:</></>

<#B4D455>£319,266 </>

<#6DCFF6>©32 </>

<#E0D503>¡17 </>

[LOG 13:49:12.094] [Progress Node Reached]: Escape

[LOG 13:49:12.095] [Progress Node Complete]: Escape

[LOG 13:49:12.097] setting new dominant body: the Mun

FlightGlobals.mainBody: Kerbin

[LOG 13:49:12.104] [Orbit Targeter]: Target is null

[LOG 13:49:12.561] Tac.FuelBalanceController[FFF8A5EE][728.48]: Rebuilding resource lists.

[LOG 13:49:13.706] Unpacking v3

[LOG 13:49:15.409] Camera Mode: AUTO

[LOG 13:49:21.070] Score for transmitter: 1.225 - Data Rate: 5.714 - Data Cost: 6.000

[LOG 13:49:21.071] Score for transmitter: 1.225 - Data Rate: 5.714 - Data Cost: 6.000

[LOG 13:49:21.841] [Research & Development]: +6 data on Orbital Telescope Observations while in space high over the Mun. +48.0 Science Added. Subject value is 0.00

[LOG 13:49:21.843] [Progress Node Reached]: Science

[LOG 13:49:21.844] [Progress Node Complete]: Science

[LOG 13:49:26.614] ScienceAlert, Projected biome map in 14.50 seconds

[LOG 13:49:47.578] Score for transmitter: 1.225 - Data Rate: 5.714 - Data Cost: 6.000

[LOG 13:49:47.579] Score for transmitter: 1.225 - Data Rate: 5.714 - Data Cost: 6.000

[LOG 13:49:48.361] [Research & Development]: +5 data on Magnetometer Scan while in space high over the Mun. +40.0 Science Added. Subject value is 0.00

[LOG 13:49:59.380] [Experiments]: Setting FX Modules to 1...

[LOG 13:49:59.381] [Experiments]: FX Modules set: 1

[LOG 13:50:00.559] Sending data to vessel comms. 2 devices to choose from. Will try to pick the best one

[LOG 13:50:00.560] Score for transmitter: 1.225 - Data Rate: 5.714 - Data Cost: 6.000

[LOG 13:50:00.561] Score for transmitter: 1.225 - Data Rate: 5.714 - Data Cost: 6.000

[LOG 13:50:00.562] [Experiments]: Setting FX Modules to 0...

[LOG 13:50:00.563] [Experiments]: FX Modules set: 0

[LOG 13:50:00.593] [Research & Development]: +1 data on Telemetry Report while in space high over the Mun. +8.0 Science Added. Subject value is 0.00

[LOG 13:50:23.458] [PlanetariumCamera]: Focus: v3

[LOG 13:50:23.465] Maneuver Mode enabled

[LOG 13:50:23.896] Packing v3 for orbit

[LOG 13:50:24.887] 7/9/2015 1:50:24 PM,KSPAlternateResourcePanel,DrawWindow: GUILayout not ready yet

[LOG 13:50:36.551] [OrbitDriver]: On-Rails SOI Transition from Kerbin to Kerbin.

Transition UT Range: 126978.342 - 127028.342.

Transition UT: 127026.889. Iterations: 13.

[LOG 13:50:36.552] [Progress Node Reached]: Escape

[LOG 13:50:36.553] [Progress Node Complete]: Escape

[LOG 13:50:36.554] [Progress Node Reached]: Flyby

[LOG 13:50:36.555] [Progress Node Complete]: Flyby

[LOG 13:50:36.557] setting new dominant body: Kerbin

FlightGlobals.mainBody: the Mun

[LOG 13:50:36.585] Tac.FuelBalanceController[FFF8A5EE][810.82]: Rebuilding resource lists.

[LOG 13:50:45.673] Unpacking v3

[LOG 13:50:47.827] Camera Mode: AUTO

[LOG 13:51:02.647] ScienceAlert, Projected biome map in 26.08 seconds

[LOG 13:51:12.828] Packing v3 for orbit

[LOG 13:51:28.536] Unpacking v3

[LOG 13:51:32.783] [Orbit Targeter]: Target is null

[LOG 13:51:33.873] Packing v3 for orbit

[LOG 13:51:38.176] Unpacking v3

[LOG 13:51:48.699] activating stage 1 - current stage: 2

[LOG 13:51:48.700] [HeatShield1]: Activated

[LOG 13:51:48.711] ScienceAlert, ExperimentManager.OnVesselWasModified: rescanning vessel for experiment modules

[LOG 13:51:48.713] ScienceAlert, Done

[LOG 13:51:48.714] [17:59:34]: Separation of stage 2 confirmed

[LOG 13:51:48.715] [stackDecoupler]: Activated

[LOG 13:51:48.935] Tac.FuelBalanceController[FFF8A5EE][880.32]: Rebuilding resource lists.

[EXC 13:51:48.942] NullReferenceException: Object reference not set to an instance of an object

ScienceAlert.StorageCache+<Rebuild>d__2.MoveNext ()

[LOG 13:52:03.769] Packing v3 for orbit

[LOG 13:52:03.772] Packing v3 Debris for orbit

[LOG 13:52:05.306] Reference Frame: Rotating

[LOG 13:52:06.357] Tac.FuelBalanceController[FFF8A5EE][892.08]: Rebuilding resource lists.

[LOG 13:52:06.410] Unpacking v3

[LOG 13:52:06.414] Unpacking v3 Debris

[EXC 13:52:20.720] ArgumentException: GUILayout: Mismatched LayoutGroup.Repaint

UnityEngine.GUILayoutUtility.BeginLayoutGroup (UnityEngine.GUIStyle style, UnityEngine.GUILayoutOption[] options, System.Type LayoutType)

UnityEngine.GUILayout.BeginHorizontal (UnityEngine.GUIContent content, UnityEngine.GUIStyle style, UnityEngine.GUILayoutOption[] options)

UnityEngine.GUILayout.BeginHorizontal (UnityEngine.GUILayoutOption[] options)

KSPAlternateResourcePanel.ARPWindow.DrawWindow (Int32 id)

KSPPluginFramework.MonoBehaviourWindow.DrawWindowInternal (Int32 id)

UnityEngine.GUILayout+LayoutedWindow.DoWindow (Int32 windowID)

UnityEngine.GUI.CallWindowDelegate (UnityEngine.WindowFunction func, Int32 id, UnityEngine.GUISkin _skin, Int32 forceRect, Single width, Single height, UnityEngine.GUIStyle style)

[LOG 13:53:42.060] [18:01:36]: OX-STAT Photovoltaic Panels exploded due to overheating.

[LOG 13:53:42.061] solarPanels5 Exploded!! - blast awesomeness: 0.5

[LOG 13:53:42.062] [solarPanels5]: Deactivated

[LOG 13:53:42.069] ScienceAlert, StorageCache: Active vessel is not monitored vessel; rebuilding storage cache

[EXC 13:53:42.070] NullReferenceException: Object reference not set to an instance of an object

ScienceAlert.StorageCache+<Rebuild>d__2.MoveNext ()

[LOG 13:53:42.072] [18:01:36]: TR-18A Stack Decoupler exploded due to overheating.

[LOG 13:53:42.073] stackDecoupler Exploded!! - blast awesomeness: 0.5

[LOG 13:53:42.081] [stackDecoupler]: Deactivated

[LOG 13:53:42.125] ScienceAlert, StorageCache: Active vessel is not monitored vessel; rebuilding storage cache

[EXC 13:53:42.127] NullReferenceException: Object reference not set to an instance of an object

ScienceAlert.StorageCache+<Rebuild>d__2.MoveNext ()

[LOG 13:53:42.139] 2 explosions created.

[LOG 13:53:45.675] v3 Debris Unloaded

[LOG 13:53:45.678] Packing v3 Debris for orbit

[LOG 13:53:45.737] Vessel v3 Debris was on-rails at 7.1 atm pressure and was destroyed.

[LOG 13:53:45.738] [Vessel v3 Debris]: Destroyed. No crews were aboard.

[LOG 13:54:31.131] Active Vessel is in atmosphere. Cannot save.

[LOG 13:54:46.312] Active Vessel is in atmosphere. Cannot save.

[LOG 13:54:56.011] activating stage 0 - current stage: 1

[LOG 13:54:56.012] [probeCoreOcto]: Activated

[LOG 13:54:56.013] [mumech.MJ2.AR202]: Activated

[LOG 13:54:56.014] [adapterSmallMiniTall]: Activated

[LOG 13:54:56.015] [uS.1C10.Wedge.Quadcore]: Activated

[LOG 13:54:56.016] [dmUSMagBoom]: Activated

[LOG 13:54:56.016] [dmUSPresTemp]: Activated

[LOG 13:54:56.018] [dmUSScope]: Activated

[LOG 13:54:56.019] [dmUSSolarParticles]: Activated

[LOG 13:54:56.020] [uS.1C10.Wedge.Quadcore]: Activated

[LOG 13:54:56.020] [dmUSGoo]: Activated

[LOG 13:54:56.021] [dmUSGoo]: Activated

[LOG 13:54:56.022] [dmUSGoo]: Activated

[LOG 13:54:56.023] [dmUSGoo]: Activated

[LOG 13:54:56.023] [uS.1C10.Wedge.Quadcore]: Activated

[LOG 13:54:56.024] [dmUSMat]: Activated

[LOG 13:54:56.025] [dmUSMat]: Activated

[LOG 13:54:56.025] [dmUSMat]: Activated

[LOG 13:54:56.026] [dmUSMat]: Activated

[LOG 13:54:56.027] [advSasModule]: Activated

[LOG 13:54:56.028] [parachuteRadial]: Activated

[LOG 13:54:56.030] [parachuteRadial]: Activated

[LOG 13:54:56.030] [ksp.r.largeBatteryPack]: Activated

[LOG 13:54:56.031] [ksp.r.largeBatteryPack]: Activated

[LOG 13:54:56.032] [ksp.r.largeBatteryPack]: Activated

[LOG 13:54:56.033] [ksp.r.largeBatteryPack]: Activated

[LOG 13:54:56.033] [ksp.r.largeBatteryPack]: Activated

[LOG 13:54:56.034] [ksp.r.largeBatteryPack]: Activated

[LOG 13:54:56.035] [ksp.r.largeBatteryPack]: Activated

[LOG 13:54:56.036] [ksp.r.largeBatteryPack]: Activated

[LOG 13:54:56.037] [parachuteSingle]: Activated

[LOG 13:55:09.270] Active Vessel is in atmosphere. Cannot save.

[LOG 13:55:17.277] Active Vessel is in atmosphere. Cannot save.

[LOG 13:55:24.937] Active Vessel is in atmosphere. Cannot save.

[LOG 13:55:32.503] Active Vessel is in atmosphere. Cannot save.

[LOG 13:55:40.019] Active Vessel is in atmosphere. Cannot save.

[LOG 13:55:47.702] Active Vessel is in atmosphere. Cannot save.

[LOG 13:55:55.216] Active Vessel is in atmosphere. Cannot save.

[LOG 13:56:00.574] [Progress Node Reached]: ReturnFromFlyBy

[LOG 13:56:00.575] [Progress Node Complete]: ReturnFromFlyBy

[LOG 13:56:00.576] [Progress Node Reached]: ReturnFromOrbit

[LOG 13:56:00.577] [Progress Node Complete]: ReturnFromOrbit

[LOG 13:56:00.578] [Progress Node Reached]: ReturnFromFlyBy

[LOG 13:56:00.578] [Progress Node Complete]: ReturnFromFlyBy

[LOG 13:56:00.579] [Progress Node Reached]: Splashdown

[LOG 13:56:00.580] [Progress Node Complete]: Splashdown

[LOG 13:56:00.589] Tac.FuelBalanceController[FFF8A5EE][1277.94]: Rebuilding resource lists.

[WRN 13:56:18.422] [FlightPersistence]: Vessel v3 Debris not saved because it was debris cluttering up KSC.

[WRN 13:56:18.423] [FlightPersistence]: Vessel v3 Debris not saved because it was debris cluttering up KSC.

[WRN 13:56:18.424] [FlightPersistence]: Vessel v3 Debris not saved because it was debris cluttering up KSC.

[WRN 13:56:18.425] [FlightPersistence]: Vessel v3 Debris not saved because it was debris cluttering up KSC.

[LOG 13:56:18.464] Flight State Captured

[LOG 13:56:18.469] Saving Achievements Tree...

[LOG 13:56:18.470] Saving Achievements Tree...

[LOG 13:56:18.471] Saving Achievements Tree...

[LOG 13:56:18.663] Game State Saved to saves/new game 7-6-15/persistent

[LOG 13:56:18.664] [AutoSave]: Game Saved

[LOG 13:56:19.546] [Experiments]: Setting FX Modules to 1...

[LOG 13:56:19.547] [Experiments]: FX Modules set: 1

[WRN 13:56:42.406] [FlightPersistence]: Vessel v3 Debris not saved because it was debris cluttering up KSC.

[WRN 13:56:42.407] [FlightPersistence]: Vessel v3 Debris not saved because it was debris cluttering up KSC.

[WRN 13:56:42.408] [FlightPersistence]: Vessel v3 Debris not saved because it was debris cluttering up KSC.

[WRN 13:56:42.409] [FlightPersistence]: Vessel v3 Debris not saved because it was debris cluttering up KSC.

[LOG 13:56:42.444] Flight State Captured

[LOG 13:56:42.448] Saving Achievements Tree...

[LOG 13:56:42.449] Saving Achievements Tree...

[LOG 13:56:42.450] Saving Achievements Tree...

[LOG 13:56:42.505] Game State Saved to saves/new game 7-6-15/persistent

[LOG 13:56:42.518] 7/9/2015 1:56:42 PM,KerbalAlarmClock,AppLauncher: Destroying Button-Button Count:8

[LOG 13:56:42.522] 7/9/2015 1:56:42 PM,KSPAlternateResourcePanel,AppLauncher: Destroying Button-BEFORE NULL CHECK

[LOG 13:56:42.523] 7/9/2015 1:56:42 PM,KSPAlternateResourcePanel,AppLauncher: Destroying Button-AFTER NULL CHECK

[WRN 13:56:42.533] [HighLogic]: =========================== Scene Change : From FLIGHT to SPACECENTER (Async) =====================

[LOG 13:56:42.909] 7/9/2015 1:56:42 PM,KSPAlternateResourcePanel,Destroying the AlternateResourcePanel (ARP)

[LOG 13:56:42.911] 7/9/2015 1:56:42 PM,KSPAlternateResourcePanel,AppLauncher: Destroying Button-BEFORE NULL CHECK

[LOG 13:56:42.912] 7/9/2015 1:56:42 PM,KSPAlternateResourcePanel,AppLauncher: Destroying Button-AFTER NULL CHECK

[LOG 13:56:42.913] 7/9/2015 1:56:42 PM,KSPAlternateResourcePanel,API Cleaned up

[LOG 13:56:42.924] ScienceAlert, Saving settings to C:\Program Files (x86)\Steam\steamapps\common\Kerbal Space Program\GameData\ScienceAlert/settings.cfg

[LOG 13:56:42.927] ScienceAlert, Removing MagicDataTransmitter

[LOG 13:56:42.929] KJRMultiJointManager cleanup

[LOG 13:56:42.930] Tac.FuelBalanceController[FFF8A5EE][1319.52]: OnDestroy

[LOG 13:56:42.938] [PlanetariumCamera]: Focus: Kerbin

[LOG 13:56:42.944] 7/9/2015 1:56:42 PM,KerbalAlarmClock,Destroying the KerbalAlarmClock-KACFlight

[LOG 13:56:42.945] 7/9/2015 1:56:42 PM,KerbalAlarmClock,API Cleaned up

[LOG 13:56:43.430] AddonLoader: Instantiating addon 'ActiveTextureManagement' from assembly 'ActiveTextureManagement'

[LOG 13:56:43.431] AddonLoader: Instantiating addon 'AmbientLightAdjustment' from assembly 'AmbientLightAdjustment'

[LOG 13:56:43.434] AddonLoader: Instantiating addon 'PersistentEmitterManager' from assembly 'SmokeScreen'

[LOG 13:56:43.754] [Progress Tracking]: Posted anonymous data to server successfully. Server Reply: KSP PROGRESS DATA OBTAINED

[LOG 13:56:44.855] SCANsat.SCANsat.SCAN_Platform.CustomAddonLoader: SPACECENTER was loaded; instantiating addons...

[LOG 13:56:44.856] ImprovedAddonLoader: Creating addon 'SCANtoolbar'

[LOG 13:56:44.857] SCANsat.SCANsat.SCAN_Platform.CustomAddonLoader finished; created 1 addons

[LOG 13:56:44.863] AddonLoader: Instantiating addon 'AddScenarioModules' from assembly 'KSP'

[LOG 13:56:44.866] AddonLoader: Instantiating addon 'CustomConfigsManager' from assembly 'ModuleManager'

[LOG 13:56:44.867] AddonLoader: Instantiating addon 'ActiveTextureManagement' from assembly 'ActiveTextureManagement'

[LOG 13:56:44.868] AddonLoader: Instantiating addon 'AmbientLightAdjustment' from assembly 'AmbientLightAdjustment'

[LOG 13:56:44.871] AddonLoader: Instantiating addon 'PersistentEmitterManager' from assembly 'SmokeScreen'

[LOG 13:56:44.873] AddonLoader: Instantiating addon 'KACSpaceCenter' from assembly 'KerbalAlarmClock'

[LOG 13:56:44.874] 7/9/2015 1:56:44 PM,KerbalAlarmClock,Awakening the KerbalAlarmClock-KACSpaceCenter

[LOG 13:56:44.875] 7/9/2015 1:56:44 PM,KerbalAlarmClock,Loading Settings

[LOG 13:56:44.882] 7/9/2015 1:56:44 PM,KerbalAlarmClock,Loading Transfer Modelling Data

[LOG 13:56:44.926] 7/9/2015 1:56:44 PM,KerbalAlarmClock,Transfer Modelling Data Load Complete

[LOG 13:56:44.927] 7/9/2015 1:56:44 PM,KerbalAlarmClock,Loading Sounds

[LOG 13:56:44.951] 7/9/2015 1:56:44 PM,KerbalAlarmClock,WarpRates:8

[LOG 13:56:44.952] 7/9/2015 1:56:44 PM,KerbalAlarmClock,API Ready

[LOG 13:56:49.035] 7/9/2015 1:56:49 PM,KerbalAlarmClock,Searching for KER

[LOG 13:56:49.036] 7/9/2015 1:56:49 PM,KerbalAlarmClock-KERWrapper,Attempting to Grab KER Types...

[LOG 13:56:49.039] 7/9/2015 1:56:49 PM,KerbalAlarmClock,Searching for VOID

[LOG 13:56:49.040] 7/9/2015 1:56:49 PM,KerbalAlarmClock-VOIDWrapper,Attempting to Grab VOID Types...

[EXC 13:56:49.048] NullReferenceException: Object reference not set to an instance of an object

KerbalAlarmClock.KerbalAlarmClock.UpdateDetails ()

KerbalAlarmClock.KerbalAlarmClock.RepeatingWorker ()

KSPPluginFramework.MonoBehaviourExtended.RepeatingWorkerWrapper ()

[EXC 13:56:49.051] NullReferenceException: Object reference not set to an instance of an object

KerbalAlarmClock.KerbalAlarmClock.UpdateDetails ()

KerbalAlarmClock.KerbalAlarmClock.RepeatingWorker ()

KSPPluginFramework.MonoBehaviourExtended.RepeatingWorkerWrapper ()

[LOG 13:56:49.184] 7/9/2015 1:56:49 PM,KerbalAlarmClock,Loading Textures

[LOG 13:56:49.259] 7/9/2015 1:56:49 PM,KerbalAlarmClock,Loaded Textures

[LOG 13:56:49.260] 7/9/2015 1:56:49 PM,KerbalAlarmClock,Adding DrawGUI to PostRender Queue

[LOG 13:56:49.272] [scenarioDestructibles]: Loading... 0 objects registered

[LOG 13:56:49.275] [scenarioUpgradeableFacilities]: Loading... 0 objects registered

[LOG 13:56:49.280] [sCANsat] SCANsat Controller: Loading 1 known vessels

[LOG 13:56:49.281] [sCANsat] SCANsat Controller: Loading map for Kerbin

[LOG 13:56:49.292] [sCANsat] SCANsat Controller: Loading map for Mun

[LOG 13:56:49.303] Loading Depletion Nodes

[LOG 13:56:49.304] DepNodeCount: 0

[LOG 13:56:49.305] Loading Biome Nodes

[LOG 13:56:49.306] BiomeNodeCount: 0

[LOG 13:56:49.306] Loading Planet Nodes

[LOG 13:56:49.307] PlanetNodeCount: 0

[LOG 13:56:49.308] 7/9/2015 1:56:49 PM,KerbalAlarmClock,BaseLoadDone. Alarms Count (Should be 0):0

[LOG 13:56:49.309] 7/9/2015 1:56:49 PM,KerbalAlarmClock,No Alarms to Load

[LOG 13:56:49.310] 7/9/2015 1:56:49 PM,KerbalAlarmClock,ScenarioLoadDone. Alarms Count:0

[LOG 13:56:49.480] 7/9/2015 1:56:49 PM,KerbalAlarmClock,Contracts System Ready

[LOG 13:56:50.715] [VesselRecovery]: v3 recovered 454.1Km from KSC. Recovery Value: 76.8%

[LOG 13:56:50.718] [Research & Development]: +1 data on Telemetry Report from Kerbin's Water. +1.6 Science Added. Subject value is 0.00

[LOG 13:56:50.719] [Research & Development]: +5 data on Magnetometer Scan from Kerbin's oceans. +8.0 Science Added. Subject value is 0.00

[LOG 13:56:50.720] [Research & Development]: +3 data on Temperature Scan while in space high over the Mun. +24.0 Science Added. Subject value is 0.00

[LOG 13:56:50.722] [Research & Development]: +3 data on Atmospheric Pressure Scan while in space high over the Mun. +24.0 Science Added. Subject value is 0.00

[LOG 13:56:50.723] [Research & Development]: +12 data on Solar Particle Analysis while in space near Kerbin. +48.0 Science Added. Subject value is 0.00

[LOG 13:56:50.725] [Research & Development]: +12 data on Solar Particle Analysis while in space high over Kerbin. +72.0 Science Added. Subject value is 0.00

[LOG 13:56:50.726] [Research & Development]: +12 data on Solar Particle Analysis while in space high over the Mun. +96.0 Science Added. Subject value is 0.00

[LOG 13:56:50.728] [Research & Development]: +18 data on Mystery Gooâ„¢ Observation while in space high over Kerbin. +108.0 Science Added. Subject value is 0.00

[LOG 13:56:50.731] Contract (Conduct an orbital survey of Kerbin): 'Mystery Gooâ„¢ Observation data from high orbit above Kerbin' complete!

<#B4D455>£11,896 </><#6DCFF6>©22 </>

[LOG 13:56:50.733] Awarding 94500 funds to player for contract completion

[LOG 13:56:50.734] Awarding 6 reputation to player for contract completion

[LOG 13:56:50.735] Added 5.950783 (6) reputation: 'ContractReward'.

[LOG 13:56:50.737] Contract (Conduct an orbital survey of Kerbin): You completed a survey of Kerbin, well done.

<b><#8BED8B>Completion Rewards:</></>

<#B4D455>£94,500 </>

<#E0D503>¡6 </>

[LOG 13:56:50.739] [Research & Development]: +18 data on Mystery Gooâ„¢ Observation while in space high over the Mun. +144.0 Science Added. Subject value is 0.00

[LOG 13:56:50.740] [Research & Development]: +18 data on Mystery Gooâ„¢ Observation from Kerbin's Water. +28.8 Science Added. Subject value is 0.00

[LOG 13:56:50.742] [Research & Development]: +24 data on Materials Study while in space high over Kerbin. +144.0 Science Added. Subject value is 0.00

[LOG 13:56:50.743] [Research & Development]: +24 data on Materials Study while in space high over the Mun. +192.0 Science Added. Subject value is 0.00

[LOG 13:56:50.745] [Research & Development]: +24 data on Materials Study from Kerbin's Water. +38.4 Science Added. Subject value is 0.00

[LOG 13:56:50.751] [Research & Development]: +1 data on Recovery of a vessel returned from a fly-by of the Mun. +48.0 Science Added. Subject value is 0.17

[LOG 13:56:50.755] Flight State Captured

[LOG 13:56:50.760] Saving Achievements Tree...

[LOG 13:56:50.761] Saving Achievements Tree...

[LOG 13:56:50.761] Saving Achievements Tree...

[LOG 13:56:50.799] Game State Saved to saves/new game 7-6-15/persistent

[LOG 13:57:02.121] Flight State Captured

[LOG 13:57:02.126] Saving Achievements Tree...

[LOG 13:57:02.127] Saving Achievements Tree...

[LOG 13:57:02.128] Saving Achievements Tree...

[LOG 13:57:02.165] Game State Saved to saves/new game 7-6-15/persistent

[LOG 13:57:02.178] 7/9/2015 1:57:02 PM,KerbalAlarmClock,AppLauncher: Destroying Button-Button Count:5

[WRN 13:57:02.190] [HighLogic]: =========================== Scene Change : From SPACECENTER to MAINMENU (Async) =====================

[LOG 13:57:02.193] 7/9/2015 1:57:02 PM,KerbalAlarmClock,Scene Change from 'SPACECENTER' to 'MAINMENU'

[LOG 13:57:02.805] 7/9/2015 1:57:02 PM,KerbalAlarmClock,Removing DrawGUI from PostRender Queue

[LOG 13:57:02.984] 7/9/2015 1:57:02 PM,KerbalAlarmClock,Destroying the KerbalAlarmClock-KACSpaceCenter

[LOG 13:57:02.985] 7/9/2015 1:57:02 PM,KerbalAlarmClock,API Cleaned up

[LOG 13:57:03.429] AddonLoader: Instantiating addon 'ActiveTextureManagement' from assembly 'ActiveTextureManagement'

[LOG 13:57:03.430] AddonLoader: Instantiating addon 'AmbientLightAdjustment' from assembly 'AmbientLightAdjustment'

[LOG 13:57:03.433] AddonLoader: Instantiating addon 'PersistentEmitterManager' from assembly 'SmokeScreen'

[LOG 13:57:04.849] SCANsat.SCANsat.SCAN_Platform.CustomAddonLoader: MAINMENU was loaded; instantiating addons...

[LOG 13:57:04.850] SCANsat.SCANsat.SCAN_Platform.CustomAddonLoader finished; created 0 addons

[LOG 13:57:04.857] AddonLoader: Instantiating addon 'ActiveTextureManagement' from assembly 'ActiveTextureManagement'

[LOG 13:57:04.859] AddonLoader: Instantiating addon 'AmbientLightAdjustment' from assembly 'AmbientLightAdjustment'

[LOG 13:57:04.862] AddonLoader: Instantiating addon 'PersistentEmitterManager' from assembly 'SmokeScreen'

[LOG 13:57:04.863] AddonLoader: Instantiating addon 'StockPlusController' from assembly 'StockPlusController'

[LOG 13:57:04.864] AddonLoader: Instantiating addon 'BandwidthFix' from assembly 'BandwidthFix'

[LOG 13:57:04.865] AddonLoader: Instantiating addon 'KerbalAlarmClockTextureLoader' from assembly 'KerbalAlarmClock'

[LOG 13:57:04.866] 7/9/2015 1:57:04 PM,KerbalAlarmClock,Loading Textures

[LOG 13:57:04.937] 7/9/2015 1:57:04 PM,KerbalAlarmClock,Loaded Textures

[LOG 13:57:04.938] AddonLoader: Instantiating addon 'ScaleExponentsLoader' from assembly 'Scale'

[LOG 13:57:04.974] StockPlusController.Start(): v00.03 (Active = False)

[LOG 13:57:04.975] BandwidthFix.Start(): v01.02

[LOG 13:57:04.976] BandwidthFix: Fixing mumech.MJ2.AR202

[LOG 13:57:04.977] BandwidthFix: Fixing mumech.MJ2.Pod

[LOG 13:57:04.978] BandwidthFix: Fixing cupola

[LOG 13:57:04.978] BandwidthFix: Fixing Mark1-2Pod

[LOG 13:57:04.979] BandwidthFix: Fixing Mark1Cockpit

[LOG 13:57:04.980] BandwidthFix: Fixing Mark2Cockpit

[LOG 13:57:04.981] BandwidthFix: Fixing landerCabinSmall

[LOG 13:57:04.982] BandwidthFix: Fixing mk1pod

[LOG 13:57:04.982] BandwidthFix: Fixing mk2Cockpit.Inline

[LOG 13:57:04.983] BandwidthFix: Fixing mk2Cockpit.Standard

[LOG 13:57:04.984] BandwidthFix: Fixing mk2DroneCore

[LOG 13:57:04.985] BandwidthFix: Fixing mk2LanderCabin

[LOG 13:57:04.986] BandwidthFix: Fixing mk3Cockpit.Shuttle

[LOG 13:57:04.986] BandwidthFix: Fixing probeCoreCube

[LOG 13:57:04.987] BandwidthFix: Fixing probeCoreHex

[LOG 13:57:04.988] BandwidthFix: Fixing probeCoreOcto

[LOG 13:57:04.989] BandwidthFix: Fixing probeCoreOcto2

[LOG 13:57:04.989] BandwidthFix: Fixing roverBody

[LOG 13:57:04.991] BandwidthFix: Fixing probeStackLarge

[LOG 13:57:04.992] BandwidthFix: Fixing probeStackSmall

[LOG 13:57:04.993] BandwidthFix: Fixing probeCoreSphere

[LOG 13:57:04.994] BandwidthFix: Fixing commDish

[LOG 13:57:04.994] BandwidthFix: Fixing mediumDishAntenna

[LOG 13:57:04.995] BandwidthFix: Fixing longAntenna

[LOG 13:57:05.096] [scenarioUpgradeables]: Back to Main Menu. Clearing persistent data.

[LOG 13:57:10.315] OnDestroy

[LOG 13:57:10.315] Destroying Buttons

I tried to highlight all the SA exceptions. Hope this helps

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...