Jump to content

TLA_DEBUG_STACK_LEAK


Recommended Posts

3 minutes ago, Commodoregamer118 said:

Since they updated it i started with the problems, and i read on the update window in 1.8.0 main menu that when you crash a ship it would be quick, sadly that thing just bringed the error and did not enhace the destruction in any way, so 1.8.0 is just 1.7.3 just kinda faster, new parts, and a deadly and very annoying error.

I'm still playing on KSP 1.7.3, sir. For this exact reason. Too  much bugs, too much annoying changes on the physics engine - I just didn't managed to update my savegames to KSP 1.8 or 1.9, some of the crafts just don't work anymore. From ships with hidrofails taking of at Mach 2 to hidroplans that lose all drag after splashing down, I came to terms that KSP 1.10 (as 1.8 and 1.9 I'm just jumping over) will be used only for new savegames, when my current ones are finished. But I expect KSP2 will be on the wild by this time! :)

Some changes on the KSP guts are also hurting (be absolutely sure to have only one DLL for each Assembly, Module Manager caused me some sadness on TweakScale).

Humm... 

Check if you have any duplicated DLLs on your system. The current M.O. on KSP >= 1.8 is to load the new DLL, add it to the Assembly pool pinpointing to the first one loaded, and then discard (or ignore) the code. Perhaps this could be triggered by something similar.

Link to comment
Share on other sites

44 minutes ago, Lisias said:

Check if you have any duplicated DLLs on your system. The current M.O. on KSP >= 1.8 is to load the new DLL, add it to the Assembly pool pinpointing to the first one loaded, and then discard (or ignore) the code. Perhaps this could be triggered by something similar.

I have no idea of what are you saying, no DLLs are duplicated on all 3 installs, what is an M.O?  what assembly pool are you talking about?

Yeah i dont got the entire mesagge, ( the only thing i know about coding is editing .cfg files and light texture editing, i know nothing about DLLs, assemblies, game engine )

Link to comment
Share on other sites

9 minutes ago, Commodoregamer118 said:

I have no idea of what are you saying, no DLLs are duplicated on all 3 installs, what is an M.O?  what assembly pool are you talking about?

Modus Operandi. :)

On CSharp, DLLs are only containers. A facy ZIP file for Assemblies.

The Assembly would be a file on that ZIP, and its contents are the code you wanna run.

That Assembly is what really matters on C#, and they are a collection of procedures and functions packed in things called Classes.

When you have many copies of a DLL, KSP tries to retrieve each one of the Assemblies inside them - but since these Assemblies have the same name, you have a name colision. On KSP 1.7.3 and previous, all the Assemblies were being loaded on a "Pool", and you could select one of them by Version or even by the filename it was loaded from, so the colision could be mitigated: you could inspect the Pool and get rid of things you don't want there, as old versions of Module Manager.

Now, the first Assembly loaded always "wins" on a colision, so there's no way to try to select what you really want to run.

So, if you install a Mod with an old copy of an Assembly (even using a differently named DLL), and this thing is loaded before the others, you will have a outdated code being run by newer code besides the newer code being installed together the correct Assembly for it.

This is what killed MM's "election" and played havoc on some TS users.

In the past, and even nowadays, most Add'Ons were released with depencies included, to make things easier for people installing things by hand, but this also means that as time goes by, that embedded dependencies became outdated. And then people ended up installing old copies of things on a KSP instalment where the newer copies that were there are silently phased out.

MiniAVC is another victim of this problem. You install an Add'On with an older version of it (bugged on KSP 1.9), and suddenly all the other copies of the system are phased out, and things that were fine stops working everywhere.

Link to comment
Share on other sites

Oh, now i get it.

Thats why removing MiniAVCs worked, now the Assemblies of the mods have different versions and KSP and MM select an old code to run and the Unity engine code doesnt accept the old code leading into the TLAs wich frezee the game, so we know how the TLAs are produced, this opens up some paths to fix it, either every single mod updates its Assemblies, somehow teling both KSP and MM to run the most recent code, modifying  some codes to make the TLAs to dissappear, or making the TLAs to not frezee the game.

Or identify the old Assemblies to make them not to be inside of the Pool to prevent them to be loaded.

Wow, i just wanted to make a 787 and look where are we    :o

I know absolutley nothing about C#, C++ , Lua, Phyton, etc.

I just know to code in Scratch code, lame i know, so if the fix requires programing, some of you guys could help me?

 

Link to comment
Share on other sites

24 minutes ago, Commodoregamer118 said:

Thats why removing MiniAVCs worked, now the Assemblies of the mods have different versions 

Yep. An old MiniAVC, bugged, was being used besides newer, fixed ones, being present on the system.

Since there's no more a way to select the good from the bad apples, we need to get rid of thr whole basket.

 

26 minutes ago, Commodoregamer118 said:

 Unity engine code doesnt accept the old code leading into the TLAs wich frezee the game, so we know how the TLAs are produced

From my (many,many) tests, this is unrelated to Unity itself. 

Now or then something really old borks on Unity by doing wrong things that Unity was tolerating in the past, but nowadays is not anymore.

But most of the time it was code that used to work in the past, but stop working due some change in KSP itself.

Then a new version was released, fixed and works with new KSP versions - but then suddenly a old copy of that code appears from nowhere, and then everybody starts to used it without being aware (as the Reflection system "lies" to us telling us that the code was read from a the right DLL, but it was not).

To make things more complicated,  a lot of Assemblies in the past (including KSP ones) were used to be released without a proper Version number, so the only way to be sure about the Assembly would be to inspect the DLL pathname it was loaded, but since we are being lied about it, this door is now shut for us.

 

36 minutes ago, Commodoregamer118 said:

 old code leading into the TLAs wich frezee the game, so we know how the TLAs are produced, this opens up some paths to fix it, either every single mod updates its Assemblies, somehow teling both KSP and MM to run the most recent code, modifying  some codes to make the TLAs to dissappear, or making the TLAs to not frezee the game.

It's my current thesis, at least. And it should be something pretty specific to Windows, as at least MacOS is not being affected - apparently.

It's the reason I don't believe it's something related to a bugged old code, but to a old code that uses something that now is broken somewhere pretty deep on KSP or Unity.

I'm a long time KSP abuser :P and I also use some pretty old AddOns without problems on MacOS, as well new Add'Ons in KSP as old as 1.2.2.

And I never was caught by this one. And, dude, believe me: I push my luck.

 

46 minutes ago, Commodoregamer118 said:

Or identify the old Assemblies to make them not to be inside of the Pool to prevent them to be loaded.

This is why we need the most recent KSP.log and Player.log always. By comparing the new ones with the previous ones we can try to detect if a difference between them can help on the diagnosis.

Or the other way around, it can be a small and apparently harmless thing present on them.  We just don't know until we find something interesting.

 

53 minutes ago, Commodoregamer118 said:

.Wow, i just wanted to make a 787 and look where are we    :o

It how I started, I was trying to make a Space Shuttle to take of using Whiplahses as booosters when I was caught by the Zero Mass problem. :D

welcome aboard. We have coffee. :P

 

55 minutes ago, Commodoregamer118 said:

I just know to code in Scratch code, lame i know, so if the fix requires programing, some of you guys could help me?

Sure thing. KSP Recall was born exactly this way!

Link to comment
Share on other sites

18 minutes ago, Lisias said:

This is why we need the most recent KSP.log and Player.log always. By comparing the new ones with the previous ones we can try to detect if a difference between them can help on the diagnosis.

Or the other way around, it can be a small and apparently harmless thing present on them.  We just don't know until we find something interesting.

Until then i just upload and upload more and more logs ?

19 minutes ago, Lisias said:

It how I started, I was trying to make a Space Shuttle to take of using Whiplahses as booosters when I was caught by the Zero Mass problem.

If you didnt know if that works or not, yes it does ( at least with Panther engines )

And about using the logs to find the old Assemblies it will be a mess of all diferent versions, and examinating a whole log would take an entire day, so a lot of time will be wasted to just disregard a simple mod, its not practical, thare needs to be a simple way, Since the Reflection system lies, we need to find a location where are the assemblies and the pool section.

From what I understood, everytime you install a mod its Assembly either is old or new, it takes first position on the list of assemblies to load, and that old Assembly makes a mess leading into the TLAs.

So I have an idea, lets select a mod that has an estable Assembly, then when I want another mod, uninstall the selected mod, put in the other one and reinstall the stable mod, that way the stable Assembly will always stay on first place and so no TLAs

What do you think?

Link to comment
Share on other sites

1 hour ago, Commodoregamer118 said:

Until then i just upload and upload more and more logs ?

Every time you add or remove an Add'On, yes.

 

1 hour ago, Commodoregamer118 said:

And about using the logs to find the old Assemblies it will be a mess of all diferent versions, and examinating a whole log would take an entire day, so a lot of time will be wasted to just disregard a simple mod, its not practical, thare needs to be a simple way, Since the Reflection system lies, we need to find a location where are the assemblies and the pool section.

Not that much. KSP (correctly) writes every DLL being loaded on startup, so there's only one place to look when we are searching for this specific problem.

The Reflection system lies about the from which DLL the current Assembly was loaded, but tells the true about the DLLs that have an Assembly with that name, so this is still useful to diagnose this problem - essentially, it will pinpoint every DLL with an Assembly with that name, being it the loaded one or not.

 

1 hour ago, Commodoregamer118 said:

From what I understood, everytime you install a mod its Assembly either is old or new, it takes first position on the list of assemblies to load, 

Almost it. The first Assembly loaded is really loaded. The second copy of that Assembly is not, but an entry on the "Pool" is created as it were, besides pinpoint the first one. Let me exemplify to you using that problem with MM that bitten me in the SAS recently:

This is the log of MM trying to elect the correct one to be used on KSP 1.7.3:

[LOG 22:11:56.202] [ModuleManager] INFO: version 4.1.3.1 at /.users/lisias/Workspaces/KSP/runtime/1.7.3/GameData/ModuleManager.dll won the election against
Version 4.1.3.0 /.users/lisias/Workspaces/KSP/runtime/1.7.3/GameData/ModuleManager.4.1.3.dll
Version 4.0.3.0 /.users/lisias/Workspaces/KSP/runtime/1.7.3/GameData/ModuleManager.4.0.3.dll
Version 4.0.2.0 /.users/lisias/Workspaces/KSP/runtime/1.7.3/GameData/ModuleManager.4.0.2.dll
Version 3.1.1.0 /.users/lisias/Workspaces/KSP/runtime/1.7.3/GameData/ModuleManager.3.1.1.dll
Version 3.0.4.0 /.users/lisias/Workspaces/KSP/runtime/1.7.3/GameData/ModuleManager.3.0.4.dll

And this is what happens on KSP 1.8 and above:

[LOG 21:03:53.892] [ModuleManager] INFO: version 4.1.3.1 at /.users/lisias/Workspaces/KSP/runtime/1.8.1/GameData/ModuleManager.1.0.0.dll won the election against
Version 4.1.3.1 /.users/lisias/Workspaces/KSP/runtime/1.8.1/GameData/ModuleManager.3.0.4.dll
Version 4.1.3.1 /.users/lisias/Workspaces/KSP/runtime/1.8.1/GameData/ModuleManager.3.1.1.dll
Version 4.1.3.1 /.users/lisias/Workspaces/KSP/runtime/1.8.1/GameData/ModuleManager.4.0.2.dll
Version 4.1.3.1 /.users/lisias/Workspaces/KSP/runtime/1.8.1/GameData/ModuleManager.4.0.3.dll
Version 4.1.3.1 /.users/lisias/Workspaces/KSP/runtime/1.8.1/GameData/ModuleManager.4.1.3.dll

The DLLs used are the same on both KSPs (my Add"Ons works fine on both, and I recompiled MM to be used this way).

"Version" is fetched from the Assembly, the pathname is where the Assembly were loaded. The filename is irrelevant from the Assembly point of view, you cane name the DLL "ModuleManager-Forever-666.666.666.dll" and this will means nothing on the runtime, the Assembly still will be named "ModuleManager" and the Version will be fetched from the Assembly the same.

So, on KSP >= 1.8, we can conclude that only the first Assembly is really loaded (as I forced a 4.1.3.1 one to be loaded from a file named "ModuleManager.1.0.0.0.dll"), and all remaining ones were ignored but yet a entry on the Pool was created pinpoint the first one - and the thing lies to us telling that it was loaded from that other file. :mad:

 

1 hour ago, Commodoregamer118 said:

and that old Assembly makes a mess leading into the TLAs.

Would would :P be a better choice of words. We are speculating about a possible explanation for the problem, as the M.O. of this known bandit is pretty similar to what is happening to you.

It may be a new bandit copycatting the known one - but if we don't give this a try, we will never know.

Yeah - this is pretty similar to a crime scene. :)

 

1 hour ago, Commodoregamer118 said:

So I have an idea, lets select a mod that has an estable Assembly, then when I want another mod, uninstall the selected mod, put in the other one and reinstall the stable mod, that way the stable Assembly will always stay on first place and so no TLAs

What do you think?

It will not work because the order of file loading. KSP sorts the whole GameData, and starts loading things using this list.

So, you install AddOn "GameData/FancyPants/MyDll.dll" and then "GameData/UglyPants/MyDll.dll" - whatever is being loaded on UglyPants, will be loaded always after the FancyPants because of the ordering.

So things are, thanks God, deterministic about the order of loading.

What we are looking for, however, is about duplicated Assemblies inside that dlls.

Let's suppose that on UglyPants/MyDll.dll we have the Assembly "Pants" Version 1.0 , but FancyPants/MyDll.dll have the "Pants" Version 0.5 , let's say it's from the time it was still Alpha.

You install only Fancy Pants, things do work - because the FancyPants code was written matching that old version of Pants.

You install only Ugly Pants, things do work - because the UglyPants code was written matching the new version of Pants.

Things goes kaput only when you install both - Fancy Pants will still work, but Ugly Pants will suddenly borks because it needs something that exists only on Pants 1.0 and it's absent from 0.5 (that was already loaded, and then shadowed everything "loaded" later) . However, since it's UglyPants the one borking, you can think it is the problem.

We will just diagnose the source of this problem by installing both, then each one of them separately, and comparing the results. 3 installs.

But this example is too much simplistic. When we have 40, 50 Add'Ons installed, we would need to do a Combinatorial Analysis of every possibility in order to mechanically determine the problem (and, again, assuming this is the problem - it may be something else....).

This is why is less worst to analise multiple KSP.log and Player.log, observing what is installed and when the thing blows up. There's a chance that the last module logged could hint about the problem, as I did about the music file on that last report of yours.

 

Edited by Lisias
Tyops, as usulla....
Link to comment
Share on other sites

On 6/10/2020 at 9:04 AM, Commodoregamer118 said:

The less mods you have, the less posibility of the error to come, and also the combination of mods also matters and a lot, for example the list of mods that is estable in 1.9.1 is this: https://imgur.com/FzeGJoL

 Plus SXT and TweakScale, MM.

So that combination of mods has no duplicated Assemblies, when I added NeistAir things gone wrong, it may be that its assembly is similar to APP?

And when i deleted it, installed AARS, ACA and Carrier Vessel eXpansion ( VesselMover and Hyperedit) things gone wrong again, maybe ACA and Carrier Vessel eXpansion?

I am just assumming they use similar Assemblies, because they are from the same theme, .

10 hours ago, Lisias said:

this is pretty similar to a crime scene.

Lets call the CSI then

10 hours ago, Lisias said:

We will just diagnose the source of this problem by installing both, then each one of them separately, and comparing the results.

Yeah, I think i will do that.

10 hours ago, Lisias said:

since it's UglyPants the one borking, you can think it is the problem.

And if a mod has the problem, then how we or the author fix it? Or they will alredy know how?

I guess that if for example i have Mk2 expansion, and i install VesselMover, nothing will happen untill i add another similar mod and its Asemblies start a dogfight, and the winner, stable or not stable, will run leaving the other one behind, so the one that runs messes everything up with KSP and Unity Leading into the debug TLAs.

Link to comment
Share on other sites

3 hours ago, Commodoregamer118 said:

So that combination of mods has no duplicated Assemblies, when I added NeistAir things gone wrong, it may be that its assembly is similar to APP?

It's a good guess. I will check it by night.

 

3 hours ago, Commodoregamer118 said:

And when i deleted it, installed AARS, ACA and Carrier Vessel eXpansion ( VesselMover and Hyperedit) things gone wrong again, maybe ACA and Carrier Vessel eXpansion?

Or perhaps they are the ones being borked by something else. That problem works both ways.

 

3 hours ago, Commodoregamer118 said:

I am just assumming they use similar Assemblies, because they are from the same theme, .

It's a wild guess, because there're different custom modules doing the same task (as wheels), but still a good guess.

 

3 hours ago, Commodoregamer118 said:

Lets call the CSI then

KSI! :)

 

3 hours ago, Commodoregamer118 said:

And if a mod has the problem, then how we or the author fix it? Or they will alredy know how?

Once we pinpoint a viable suspect, someone needs to check the code for source of problems. Once a problem is found, someone needs to fix it, and it will depend on the license of the thing. ARR and CC-ND thingies are things hostile to collaboration (to fix that thing, I would need to download and change it and send it to someone to test - effectively creating a derivative and so, violating the license). But once the license permits, yes - someone (me, other guy or the author) will fix the code and publish a new version.

 

4 hours ago, Commodoregamer118 said:

I guess that if for example i have Mk2 expansion, and i install VesselMover, nothing will happen untill i add another similar mod and its Asemblies start a dogfight, and the winner, stable or not stable, will run leaving the other one behind, so the one that runs messes everything up with KSP and Unity Leading into the debug TLAs.

Be aware that things can be a bit more complicated than that.

Some code shares things that are not obvious, as a GUI helper or some library to calculate physics, whatever. So the "Similar" criteria, besides useful sometimes, is not accurate.

On this specific case, we are looking for something allocating things on Update, FixedUpdate or LateUpdate and forgetting to deallocated i, as hinted by this log line:

[WRN 16:25:46.084] Internal: JobTempAlloc has allocations that are more than 4 frames old - this is not allowed and likely a leak

This can be happening due a old code that used to do so on a time which Unity didn't cared about this, or may be something inducing other thing to bork on one of the Updates code (and so, the code is interrupted before deallocating the memory).

Pretty messy, uh? :)

Link to comment
Share on other sites

I was able to play some 2 hours in my stable KSP install, luckily i did a Su-57 and a F-14 with swept wing,

The TLAs appeared after i downloaded a KerbalX craft via CraftManager, a thing that i noticed while looking for DLLs in GameData, was that both KXAPI and CraftManager have a DLL that has the same name, I dont think its a problem since both update at the same time and they are dependencies for each other,

Tough we need to find the assain hidden in the depth of the Assemblies,

56 minutes ago, Lisias said:

On this specific case, we are looking for something allocating things on Update, FixedUpdate or LateUpdate and forgetting to deallocated i, as hinted by this log line

Yesterday it crashed on editor because of VesselMover installed, ( Everyone is a killer ) I was setting a radar for the plane in the front, it frezeed, when I clicked, for half a second I saw the plane from the back, so im starting to think that KSP´s allocations are saturated simulating instead of displaying, and that conflict makes TLAs to appear, and TLA= Crash!

1 hour ago, Lisias said:

Pretty messy, uh?

Yes it is

Link to comment
Share on other sites

Well, I finally take a look on your KSP.log. :) (could not sleep, I had a crash on a production server this week and I'm cleaning up things there, and this takes a lot of time...)

What follows are things that can or not be affecting you. But they are mistakes nevertheless, so it worths the trouble of fixing it.

I found some instances of this error:

[LOG 16:02:42.449] AssetLoader: Loaded bundle 'C:\Users\t8491\Documents\Kerbal Space Program - copia\GameData\Squad\KSPedia\kspedia_variantswitcher.ksp'
[ERR 16:02:43.478] The file can not be loaded because it was created for another build target that is not compatible with this platform.
Please make sure to build AssetBundles using the build target platform that it is used by.
File's Build target is: 6


[ERR 16:02:43.479] Unknown error occurred while loading 'archive:/CAB-7ec8318d487c56e2a1778473f347f933/CAB-7ec8318d487c56e2a1778473f347f933'.

[ERR 16:02:43.479] The AssetBundle 'file://C:\Users\t8491\Documents\Kerbal Space Program - copia\GameData\BDArmory\KSPedia\bdac addons.ksp' can't be loaded because it was

[ERR 16:02:43.479] Error while getting Asset Bundle: The AssetBundle 'file://C:\Users\t8491\Documents\Kerbal Space Program - copia\GameData\BDArmory\KSPedia\bdac addons.k

[ERR 16:02:43.479] AssetLoader: Bundle is null

[ERR 16:02:43.982] The file can not be loaded because it was created for another build target that is not compatible with this platform.
Please make sure to build AssetBundles using the build target platform that it is used by.
File's Build target is: 6

We have two problems here, both from your KSP itself.

  1. There's a race condition on accessing the Unity Log, that it's not thread safe. Install KSPApiExtensions/L (or just the 000_KSPe.dll from the package), this fixes this and we will start to get better logs from your instalment
  2. Apparently KSP is trying to load something that was intended to be used on a previous version!

I checked my own test beds (yeah, I have a test bed for every KSP version released since 1.1.3! How do you think I learn so much??? :sticktongue:), and this message is not there, so it's not a fsckup from Squad for sure. I think you copied some things from other KSP version by accident.

If I am right, we have an excellent suspect for your problems, we may had found that Oldie playing havoc on your system! 

Download a clean copy of KSP 1.8.1, and move only things not from Squad and SquadExpansion from this "copia" . Leave the savegames, screenshots, etc, on the original place for while, then start doing crazy things on the new copy you know for sure had caused problems for you in the past.

Good hunting! :)

Link to comment
Share on other sites

6 hours ago, Lisias said:

I think you copied some things from other KSP version by accident.

I copied the entire KSP directory, ( When I moved from 1.7.3 to 1.8.0 I did a copy of my install, then in 1.8.1 I replaced the 1.7.3 copy with a 1.8.1 copy, then I copied the copy and I ended up with 3 installs, a main one, a copy of the main and a copy of the copy, the log that you saw was from the copy of the copy )

6 hours ago, Lisias said:

Download a clean copy of KSP 1.8.1, and move only things not from Squad and SquadExpansion from this "copia" . Leave the savegames, screenshots, etc, on the original place for while, then start doing crazy things on the new copy you know for sure had caused problems for you in the past.

Hmm, I copy the copy of the main, or the copy of the copy? They are both 1.8.1, what do you mean with crazy things, install more mods? Or have the exact same list from the 1.9.1?

Link to comment
Share on other sites

27 minutes ago, Commodoregamer118 said:

I copied the entire KSP directory, ( When I moved from 1.7.3 to 1.8.0 I did a copy of my install, then in 1.8.1 I replaced the 1.7.3 copy with a 1.8.1 copy, then I copied the copy and I ended up with 3 installs, a main one, a copy of the main and a copy of the copy, the log that you saw was from the copy of the copy )

I think that in one of these copies, you accidentally copied Squad folder too, and then copied again a new version over - but something was left behind.

 

28 minutes ago, Commodoregamer118 said:

Hmm, I copy the copy of the main, or the copy of the copy? They are both 1.8.1, what do you mean with crazy things, install more mods? Or have the exact same list from the 1.9.1?

Download a fresh 1.8.1 copy of KSP. Don't try to recover some old installation, download a fresh one. This will eliminate a variable on our equation.

Then copy the Add'Ons you were using on the last crash. Try to reproduce the crash. Then install more things, preferentially things that you were using when that crashes happened, and see what happens.

If nothing wrong happens until here, just install everything you have and the kitchen's sink - and then see what happens.

If everything is allright, I think we had fixed the problem - then delete what you don't want to use and migrate your savegames from the other copies.

If anything blows on your face, publish the KSP.log and Player.log here. Rinse. Repeat. :)

Link to comment
Share on other sites

15 minutes ago, Lisias said:

Download a fresh 1.8.1 copy of KSP.

From where?

15 minutes ago, Lisias said:

If everything is allright, I think we had fixed the problem - then delete what you don't want to use and migrate your savegames from the other copies.

If I migrate the savegames of my 1.9.1 install to a 1.8.1 everything will be broken, craft files and living craft will be broken too, so once we fix the 1.8.1 lets also try to do it with the 1.9.1

19 minutes ago, Lisias said:

Then copy the Add'Ons you were using on the last crash. Try to reproduce the crash.

I dont need to do nothing, i will just leave it there until it crashes on the main menu

Link to comment
Share on other sites

45 minutes ago, Commodoregamer118 said:

From where?

If you bought it from Steam, you can download it from the Betas - Squad puts the older KSP versions as a "Beta" on Steam.

If you bought if from Squad, there should be a link from their Store.

If you bought it from GoG, I don't have idea...

 

48 minutes ago, Commodoregamer118 said:

If I migrate the savegames of my 1.9.1 install to a 1.8.1 everything will be broken, craft files and living craft will be broken too, so once we fix the 1.8.1 lets also try to do it with the 1.9.1

I suggested 1.8.1 because it was the version of the Log file I used, so I'm trying to fix that one.

You may want to try fastracking into 1.9.1 and save a download.

 

49 minutes ago, Commodoregamer118 said:

I dont need to do nothing, i will just leave it there until it crashes on the main menu

Wow... That bad? I hope I'm right with that Oldies thesis, otherwise we will need to try to diagnose device drivers or even hardware...

Link to comment
Share on other sites

7 hours ago, Commodoregamer118 said:

2 hours probably.

Of course this time extended,

7 hours ago, Commodoregamer118 said:

and if nothing happens, then succes.

Finally!, no TLAs at all, no crashes on the main menu, no crashes on editor, even with these mods installed!

13 hours ago, Lisias said:

If everything is allright, I think we had fixed the problem - then delete what you don't want to use and migrate your savegames from the other copies.

I would like to have the fix in all my copies, the main copy is for heavy modding, the secondary install is for a backup and medium modding, and the last one is for quick game, I try to have almost stock game, so I really depend on this three copies.

Link to comment
Share on other sites

@Commodoregamer118 asked me to post my issue here, so here I am.

I get frequent crashes/hangs in the VAB/SPH. While they are intermittent (so hard to replicate) they are always related to one specific action: "holding" a part or assembly of parts over the vessel under construction. Forgive me if I don't know the correct KSP terms, but I mean when you import a subassembly, or detach a part with child parts, so it is semi-transparent , and hover it over the vessel such that the "ghost" part snaps into place to show where it will attach if you click.

The actual attachment isn't what causes the hangs/crashes; it's always just the hovering and display of the "ghost" preview.

Sometimes if I let it sit for 10 minutes or more, the game un-hangs and returns to normal, until I try to attach the part/assembly again.

It is probably related that I often get short hangs (a few seconds) when hovering some parts with symmetry enabled. But different parts from different mods trigger it, like the mechJeb probe core, RealChute parachutes, and the stock separatron I. It doesn't always do it with these parts, mind you. Those are just a few of the parts that I've noticed it happening a lot with. There isn't any common thread of parts from a specific mod causing it. And it can happen with single parts, or assemblies of just a couple, like a SRB+decoupler and the like.

When this happens, my ksp.log is full of a truly fantastic amount of stack overflow errors.

Here is my ksp.log file: https://mega.nz/file/whx0VIYK#wFyFQl8MPL8jp0AmTa5sBdVk5z3VmIpH2KoYhD3GfCQ

And player.log: https://mega.nz/file/kgJB1AJJ#yWGLNQ5oFwG7ZRvHK7UTVUmuP2F6nlPTIYekTW4mEVA

Here is my mod list:

Spoiler

[x] Science! Continued (xScienceContinued 5.23)
Alternate Resource Panel Redisplayed (AlternateResourcePanel 1:2.9.5.1)
AmpYear (AmpYearPowerManager 1:V1.5.6.0)
AT Utils (AT-Utils v1.9.0)
B9 Part Switch (B9PartSwitch v2.14.0)
BahamutoD Animation Modules (BDAnimationModules 1:v0.6.5.8)
Camera Focus Changer (CameraFocusChanger 1:1.1.0)
CapCom - Mission Control On The Go (CapCom 2.11)
ClickThrough Blocker (ClickThroughBlocker 0.1.9.5)
Community Category Kit (CommunityCategoryKit 5.0.0.0)
Community Parts Titles (CommunityPartsTitles 0.6.1.1)
Community Resource Pack (CommunityResourcePack 1.3.0.0)
Community Tech Tree (CommunityTechTree 1:3.4.1)
Configurable Containers (ConfigurableContainers 2.4.8)
Configurable Containers Core (ConfigurableContainers-Core 2.4.8)
Contract Configurator (ContractConfigurator 1.28.0)
Contract Pack: Bases and Stations Reborn (ContractConfigurator-KerbinSpaceStation 2:3.7.2.2)
Contract Pack: RemoteTech (ContractConfigurator-RemoteTech 2.1.4)
Contract Pack: Tourism Plus (ContractConfigurator-Tourism 1.5.2)
Contract Parser (ContractParser 9.0)
Contract Reward Modifier (ContractRewardModifier 2.7)
Craft Manager (CraftManager 1.2.0)
Critical Temperature Gauge (CriticalTemperatureGauge 1.8.1.0)
DMagic Orbital Science (DMagicOrbitalScience 1.4.3)
Easy Vessel Switch (EVS) (EasyVesselSwitch 2.1)
Filter Extensions - Default Configuration (FilterExtensionsDefaultConfig 3.2.5)
Filter Extensions - Plugin (FilterExtensions 3.2.5)
Final Frontier (FinalFrontier 1.8.1-3479)
Firespitter Core (FirespitterCore v7.15)
Global Construction Core (GroundConstruction-Core 2.6.0)
Hide Empty Tech Tree Nodes (HideEmptyTechNodes 1.1.2)
HyperEdit (HyperEdit 1.5.8.0)
Kerbal Alarm Clock (KerbalAlarmClock v3.12.0.0)
Kerbal Attachment System (KAS 1.6)
Kerbal Engineer Redux (KerbalEngineerRedux 1.1.7.1)
Kerbal Inventory System (KIS 1.25)
Kerbal Joint Reinforcement Continued (KerbalJointReinforcementContinued v3.5.1)
Kerbal NRAP - Procedural Test Weights (KerbalNRAP 1.6.0)
Kerbal Planetary Base Systems (KerbalPlanetaryBaseSystems v1.6.11)
Kerbal Renamer (KerbalRenamer v1.3.0)
Konstruction (Konstruction 1.3.0.0)
KSP AVC (KSP-AVC 1.4.1.4)
KXAPI (KXAPI 1.2.0)
Less Grindy Science (LessGrindyScience 1:1.0.0.1)
Malemute Rover (MalemuteRover 1.3.0.0)
MechJeb 2 (MechJeb2 2.9.2.0)
Minimum Ambient Lighting Updated (MinAmbLightUpd 1.2.6)
Mk2 Stockalike Expansion (Mk2Expansion 2:1.8.6.6)
Mk3 Stockalike Expansion (Mk3Expansion 1.4.8.6)
Module Manager (ModuleManager 4.1.3)
Navball Docking Alignment Indicator CE-2 (NavballDockAlignIndCE 1.1.0)
Near Future Construction (NearFutureConstruction 1.2.2)
Near Future IVA Props (NearFutureProps 1:0.6.2)
Near Future Solar (NearFutureSolar 1.2.1)
Near Future Solar Core (NearFutureSolar-Core 1.2.2)
Near Future Spacecraft (NearFutureSpacecraft 1.3.1)
Part Commander Continued (PartCommanderCont 1.1.6.1)
Precise Node (PreciseNode 1.2.11)
Progress Parser (ProgressParser 11.0)
RasterPropMonitor (RasterPropMonitor 1:v0.31.3)
RasterPropMonitor Core (RasterPropMonitor-Core 1:v0.31.3)
RealChute Parachute Systems (RealChute v1.4.7.5)
Recycled Parts FTmN Atomic Rockets (RecycledPartsFTmNAtomicRockets 0.2.0.1)
Recycled Parts FTmN Improved Atomic Rockets (RecycledPartsFTmNImprovedAtomicRockets 0.2.0.1)
Recycled Parts Mk2 Essentials (RecycledPartsMk2Essentials 0.2.0.1)
Recycled Parts Mk2 Lightning (RecycledPartsMk2Lightning 0.2.0.1)
Recycled Parts Orgami Foldable Assets (RecycledPartsOrgamiFoldableAssets 0.2.0.1)
Recycled Parts RSCapsuledyne (RecycledPartsRSCapsuledyne 0.2.0.1)
RemoteTech (RemoteTech v1.9.5)
REPOSoftTech-Agencies (REPOSoftTech-Agencies V1.5.7.0)
SCANsat (SCANsat v18.14)
Ship Manifest (ShipManifest 6.0.0.2)
Smart Parts (SmartParts 1.9.16)
StageRecovery (StageRecovery 1.9.2.2)
TAC Fuel Balancer (TacFuelBalancer v2.21.5.1)
Throttle Controlled Avionics (ThrottleControlledAvionics v3.6.1)
ToadicusToolsContinued (ToadicusToolsContinued 0.22.4.3)
Tokamak Refurbished Parts (TokamakRefurbishedParts 0.2.0.2)
Toolbar (Toolbar 1:1.8.0.5)
Toolbar Controller (ToolbarController 1:0.1.9.4)
TriggerAu Flags (TriggerAu-Flags v2.10.0.0)
TweakableEverythingContinued (TweakableEverythingCont 0.2.0.1)
USI Core (USI-Core 1.3.0.0)
USI Exploration Pack (USI-EXP 1.3.0.0)
USI Freight Transport Technologies (USI-FTT 1.3.0.0)
USI Kolonization Systems (MKS/OKS) (UKS 1:1.3.0.0)
USI Life Support (USI-LS 1.3.0.0)
USI Tools (USITools 1.3.0.0)
Waypoint Manager (WaypointManager 2.8.1)
Zero MiniAVC (ZeroMiniAVC 1:1.1.0.1)
 

I haven't updated any mods recently.

I do notice that I have MiniAVC and full AVC, so I will go ahead and remove one of those, since that can cause conflicts. But if I understand correctly, AVC problems are usually at startup, right?

 

Is there any information that I've failed to provide?

Edited by Tokamak
Link to comment
Share on other sites

1 hour ago, Tokamak said:

Is there any information that I've failed to provide?

Nope, everything is perfect :)

1 hour ago, Tokamak said:

I do notice that I have MiniAVC and full AVC, so I will go ahead and remove one of those, since that can cause conflicts. But if I understand correctly, AVC problems are usually at startup, right?

Remove all MiniAVC DLLs and XMLs, if you check the entire thread you can see that a workaround is removing this, if you still have the problem post here, we will try to help you, also take time to see all the posts for you to understand what is happening, I could help a little but Lisias is who tells how to fix things up.

For now just remove all MiniAVCs.

Link to comment
Share on other sites

10 minutes ago, Commodoregamer118 said:

Nope, everything is perfect :)

Remove all MiniAVC DLLs and XMLs, if you check the entire thread you can see that a workaround is removing this, if you still have the problem post here, we will try to help you, also take time to see all the posts for you to understand what is happening, I could help a little but Lisias is who tells how to fix things up.

For now just remove all MiniAVCs.

Oh, well. That'll teach me to skim. I'll try that. I wonder why that would cause problems in the VAB though...

Link to comment
Share on other sites

13 minutes ago, Commodoregamer118 said:

Nope, everything is perfect :)

Remove all MiniAVC DLLs and XMLs, if you check the entire thread you can see that a workaround is removing this, if you still have the problem post here, we will try to help you, also take time to see all the posts for you to understand what is happening, I could help a little but Lisias is who tells how to fix things up.

For now just remove all MiniAVCs.

Leave the xml files. They are harmless and may be used by the full KSP-AVC mod

2 minutes ago, Tokamak said:

Oh, well. That'll teach me to skim. I'll try that. I wonder why that would cause problems in the VAB though...

The MiniAVC mod uses threading, which broke with the Unity upgrade for 1.8.  Effects are potentially everywhere

Edited by linuxgurugamer
Link to comment
Share on other sites

On 6/11/2020 at 7:44 PM, Lisias said:

MiniAVC is another victim of this problem. You install an Add'On with an older version of it (bugged on KSP 1.9), and suddenly all the other copies of the system are phased out, and things that were fine stops working everywhere.

 

On 6/11/2020 at 9:00 PM, Lisias said:

An old MiniAVC, bugged, was being used besides newer, fixed ones, being present on the system.

Since there's no more a way to select the good from the bad apples, we need to get rid of thr whole basket.

 

Link to comment
Share on other sites

22 minutes ago, Commodoregamer118 said:

Remove all MiniAVC DLLs and XMLs, if you check the entire thread you can see that a workaround is removing this, i

Problem solved. Brilliant!

I'm sorry for missing that in the thread. When skimming through I misunderstood apparently, and thought that the MiniAVC issue was just responsible for his original startup crashes, not the VAB/SPH crashes.

Thank you so much. I really appreciate the help. And the bazillion mods you maintain as well. :D

Link to comment
Share on other sites

Well, that particular hang/freeze is fixed, but now I'm getting a slightly different one. Wheee...

This occurs when I actually place a part. Again it's a stack overflow. In this copy of ksp.log, the gui hang starts at line 34508, followed by 50+ megs of error spam.

One notable feature of the log is many, MANY instances of the line "DragCubeSystem: Rendering procedural drag for InflatableHeatShield", and so far I've only replicated it on craft that have (surprise surprise!) one or more inflatable heat shields. But sometimes I can put on several and KSP deals with it just fine.

If it ends up just being this one part, I can work around it, I guess, though I haven't yet found if anything else still causes KSP to hang in the VAB. We'll see. But if anyone did have any thoughts, I'd love to hear them. Help is appreciated, but not demanded; none of you are getting paid to do tech support. XD

 

Edit: Whoops, forgot logs:

ksp.log https://mega.nz/file/llpnFAzQ#Vk2kJ89d5Dx5qPyaXsVd5ROWhbX8IEybX6fNhyTdf3Q

player.log https://mega.nz/file/koBgnY4A#JVtDuDGFK48gdc2tsY51a-c1skd1oiLj-3not46NDnk

Edited by Tokamak
Link to comment
Share on other sites

1 hour ago, Tokamak said:

Well, that particular hang/freeze is fixed, but now I'm getting a slightly different one. Wheee...

This occurs when I actually place a part. Again it's a stack overflow. In this copy of ksp.log, the gui hang starts at line 34508, followed by 50+ megs of error spam.

One notable feature of the log is many, MANY instances of the line "DragCubeSystem: Rendering procedural drag for InflatableHeatShield", and so far I've only replicated it on craft that have (surprise surprise!) one or more inflatable heat shields. But sometimes I can put on several and KSP deals with it just fine.

If it ends up just being this one part, I can work around it, I guess, though I haven't yet found if anything else still causes KSP to hang in the VAB. We'll see. But if anyone did have any thoughts, I'd love to hear them. Help is appreciated, but not demanded; none of you are getting paid to do tech support. XD

 

Edit: Whoops, forgot logs:

ksp.log https://mega.nz/file/llpnFAzQ#Vk2kJ89d5Dx5qPyaXsVd5ROWhbX8IEybX6fNhyTdf3Q

player.log https://mega.nz/file/koBgnY4A#JVtDuDGFK48gdc2tsY51a-c1skd1oiLj-3not46NDnk

Holly Molly!

What  happened is that something borked beautifully inside KSP, inducing it to enter into an indirect infinite recursion. Congrats, I don't see one of these everyday! :P

 


[ERR 14:10:49.291] Exception handling event onEditorShipModified in class CostWidget:System.StackOverflowException: The requested operation caused a stack overflow.
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at PartModule.Awake () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) UnityEngine.Object.Internal_InstantiateSingle_Injected(UnityEngine.Object,UnityEngine.Vector3&,UnityEngine.Quaternion&)
  at UnityEngine.Object.Internal_InstantiateSingle (UnityEngine.Object data, UnityEngine.Vector3 pos, UnityEngine.Quaternion rot) [0x00000] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate (UnityEngine.Object original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00022] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate[T] (T original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00001] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x0002f] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at EventData`1[T].Fire (T data) [0x000b0] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at AT_Utils.Utils.UpdateEditorGUI () [0x0000d] in <4b942ae56d7a4f7e8f946260d78d2d68>:0 
  at AT_Utils.ModuleSwitchableTank.OnDestroy () [0x00000] in <d137a3486c9741e2ae627a874f113b08>:0 
  at (wrapper managed-to-native) UnityEngine.Object.DestroyImmediate(UnityEngine.Object,bool)
  at UnityEngine.Object.DestroyImmediate (UnityEngine.Object obj) [0x00003] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.SetupPartForRender (Part part, UnityEngine.GameObject partObject) [0x0008b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x00075] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at PartModule.Awake () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) UnityEngine.Object.Internal_InstantiateSingle_Injected(UnityEngine.Object,UnityEngine.Vector3&,UnityEngine.Quaternion&)
  at UnityEngine.Object.Internal_InstantiateSingle (UnityEngine.Object data, UnityEngine.Vector3 pos, UnityEngine.Quaternion rot) [0x00000] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate (UnityEngine.Object original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00022] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate[T] (T original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00001] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x0002f] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at EventData`1[T].Fire (T data) [0x000b0] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at AT_Utils.Utils.UpdateEditorGUI () [0x0000d] in <4b942ae56d7a4f7e8f946260d78d2d68>:0 
  at AT_Utils.ModuleSwitchableTank.OnDestroy () [0x00000] in <d137a3486c9741e2ae627a874f113b08>:0 
  at (wrapper managed-to-native) UnityEngine.Object.DestroyImmediate(UnityEngine.Object,bool)
  at UnityEngine.Object.DestroyImmediate (UnityEngine.Object obj) [0x00003] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.SetupPartForRender (Part part, UnityEngine.GameObject partObject) [0x0008b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x00075] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at PartModule.Awake () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) UnityEngine.Object.Internal_InstantiateSingle_Injected(UnityEngine.Object,UnityEngine.Vector3&,UnityEngine.Quaternion&)
  at UnityEngine.Object.Internal_InstantiateSingle (UnityEngine.Object data, UnityEngine.Vector3 pos, UnityEngine.Quaternion rot) [0x00000] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate (UnityEngine.Object original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00022] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate[T] (T original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00001] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x0002f] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at EventData`1[T].Fire (T data) [0x000b0] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at AT_Utils.Utils.UpdateEditorGUI () [0x0000d] in <4b942ae56d7a4f7e8f946260d78d2d68>:0 
  at AT_Utils.ModuleSwitchableTank.OnDestroy () [0x00000] in <d137a3486c9741e2ae627a874f113b08>:0 
  at (wrapper managed-to-native) UnityEngine.Object.DestroyImmediate(UnityEngine.Object,bool)
  at UnityEngine.Object.DestroyImmediate (UnityEngine.Object obj) [0x00003] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.SetupPartForRender (Part part, UnityEngine.GameObject partObject) [0x0008b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x00075] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at PartModule.Awake () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) UnityEngine.Object.Internal_InstantiateSingle_Injected(UnityEngine.Object,UnityEngine.Vector3&,UnityEngine.Quaternion&)
  at UnityEngine.Object.Internal_InstantiateSingle (UnityEngine.Object data, UnityEngine.Vector3 pos, UnityEngine.Quaternion rot) [0x00000] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate (UnityEngine.Object original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00022] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate[T] (T original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00001] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x0002f] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at EventData`1[T].Fire (T data) [0x000b0] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at AT_Utils.Utils.UpdateEditorGUI () [0x0000d] in <4b942ae56d7a4f7e8f946260d78d2d68>:0 
  at AT_Utils.ModuleSwitchableTank.OnDestroy () [0x00000] in <d137a3486c9741e2ae627a874f113b08>:0 
  at (wrapper managed-to-native) UnityEngine.Object.DestroyImmediate(UnityEngine.Object,bool)
  at UnityEngine.Object.DestroyImmediate (UnityEngine.Object obj) [0x00003] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.SetupPartForRender (Part part, UnityEngine.GameObject partObject) [0x0008b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x00075] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at PartModule.Awake () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) UnityEngine.Object.Internal_InstantiateSingle_Injected(UnityEngine.Object,UnityEngine.Vector3&,UnityEngine.Quaternion&)
  at UnityEngine.Object.Internal_InstantiateSingle (UnityEngine.Object data, UnityEngine.Vector3 pos, UnityEngine.Quaternion rot) [0x00000] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate (UnityEngine.Object original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00022] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate[T] (T original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00001] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x0002f] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at EventData`1[T].Fire (T data) [0x000b0] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at AT_Utils.Utils.UpdateEditorGUI () [0x0000d] in <4b942ae56d7a4f7e8f946260d78d2d68>:0 
  at AT_Utils.ModuleSwitchableTank.OnDestroy () [0x00000] in <d137a3486c9741e2ae627a874f113b08>:0 
  at (wrapper managed-to-native) UnityEngine.Object.DestroyImmediate(UnityEngine.Object,bool)
  at UnityEngine.Object.DestroyImmediate (UnityEngine.Object obj) [0x00003] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.SetupPartForRender (Part part, UnityEngine.GameObject partObject) [0x0008b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x00075] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at PartModule.Awake () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) UnityEngine.Object.Internal_InstantiateSingle_Injected(UnityEngine.Object,UnityEngine.Vector3&,UnityEngine.Quaternion&)
  at UnityEngine.Object.Internal_InstantiateSingle (UnityEngine.Object data, UnityEngine.Vector3 pos, UnityEngine.Quaternion rot) [0x00000] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate (UnityEngine.Object original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00022] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate[T] (T original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00001] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x0002f] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at EventData`1[T].Fire (T data) [0x000b0] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at AT_Utils.Utils.UpdateEditorGUI () [0x0000d] in <4b942ae56d7a4f7e8f946260d78d2d68>:0 
  at AT_Utils.ModuleSwitchableTank.OnDestroy () [0x00000] in <d137a3486c9741e2ae627a874f113b08>:0 
  at (wrapper managed-to-native) UnityEngine.Object.DestroyImmediate(UnityEngine.Object,bool)
  at UnityEngine.Object.DestroyImmediate (UnityEngine.Object obj) [0x00003] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.SetupPartForRender (Part part, UnityEngine.GameObject partObject) [0x0008b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x00075] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at PartModule.Awake () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) UnityEngine.Object.Internal_InstantiateSingle_Injected(UnityEngine.Object,UnityEngine.Vector3&,UnityEngine.Quaternion&)
  at UnityEngine.Object.Internal_InstantiateSingle (UnityEngine.Object data, UnityEngine.Vector3 pos, UnityEngine.Quaternion rot) [0x00000] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate (UnityEngine.Object original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00022] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate[T] (T original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00001] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x0002f] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at EventData`1[T].Fire (T data) [0x000b0] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at AT_Utils.Utils.UpdateEditorGUI () [0x0000d] in <4b942ae56d7a4f7e8f946260d78d2d68>:0 
  at AT_Utils.ModuleSwitchableTank.OnDestroy () [0x00000] in <d137a3486c9741e2ae627a874f113b08>:0 
  at (wrapper managed-to-native) UnityEngine.Object.DestroyImmediate(UnityEngine.Object,bool)
  at UnityEngine.Object.DestroyImmediate (UnityEngine.Object obj) [0x00003] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.SetupPartForRender (Part part, UnityEngine.GameObject partObject) [0x0008b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x00075] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at PartModule.Awake () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) UnityEngine.Object.Internal_InstantiateSingle_Injected(UnityEngine.Object,UnityEngine.Vector3&,UnityEngine.Quaternion&)
  at UnityEngine.Object.Internal_InstantiateSingle (UnityEngine.Object data, UnityEngine.Vector3 pos, UnityEngine.Quaternion rot) [0x00000] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate (UnityEngine.Object original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00022] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate[T] (T original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00001] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x0002f] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at EventData`1[T].Fire (T data) [0x000b0] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at AT_Utils.Utils.UpdateEditorGUI () [0x0000d] in <4b942ae56d7a4f7e8f946260d78d2d68>:0 
  at AT_Utils.ModuleSwitchableTank.OnDestroy () [0x00000] in <d137a3486c9741e2ae627a874f113b08>:0 
  at (wrapper managed-to-native) UnityEngine.Object.DestroyImmediate(UnityEngine.Object,bool)
  at UnityEngine.Object.DestroyImmediate (UnityEngine.Object obj) [0x00003] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.SetupPartForRender (Part part, UnityEngine.GameObject partObject) [0x0008b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x00075] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) UnityEngine.Camera.Render(UnityEngine.Camera)
  at DragCubeSystem.UpdateAeroTexture () [0x00000] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x000e2] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at PartModule.Awake () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) UnityEngine.Object.Internal_InstantiateSingle_Injected(UnityEngine.Object,UnityEngine.Vector3&,UnityEngine.Quaternion&)
  at UnityEngine.Object.Internal_InstantiateSingle (UnityEngine.Object data, UnityEngine.Vector3 pos, UnityEngine.Quaternion rot) [0x00000] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate (UnityEngine.Object original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00022] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate[T] (T original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00001] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x0002f] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at EventData`1[T].Fire (T data) [0x000b0] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at AT_Utils.Utils.UpdateEditorGUI () [0x0000d] in <4b942ae56d7a4f7e8f946260d78d2d68>:0 
  at AT_Utils.ModuleSwitchableTank.OnDestroy () [0x00000] in <d137a3486c9741e2ae627a874f113b08>:0 
  at (wrapper managed-to-native) UnityEngine.Object.DestroyImmediate(UnityEngine.Object,bool)
  at UnityEngine.Object.DestroyImmediate (UnityEngine.Object obj) [0x00003] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.SetupPartForRender (Part part, UnityEngine.GameObject partObject) [0x0008b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x00075] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at PartModule.Awake () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) UnityEngine.Object.Internal_InstantiateSingle_Injected(UnityEngine.Object,UnityEngine.Vector3&,UnityEngine.Quaternion&)
  at UnityEngine.Object.Internal_InstantiateSingle (UnityEngine.Object data, UnityEngine.Vector3 pos, UnityEngine.Quaternion rot) [0x00000] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate (UnityEngine.Object original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00022] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate[T] (T original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00001] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x0002f] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at EventData`1[T].Fire (T data) [0x000b0] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at AT_Utils.Utils.UpdateEditorGUI () [0x0000d] in <4b942ae56d7a4f7e8f946260d78d2d68>:0 
  at AT_Utils.ModuleSwitchableTank.OnDestroy () [0x00000] in <d137a3486c9741e2ae627a874f113b08>:0 
  at (wrapper managed-to-native) UnityEngine.Object.DestroyImmediate(UnityEngine.Object,bool)
  at UnityEngine.Object.DestroyImmediate (UnityEngine.Object obj) [0x00003] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.SetupPartForRender (Part part, UnityEngine.GameObject partObject) [0x0008b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x00075] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at PartModule.Awake () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) UnityEngine.Object.Internal_InstantiateSingle_Injected(UnityEngine.Object,UnityEngine.Vector3&,UnityEngine.Quaternion&)
  at UnityEngine.Object.Internal_InstantiateSingle (UnityEngine.Object data, UnityEngine.Vector3 pos, UnityEngine.Quaternion rot) [0x00000] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate (UnityEngine.Object original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00022] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate[T] (T original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00001] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x0002f] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at EventData`1[T].Fire (T data) [0x000b0] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at AT_Utils.Utils.UpdateEditorGUI () [0x0000d] in <4b942ae56d7a4f7e8f946260d78d2d68>:0 
  at AT_Utils.ModuleSwitchableTank.OnDestroy () [0x00000] in <d137a3486c9741e2ae627a874f113b08>:0 
  at (wrapper managed-to-native) UnityEngine.Object.DestroyImmediate(UnityEngine.Object,bool)
  at UnityEngine.Object.DestroyImmediate (UnityEngine.Object obj) [0x00003] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.SetupPartForRender (Part part, UnityEngine.GameObject partObject) [0x0008b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x00075] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at PartModule.Awake () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) UnityEngine.Object.Internal_InstantiateSingle_Injected(UnityEngine.Object,UnityEngine.Vector3&,UnityEngine.Quaternion&)
  at UnityEngine.Object.Internal_InstantiateSingle (UnityEngine.Object data, UnityEngine.Vector3 pos, UnityEngine.Quaternion rot) [0x00000] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate (UnityEngine.Object original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00022] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate[T] (T original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00001] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x0002f] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at EventData`1[T].Fire (T data) [0x000b0] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at AT_Utils.Utils.UpdateEditorGUI () [0x0000d] in <4b942ae56d7a4f7e8f946260d78d2d68>:0 
  at AT_Utils.ModuleSwitchableTank.OnDestroy () [0x00000] in <d137a3486c9741e2ae627a874f113b08>:0 
  at (wrapper managed-to-native) UnityEngine.Object.DestroyImmediate(UnityEngine.Object,bool)
  at UnityEngine.Object.DestroyImmediate (UnityEngine.Object obj) [0x00003] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.SetupPartForRender (Part part, UnityEngine.GameObject partObject) [0x0008b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x00075] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at PartModule.Awake () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) UnityEngine.Object.Internal_InstantiateSingle_Injected(UnityEngine.Object,UnityEngine.Vector3&,UnityEngine.Quaternion&)
  at UnityEngine.Object.Internal_InstantiateSingle (UnityEngine.Object data, UnityEngine.Vector3 pos, UnityEngine.Quaternion rot) [0x00000] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate (UnityEngine.Object original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00022] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate[T] (T original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00001] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x0002f] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at EventData`1[T].Fire (T data) [0x000b0] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at AT_Utils.Utils.UpdateEditorGUI () [0x0000d] in <4b942ae56d7a4f7e8f946260d78d2d68>:0 
  at AT_Utils.ModuleSwitchableTank.OnDestroy () [0x00000] in <d137a3486c9741e2ae627a874f113b08>:0 
  at (wrapper managed-to-native) UnityEngine.Object.DestroyImmediate(UnityEngine.Object,bool)
  at UnityEngine.Object.DestroyImmediate (UnityEngine.Object obj) [0x00003] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.SetupPartForRender (Part part, UnityEngine.GameObject partObject) [0x0008b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x00075] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at PartModule.Awake () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) UnityEngine.Object.Internal_InstantiateSingle_Injected(UnityEngine.Object,UnityEngine.Vector3&,UnityEngine.Quaternion&)
  at UnityEngine.Object.Internal_InstantiateSingle (UnityEngine.Object data, UnityEngine.Vector3 pos, UnityEngine.Quaternion rot) [0x00000] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate (UnityEngine.Object original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00022] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate[T] (T original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00001] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x0002f] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at EventData`1[T].Fire (T data) [0x000b0] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at AT_Utils.Utils.UpdateEditorGUI () [0x0000d] in <4b942ae56d7a4f7e8f946260d78d2d68>:0 
  at AT_Utils.ModuleSwitchableTank.OnDestroy () [0x00000] in <d137a3486c9741e2ae627a874f113b08>:0 
  at (wrapper managed-to-native) UnityEngine.Object.DestroyImmediate(UnityEngine.Object,bool)
  at UnityEngine.Object.DestroyImmediate (UnityEngine.Object obj) [0x00003] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.SetupPartForRender (Part part, UnityEngine.GameObject partObject) [0x0008b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x00075] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at PartModule.Awake () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) UnityEngine.Object.Internal_InstantiateSingle_Injected(UnityEngine.Object,UnityEngine.Vector3&,UnityEngine.Quaternion&)
  at UnityEngine.Object.Internal_InstantiateSingle (UnityEngine.Object data, UnityEngine.Vector3 pos, UnityEngine.Quaternion rot) [0x00000] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate (UnityEngine.Object original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00022] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate[T] (T original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00001] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x0002f] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at PartModule.Awake () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) UnityEngine.Object.Internal_InstantiateSingle_Injected(UnityEngine.Object,UnityEngine.Vector3&,UnityEngine.Quaternion&)
  at UnityEngine.Object.Internal_InstantiateSingle (UnityEngine.Object data, UnityEngine.Vector3 pos, UnityEngine.Quaternion rot) [0x00000] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate (UnityEngine.Object original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00022] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate[T] (T original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00001] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x0002f] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at PartModule.Awake () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) UnityEngine.Object.Internal_InstantiateSingle_Injected(UnityEngine.Object,UnityEngine.Vector3&,UnityEngine.Quaternion&)
  at UnityEngine.Object.Internal_InstantiateSingle (UnityEngine.Object data, UnityEngine.Vector3 pos, UnityEngine.Quaternion rot) [0x00000] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate (UnityEngine.Object original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00022] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate[T] (T original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00001] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x0002f] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at PartModule.Awake () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) UnityEngine.Object.Internal_InstantiateSingle_Injected(UnityEngine.Object,UnityEngine.Vector3&,UnityEngine.Quaternion&)
  at UnityEngine.Object.Internal_InstantiateSingle (UnityEngine.Object data, UnityEngine.Vector3 pos, UnityEngine.Quaternion rot) [0x00000] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate (UnityEngine.Object original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00022] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate[T] (T original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00001] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x0002f] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at PartModule.Awake () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) UnityEngine.Object.Internal_InstantiateSingle_Injected(UnityEngine.Object,UnityEngine.Vector3&,UnityEngine.Quaternion&)
  at UnityEngine.Object.Internal_InstantiateSingle (UnityEngine.Object data, UnityEngine.Vector3 pos, UnityEngine.Quaternion rot) [0x00000] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate (UnityEngine.Object original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00022] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate[T] (T original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00001] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x0002f] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at PartModule.Awake () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) UnityEngine.Object.Internal_InstantiateSingle_Injected(UnityEngine.Object,UnityEngine.Vector3&,UnityEngine.Quaternion&)
  at UnityEngine.Object.Internal_InstantiateSingle (UnityEngine.Object data, UnityEngine.Vector3 pos, UnityEngine.Quaternion rot) [0x00000] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate (UnityEngine.Object original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00022] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate[T] (T original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00001] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x0002f] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at PartModule.Awake () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) UnityEngine.Object.Internal_InstantiateSingle_Injected(UnityEngine.Object,UnityEngine.Vector3&,UnityEngine.Quaternion&)
  at UnityEngine.Object.Internal_InstantiateSingle (UnityEngine.Object data, UnityEngine.Vector3 pos, UnityEngine.Quaternion rot) [0x00000] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate (UnityEngine.Object original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00022] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate[T] (T original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00001] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x0002f] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at PartModule.Awake () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) UnityEngine.Object.Internal_InstantiateSingle_Injected(UnityEngine.Object,UnityEngine.Vector3&,UnityEngine.Quaternion&)
  at UnityEngine.Object.Internal_InstantiateSingle (UnityEngine.Object data, UnityEngine.Vector3 pos, UnityEngine.Quaternion rot) [0x00000] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate (UnityEngine.Object original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00022] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate[T] (T original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00001] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x0002f] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at PartModule.Awake () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) UnityEngine.Object.Internal_InstantiateSingle_Injected(UnityEngine.Object,UnityEngine.Vector3&,UnityEngine.Quaternion&)
  at UnityEngine.Object.Internal_InstantiateSingle (UnityEngine.Object data, UnityEngine.Vector3 pos, UnityEngine.Quaternion rot) [0x00000] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate (UnityEngine.Object original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00022] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate[T] (T original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00001] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x0002f] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at StageRecovery.StageRecovery.GetChuteArea (System.Collections.Generic.List`1[T] parts) [0x00304] in <00a5fe2a0b294b44850d589297c7b2d4>:0 
  at StageRecovery.EditorGUI.BreakShipIntoStages () [0x00171] in <00a5fe2a0b294b44850d589297c7b2d4>:0 
  at StageRecovery.EditorGUI.Recalculate () [0x00000] in <00a5fe2a0b294b44850d589297c7b2d4>:0 
  at StageRecovery.StageRecovery.ShipModifiedEvent (ShipConstruct sc) [0x00000] in <00a5fe2a0b294b44850d589297c7b2d4>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at PartModule.Awake () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) UnityEngine.Object.Internal_InstantiateSingle_Injected(UnityEngine.Object,UnityEngine.Vector3&,UnityEngine.Quaternion&)
  at UnityEngine.Object.Internal_InstantiateSingle (UnityEngine.Object data, UnityEngine.Vector3 pos, UnityEngine.Quaternion rot) [0x00000] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate (UnityEngine.Object original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00022] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate[T] (T original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00001] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x0002f] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at StageRecovery.StageRecovery.GetChuteArea (System.Collections.Generic.List`1[T] parts) [0x00304] in <00a5fe2a0b294b44850d589297c7b2d4>:0 
  at StageRecovery.EditorGUI.BreakShipIntoStages () [0x00171] in <00a5fe2a0b294b44850d589297c7b2d4>:0 
  at StageRecovery.EditorGUI.Recalculate () [0x00000] in <00a5fe2a0b294b44850d589297c7b2d4>:0 
  at StageRecovery.StageRecovery.ShipModifiedEvent (ShipConstruct sc) [0x00000] in <00a5fe2a0b294b44850d589297c7b2d4>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at EventData`1[T].Fire (T data) [0x000b0] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at AT_Utils.Utils.UpdateEditorGUI () [0x0000d] in <4b942ae56d7a4f7e8f946260d78d2d68>:0 
  at AT_Utils.ModuleSwitchableTank.OnDestroy () [0x00000] in <d137a3486c9741e2ae627a874f113b08>:0 
  at (wrapper managed-to-native) UnityEngine.Object.DestroyImmediate(UnityEngine.Object,bool)
  at UnityEngine.Object.DestroyImmediate (UnityEngine.Object obj) [0x00003] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.SetupPartForRender (Part part, UnityEngine.GameObject partObject) [0x0008b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x00075] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at PartModule.Awake () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) UnityEngine.Object.Internal_InstantiateSingle_Injected(UnityEngine.Object,UnityEngine.Vector3&,UnityEngine.Quaternion&)
  at UnityEngine.Object.Internal_InstantiateSingle (UnityEngine.Object data, UnityEngine.Vector3 pos, UnityEngine.Quaternion rot) [0x00000] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate (UnityEngine.Object original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00022] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate[T] (T original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00001] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x0002f] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at StageRecovery.StageRecovery.GetChuteArea (System.Collections.Generic.List`1[T] parts) [0x00304] in <00a5fe2a0b294b44850d589297c7b2d4>:0 
  at StageRecovery.EditorGUI.BreakShipIntoStages () [0x00171] in <00a5fe2a0b294b44850d589297c7b2d4>:0 
  at StageRecovery.EditorGUI.Recalculate () [0x00000] in <00a5fe2a0b294b44850d589297c7b2d4>:0 
  at StageRecovery.StageRecovery.ShipModifiedEvent (ShipConstruct sc) [0x00000] in <00a5fe2a0b294b44850d589297c7b2d4>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at PartModule.Awake () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) UnityEngine.Object.Internal_InstantiateSingle_Injected(UnityEngine.Object,UnityEngine.Vector3&,UnityEngine.Quaternion&)
  at UnityEngine.Object.Internal_InstantiateSingle (UnityEngine.Object data, UnityEngine.Vector3 pos, UnityEngine.Quaternion rot) [0x00000] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate (UnityEngine.Object original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00022] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate[T] (T original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00001] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x0002f] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at StageRecovery.StageRecovery.GetChuteArea (System.Collections.Generic.List`1[T] parts) [0x00304] in <00a5fe2a0b294b44850d589297c7b2d4>:0 
  at StageRecovery.EditorGUI.BreakShipIntoStages () [0x00171] in <00a5fe2a0b294b44850d589297c7b2d4>:0 
  at StageRecovery.EditorGUI.Recalculate () [0x00000] in <00a5fe2a0b294b44850d589297c7b2d4>:0 
  at StageRecovery.StageRecovery.ShipModifiedEvent (ShipConstruct sc) [0x00000] in <00a5fe2a0b294b44850d589297c7b2d4>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at PartModule.Awake () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) UnityEngine.Object.Internal_InstantiateSingle_Injected(UnityEngine.Object,UnityEngine.Vector3&,UnityEngine.Quaternion&)
  at UnityEngine.Object.Internal_InstantiateSingle (UnityEngine.Object data, UnityEngine.Vector3 pos, UnityEngine.Quaternion rot) [0x00000] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate (UnityEngine.Object original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00022] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate[T] (T original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00001] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x0002f] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at StageRecovery.StageRecovery.GetChuteArea (System.Collections.Generic.List`1[T] parts) [0x00304] in <00a5fe2a0b294b44850d589297c7b2d4>:0 
  at StageRecovery.EditorGUI.BreakShipIntoStages () [0x00171] in <00a5fe2a0b294b44850d589297c7b2d4>:0 
  at StageRecovery.EditorGUI.Recalculate () [0x00000] in <00a5fe2a0b294b44850d589297c7b2d4>:0 
  at StageRecovery.StageRecovery.ShipModifiedEvent (ShipConstruct sc) [0x00000] in <00a5fe2a0b294b44850d589297c7b2d4>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at PartModule.Awake () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) UnityEngine.Object.Internal_InstantiateSingle_Injected(UnityEngine.Object,UnityEngine.Vector3&,UnityEngine.Quaternion&)
  at UnityEngine.Object.Internal_InstantiateSingle (UnityEngine.Object data, UnityEngine.Vector3 pos, UnityEngine.Quaternion rot) [0x00000] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate (UnityEngine.Object original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00022] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate[T] (T original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00001] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x0002f] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at StageRecovery.StageRecovery.GetChuteArea (System.Collections.Generic.List`1[T] parts) [0x00304] in <00a5fe2a0b294b44850d589297c7b2d4>:0 
  at StageRecovery.EditorGUI.BreakShipIntoStages () [0x00171] in <00a5fe2a0b294b44850d589297c7b2d4>:0 
  at StageRecovery.EditorGUI.Recalculate () [0x00000] in <00a5fe2a0b294b44850d589297c7b2d4>:0 
  at StageRecovery.StageRecovery.ShipModifiedEvent (ShipConstruct sc) [0x00000] in <00a5fe2a0b294b44850d589297c7b2d4>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at EventData`1[T].Fire (T data) [0x000b0] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at AT_Utils.Utils.UpdateEditorGUI () [0x0000d] in <4b942ae56d7a4f7e8f946260d78d2d68>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at EventData`1[T].Fire (T data) [0x000b0] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at AT_Utils.Utils.UpdateEditorGUI () [0x0000d] in <4b942ae56d7a4f7e8f946260d78d2d68>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at PartModule.Awake () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) UnityEngine.Object.Internal_InstantiateSingle_Injected(UnityEngine.Object,UnityEngine.Vector3&,UnityEngine.Quaternion&)
  at UnityEngine.Object.Internal_InstantiateSingle (UnityEngine.Object data, UnityEngine.Vector3 pos, UnityEngine.Quaternion rot) [0x00000] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate (UnityEngine.Object original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00022] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate[T] (T original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00001] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x0002f] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at StageRecovery.StageRecovery.GetChuteArea (System.Collections.Generic.List`1[T] parts) [0x00304] in <00a5fe2a0b294b44850d589297c7b2d4>:0 
  at StageRecovery.EditorGUI.BreakShipIntoStages () [0x00171] in <00a5fe2a0b294b44850d589297c7b2d4>:0 
  at StageRecovery.EditorGUI.Recalculate () [0x00000] in <00a5fe2a0b294b44850d589297c7b2d4>:0 
  at StageRecovery.StageRecovery.ShipModifiedEvent (ShipConstruct sc) [0x00000] in <00a5fe2a0b294b44850d589297c7b2d4>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at PartModule.Awake () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) UnityEngine.Object.Internal_InstantiateSingle_Injected(UnityEngine.Object,UnityEngine.Vector3&,UnityEngine.Quaternion&)
  at UnityEngine.Object.Internal_InstantiateSingle (UnityEngine.Object data, UnityEngine.Vector3 pos, UnityEngine.Quaternion rot) [0x00000] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate (UnityEngine.Object original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00022] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate[T] (T original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00001] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x0002f] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at StageRecovery.StageRecovery.GetChuteArea (System.Collections.Generic.List`1[T] parts) [0x00304] in <00a5fe2a0b294b44850d589297c7b2d4>:0 
  at StageRecovery.EditorGUI.BreakShipIntoStages () [0x00171] in <00a5fe2a0b294b44850d589297c7b2d4>:0 
  at StageRecovery.EditorGUI.Recalculate () [0x00000] in <00a5fe2a0b294b44850d589297c7b2d4>:0 
  at StageRecovery.StageRecovery.ShipModifiedEvent (ShipConstruct sc) [0x00000] in <00a5fe2a0b294b44850d589297c7b2d4>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at EventData`1[T].Fire (T data) [0x000b0] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at AT_Utils.Utils.UpdateEditorGUI () [0x0000d] in <4b942ae56d7a4f7e8f946260d78d2d68>:0 
  at AT_Utils.ModuleSwitchableTank.OnDestroy () [0x00000] in <d137a3486c9741e2ae627a874f113b08>:0 
  at (wrapper managed-to-native) UnityEngine.Object.DestroyImmediate(UnityEngine.Object,bool)
  at UnityEngine.Object.DestroyImmediate (UnityEngine.Object obj) [0x00003] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.SetupPartForRender (Part part, UnityEngine.GameObject partObject) [0x0008b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x00075] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at PartModule.Awake () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) UnityEngine.Object.Internal_InstantiateSingle_Injected(UnityEngine.Object,UnityEngine.Vector3&,UnityEngine.Quaternion&)
  at UnityEngine.Object.Internal_InstantiateSingle (UnityEngine.Object data, UnityEngine.Vector3 pos, UnityEngine.Quaternion rot) [0x00000] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate (UnityEngine.Object original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00022] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate[T] (T original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00001] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x0002f] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at PartModule.Awake () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) UnityEngine.Object.Internal_InstantiateSingle_Injected(UnityEngine.Object,UnityEngine.Vector3&,UnityEngine.Quaternion&)
  at UnityEngine.Object.Internal_InstantiateSingle (UnityEngine.Object data, UnityEngine.Vector3 pos, UnityEngine.Quaternion rot) [0x00000] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate (UnityEngine.Object original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00022] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate[T] (T original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00001] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x0002f] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at PartModule.Awake () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) UnityEngine.Object.Internal_InstantiateSingle_Injected(UnityEngine.Object,UnityEngine.Vector3&,UnityEngine.Quaternion&)
  at UnityEngine.Object.Internal_InstantiateSingle (UnityEngine.Object data, UnityEngine.Vector3 pos, UnityEngine.Quaternion rot) [0x00000] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate (UnityEngine.Object original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00022] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate[T] (T original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00001] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x0002f] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at PartModule.Awake () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) UnityEngine.Object.Internal_InstantiateSingle_Injected(UnityEngine.Object,UnityEngine.Vector3&,UnityEngine.Quaternion&)
  at UnityEngine.Object.Internal_InstantiateSingle (UnityEngine.Object data, UnityEngine.Vector3 pos, UnityEngine.Quaternion rot) [0x00000] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate (UnityEngine.Object original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00022] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate[T] (T original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00001] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x0002f] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at PartModule.Awake () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) UnityEngine.Object.Internal_InstantiateSingle_Injected(UnityEngine.Object,UnityEngine.Vector3&,UnityEngine.Quaternion&)
  at UnityEngine.Object.Internal_InstantiateSingle (UnityEngine.Object data, UnityEngine.Vector3 pos, UnityEngine.Quaternion rot) [0x00000] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate (UnityEngine.Object original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00022] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate[T] (T original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00001] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x0002f] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.Object[] list) [0x0003c] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPDev.GUIUtils.Message`1[T1].Format (T1 arg1) [0x00006] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.KASLinkResourceConnector.LocalizeModule () [0x0004f] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KSPDev.PartUtils.AbstractPartModule.OnAwake () [0x0000c] in <151bcd63dfd64098bd7b07e71e8bdfa9>:0 
  at KAS.AbstractLinkPeer.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkSourcePhysical.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at KAS.KASLinkResourceConnector.OnAwake () [0x00000] in <8bf16353e6714233bf23dc70729dac30>:0 
  at PartModule.Awake () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) UnityEngine.Object.Internal_InstantiateSingle_Injected(UnityEngine.Object,UnityEngine.Vector3&,UnityEngine.Quaternion&)
  at UnityEngine.Object.Internal_InstantiateSingle (UnityEngine.Object data, UnityEngine.Vector3 pos, UnityEngine.Quaternion rot) [0x00000] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate (UnityEngine.Object original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00022] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at UnityEngine.Object.Instantiate[T] (T original, UnityEngine.Vector3 position, UnityEngine.Quaternion rotation) [0x00001] in <5aeafee3fea24f37abd1315553f2cfa6>:0 
  at DragCubeSystem.RenderProceduralDragCube (Part p) [0x0002f] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights_Procedural () [0x00047] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at DragCubeList.SetDragWeights () [0x00040] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper managed-to-native) Lingoona.NativeMethods.useGrammar(string,int,string[],int)
  at Lingoona.Grammar.useGrammar (System.String template, System.Collections.Generic.List`1[T] parameters) [0x00019] in <3d0d080e703d4d619ee9c0b3404ac048>:0 
  at KSP.Localization.Localizer.FormatWithLingoona (System.String template, System.String[] parameterList) [0x00017] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer._Format (System.String template, System.String[] parameterList) [0x00054] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSP.Localization.Localizer.Format (System.String template, System.String[] list) [0x00005] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at KSPUtil.LocalizeNumber (System.Single value, System.String format) [0x00015] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onCostChange (System.Single vCost) [0x00050] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at CostWidget.onShipModified (ShipConstruct ship) [0x0000b] in <9d71e4043e394d78a6cf9193ad011698>:0 
  at (wrapper 

This huge log entry hints that KAS should be involved on the mess (if it's the culprit or the screaming victim, it's yet to be found).

However, I also found this one near:

[EXC 14:10:49.107] NullReferenceException: Object reference not set to an instance of an object
	KAS.AbstractLinkPeer.ShutdownStateMachine () (at <8bf16353e6714233bf23dc70729dac30>:0)
	KAS.KASLinkSourcePhysical.ShutdownStateMachine () (at <8bf16353e6714233bf23dc70729dac30>:0)
	KAS.AbstractLinkPeer.OnDestroy () (at <8bf16353e6714233bf23dc70729dac30>:0)
	UnityEngine.DebugLogHandler:LogException(Exception, Object)
	ModuleManager.UnityLogHandle.InterceptLogHandler:LogException(Exception, Object)
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	AT_Utils.Utils:UpdateEditorGUI()
	AT_Utils.ModuleSwitchableTank:OnDestroy()
	UnityEngine.Object:DestroyImmediate(Object)
	DragCubeSystem:SetupPartForRender(Part, GameObject)
	DragCubeSystem:RenderProceduralDragCube(Part)
	DragCubeList:SetDragWeights_Procedural()
	DragCubeList:SetDragWeights()
	StageRecovery.StageRecovery:GetChuteArea(List`1)
	StageRecovery.EditorGUI:BreakShipIntoStages()
	StageRecovery.EditorGUI:Recalculate()
	StageRecovery.StageRecovery:ShipModifiedEvent(ShipConstruct)
	EventData`1:Fire(ShipConstruct)
	RealChute.ProceduralChute:UpdateScale(Part, RealChuteModule)
	RealChute.ProceduralChute:Update()

Where we get another indirect infinite recursion, but this time ending up with a NRE and not a Stack Overflow. This one appears to implicate StageRecovery too (i.e., KAS and StageRecovery are implicated on this one).

You will need to play Jack the Ripper - remove KAS, try it again. Then put KAS back, remove Stage Recovery, and see what happens. Then publish your findings (with KSP.logs and Player.logs from both attempts when anything weird happens).

Good hunting!

Link to comment
Share on other sites

This thread is quite old. Please consider starting a new thread rather than reviving this one.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...