Repository: RemoteTechnologiesGroup/RemoteTech Branch: develop Commit: 89cfdcffb1f8 Files: 249 Total size: 5.8 MB Directory structure: gitextract_03ocgs3z/ ├── .gitattributes ├── .gitignore ├── CHANGES.md ├── CI/ │ ├── .travis.yml │ ├── build.remotetech.sh │ ├── github.build.deploy.sh │ └── travis.osx.install.deps.sh ├── CONTRIBUTING.md ├── GameData/ │ ├── MM_LICENSE.md │ └── RemoteTech/ │ ├── Default_Settings.cfg │ ├── Localization/ │ │ ├── en-us.cfg │ │ └── zh-cn.cfg │ ├── Parts/ │ │ ├── GigaDish1/ │ │ │ ├── model.mu │ │ │ ├── model000.dds │ │ │ ├── model001.dds │ │ │ ├── model002.dds │ │ │ ├── model003.dds │ │ │ ├── model004.dds │ │ │ ├── model005.dds │ │ │ ├── model006.dds │ │ │ └── part.cfg │ │ ├── GigaDish2/ │ │ │ ├── model.mu │ │ │ ├── model000.dds │ │ │ └── part.cfg │ │ ├── LongAntenna2/ │ │ │ └── part.cfg │ │ ├── LongAntenna3/ │ │ │ ├── model.mu │ │ │ ├── part.cfg │ │ │ └── tex.dds │ │ ├── LongDish1/ │ │ │ ├── model.mu │ │ │ ├── model000.dds │ │ │ └── part.cfg │ │ ├── LongDish2/ │ │ │ ├── newll5.mu │ │ │ ├── newll5000.dds │ │ │ └── part.cfg │ │ ├── ShortAntenna1/ │ │ │ ├── model.mu │ │ │ ├── model000.dds │ │ │ └── part.cfg │ │ ├── ShortDish1/ │ │ │ ├── model.mu │ │ │ ├── model000.dds │ │ │ └── part.cfg │ │ └── ShortDish2/ │ │ ├── newss5.mu │ │ ├── newss5000.dds │ │ └── part.cfg │ ├── RemoteTech.version │ ├── RemoteTech_AIES_Antennas.cfg │ ├── RemoteTech_AIES_Probes.cfg │ ├── RemoteTech_Antennas.cfg │ ├── RemoteTech_B9_Probes.cfg │ ├── RemoteTech_CactEye_Probes.cfg │ ├── RemoteTech_FASA_Antennas.cfg │ ├── RemoteTech_FASA_Probes.cfg │ ├── RemoteTech_HGR.cfg │ ├── RemoteTech_LLL_Antennas.cfg │ ├── RemoteTech_LLL_Probes.cfg │ ├── RemoteTech_MarkIV_System.cfg │ ├── RemoteTech_MechJeb.cfg │ ├── RemoteTech_NearFutureExploration_Antennas.cfg │ ├── RemoteTech_NearFutureExploration_Probes.cfg │ ├── RemoteTech_NearFuture_Probes.cfg │ ├── RemoteTech_NovaPunch_Antennas.cfg │ ├── RemoteTech_NovaPunch_Probes.cfg │ ├── RemoteTech_Procedural_Probes.cfg │ ├── RemoteTech_RLA_Probes.cfg │ ├── RemoteTech_RestockPlus_Antennas.cfg │ ├── RemoteTech_Restock_Antennas.cfg │ ├── RemoteTech_SoundingRockets_Probes.cfg │ ├── RemoteTech_Squad_Antennas.cfg │ ├── RemoteTech_Squad_Deployable_Stations.cfg │ ├── RemoteTech_Squad_Probes.cfg │ ├── RemoteTech_StationPartsExpansion_Probes.cfg │ ├── RemoteTech_Tech_Node.cfg │ ├── RemoteTech_UniversalStorage2_Probes.cfg │ ├── RemoteTech_VDS_Hull_Camera.cfg │ ├── RemoteTech_VensStockRevamp.cfg │ └── Textures/ │ ├── texCone.xcf │ ├── texOmniDish.xcf │ └── texPath.xcf ├── LICENSE.txt ├── README.md ├── appveyor.yml ├── buildscripts/ │ ├── UnityDebug/ │ │ ├── PlayerConnectionConfigFile │ │ └── prepare-debug.bat │ ├── UnityDebug_2019/ │ │ ├── instructions.txt │ │ └── prepare-debug.bat │ └── ZipPack/ │ ├── 7za-License.txt │ └── build-package.bat ├── saves/ │ ├── RemoteTech KSP1_0 Testbed/ │ │ ├── Ships/ │ │ │ ├── SPH/ │ │ │ │ └── Auto-Saved Ship.craft │ │ │ └── VAB/ │ │ │ └── Auto-Saved Ship.craft │ │ └── persistent.sfs │ ├── RemoteTech KSP1_3 Testbed/ │ │ ├── Ships/ │ │ │ └── VAB/ │ │ │ ├── Dish One.craft │ │ │ ├── Dumb Relay.craft │ │ │ ├── GO.craft │ │ │ ├── RC Rocket.craft │ │ │ ├── Smart SAS.craft │ │ │ └── Wide Dish.craft │ │ └── persistent.sfs │ ├── RemoteTech KSP1_4 Testbed/ │ │ ├── Ships/ │ │ │ ├── SPH/ │ │ │ │ ├── Auto-Saved Ship.craft │ │ │ │ └── Car.craft │ │ │ └── VAB/ │ │ │ ├── Auto-Saved Ship.craft │ │ │ ├── Car.craft │ │ │ ├── Dish 75Mm Range.craft │ │ │ ├── Dish Sat.craft │ │ │ ├── Disk 20Mm Range.craft │ │ │ ├── GO.craft │ │ │ ├── Ion Fly.craft │ │ │ ├── Manned Test.craft │ │ │ ├── Omni 5Mm Range.craft │ │ │ ├── Omni Relay.craft │ │ │ ├── RCS Test.craft │ │ │ ├── RSC Test.craft │ │ │ ├── Rocket.craft │ │ │ ├── Stack Test.craft │ │ │ ├── Test.craft │ │ │ └── Untitled Space Craft.craft │ │ └── persistent.sfs │ ├── RemoteTech KSP1_5 Testbed/ │ │ ├── Ships/ │ │ │ ├── SPH/ │ │ │ │ └── Rover.craft │ │ │ └── VAB/ │ │ │ ├── Dish 20Mm Limit.craft │ │ │ ├── Dish 75Mm Limit.craft │ │ │ ├── Dumb Relay.craft │ │ │ ├── Inner Dish.craft │ │ │ ├── Omni 2_5Mm Limit.craft │ │ │ ├── Rocket 2.craft │ │ │ ├── Rocket.craft │ │ │ └── Science Toy.craft │ │ └── persistent.sfs │ └── RemoteTech KSP1_8 Testbed/ │ ├── RemoteTech_Settings.cfg │ ├── Ships/ │ │ ├── SPH/ │ │ │ ├── Rover (Original).craft │ │ │ ├── Rover (Original).loadmeta │ │ │ ├── Rover (RT).craft │ │ │ ├── Rover (RT).loadmeta │ │ │ ├── Rover 2.craft │ │ │ └── Rover 2.loadmeta │ │ └── VAB/ │ │ ├── Dish 20Mm Limit.craft │ │ ├── Dish 20Mm Limit.loadmeta │ │ ├── Dish 75Mm Limit.craft │ │ ├── Dish 75Mm Limit.loadmeta │ │ ├── Dish Gateway M.craft │ │ ├── Dish Gateway M.loadmeta │ │ ├── Dish Gateway.craft │ │ ├── Dish Gateway.loadmeta │ │ ├── Dumb Relay.craft │ │ ├── Dumb Relay.loadmeta │ │ ├── Maneuver Rocket.craft │ │ ├── Maneuver Rocket.loadmeta │ │ ├── Omni 2_5Mm Limit.craft │ │ ├── Omni 2_5Mm Limit.loadmeta │ │ ├── Rover Rocket.craft │ │ ├── Rover Rocket.loadmeta │ │ ├── Science Container.craft │ │ └── Science Container.loadmeta │ ├── persistent.loadmeta │ └── persistent.sfs └── src/ └── RemoteTech/ ├── API/ │ └── API.cs ├── AddOns/ │ ├── KerbalAlarmClockAPI.cs │ └── Kerbalism.cs ├── AntennaManager.cs ├── FlightComputer/ │ ├── Commands/ │ │ ├── AbstractCommand.cs │ │ ├── ActionGroupCommand.cs │ │ ├── AttitudeCommand.cs │ │ ├── AxisGroupCommand.cs │ │ ├── BurnCommand.cs │ │ ├── CancelCommand.cs │ │ ├── DriveCommand.cs │ │ ├── EventCommand.cs │ │ ├── ExternalAPICommand.cs │ │ ├── FlightControlCommand.cs │ │ ├── HibernationCommand.cs │ │ ├── ICommand.cs │ │ ├── ManeuverCommand.cs │ │ ├── PIDCommand.cs │ │ ├── PartActionCommand.cs │ │ ├── PartActionFieldCommand.cs │ │ ├── StockAutopilotCommand.cs │ │ └── TargetCommand.cs │ ├── DelayedCommand.cs │ ├── FlightComputer.cs │ ├── FlightCore.cs │ ├── PIDController.cs │ ├── RoverComputer.cs │ └── UIPartActionMenuPatcher.cs ├── IAntenna.cs ├── ISatellite.cs ├── ISignalProcessor.cs ├── Modules/ │ ├── MissionControlAntenna.cs │ ├── ModuleRTAntenna.cs │ ├── ModuleRTAntennaPassive.cs │ ├── ModuleRTDataTransmitter.cs │ ├── ModuleSPU.cs │ ├── ModuleSPUPassive.cs │ ├── ProtoAntenna.cs │ └── ProtoSignalProcessor.cs ├── NetworkFeedback.cs ├── NetworkManager.cs ├── NetworkPathfinder.cs ├── NetworkRenderer.cs ├── Properties/ │ └── AssemblyInfo.cs ├── RTCore.cs ├── RTDebugUnit.cs ├── RTEditor.cs ├── RTLog.cs ├── RTPartInfoReloader.cs ├── RTSettings.cs ├── RTSpaceCentre.cs ├── RTUtil.cs ├── RangeModel/ │ ├── AbstractRangeModel.cs │ ├── RangeModel.cs │ ├── RangeModelExtensions.cs │ ├── RangeModelRoot.cs │ └── RangeModelStandard.cs ├── RemoteTech.csproj ├── RemoteTech.sln ├── SatelliteManager.cs ├── SimpleTypes/ │ ├── AddOn.cs │ ├── BidirectionalEdge.cs │ ├── BinaryHeap.cs │ ├── CachedField.cs │ ├── ComputerModeMapper.cs │ ├── Dish.cs │ ├── GUITextureButtonFactory.cs │ ├── NetworkLink.cs │ ├── NetworkRoute.cs │ ├── PriorityQueue.cs │ └── TimeStringConverter.cs ├── UI/ │ ├── AbstractWindow.cs │ ├── AntennaFragment.cs │ ├── AntennaWindow.cs │ ├── AntennaWindowStandalone.cs │ ├── AttitudeFragment.cs │ ├── DebugWindow.cs │ ├── FilterOverlay.cs │ ├── FlightComputerWindow.cs │ ├── FlightUIPatcher.cs │ ├── FocusFragment.cs │ ├── FocusOverlay.cs │ ├── IFragment.cs │ ├── ManeuverNodeOverlay.cs │ ├── NetworkCone.cs │ ├── NetworkLine.cs │ ├── OptionWindow.cs │ ├── PIDControllerFragment.cs │ ├── PowerFragment.cs │ ├── QueueFragment.cs │ ├── RoverFragment.cs │ ├── SatelliteFragment.cs │ ├── TargetInfoFragment.cs │ ├── TargetInfoWindow.cs │ └── TimeWarpDecorator.cs ├── VesselExtension.cs └── VesselSatellite.cs ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitattributes ================================================ ############################################################################### # Set default behavior to automatically normalize line endings. ############################################################################### * text=auto *.cfg text eol=crlf *.version text eol=crlf *.txt text eol=crlf ############################################################################### # Set default behavior for command prompt diff. # # This is need for earlier builds of msysgit that does not have it on by # default for csharp files. # Note: This is only used by command line ############################################################################### #*.cs diff=csharp ############################################################################### # Set the merge driver for project and solution files # # Merging from the command prompt will add diff markers to the files if there # are conflicts (Merging from VS is not affected by the settings below, in VS # the diff markers are never inserted). Diff markers may cause the following # file extensions to fail to load in VS. An alternative would be to treat # these files as binary and thus will always conflict and require user # intervention with every merge. To do so, just uncomment the entries below ############################################################################### #*.sln merge=binary #*.csproj merge=binary #*.vbproj merge=binary #*.vcxproj merge=binary #*.vcproj merge=binary #*.dbproj merge=binary #*.fsproj merge=binary #*.lsproj merge=binary #*.wixproj merge=binary #*.modelproj merge=binary #*.sqlproj merge=binary #*.wwaproj merge=binary ############################################################################### # behavior for image files # # image files are treated as binary by default. ############################################################################### #*.jpg binary #*.png binary #*.gif binary ############################################################################### # diff behavior for common document formats # # Convert binary document formats to text before diffing them. This feature # is only available from the command line. Turn it on by uncommenting the # entries below. ############################################################################### #*.doc diff=astextplain #*.DOC diff=astextplain #*.docx diff=astextplain #*.DOCX diff=astextplain #*.dot diff=astextplain #*.DOT diff=astextplain #*.pdf diff=astextplain #*.PDF diff=astextplain #*.rtf diff=astextplain #*.RTF diff=astextplain ================================================ FILE: .gitignore ================================================ ## Ignore Visual Studio temporary files, build results, and ## files generated by popular Visual Studio add-ons. # User-specific files *.suo *.user *.sln.docstates # Build results [Dd]ebug/ [Rr]elease/ x64/ build/ [Bb]in/ [Oo]bj/ # Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets !packages/*/build/ # MSTest test Results [Tt]est[Rr]esult*/ [Bb]uild[Ll]og.* *_i.c *_p.c *.ilk *.meta *.obj *.pch *.pdb *.pgc *.pgd *.rsp *.sbr *.tlb *.tli *.tlh *.tmp *.tmp_proj *.log *.vspscc *.vssscc .builds *.pidb *.log *.scc # Visual Studio 2015 cache/options directory .vs/ # Visual C++ cache files ipch/ *.aps *.ncb *.opensdf *.sdf *.cachefile # Visual Studio profiler *.psess *.vsp *.vspx # Guidance Automation Toolkit *.gpState # ReSharper is a .NET coding add-in _ReSharper*/ *.[Rr]e[Ss]harper # TeamCity is a build add-in _TeamCity* # DotCover is a Code Coverage Tool *.dotCover # NCrunch *.ncrunch* .*crunch*.local.xml # Installshield output folder [Ee]xpress/ # DocProject is a documentation generator add-in DocProject/buildhelp/ DocProject/Help/*.HxT DocProject/Help/*.HxC DocProject/Help/*.hhc DocProject/Help/*.hhk DocProject/Help/*.hhp DocProject/Help/Html2 DocProject/Help/html # Click-Once directory publish/ # Publish Web Output *.Publish.xml # NuGet Packages Directory ## TODO: If you have NuGet Package Restore enabled, uncomment the next line #packages/ # Windows Azure Build Output csx *.build.csdef # Windows Store app package directory AppPackages/ # Others sql/ *.Cache ClientBin/ [Ss]tyle[Cc]op.* ~$* *~ *.dbmdl *.[Pp]ublish.xml *.pfx *.publishsettings # RIA/Silverlight projects Generated_Code/ # Backup & report files from converting an old project file to a newer # Visual Studio version. Backup files are not needed, because we have git ;-) _UpgradeReport_Files/ Backup*/ UpgradeLog*.XML UpgradeLog*.htm # SQL Server files App_Data/*.mdf App_Data/*.ldf #LightSwitch generated files GeneratedArtifacts/ _Pvt_Extensions/ ModelManifest.xml # ========================= # Windows detritus # ========================= # Windows image file caches Thumbs.db ehthumbs.db # Folder config file Desktop.ini # Recycle Bin used on file shares $RECYCLE.BIN/ # Mac desktop service store files .DS_Store # Ignore dependencies and builds src/RemoteTech/*.dll *.zip GameData/RemoteTech/Plugins/RemoteTech.dll GameData/build.txt src/RemoteTech/RemoteTech.sln.ide/ ================================================ FILE: CHANGES.md ================================================ # Version 1.9.12 **Released July 10, 2021** What's New? =========== * Recompiled for KSP 1.12.1 * Fixed the mispositon of the signal delay interface Detailed Changelog ================== Fixed Issues ------------ Pull Requests ------------- *** # Version 1.9.11 **Released June 19, 2021** What's New? =========== * Increase the range of RA-15 antenna from 10 Gm to 20 Gm and decrease the power drain rate from 1.10 to 0.95 to be more comparable with Communotron HG-55 * Increase the range of RA-100 antenna from 100 Gm to 250 Gm to be more comparable with CommTech-1 * Add a new misc option of stopping time wrap upon reconnection * Add support for a new restock-relay-radial-2_v2 antenna (4 HighGain5 antennae stuck together) for RestockPlus KSP 1.11 update Detailed Changelog ================== Fixed Issues ------------ * Issue #827: Balance: Deployable/Relay Antennas [requested by: dbackstr] Pull Requests ------------- * PR #825: RestockPlus antenna name fix KSP 1.11 update [PR by: Wombatlord] *** # Version 1.9.10 **Released January 16, 2021** What's New? =========== * Add support for a renamed part of HG-5 High Gain Antenna * Add support for cargo storage of small RemoteTech antennas * Add new Flight Computer error message on no maneuver node to execute * Add multiple protections against the construction functionality introduced by KSP 1.11 * Add preventative check of the filter UI against non-existent KSP interface components during loading Detailed Changelog ================== Fixed Issues ------------ * Issue #822: stock HG-5 High Gain Antenna renamed [requested by: mcortez] Pull Requests ------------- * PR #824: Duplicate config for HighGainAntenna5 for 1.11 [PR by: doubleplush] *** # Version 1.9.9 **Released December 19, 2020** What's New? =========== * Recompiled for KSP 1.11 * Fixed UI issue of missing signal delay and flight computer button * Added preventative measure for scenario of a vessel/part exiting simulation range * Readded data protection for saved flight computer commands during loading Detailed Changelog ================== Fixed Issues ------------ * Issue #821: Flight UI not visible in KSP 1.11 [requested by: gjulianm] * Issue #820: Order's queue lost when switching vessels (or going SC) [requested by: Jacchus] * Issue #817: Severe disruption in simulation when parts disappear because they go out of simulation range [requested by: Ernesto-Alvarez] Pull Requests ------------- *** # Version 1.9.8 **Released August 1, 2020** What's New? =========== * Recompiled for KSP 1.10.1 * Fixed PID issue of wobbling vessel with very low ratio of torque to mass * Added new Flight Computer command to ignore pitch/heading/roll flight controls Detailed Changelog ================== Fixed Issues ------------ * Issue #759: Request: possibility to only set roll / pitch / heading - not all at once [requested by: Gordon-Dry] Pull Requests ------------- *** # Version 1.9.7 **Released July 20, 2020** What's New? =========== * Compiled for KSP 1.10 * Updated ModuleManager to 4.1.4 * Added support for 2 new probe core parts of KSP 1.10 * Added support for NearFuture Exploration (minimum 1.0.7) * Added support for Universal Storage 2 * Supported pre-targeting of a dish antenna in VAB and SPH Detailed Changelog ================== Fixed Issues ------------ * Issue #257: Request: pre-target antennae in VAB/SPH [requested by: cerebrate] * Issue #725: VAB/SPH dish target allocation (feature request) [requested by: Khormin] * Issue #811: Set Antenna Tracking in VAB [requested by: dimitriye98] Pull Requests ------------- * PR #724: VAB and SPH target button [PR by: drunkeNNN] * PR #815: Support for Universal Storage 2 [PR by: NullSnapshot] *** # Version 1.9.6 **Released February 15, 2020** What's New? =========== * Recompiled for KSP 1.9 Detailed Changelog ================== Fixed Issues ------------ Pull Requests ------------- *** # Version 1.9.5 **Released December 25, 2019** What's New? =========== * Recompiled for KSP 1.8.1 * Updated ModuleManager to 4.1.3 * Fixed issue of wobbling when holding Kill Rotation or Maneuver Node * Fixed issue of signal delay and control indicator not hidden in in-flight action group editor * Fixed issue of ReStocked-ed antennas auto-deploying in Editor * Minor improvements to Rover Computer * Introduced new flight computer interface of in-flight PID controller * Fixed issue of flight computer commands not saved persistently * Fixed issue of part configuration values being duplicated when saving and loading * Localized to en-us and zh-cn languages * Fixed issue of NullReferenceException when moving deployable science stations between 2 inventories * Fixed issue of missing science transmission button and information on antennas Detailed Changelog ================== Fixed Issues ------------ * Issue #797: Missing science transmission options and information on antennae [requested by: mindset-tk] * Issue #798: Antennas auto extend and can't retract [requested by: AndresHdzArv] * Issue #799: Control indicator obscures in-flight action group editor [requested by: BTAxis] * Issue #804: NullReferenceException when carrying deployable probodyne science in EVA [requested by: aidygus] * Issue #805: RTUtil.GetBool causes the values and sub-nodes in ProtoPartModuleSnapshot.moduleValues to duplicate [requested by: allista] * Issue #806: Flight computer command queue gets wiped unexpectedly [requested by: Ernesto-Alvarez] Pull Requests ------------- * PR #802: Localization [PR by: tinygrox] * PR #807: Minor Chinese changes [PR by: tinygrox] *** # Version 1.9.4 **Released October 26, 2019** What's New? =========== * Compiled for KSP 1.8 * Updated ModuleManager to 4.1.0 * Exposed two recent-introduced APIs, GetMaxRangeDistance and GetRangeDistance, in internal debug window Detailed Changelog ================== Fixed Issues ------------ Pull Requests ------------- *** # Version 1.9.3.131 **Released July 21, 2019** What's New? =========== * Recompiled RemoteTech 1.9.3 for KSP 1.3.1 Detailed Changelog ================== Fixed Issues ------------ Pull Requests ------------- *** # Version 1.9.3 **Released July 21, 2019** What's New? =========== * Compiled for KSP 1.7.3 * Applied MissionControlRangeMultiplier to unused Mission Control Dish Antennas * Fixed UpgradeableDish and UpgradeableCosAngle mistake * Minor update for Restock and RestockPlus support * Persistent position of Flight Computer window across play sessions * Improved PID Controller on torque forces * Added support for robotic parts and KSP Custom Axis Groups introduced by Breaking Ground expansion * Added limited support for deployable ground parts (Omni 400km range to control station only) Detailed Changelog ================== Fixed Issues ------------ * Issue #792: Request: Save Flight Computer window position across sessions [requested by: Galenmacil] * Issue #793: add whitelist for ReStock [requested by: Gordon-Dry] * Issue #794: The new KSPAxisGroup controls are not suppported [requested by: ncanceill] Pull Requests ------------- * PR #789: Fix reading values for UpgradeableDish and UpgradeableCosAngle [PR by: ilmat192] * PR #790: Apply MissionControlRangeMultiplier to dish mission control antennas [PR by: ilmat192] *** # Version 1.9.2 **Released April 14, 2019** What's New? =========== * Recompiled for KSP 1.7 * Updated ModuleManager to 4.0.2 * Support for Restock and RestockPlus Antennas * Fixed Editor error of cross-section profiles on RemoteTech antennas Detailed Changelog ================== Fixed Issues ------------ Pull Requests ------------- * PR #788: RestockPlus Antenna Support [PR by: xdreaper15] *** # Version 1.9.1.131 **Released December 24, 2018** What's New? =========== * Recompiled RemoteTech 1.9.1 for KSP 1.3.1 Detailed Changelog ================== Fixed Issues ------------ Pull Requests ------------- *** # Version 1.9.1 **Released December 24, 2018** What's New? =========== * Recompiled for KSP 1.6 * Update ModuleManager to 3.1.1 * Fixed critical bug of Flight Computer executing timed commands wrongly * Fixed syntax error in RemoteTech's MM patch for RLA Probes Detailed Changelog ================== Fixed Issues ------------ * Issue #781: Signal delay timer error when executing timed commands. [requested by: DrToonhattan] Pull Requests ------------- * PR #779: RLA syntax error [PR by: Gordon-Dry] *** # Version 1.9.0.145 **Released October 29, 2018** What's New? =========== * Recompiled RemoteTech 1.9.0 for KSP 1.4.5 Detailed Changelog ================== Fixed Issues ------------ Pull Requests ------------- *** # Version 1.9.0.131 **Released October 29, 2018** What's New? =========== * Recompiled RemoteTech 1.9.0 for KSP 1.3.1 Detailed Changelog ================== Fixed Issues ------------ Pull Requests ------------- *** # Version 1.9.0 **Released October 29, 2018** What's New? =========== * Recompiled for KSP 1.5.1 * Updated ModuleManager to 3.1.0 * Corrected network line direction flipping * Creation or editing of maneuveer nodes allowed for manned vessels in hiberation mode * More precision displaying of antennas' EC costs * Increased maximum range multiplier cap to 10 * Added new 3 API methods - GetMaxRangeDistance, GetRangeDistance and GetControlPath * Updated few APIs against invalid GUIDs and ground stations * Fine-tuned Flight Computer's PID parameters * Added support for the new probe cores (*_v2) * Minor interface changes to Flight Computer's Rover and Power pages Detailed Changelog ================== Fixed Issues ------------ * Issue #540: Network line incorrect rendering [requested by: d4rksh4de] * Issue #711: Signal line points to the wrong direction when vessel is behind the camera (screen) [requested by: zhihengq] * Issue #756: Cannot add/edit maneuver nodes via local control of hibernate is set in flight computer [requested by: MechBFP] Pull Requests ------------- * PR #757: Better precision display of EC when Kerbalism is installed [PR by: PiezPiedPy] * PR #764: Increase maximum multiplier [PR by: madman2003] * PR #766: API - Return float for Distance/MaxDistancer [PR by: HaullyGames] * PR #767: API - GetControlPath return List [PR by: HaullyGames] * PR #768: KSP 1.5 Introduced new probes with "_v2" in the name [PR by: SlipstreamZA] * PR #772: API - Prevent IndexOutOfRangeException when invalid Guid be sent. [PR by: HaullyGames] * PR #774: API - API - Satellites wasn't return the GroundStation names, with NetWork I can get it. [PR by: HaullyGames] *** # Version 1.8.13.131 **Released August 19, 2018** What's New? =========== * Recompiled RemoteTech 1.8.13 for KSP 1.3.1 due to the significant number of players Detailed Changelog ================== Fixed Issues ------------ Pull Requests ------------- *** # Version 1.8.13 **Released August 19, 2018** What's New? =========== * Recompiled for KSP 1.4.5 * Tightened the precision of Flight Computer commands' extra delay * Resolved ambiguous wording of antenna deployment/retraction in Editor * Modernised and streamlined csproj * Switched to KSP's coloruful console message style * New API methods for connections and vessels * Resolved the material error on signal lines Detailed Changelog ================== Fixed Issues ------------ * Issue #661: RT-C tries to execute node too early? [requested by: WildLynxDev] * Issue #693: Error when signal lines are shown in a map or in the tracking station [requested by: jarosm] * Issue #752: Status near PAW buttons is not actually, is what happens when clicked [requested by: Gordon-Dry] Pull Requests ------------- * PR #753: Building with Visual Studio [PR by: PiezPiedPy] * PR #754: API methods primarily to support Kerbalism but can be used by others [PR by: PiezPiedPy] *** # Version 1.8.12 **Released July 17, 2018** What's New? =========== * Recompiled for KSP 1.4.4 * Automatic antenna shutdown and re-activation based on power thresholds (thanks to rsparkyc's AntennaPowerSaver) Detailed Changelog ================== Fixed Issues ------------ * Issue #451: Automatic hibernation when power low [requested by: ec429] Pull Requests ------------- *** # Version 1.8.11.131 **Released June 18, 2018** What's New? =========== * Recompiled RemoteTech 1.8.11 for KSP 1.3.1 due to the significant number of players Detailed Changelog ================== Fixed Issues ------------ Pull Requests ------------- *** # Version 1.8.11 **Released May 18, 2018** What's New? =========== * Recompiled for KSP 1.4.3 * Eliminated the response delay in Part Action Menu buttons & sliders * Fixed the rare bug on symmetry parts' Part Action Menu in Editor * Resolved the inconsistent connectivity on non-loaded vessels Detailed Changelog ================== Fixed Issues ------------ * Issue #748: Tweakable sliders of parts are sluggish in vessels with connected probe cores even with signal delay disabled [requested by: ChippedChap] * Issue #749: PartAction Menu issues [requested by: inkognito1100] Pull Requests ------------- *** # Version 1.8.10.3 **Released April 10, 2018** What's New? =========== * Add modder API for radio blackout on a target RemoteTech vessel Detailed Changelog ================== Fixed Issues ------------ Pull Requests ------------- *** # Version 1.8.10.2 **Released April 06, 2018** What's New? =========== * Recompiled for KSP 1.4.2 * Changes to PID controller on the edge case of very low ratio of Torque to Moment of Inertia Detailed Changelog ================== Fixed Issues ------------ Pull Requests ------------- *** # Version 1.8.10.1 **Released March 18, 2018** What's New? =========== * Hotfix to the botched fix to the zero-throttle bug (#744), affecting stock KSP Detailed Changelog ================== Fixed Issues ------------ Pull Requests ------------- *** # Version 1.8.10 **Released March 18, 2018** What's New? =========== * Compiled for KSP 1.4.1 * Update ModuleManager to 3.0.5 * Upsize RT App icon dimensions * Add a new cheat for line of sight [PR #743] * Delay joystick inputs with signal delay enabled [Issue #742] * Fix zero-throttle bug in presence of Realism Overhaul mod [Issue #744] Detailed Changelog ================== Fixed Issues ------------ * Issue #742: Joystick can bypass Signal delay [requested by: Domi1993] * Issue #744: Zero throttle bug when launching a probe rocket (RO mod) [requested by: multiple posters] Pull Requests ------------- * PR #743: Add cheat option to ignore line-of-sight requirements [PR by: pianojosh] *** # Version 1.8.9 **Released November 11, 2017** What's New? =========== * Functionality of relaying connection signals through a designated probe core (For third-party mods) [Issue #532] * Modernised the PID controller in both orbital and rover modes [Issue #674] * Added two new power commands to hibernate (probe hibernation and antenna shutdown) and wake up [Issue #739] * Added support for VDS Hullcam's probe core [PR #531] * Added support for the drone core of Mark IV Spaceplane System [PR #672] Detailed Changelog ================== Fixed Issues ------------ * Issue #532: Request: Non-Relay ModuleSPU [requested by: NathanKell] * Issue #674: The rover steering and throttle PID's need work [requested by: mferrie] * Issue #739: Feature Request: Resource locking control [requested by: AkiraR] Pull Requests ------------- * PR #531: VDS Hullcam Support [PR by: schnip] * PR #672: RemoteTech Compatibility Patch For Mark IV Spaceplane System [PR by: Sandriell] *** # Version 1.8.8 **Released September 03, 2017** What's New? =========== * Improve the ManeuverNode detection on rising remaining dV * Enable Flight Computer to queue and execute a sequence of maneuver nodes at one go * Fix the issue of Flight Computer deleting wrong maneuver executions [Issue #729] * Add the missing right brace for the FASAMercruyCap2 part in RemoteTech_FAFA_Antennas.cfg [Issue #730] * Fix the issue of a science data transmission ignoring KSP's time wrap [PR #731] * Add the RT support for the Communotron 88-88-V of Vens Stock Revamp [PR #732] * Correct the triggered-flag usage at the end of a data transmission [PR #733] * Fix the issue of engine throttling ignoring the signal delay [Issue #734] * Fix the issue of the power consumption multiplier having no effect [Issue #735] * Fix the issue of Vens Stock Revamp antennas not working [PR #737] * Update ModuleManager DLL to 2.8.1 Detailed Changelog ================== Fixed Issues ------------ * Issue #729: Flight Computer deletes wrong maneuver executions [requested by: Alshain01] * Issue #730: Missing Right Brace in RemoteTech_FASA_Antennas.cfg [requested by: CaesarVincens] * Issue #734: Engine Throttle Control has no Delay [requested by: Domi1993] * Issue #735: Power consumption multiplier setting doesn't change usage [requested by: DrTango] Pull Requests ------------- * PR #731: Better timing for transmitter [PR by: YamoriYuki] * PR #732: Add RemoteTech config for the Communotron 88-88-V from Vens Stock Revamp [PR by: zmpeg] * PR #733: Update to use triggered flag on science data [PR by: DMagic1] * PR #737: Fix Ven's Stock Revamp Antennas [PR by: Fumblesneeze] *** # Version 1.8.7 **Released June 06, 2017** What's New? =========== * RT mod can now be dynamically found [Issue #722] * Expose the clamp limits on omni and dish ranges in the setting cfg * Fix throttle loss when toggling SAS on a probe controlled craft [Issue #723] * Add few improvements in the interaction between Flight Computer and KSP's Autopilot * Update ModuleManager DLL for KSP 1.3 Detailed Changelog ================== Fixed Issues ------------ * Issue #722: Fix issue on RT mod being on different directory in GameData. [requested by: Potato-God1] * Issue #723: Throttle lose when SAS on, on a probe controlled craft [requested by: Eckee] *** # Version 1.8.6 **Released March 05, 2017** This is a hotfix release :bug: What's New? =========== * Fixed a problem when a not found Mission Control station would lead to a massive log spam [Issue #719] Detailed Changelog ================== Fixed Issues ------------ * Issue #719: Spam of "found and load save settings" that reduce performance. [requested b:y GonDragon] *** # Version 1.8.5 **Released March 03, 2017** Kudos to TaxiService and YamoriYuki for their help on maintaining RemoteTech! :heart: What's New? =========== * Fixed a bug where science data wasn't completely transmitted in some circumstances [Issue #714 and PR #715] * Added a new visual filter of displaying all satellites' working connections * Reduced the verbose logging of RT's APIs [Issue #716] * Updated ModuleManager to 2.7.5 version * Fixed a problem where the Mission Control is not on Kerbin when using some Kopernicus maps [Issue #718] * Fixed a problem where commands from stock SAS were not delayed properly [Issue #663] * KSP's autopilot operates properly in presence of big signal delay Detailed Changelog ================== Fixed Issues ------------ * Issue #663: Commands from SAS are not delayed [requested by: dtondo] * Issue #714: Sending whole science amount at the end instead of just a small delta amount. [requested by: rsparkyc] * Issue #716: Logging connection state [requested by: diomeda] * Issue #718: Mission Control Origin Point not Located On Kerbin when using some Kopernicus maps [requested by: mikeloeven] Pull Requests ------------- * PR #715: Sending whole science amount at the end instead of just a small delta amount [PR by: rsparkyc] *** # Version 1.8.4 **Released January 09, 2017** What's New? =========== * Fix conflict for the extend / retract state of an antenna in editor. [#698] * Fix for flight computer keeps pointing to the orbital prograde when targeting a celestial body. [#710] Detailed Changelog ================== Fixed Issues ------------ * Issue #698: Conflict of the extend/retract state of an antenna in editor. [requested by: sviat9440] [dev: YamoriYuki] * Issue #710: Flight Computer on a target-designated celestial body. [requested by: TaxiService ] [dev: TaxiService ] Pull Requests ------------- * PR #679: Config for Ven's Stock Part Revamp Antennas [issuer: icedown] * Status: closed due to duplicate #662. *** # Version 1.8.3 **Released December 10, 2016** What's New? =========== * Add a crew-control variable to SPU module [#558] * Simplified fix for science data transmission [#667] * Clarification of whole default settings [#700] * Please see: http://remotetechnologiesgroup.github.io/RemoteTech/modders/settings/ * Fix to the engineer report's electricity consumption [#707] Detailed Changelog ================== Fixed Issues ------------ * Issue #558: ModuleSPUPassive removes control from probe cores [requested by: Y3mo] * Issue #667: Antennas don't transmit science in 1.1.2 [requested by: Kyoyashi] * Issue #700: Rework Settings storage mechanism [requested by: YamoriYuki] * Issue #707: 1.8.2 Antenna Ec usage not displayed in VAB [requested by: muppet9876] Pull Requests ------------- * PR #709: Rework fix for #667 [PR by: neitsa] Future ====== We are already moving to make the next RT major release. Issues and feedbacks are still welcome! *** #Version 1.8.2 **Released November 27, 2016** What's New? =========== * Switch to MM-patched default-settings configuration instead of static settings file. * Please see: http://remotetechnologiesgroup.github.io/RemoteTech/modders/settings/ * Fixed a problem with contracts (requiring an antenna to be present on a vessel) that couldn't be fulfilled. Detailed Changelog ================== Fixed Issues ------------ * Issue #701: Power and Antenna parts not recognized for contract generation [requested by: symmeclept] * Issue #703: CommNet still disabled despite enabling CommNet in RT settings [requested by: diomedea, KSP-TaxiService] Pull Requests ------------- * None Future ====== We are already moving to make the next RT major release. Issues and feedbacks are still welcome! Next Major Release ------------------ Dubbed RT v2.x * Currently implemented features will stay as is (probably with some tweaks) unless we receive different feedbacks from the community. * We are currently gathering the feedbacks made on the forum and our bugtracker on github to add feature requests to the 2.x branch. Planned features ---------------- * A call to vote will be made soon for features to be implemented in RT 2.0. *** #Version 1.8.1 **Released November 19, 2016** What's New? =========== * Updated for KSP 1.2.1 (should work on KSP 1.2.0) * Removed "Addon controller" support (deprecated addon). [#237] * Flight computer can now issue an Attitude "Off" command after other commands. [#530] * Module fields are now delayed by RT (if delay is enabled). [#587] * See Warning / Known issues * Completely reworked the way RT settings are loaded (added a new option to revert to the default settings). [#624] * Completely revised and beautified the RemoteTech wiki's antenna parts. [#635] * See https://remotetechnologiesgroup.github.io/RemoteTech/guide/parts * USI Karibou Rover support for RemoteTech: many thanks to RoverDude, Vranir and Li0n-0 for making this patch. [#637] * Updated torque calculation in the flight computer. [#643] * Configuration file for station cores from Stockalike Station Parts Expansion. [#656] * Fixed an old bug when science didn't transmit correctly despite UI displaying that 100% was transmitted. [#667; #675] * Now possible to use "Jump to ship" in a KAC alarm set by RT. [#676] * "Aim Camera" advanced tweakable in no more delayed by RT. [#682] * Setting a maneuver node doesn't result in NRE spamming. [#685] * Fixed a problem with RT and dmagic / Universal Storage parts. [#686] * The RT debug window doesn't spam NRE under some circumstances. [#688] * All stock antennas can be used with RT. [#690] * Internal code cleanup. Detailed Changelog ================== Fixed Issues ------------ * Issue #237: Removed "Addon controller" support (deprecated Addon) [request by: Starstrider42] * Issue #530: Inability to switch "mode" to "off" [requested by: rsparkyc] * Issue #587: gimbal and thrust 'tweakables' available in flight with no connection [requested by: gnivler] * Issue #603: Options window not blocking mouse wheel zooming at KSC [requested by: gnivler] * Issue #624: Adding Ground Stations in the config file doesn't work [multiple requests] * Issue #635: Communotron HG-55 is not listed on the RemoteTech wiki [requested by: ttencate] * Issue #637: Karibou radial probe needs SPU [requested by: toric55] * Issue #643: FC is overcompensating or even spinning out with RCS enabled but ports set to ignore rotation [requested by: jdmj] * Issue #667: Antennas don't transmit science in 1.1.2 [requested by: Kyoyashi] * Issue #675: Science often fails to transmit from L-Tech's Skylab [requested by: scatterlogical] * Issue #676: Cannot use the "Jump to ship" in KAC alarms [requested by: petersohn] * Issue #682: Aim camera action delayed [requested by: YamoriYuki] * Issue #685: NRE spamming when setting a maneuver node [requested by: Torih] * Issue #686: NRE Spam with Universal Storage or dmagic parts [requested by: Torih] * Issue #688: GUIClips spam from the debug-tool window at KSC scene [requested by: KSP-TaxiService] * Issue #690: Not all antennas work [requested by: esseivan] Pull Requests ------------- * PR #656: Stockalike Station Parts Expansion support [PR by: Darkenator] * PR #689: Fixed the issue of the GUIClips spam [PR by: KSP-TaxiService] * PR #691: RT config for new stock antennas [PR by: YamoriYuki] * PR #694: Fixed the issue of any changes in RemoteTech_Settings.cfg being ignored [PR by: KSP-TaxiService] * PR #695: Added the mechanism of preventing clicks and scrolling through various RT windows [PR by: KSP-TaxiService] * PR #697: Minor fix to patch for issue #667. [PR by: neitsa] Future ====== We are already moving to make the next RT major release. Issues and feedback are still welcome! Next Major Release ------------------ Dubbed RT v2.x * Current features will stay as is (probably with some tweaks) unless we receive different feedback from the community. * We are currently gathering the feedback made on the forum and our bug tracker on GitHub to add feature requests to the 2.x branch. Planned features ---------------- * More code cleanup: more speed, less garbage collection. * RT will be built on top of CommNet. * RT will be split into multiple packages (with compulsory RT-Core component), so players can choose what they want: - RT-Antennas [Antenna pack: models + configs only; No code] - RT-FlightComputer [Flight computer only] - RT-Delay [Delay feature only] * Complete Flight Computer overhaul * Complete rework of the attitude control * New autopilot (on top of the stock autopilot) * Player can build a queue of commands before transmitting to a vessel (see CommandPlanner section below) * New trigger conditions (altitude, height, speed, etc) for commands * Sub-components are still being discussed (Work in progress!) * ModularCommNetManipulator - APIs for third-party mods to add their codes to manipulate CommNet (eg OnNetworkPreUpdate or OnNetWorkPostUpdate) * TimedCommandManager - backend module to handle a queue of planned/sent commands * CommandPlanner: user interface for command objects 1) schedule commands for a vessel by selecting from a list of vessel's parts and their actions 2) build and edit the queue of commands before sending to the vessel (one delay for multiple commands) 3) replace the existing queue with new queue transmitted 4) attach an optional trigger condition to each command like extend landing gears only when terrain-altitude=10m 5) timed and trigger (passive) commands * FlightComputer - allow player to instruct a vessel over a working connection (same but enhanced functionality) 1) allow player to precisely control vessel's attitude in real time by clicking NODE/TARGET/NORMAL buttons etc 2) strictly closed platform with a public APIs for internal RT calls and third-party mods to prevent an eventual scenario of FC being wired undesirably to everything in RT 3) contain a queue of commands uploaded to read and execute accordingly (not editable?) * DelayManager - calculate information about signal delay between a vessel and KSC or another vessel * ModuleRTDeployableAntenna - subclass of KSP's ModuleDeployableAntenna module to add EC cost for active (stock and RT) antennas * A new module: * RT-Viz [Antenna range visualization, satellite groups, sorting, etc.] * An interface for the module's functions is yet to be determined. Add to the RT 4-button bar or as a launcher button? Warning / Known issues ====================== * CommNet is disabled by default if RemoteTech is enabled. - CommNet can still be enabled alongside RemoteTech in the RT option window but this has not been tested. * A word about module fields: * There's a known problem with some module (PartModule) fields. - Quick problem overview: - When in flight if you right click a part it opens a context menu to change some part behaviors (technically fields or events in the part PartModule) for that part. The visual display of the change is also delayed, so players don't get a visual cue of what's happening directly and this might seem strange to have no visual feedback for the action that was requested. - Example: sliding a slider on the contextual menu of a part with a big delay will not move the slider although the slide is actually taken care of internally by RT (the sliding action will be visible *once* the command delay is over). - Technical explanation: - If RT delay is ON, getting a visual cue on the change is not possible directly as setting the value to be visible in the context menu will actually, set that value (immediately, without delay) thus defeating the purpose of the RT delay feature. Our current implementation takes care if the internal change but can't update the visual elements. - Fix: We might be able to make something better, but only after the complete overhaul in RT 2.x branch. Workarounds: - Sliders: If you want to set a slider value on a part (in Flight), the best you can do is to click on the desired location on the slider rather than sliding it (i.e. clicking in the middle of the slider will set it to 50%: you won't see the change immediately if the delay is big enough, just wait for the delay to expire.). You can still slide the slider, but it will set a massive amount of commands in the flight computer. - Cycle buttons (buttons that cycle though at least 3 options): Cycle buttons are delayed properly but the text on the context menu doesn't change. Close the menu and reopen it (after RT command has been executed) to see the change. *** Version 1.8.0 ============= Released October 15, 2016 KSP 1.2 update What's New? =========== * Ported the RemoteTech code base to KSP 1.2. [#678] * Updated ModuleManager to the lastest 2.7.1 version (Nyan Cat ftw!). * Prevent parsing objects that have no chance (Asteroid, Unknown objects and flags) of being RT controlled. * Add and option to enable / disable CommNet alongside RemoteTech. * Moved all RT antennas to the new Communication category in VAB / SPH. * Added RemoteTech RLA config file. [#469] * Antenna info in VAB /SPH indicate "range" or "power" depending on the chosen RangeModel ("range" is technically wrong when in Root model). [#471] * Fixed an issue when the "RTAntennaTarget" field was empty in a save file. [#506] * Exception bubbling up from KSP or other mods are now caught in RT when staging. [#525] * Flight Computer window is now closed when switching to another vessel or leaving the flight scene.[#578] * Added a new API to change the range of ground stations. [#589] * Antenna range multiplier option slider is no longer snapped to 0 or 1. [#594] * Antenna range multiplier has now a maximum value of 5 (previously 2). * "World Scale" option sliders are now using 2 decimal places instead of 6. [#601] * Added a new option slider: range multiplier for ground stations / mission control. [#602] * Fixed a NRE spamming issue while transmitting science. [#613] * Fixed various issues with the connection indicator and various UI scales. [#618 & #668] * Kerbals can now transfer themselves even if there's no connection and they are not in a command module (this also bypass any signal delay). [#626] * Fixed an issue when a craft with an uncrewed ModuleCommand but with a ModuleSPU was deemed non controllable. [#628] * Flight Computer can be switched to "Off" instead of "KillRot" after maneuver execution or abort (configurable through settings file). [#631] * Added a new "LeadTime" field (in settings fileà to control how much time attitude control is queued ahead of the maneuver (default 3 minutes like the previous hardocded value). [#631] * Command Stations can now control themselves (if properly crewed and with the right SPU module) even if there's no one in a command module. [#633] * Fixed various problems with the github readme and the user manual. [#669, #670, #680] * Added current vessel name to flight computer (when UI is deployed). [#673] Detailed Changelog ================== Fixed Issues ------------ * Issue #469: Updated RLA config. Work made by kitoma [requested by: @marosciacchitano] * Issue #471: Handling GetInfo()'s "range" display when in rangemodel Root [reported by: @NathanKell] * Issue #506: Blank RTAntennaTarget, Exception stopping the registrations. [reported by: @OzoneGrif] * Issue #525: Missing parts in staging cause NRE spam, lock staging. [reported by: @NathanKell] * Issue #578: Flight Computer doesn't close when going back to Space center view. [requested by: @d4rksh4de & @petersohn (in #673)] * Issue #589: API - Changing range of GroundStations [requested by: @AlphaAsh] * Issue #594: MultipleAntennaMultiplier is snapped to 0 or 1. [reported by: @WazWaz] * Issue #601: World Scale sliders under options are too granular. [reported by: @gnivler] * Issue #602: Mission Control not affected by Range Multiplier option. [requested by: @gnivler] * Issue #613: NRE Spamming when transmitting science (RT + other mods) [reported by: @lamont-granquist] * Issue #618: The connection indicator does not scale properly. [reported by: @tomekpiotrowski] * Issue #626: "Transfer crew" button in context popup menu should be always available. [reported by: @mscg82] * Issue #628: ModuleSPU on a crewed-command part with no crew = no control [reported by: @NathanKell] * Issue #633: Command Station has no local control. [reported by: @FancyMouse] * Issue #668: UI Scale Not Configurable. [reported by: @evan2645] * Issue #669: Player's Guide contains dead link to Advanced Settings [reported by: @HupfderFloh; PR #670 by @ahmedcharles] * Issue #673: Add vessel name to flight computer. [requested by: @krenshala] Pull Requests ------------- * PR #631: Various FlightComputer improvements [PR by: @gnivler] * PR #670: Fix issue #669 (broken links on user manual) [PR by: @ahmedcharles] * PR #678: Port RT base code to KSP 1.2 [PR by: @neitsa] * PR #680: Various Readme.md updates [PR by: @keyspace] Warning ======= * CommNet is disabled by default if RemoteTech is enabled. - CommNet can still be enabled alongside RemoteTech in the RT option window but this has not been tested. * If you enable CommNet, consider using 2 types of satellites: - Satellites with only RT antennas. - Satellites with only CommNet antennas. - Do not try to mix both: we won't fix these problems with *this* version of RemoteTech. Version 1.7.1 ======================================== Released July 2, 2016 KSP 1.1.3 update General -------------------- - Updated to work with KSP 1.1.3 - Updated ModuleManager - Fixed tracking station dish button - Support for Procedural Probe Cores - Wording/typo fixes Version 1.7.0 ======================================== Released May 6, 2016 KSP 1.1.2 update **NOTE:** Most of the features and bug fixes that are included in this release were implemented by Dennis (Peppie23) last year, before he left the project. General -------------------- - The RemoteTech_Settings.cfg will now be saved under the save game folder - Added an OptionWindow - Added an AppLauncher Button on the SpaceCenter to open the OptionWindow - Added disable/enable option for RemoteTech - RemoteTech is now disabled for training missions - Remote station dots can now be colored via the settings file (also with the OptionWindow) - We replaced the label "Energy req." with "ElectricCharge" for the part info on the editor, to be more stock like - Added more colors to the editor part infos (more stock like) - Add ManeuverCommands from Node. You can now add more than one maneuver to the flightcomputer directly from the node. Right click the node an click the FC+/FC- Button - Merged RemoteTechXF you will find the option to toggle on the Cheat-Tab in the option window - Presets added to the Option window - The mission control dot on the map view will now be invisible on a defined distance to the camera. See `DistanceToHideGroundStations` on the settings file. This feature can be toggled by the value `HideGroundStationsOnDistance` in the option window. - I've added a mouse over info box for each mission control dot on the map view. This feature can be toggled by the value `ShowMouseOverInfoGroundStations` in the option window. - The default mission control ground station has now three tech level on a career game for the omni antenna. The ranges are: 4Mm, 30Mm and 75Mm - ManeuverCommands and BurnCommands will now insert an alarm into KerbalAlarmClock. - ManeuverCommands will now automatically insert a HoldManeuver Command - Added a new option to activate/deactivate the auto insert to KerbalAlarmClock - Implemented a new PID controller to solve some of the steering issues - Deployed antennas will now survive Hyperedit orbit changes - Sounding Rockets inline probe will now contain a signal processor - Near Future Construction Truss Octo Drone will now contain a signal processor - FASA Mercury Antenna Cap will now be a RemoteTech antenna Modders -------------------- - Added a new API Method to check whether RemoteTech is enabled or not `bool IsRemoteTechEnabled()` - Added a new API Method to check an individual antenna for connection `bool AntennaHasConnection(Part part)` (thx to tomekpiotrowski) - Added a new API Method to get the target from an antenna `Guid GetAntennaTarget(Part part)` (thx to tomekpiotrowski) - Added a new API Method to switch the antennas target `void SetAntennaTarget(Part part, Guid id)` (thx to tomekpiotrowski) - Added a new API Method to receive all ground stations `IEnumerable GetGroundStations()` (thx to tomekpiotrowski) - Added a new API Method to receive a guid from a ground stations name `Guid GetGroundStationGuid(String name)` (thx to tomekpiotrowski) - Added a new API Method to get the guid from a celestial body `Guid GetCelestialBodyGuid(CelestialBody celestialBody)` (thx to tomekpiotrowski) - Added a new API Method to get the NoTarget guid `Guid GetNoTargetGuid()` (thx to tomekpiotrowski) - Added a new API Method to get the ActiveVessel guid `Guid GetActiveVesselGuid()` (thx to tomekpiotrowski) - You can now add the value `IsNonRetractable = boolean` to the ModuleRTAntenna section on the part.cfg - You can now configure a dish antenna to mission control. All mission control dishes are only pointed to the Active Vessel (thx to jdmj) - Ground station antennas can now use the tech level of the tracking station. I've added three new values to the antenna node for a station. Use `UpgradeableOmni`, `UpgradeableDish` and `UpgradeableCosAngle` with a semicolon seperated list of ranges. Example: 4E+06;3.0E+07;7.5E+07 Bugfixes -------------------- - RSS/RO/RP-0 Player will no longer see a required ElectricCharge of 0.00/s for the longAntenna on the editor part info. It's now defined as minutes (~0.09/min) - Fixed an issue where the TechPerk is already available only if i researched the node but without purchasing the TechPerk-Part it self and the editor part info will no longer show the TechPerk right from the beginning Version 1.6.11 ======================================== Released April 13, 2016 General -------------------- - Fix RT build process - invalid .zip contained some extra files and caused bugs Version 1.6.10 ======================================== Released April 12, 2016 General -------------------- - KSP 1.1.0 update - Science transmission fixed Version 1.6.9 ======================================== Released November 10, 2015 General -------------------- - KSP 1.0.5 update - Small kOS update for invoking events Version 1.6.8 ======================================== Released September 12, 2015 General -------------------- - Added a new value to RTSettings to keep the throttle on connection loose (ThrottleZeroOnNoConnection=True or False) - Clean up vessel target handling (thx to geoffromer) - Added Asteroid Day antennas (thx to phroggster) - Added NovaPunch antennas (thx to blnk2007) Version 1.6.7 ======================================== Released June 25, 2015 Bug fixes -------------------- - Fixed a problem for transmitting science data in combination with ScienceAlert General -------------------- - KSP 1.0.4 update Version 1.6.6 ======================================== Released June 21, 2015 Bug fixes -------------------- - Fixed an exception-Spamming for `HideGroundStationsBehindBody = true` with RSS - Fixed the animation for Fasa's Explorer probe General -------------------- - Added CactEye probes (thx xZise) - Added SignalProcessor to Fasa's Pioneer probe Version 1.6.5 ======================================== Released May 18, 2015 Bug fixes -------------------- - We've fixed an issue while loading a saved maneuver command - We've fixed an issue while loading a saved cancel command - Queued commands will now sorted correctly - The flight computer will no longer goes crazy if a queued BaseEvent throws an exception - We've fixed the SoundingRockets config file - Satellite/Stations will now properly re-registered as a satellite after unloading (>2.5km distance) General -------------------- - Textures are now converted to DDS (thx @InsanePlumber) - We'll no longer throttling back the timewarp if you are on phys.warp - We'll no longer fix the "roll" position for maneuver, orbit und surface commands Version 1.6.4 ======================================== Released May 07, 2015 - KSP 1.0 compatibility Flightcomputer -------------------- - The +/- Buttons on the pitch/head and roll fields are now trigger buttons. You can now hold the mouse button to increase/decrease the value - You can now use the mousewheel over the pitch/head and roll input fields to increase/decrease the value General -------------------- - Added configs for Sounding Rockets - A bunch of cleanup - Modulemanager update to v2.6.3 - We'll now support [ControlLock-Addon](http://forum.kerbalspaceprogram.com/threads/108561-0-90-%28Apr12-15%29-Control-Lock-Input-text-into-text-fields-without-issuing-commands-to-your-vessel) created by Diazo - Added the LLLMicrochip to the LLL_Probes.cfg - Maneuver burns are now 100% precise by decreasing the throttle at the end of the burn Modders -------------------- - Modders can now add their own commands directly to the flightcomputer queue (experimental) For more infos please see this [thread](https://github.com/RemoteTechnologiesGroup/RemoteTech/issues/233) - We added a new method `HasLocalControl(GUID): bool` to check the vessel is local controlled or not Bugfixes -------------------- - We fixed the double definition of LLLCommPole2 on the LLL_Antennas.cfg - We fixed inaccurate maneuver burns with monoprop engines Version 1.6.3 ======================================== Released February 06, 2015 Bug Fixes: -------------------- - We've fixed an old issue where unloading a vessel can cause a log spamming with KeyNotFoundException - We'll now log the current RemoteTech FileVersion to the ksp.log - Stations will now properly re-registered as a station after unloading - Stations will now properly registered as a station even if the first part is not the Remote Guidance Unit - Fix for loading a saved RemoteTech EventCommand like 'activate antenna' Version 1.6.2 ======================================== Released January 24, 2015 Bug Fixes: -------------------- - Fixed an issue that can cause the KSP UI to be not clickable anymore after docking (thx DaveTSG for reporting) - Fixed an issue that can cause the flight computer to crash into a small gray dot while loading a saved EventCommand (thx Synighte for reporting) - Fix for saving/loading a ManeuverCommand - Reverted a change of the AssemblyVersion from 1.6.1 to 1.6.0 to prevent issues with other mods that use our API (thx jrossignol) - We fixed an old issue where KSP can freeze by zero cost links between two satellites Version 1.6.1 ======================================== Released January 19, 2015 Bug Fixes: -------------------- * Fix for the calculation of the manual delay after switching to the vessel with saved commands * The disappeared satellite switcher on the map view (middle right) will now displayed correctly * The attitude action-buttons now shows you the current flight mode * Fix for the stopped timer of commands after a maneuver command Version 1.6.0 ======================================== Released January 11, 2015 Features: -------------------- ##Flightcomputer: * Save/Restore Flightcomputer values and queued commands. * Added a new button to every queued command to set the manual delay right after the queued one. * Added a new button to the manual delay field to set the manual delay. * The altitude buttons are no longer toggle buttons. To deactivate the current mode please use the small 'X' on the queue-window by the activated command. ##General: * Added a mouse over tooltip to the antenna target window to show distance, status to the target * Added configs for AIES, Lack Luster Labs, Near-Future Spacecraft, and NovaPunch * Possibility to hide ground stations with the new property `HideGroundStationsBehindBody` * Hide RemoteTech windows,overlays and buttons when the GUI is hidden * Window positions for Flightcomputer and AntennaWindow will now be saved for the current ksp instance ##Contributors: * We removed the dependency to the task extensions ##Modders: **Info** We refactored the namespace definitions of RemoteTech. The API class is no longer on the `RemoteTech` namespace. Please use `RemoteTech.API` for now. * RTSettings now reads settings from the GameDatabase to tweak settings for specific mods * Possibility to tint groundstations with the property `MarkColor` `Syntax is R,G,B,A` Bug Fixes: -------------------- * Dishes will now attempt to connect to all targets within their field of view * Cones will now displayed for any target * Fixed the thrust calculation for flamed out engines * Some refactoring and small fixes Version 1.5.2 ======================================== Released December 21, 2014 Bug Fixes: -------------------- * Compatible with KSP 0.90. * Flight computer now holds the orientation to non-root target part * Some minor bugfixes Version 1.5.1 ======================================== Released October 9, 2014 **WARNING:** the 1.5 release changes the mod's folder and DLL names from `RemoteTech2` to `RemoteTech`. If you are upgrading from 1.4, you must delete the old `RemoteTech2` directory before installing this version. We take **NO RESPONSIBILITY** for any bugs that may happen from having both `RemoteTech` and `RemoteTech2` in your `GameData` folder. Bug Fixes: -------------------- * Can now read settings files from RemoteTech 1.4 or earlier. * Map view will no longer crash when centering on different vessels. * FASA antennas won't crash when transmitting science. * FASA launch clamps now provide a communications line, just like stock clamps. * Flight computer now uses Kerbin or Earth days, as appropriate. * Tech tree node for integrated omni antenna now displays correctly. Version 1.5.0 ======================================== Released October 7, 2014 **WARNING:** this release changes the mod's folder and DLL names from `RemoteTech2` to `RemoteTech`. You must delete the old `RemoteTech2` directory before installing this version. We take **NO RESPONSIBILITY** for any bugs that may happen from having both `RemoteTech` and `RemoteTech2` in your `GameData` folder. Features: -------------------- * Compatible with KSP 0.25. * The mod has officially been renamed from RemoteTech 2 to RemoteTech. Ignore the warning above at your own peril. * Vessel lists in antenna targeting window and in map view can now be customized using the map view filters (thanks to monstah for the suggestion!) * If you use FAR or NEAR, you can now protect antennas from breaking by putting them inside a fairing. * The number of crew needed to both operate a command station and fly a ship can now be configured on a part-by-part basis. * B9 and FASA parts now officially supported. * The 3 km omni upgrade to probe cores now appears in the tech tree. * Module Manager patches now support MM2 features, including `:BEFORE`, `:FOR`, and `:AFTER` patch ordering. * Updated KSP-AVC support, including more flexible KSP version requirements. Can now use KSP-AVC to download release notes in-game. Rule Changes: -------------------- * Flight computer clocks will keep running even if the vessel runs out of power (though you still need power to actually *do* anything). This is a workaround for a KSP bug that causes energy consumption to be overestimated at maximum time warp. Bug Fixes: -------------------- * Icons in map view easier to understand. * Research will now be completely transmitted in 64-bit KSP. * Pointing a dish at Mission Control from a fresh RemoteTech install will no longer corrupt saves. * Ships will no longer have signal delay many times larger than they should. * Flight computer will now take engine gimbaling into account when slewing. * KSP should no longer crash when running the flight computer on a ship with no rotation torque. * RemoteTech modules will no longer be added twice to the same part. * If a ship is loaded while out of contact and uncontrollable, you will no longer be able to toggle controls or action groups. * RemoteTech config files will no longer appear to be on one line when opened in a text editor that only recognizes Windows line endings. * Nonstandard RemoteTech installations will no longer cause missing (a.k.a. "pink") textures. Version 1.4.1 ======================================== Released August 28, 2014 Features: -------------------- * Compatible with KSP 0.24. Some part costs have changed. Bug Fixes: -------------------- * Flight computer now slews much more accurately and efficiently. * Flight computer will now take RCS thrust into account when slewing. * Signal delay window is now sized properly for all Flight GUI settings. * Ships can now be renamed from the right-click menu at any time. Note that they can still be renamed from the tracking station. * Reverted 1.4.0 fix for electric charge consumption at higher time-warp factors (fix was causing electricity use to be underestimated). * Fixed conflicts with mods that depend on RemoteTech. * Reduced logging should cause less lag. Version 1.4.0 ======================================== Released June 16, 2014 Features: -------------------- * KSP-AVC Support * EXEC commands are now executed at the correct time in advance of the maneuver node (accounts for signal delay and vessel acceleration) * Added logging to API - useful for developers of mods that wish to interact with RT - requires `VERBOSE_DEBUG_LOG = True` in `settings.cfg` Bug Fixes: -------------------- * Fixed display of execution delay for simple commands such as running experiments * **Significantly reduced** occurrences of the dreaded 'vessel duplication' bug * Fixed display of the Flight Computer icon below the time-warp/clock display in the upper-left of the screen * Fixed electric charge consumption at higher time-warp factors * Prevented flight computer from crashing when scheduling a Maneuver Node Execution ('EXEC') command when no engines are active * Fixed orientation when orienting in Target ('TGT') reference frame * Fixed calculation of burn time for EXEC commands when engine thrust limit is less than 100% * Fixed calculation of burn time for EXEC commands when using ModuleEnginesFX parts (eg. NASA 'Kerbodyne' engines) Version 1.3.3 ======================================== Released December 26, 2013 * 0.23 compatible; * Switch vessel focus on the map view, allowing easy editing of targets; * Flight Computer rewrite; * Some UI elements were rewritten; * Node Execution; * Tweaks, bug fixes; Version 1.2.7 ======================================== * Tweaked per-frame load-balancing and fixed a divide-by-zero; * ModuleManager 1.5 by Sarbian. **Please delete the old one;** * Static class serving as API for future kOS integration; * Fixed bug in TimeWarp throttling. Version 1.2.6 ======================================== * Fixed settings file not auto-generating; * Fixed collection modified exception; * Possibly fixed throttle jitter again?; * Fixed Target/Maneuver in Flight Computer; * Disable SAS when Flight Computer is on; * Tweaked time warp throttling when commands are approaching. Version 1.2.1 ======================================== * Removed kOS integration. Version 1.2.0 ======================================== * Fixed (probably) the bug that humiliated me in one of Scott Manley's videos; * Flight Computer and kOS integration! (details below); Requires patched dll for now! * Fixed Delta-V burns; Cilph can't do basic vector math late at night; * "N/A" on TimeQuadrant when no SPU is available; "Connected" when signal delay is disabled; * Allow docking node targeting when the other vessel is disconnected; * Halved antenna power consumption; * Signal Delay is now on by default; * Quick hack to not cache lines/cones that are disabled to increase performance for some; * Possible fix for long range planet targeting being twitchy; * Two new dish parts by Kommit! The KR-7 and KR-14 replace the SS-5 and LL-5 respectively. The old parts will be deprecated but still included so as not to break existing crafts; * Settings File is now properly created on load. ###kOS integration: * All immediate mode actions now require signal delay to pass; * Steering locks now work when the vessel is disconnected; * Action groups no longer trigger when kOS has them blocked; * "BATCH" and "DEPLOY" commands to send a list of commands as one packet; * ~~Requires patched kOS DLL until I merge the changes. Download here.~~ ###Flight Computer: * Works pretty much like MechJeb's SmartASS; * Use "Enter" to confirm changes in most text fields; * Duration format: "12h34m45s" or "12345" for plain seconds; * Delta-V burn format: "1234m/s"; * Cancel commands by clicking on the X in the queue, sends signal ASAP, but delay still applies. * Use the queue to view any delayed command; even right-click menu events. Version 1.1.0 ======================================== * Added a settings file; auto-generates ~~once the plugin loads.~~ once forced to save by editing the map filter. * Filter in map view now properly saves. * Tracking Station should now save changes made to dishes. * Fixed NPE in editor due to recent ModuleSPUPassive changes * ModuleRTAntennaPassive now correctly works when unloaded * Dishes can now target the active vessel. * Promised Flight Computer NOT enabled yet. The new Squad SAS is too unstable for auto-piloting. * Signal Delay can be enabled in settings file. Good luck without that flight computer. Version 1.0.7 ======================================== * Fixed NPE when antennas did not have satellites during rendering. * ModuleSPUPassive now provides unloaded routing if the craft was controllable as a whole. Might have lead to unintentional bugs. (vardicd) Version 1.0.6 ======================================== * Fixed science transmissions not sending all of the data. (Kethevin) Version 1.0.5 ======================================== * Fix MechJeb fighting over throttle. * Added ModuleSPU to radial MechJeb AR202 casing. This kills functionality if connection is lost. * Fix queuing for science transmissions. (Ralathon) * Added a ScreenMessage if your partmenu events are blocked due to signal loss. Version 1.0 ======================================== * Initial release! ================================================ FILE: CI/.travis.yml ================================================ language: objective-c # force osx machines os: - osx env: global: - secure: OYC9Mq33uGyJTp/yb9IzXDzYRXuO2M29uXTpRYGJgfWlZaas73hVX1O4LBjHAdXXxPvo53XtGzA/1j5dP/PPRJqddowx0yxSIsUVXIRNNiWLXg2yN88qNn0GuiFwK3a1YRVFPQ9MjjFXvLB96TzNRJJBZW+gQvHKwI9g5cYtYvk= - secure: J/M1/WIRgP4GssMr9HS9k7Wr9XUqlo0S+olIVWvr8eY8jxxVbx+ONZbkkjKey2BvC1BRVtRXpbBe+YcPLYe7V1jG5mmm3Lc1B/x5WC54q4KKfoV53m+ARAtaHFYrJY2h4O+GLaysQoCwCG/tAt0GhJmgJgy9IojH4ojJjDOGHCE= notifications: slack: remotetech:UMyObqwkLCHGWqwBQ6ZVznxF before_install: - date -u - uname -a - export BUILDTAG=`git describe --abbrev=0 --tags` - env | sort | grep -v ZIPPASSWORD | grep -v GITHUB_TOKEN install: - if [ "${TRAVIS_OS_NAME}" = "linux" ]; then echo "Should only be on OSX"; exit 1; fi - ./CI/travis.osx.install.deps.sh # it appears TRAVIS_OS_NAME is unset often, assume we're OSX if not linux script: - ./build.remotetech.sh # Custom deploy after_success: - ./CI/github.build.deploy.sh ================================================ FILE: CI/build.remotetech.sh ================================================ #!/bin/bash SRCDIR=src/RemoteTech if [ ! -f "$SRCDIR/Assembly-CSharp-firstpass.dll" ] \ || [ ! -f "$SRCDIR/Assembly-CSharp.dll" ] \ || [ ! -f "$SRCDIR/UnityEngine.UI.dll" ] \ || [ ! -f "$SRCDIR/UnityEngine.dll" ]; then if [ "$TRAVIS_SECURE_ENV_VARS" = "false" ]; then # this should only happen for pull requests echo "Unable to build as the env vars have not been set. Can't decrypt the zip." exit 1; # can't decide if this should error fi if [[ ! -f dlls.zip ]]; then echo "Need to get dependency .dll's" wget -O dlls.zip "https://docs.google.com/uc?authuser=0&id=0B4Q6xg6PGh9vZ2RHNTh0ajFVbUE&export=download" fi if [ -z "$ZIPPASSWORD" ]; then if [ "$TRAVIS" = "true" ]; then echo "Password not set, on travis and DLL's missing, can't build"; exit 1; else echo "Password required to decrypt the zip"; unzip dlls.zip -d src/RemoteTech/ # this will prompt for a password fi else unzip -P "$ZIPPASSWORD" dlls.zip -d src/RemoteTech/ fi rm -f dlls.zip fi cd src/RemoteTech && xbuild /p:Configuration=Release ================================================ FILE: CI/github.build.deploy.sh ================================================ #!/bin/bash # These should be set by Travis #TRAVIS_BUILD_NUMBER=1 #TRAVIS_BRANCH=master #TRAVIS_REPO_SLUG="RemoteTechnologiesGroup/RemoteTech" #TRAVIS_COMMIT=master #GITHUB_TOKEN="Personal access token from https://github.com/settings/applications" #TRAVIS_PULL_REQUEST=false VERSION="build-${TRAVIS_BRANCH}-${TRAVIS_BUILD_NUMBER}" FILENAME=$(echo "${VERSION}.zip" | tr '/' '_') # else it will fail on branches like chore/travis python_parse_json() { # python errors are surpressed for when the key doesn't exist cat | python -c 'import sys,json;obj=json.load(sys.stdin);print obj[sys.argv[1]];' $1 2>/dev/null } if [ -z "$GITHUB_TOKEN" ] || [ -z "$TRAVIS_REPO_SLUG" ] \ || [ -z "$TRAVIS_BUILD_NUMBER" ] || [ -z "$TRAVIS_BRANCH" ] \ || [ -z "$TRAVIS_COMMIT" ] then echo "GITHUB_TOKEN, TRAVIS_REPO_SLUG, TRAVIS_BUILD_NUMBER and TRAVIS_COMMIT must be set in order to deploy"; echo "Skipping deploy for now"; exit 0; # prevent build failing if unset fi if [ "$TRAVIS_PULL_REQUEST" != "false" ] then echo "This is a pull request build, it doesn't need to be released." exit 0; # prevent build fail fi if [[ "$TRAVIS_BRANCH" == build* ]] then echo "We're already on a 'build branch' (or tag), don't need to deploy again"; exit 0; fi echo "Copy the licence to the gamedata folder" cp "LICENSE.txt" "GameData/RemoteTech/LICENSE.txt" echo "Build ${TRAVIS_BUILD_NUMBER} from branch ${TRAVIS_BRANCH} in ${TRAVIS_REPO_SLUG}" > GameData/build.txt echo "Built from commit ${TRAVIS_COMMIT} with tag ${BUILDTAG}" >> GameData/build.txt echo "Creating ${FILENAME}" zip -r "${FILENAME}" GameData/ echo "Attempting to create tag ${VERSION} on ${TRAVIS_REPO_SLUG}" API_JSON=$(printf '{"tag_name": "%s","target_commitish": "%s","name": "%s","body": "Automated pre-release of branch %s build %s","draft": false,"prerelease": true}' \ $VERSION $TRAVIS_COMMIT $VERSION $TRAVIS_BRANCH $TRAVIS_BUILD_NUMBER) ADDRESS=$(printf 'https://api.github.com/repos/%s/releases?access_token=%s' $TRAVIS_REPO_SLUG $GITHUB_TOKEN) REPLY=$(curl --data "$API_JSON" "$ADDRESS"); UPLOAD_ID=$(echo $REPLY | python_parse_json "id") ERRORS=$(echo $REPLY | python_parse_json "errors"); if [ -n "$ERRORS" ] || [ -z "$REPLY" ] || [ -z "$UPLOAD_ID" ] then echo "ERROR: An error occured while setting the tag"; echo $REPLY; exit 1; fi UPLOAD_URL="https://uploads.github.com/repos/${TRAVIS_REPO_SLUG}/releases/${UPLOAD_ID}/assets" echo "Uploading ${FILENAME} to GitHub repo ${UPLOAD_ID} (tag ${VERSION} on ${TRAVIS_REPO_SLUG})" REPLY=$(curl -H "Authorization: token ${GITHUB_TOKEN}" \ -H "Accept: application/vnd.github.manifold-preview" \ -H "Content-Type: application/zip" \ --data-binary @${FILENAME} \ "${UPLOAD_URL}?name=${FILENAME}") ERRORS=$(echo $REPLY | python_parse_json "errors") ASSET_ID=$(echo $REPLY | python_parse_json "id" ) if [ -n "$ERRORS" ] || [ -z "$REPLY" ] || [ -z "$ASSET_ID" ] then echo "ERROR: An error occured while uploading the file to GitHub"; echo $REPLY; exit 1; fi echo "Uploaded ${FILENAME} to ${TRAVIS_REPO_SLUG} as asset id ${ASSET_ID}" ================================================ FILE: CI/travis.osx.install.deps.sh ================================================ #!/bin/bash set -ev MONO_VERSION="3.4.0" echo "Installing Mono ${MONO_VERSION}" wget "http://download.mono-project.com/archive/${MONO_VERSION}/macos-10-x86/MonoFramework-MDK-${MONO_VERSION}.macos10.xamarin.x86.pkg" sudo installer -pkg "MonoFramework-MDK-${MONO_VERSION}.macos10.xamarin.x86.pkg" -target / ================================================ FILE: CONTRIBUTING.md ================================================ # Contributing to RemoteTech Thank you for helping make RemoteTech better! We'd like this to be a community effort. However, we do have a few rules we need you to follow in order to keep things running smoothly, whether you're reporting a bug or submitting code. ## Bug Reports Before issuing a bug report, please follow the following steps: * Check if your issue was already reported in the [existing issues](https://github.com/RemoteTechnologiesGroup/RemoteTech/issues). * If you can find one that is related to your problem, please comment there instead of making a new one. * Make sure the issue title is descriptive, for example "Losing connection above 10km" instead of "Connection doesn't work". * Post your issue using this template: ``` OS: KSP: Problem: Reproduction steps: Logs: output_log.txt Installed Mods (optional): or Persistent save (optional): Screenshot (optional): ``` * In `Reproduction steps`, list the exact steps or conditions to reproduce the bug. * Instructions of the form "1. Load stock KSP. 2. Load this ship 3. Do this" are best. The easier we can make the bug happen on our end, the easier it is to fix it. * In `Logs`, provide your KSP log file: * **Windows**: * 1.3.1 or older: `KSP_win\KSP_Data\output_log.txt` (32-bit) or `KSP_win64\KSP_x64_Data\output_log.txt` (64-bit) * 1.7.3 or older: `%USERPROFILE%\AppData\LocalLow\Squad\Kerbal Space Program\output_log.txt` * 1.8 or newer: `%USERPROFILE%\AppData\LocalLow\Squad\Kerbal Space Program\Player.log` * **Mac OS**: Open Console, on the left side of the window there is a menu that says 'files'. Scroll down the list and find the Unity drop down, under Unity there will be `Player.log` ( Files>`~/Library/Logs>Unity>Player.log` ) * **Linux**: `~/.config/unity3d/Squad/Kerbal Space Program/Player.log` * In `Installed Mods`, list all installed mods (preferably WITH version number) * If you use `ckan` then use it to list your mods (`File` > `Export Installed mods`). * Put the list either in the issue body, on [gist](https://gist.github.com/) (easier to edit later), [pastebin](http://pastebin.com/), or any similar site ([Fedora pastebin](http://fpaste.org)). * In `Persistent Save`, provide a link to your current persistent save file. This should be ```Kerbal Space Program\saves\[yoursave]\persistent.sfs```, add it to your gist as a new file or as a separate pastebin(-esque). * In `Screenshot`, if it's easy to see in an image, please attach a screen shot (use F1 key when in KSP). ### Triming down the problem Despite how complicated it may seem, it is actually quite simple to do (even for Steam users), as you can simply copy your install directory elsewhere as needed and remove non problematic mods. It's especially useful since interaction bugs are some of the hardest to nail down; something that appears to be a bug in one mod might actually be caused by something else. If the issue stems from only `RemoteTech`, try to replicate this issue with only `RemoteTech` in a clean KSP install. If the issue stems from the use of several different mods (e.g. `RemoteTech` and ScanSat or FAR, etc.) then get a clean install of KSP and install only these mods (and their dependencies, if applicable). This may seem like an extreme measure, but it ensures that only `RemoteTech`and these mods (or maybe the stock game) are to blame. ## Pull Requests When writing new code for RemoteTech, please follow the following steps: * Read the titles of open issues and pull requests, to see if somebody's already thought of your idea. If the issue has somebody assigned (see the rightmost column of the page), it's already being taken care of. Otherwise, assign yourself and/or add a comment saying you'll do it. * Fork RemoteTech and do any code updates. Like most KSP plugins, RemoteTech's code is organized around a solution (`.sln`) file, which can be opened with [any of several C# development tools](http://wiki.kerbalspaceprogram.com/wiki/Plugins). Third-party developers can ignore the `build.remotetech.sh` script; it is needed only to support automatic builds from the online repository. * What happens next depends on what the new code does: - If your code fixes a bug in RemoteTech, create a pull request to the `develop` branch (this should be the default). - If your code adds a new feature in RemoteTech, create a pull request to the branch of the next release (e.g., `1.7.0`; if no such branch exists, please contact us). * One of the Remote Technologies Group members will merge the pull request; if you yourself are a member, please wait one week to give others a chance to give feedback. ## Visual Studio build Visual Studio Project (.csproj) respects and utilises an environment variable called `KSPDEVDIR`. If its value is set to the path of your KSP install, the reference and build paths in the project should be set automatically. Otherwise, the reference paths and the build paths have to be set manually. To create the variable, follow the [instructions](https://superuser.com/a/949577) before starting a Visual Studio instance. If you are on a standard Windows account, it should be in the system variables to be referred. ================================================ FILE: GameData/MM_LICENSE.md ================================================ ModuleManager ============= Original (c) from Ialdabaoth ( https://github.com/Ialdabaoth ) Modified by // Modifications by // Maintained by sarbian ( https://github.com/sarbian ) The original licence requirement was: --- under a CC share-alike license. Anyone is free to do anything they like with ModuleManager's source, with two caveats: 1. You credit me as the original creator that your code is based on 2. You make it ABSOLUTELY CLEAR that your code is not the original ModuleManager, and that any problems that people have with your fork should be taken up with YOU, not me. --- THIS IS NOT THE ORIGINAL MODULEMANAGER CODE. Do not bother Ialdabaoth about any problems with it. ## Dependencies - mono resgen2 - Fedora: `sudo dnf install mono-devel` - Mono C# Compiler - Fedora: `sudo ln -s /usr/bin/mcs /usr/bin/gmcs` ================================================ FILE: GameData/RemoteTech/Default_Settings.cfg ================================================ RemoteTechSettings { RemoteTechEnabled = True CommNetEnabled = False ConsumptionMultiplier = 1 RangeMultiplier = 1 MissionControlRangeMultiplier = 1 OmniRangeClampFactor = 100 DishRangeClampFactor = 1000 ActiveVesselGuid = 35b89a0d664c43c6bec8d0840afc97b2 NoTargetGuid = 00000000-0000-0000-0000-000000000000 SpeedOfLight = 3E+08 MapFilter = Omni, Cone, Path EnableSignalDelay = True RangeModelType = Standard MultipleAntennaMultiplier = 0 ThrottleTimeWarp = True ThrottleZeroOnNoConnection = True StopTimeWrapOnReConnection = False HideGroundStationsBehindBody = True ControlAntennaWithoutConnection = False UpgradeableMissionControlAntennas = True HideGroundStationsOnDistance = True ShowMouseOverInfoGroundStations = True AutoInsertKaCAlerts = True FCLeadTime = 180 FCOffAfterExecute = False DistanceToHideGroundStations = 3E+07 DishConnectionColor = 0.996078372,0.701960802,0.0313725509,1 OmniConnectionColor = 0.552941203,0.517647088,0.407843113,1 ActiveConnectionColor = 0.65882349,1,0.0156862792,1 RemoteStationColorDot = 0.996078014,0,0,1 DirectConnectionColor = 0,0.749,0.952,1 SignalRelayEnabled = False IgnoreLineOfSight = False FCWinPosX = 100 FCWinPosY = 100 FlightTermP = 2.0 FlightTermI = 0.8 FlightTermD = 1.0 GroundStations { STATION { Guid = 5105f5a9-d628-41c6-ad4b-21154e8fc488 Name = #RT_MissionControl Latitude = -0.13133150339126601 Longitude = -74.594841003417997 Height = 75 Body = 1 MarkColor = 0.996078014,0,0,1 Antennas { ANTENNA { Omni = 75000000 Dish = 0 CosAngle = 1 UpgradeableOmni = 4E+06;3.0E+07;7.5E+07 UpgradeableDish = UpgradeableCosAngle = } } } } PreSets { PRESETS = RemoteTech/Default_Settings/RemoteTechSettings } } ================================================ FILE: GameData/RemoteTech/Localization/en-us.cfg ================================================ Localization { en-us { //parts #RemoteTech_Extend = Extend #RemoteTech_Retract = Retract #RemoteTech_Toggle = Toggle Antenna #RT_RTGigaDish1_title = Reflectron GX-128 #RT_RTGigaDish1_manufacturer = Parabolic Industries #RT_RTGigaDish1_desc = A massive medium-interplanetary class dish. Wherever you are in the Kerbol system, you'll be able to stay in contact with this. #RT_GigaDish2_title = CommTech-1 #RT_GigaDish2_manufacturer = AIES Aerospace #RT_GigaDish2_desc = A powerful high-gain fixed dish. It can reach almost anything in the solar system. #RT_LongAntenna2_title = Communotron 32 #RT_LongAntenna2_manufacturer = Ionic Protonic Electronics #RT_LongAntenna2_desc = The Communotron 32 is a longer range version of the last generation, now with even more spying potential. If you don't believe us, ask the Kerbal Security Agency. #RT_LongAntenna3_title = CommTech EXP-VR-2T #RT_LongAntenna3_manufacturer = AIES Aerospace #RT_LongAntenna3_desc = This effective and compact folding antenna is highly recommended for your research missions. #RT_LongDish1_title = Reflectron LL-5 #RT_LongDish1_manufacturer = Parabolic Industries #RT_LongDish1_desc = This dish will carry your signal out as far as Duna. But don't count on it working further out. Warranty void if used as a salad bowl. #RT_LongDish2_title = Reflectron KR-14 #RT_LongDish2_manufacturer = Parabolic Industries #RT_LongDish2_desc = Replacing the LL-5, this dish will carry your signal beyond Duna looking fancier than ever. #RT_ShortAntenna1_title = Reflectron DP-10 #RT_ShortAntenna1_manufacturer = Parabolic Industries #RT_ShortAntenna1_desc = When moving this antenna to a test site, engineers always forgot to turn it on. Frustrated with having to walk back and forth, they had this antenna be active by default. #RT_ShortDish1_title = Reflectron SS-5 #RT_ShortDish1_manufacturer = Parabolic Industries. #RT_ShortDish1_desc = If you want to break the surly bonds of Kerbin, you will need some serious range. What once was considered a mere garbage can lid is now the cornerstone of Münar communication. #RT_ShortDish2_title = Reflectron KR-7 #RT_ShortDish2_manufacturer = Parabolic Industries. #RT_ShortDish2_desc = Locals complained about their missing garbage lids, so our engineers quickly developed an alternative. Matching performance with the SS-5 for only double the cost! //UI #RT_OptionWindow_title = RemoteTech <<1>> Options #RT_OptionWindow_closebutton = Close #RT_OptionWindow_start_Text = Use the small menu buttons above to navigate through the different options. #RT_OptionWindow_start_Text2 = Need some help with RemoteTech? Check out the online manual and tutorials. If you can't find your answer, post in the forum thread.\n(Browser opens on click) #RT_OptionWindow_start_button1 = Online Manual and Tutorials #RT_OptionWindow_start_button2 = KSP Forum #RT_OptionWindow_WorldScale_ConsMulti_head = Consumption Multiplier: (<<1>>) #RT_OptionWindow_WorldScale_ConsMulti_text = If set to a value other than 1, the power consumption of all antennas will be increased or decreased by this factor.\nDoes not affect energy consumption for science transmissions. #RT_OptionWindow_WorldScale_RangeMulti_head = Antennas Range Multiplier: (<<1>>) #RT_OptionWindow_WorldScale_RangeMulti_text = If set to a value other than 1, the range of all antennas will be increased or decreased by this factor.\nDoes not affect Mission Control range. #RT_OptionWindow_WorldScale_MissionControlRangeMulti_head = Mission Control Range Multiplier: (<<1>>) #RT_OptionWindow_WorldScale_MissionControlRangeMulti_text = If set to a value other than 1, the range of all Mission Controls will be increased or decreased by this factor.\nDoes not affect antennas range. #RT_OptionWindow_AlternativeRules_EnableSignalDelay = Signal delay enabled #RT_OptionWindow_AlternativeRules_disabledSignalDelay = Signal delay disabled #RT_OptionWindow_AlternativeRules_SignalDelaydesc = ON: All commands sent to RemoteTech-compatible probe cores are limited by the speed of light and have a delay before executing, based on distance.\nOFF: All commands will be executed immediately, although a working connection to Mission Control is still required. #RT_OptionWindow_AlternativeRules_RangeModelMode_head = Range Model Mode #RT_OptionWindow_AlternativeRules_RangeModelMode_text = This setting controls how the game determines whether two antennas are in range of each other.\nRead more on our online manual about the difference for each rule. #RT_OptionWindow_AlternativeRules_RangeModelMode_Standard = Standard #RT_OptionWindow_AlternativeRules_RangeModelMode_Root = Root #RT_OptionWindow_AlternativeRules_MultipleAntennaMulti_head = Multiple Antenna Multiplier : (<<1>>) #RT_OptionWindow_AlternativeRules_MultipleAntennaMulti_text = Multiple omnidirectional antennas on the same craft work together.\nThe default value of 0 means this is disabled.\nThe largest value of 1.0 sums the range of all omnidirectional antennas to provide a greater effective range.\nThe effective range scales linearly and this option works with both the Standard and Root range models. #RT_OptionWindow_ColorSlider_Red = Red: (<<1>>) #RT_OptionWindow_ColorSlider_Green = Green: (<<1>>) #RT_OptionWindow_ColorSlider_Blue = Blue: (<<1>>) #RT_OptionWindow_VisualStyle_DishColor = Dish Connection Color: #RT_OptionWindow_VisualStyle_OmniColor = Omni Connection Color: #RT_OptionWindow_VisualStyle_ActiveColor = Active Connection Color: #RT_OptionWindow_VisualStyle_RemoteStationColor = Remote Station Color: #RT_OptionWindow_VisualStyle_StationsBehindBodyHide = Ground Stations are hidden behind bodies #RT_OptionWindow_VisualStyle_StationsBehindBodyShow = Ground Stations always shown #RT_OptionWindow_VisualStyle_StationsBehindBodytext = ON: Ground Stations are occluded by the planet or body, and are not visible behind it.\nOFF: Ground Stations are always shown (see range option below). #RT_OptionWindow_VisualStyle_StationsOnDistancehide = Ground Stations are hidden at a defined distance #RT_OptionWindow_VisualStyle_StationsOnDistanceShow = Ground Stations always shown #RT_OptionWindow_VisualStyle_StationsOnDistanceText = ON: Ground Stations will not be shown past a defined distance to the mapview camera.\nOFF: Ground Stations are shown regardless of distance. #RT_OptionWindow_VisualStyle_MouseOverInfoGroundStationsE = Mouseover of Ground Stations enabled #RT_OptionWindow_VisualStyle_MouseOverInfoGroundStationsD = Mouseover of Ground Stations disabled #RT_OptionWindow_VisualStyle_MouseOverInfoGroundStationsDesc = ON: Some useful information is shown when you mouseover a Ground Station on the map view or Tracking Station.\nOFF: Information isn't shown during mouseover. #RT_OptionWindow_Miscellaneous_ThrottleTimeWarp = RemoteTech will throttle time warp #RT_OptionWindow_Miscellaneous_NoThrottleTimeWarp = RemoteTech will not throttle time warp #RT_OptionWindow_Miscellaneous_ThrottleTimeWarp_text = ON: The flight computer will automatically stop time warp a few seconds before executing a queued command.\nOFF: The player is responsible for controlling time warp during scheduled actions. #RT_OptionWindow_Miscellaneous_ThrottleZeroOnNoConnection = Throttle to zero on loss of connection #RT_OptionWindow_Miscellaneous_NoThrottleZeroOnNoConnection = Throttle unaffected by loss of connection #RT_OptionWindow_Miscellaneous_ThrottleZeroOnNoConnection_text = ON: The flight computer cuts the thrust if you lose connection to Mission Control.\nOFF: The throttle is not adjusted automatically. #RT_OptionWindow_Miscellaneous_StopTimeWrapOnReConnection = Stop time wrap on reconnection #RT_OptionWindow_Miscellaneous_NoStopTimeWrapOnReConnection = Time wrap uninterrupted by reconnection #RT_OptionWindow_Miscellaneous_StopTimeWrapOnReConnection_text = ON: The flight computer will automatically stop time warp when a connection is found. \nOFF: The time wrap will not be stopped when a connection is found. #RT_OptionWindow_Miscellaneous_UpgradeableMissionControl = Mission Control antennas are upgradeable #RT_OptionWindow_Miscellaneous_NoUpgradeableMissionControl = Mission Control antennas are not upgradeable #RT_OptionWindow_Miscellaneous_UpgradeableMissionControlText = ON: Mission Control antenna range is upgraded when the Tracking Center is upgraded.\nOFF: Mission Control antenna range isn't upgradeable. #RT_OptionWindow_Miscellaneous_AutoInsertKaCAlerts = Alarms added to Kerbal Alarm Clock #RT_OptionWindow_Miscellaneous_NotAutoInsertKaCAlerts = No alarms added to Kerbal Alarm Clock #RT_OptionWindow_Miscellaneous_AutoInsertKaCAlertsText = ON: The flight computer will automatically add alarms to the Kerbal Alarm Clock mod for burn and maneuver commands. The alarm goes off 3 minutes before the command executes.\nOFF: No alarms are added to Kerbal Alarm Clock #RT_OptionWindow_Presets_HelpText = You can revert your current settings to the starting settings, constructed from installed mods' MM patches. Also, you can reload your current settings with a third-party mod's own RemoteTech settings (the fallback in the event of no MM patch).\n\nHere you can see what presets are available: #RT_OptionWindow_Presets_NotFound = No presets are found #RT_OptionWindow_Presets_Reload = Reload #RT_OptionWindow_Presets_msg1 = Your RemoteTech settings are set to <<1>> #RT_OptionWindow_Cheat_ControlAntennaWithoutConnection = No Connection needed to control antennas #RT_OptionWindow_Cheat_ControlAntennaNeedConnection = Connection is needed to control antennas #RT_OptionWindow_Cheat_ControlAntennaWithoutConnectionText = ON: antennas can be activated, deactivated and targeted without a connection.\nOFF: No control without a working connection. #RT_OptionWindow_Cheat_IgnoreLineOfSight = Planets and moons will not block a signal #RT_OptionWindow_Cheat_NoIgnoreLineOfSight = Planets and moons will block a signal #RT_OptionWindow_Cheat_IgnoreLineOfSightText = ON: Antennas and dishes will not need line-of-sight to maintain a connection, as long as they have adequate range and power.\nOFF: Antennas and dishes need line-of-sight to maintain a connection. #RT_ModuleUI_DishRange = Dish range #RT_ModuleUI_EnergyReq = Energy #RT_ModuleUI_Omnirange = Omni range #RT_ModuleUI_Status = Status #RT_ModuleUI_Status_tolower = status #RT_ModuleUI_Off = Off #RT_ModuleUI_Operational = Operational #RT_ModuleUI_Deactivate = Deactivate #RT_ModuleUI_Activate = Activate #RT_ModuleUI_Toggle = Toggle #RT_ModuleUI_Target = Target #RT_ModuleUI_SetTarget = [EVA] Set Target #RT_ModuleUI_ForceOpen = [EVA] Force Open #RT_ModuleUI_ForceClose = [EVA] Force Close #RT_ModuleUI_Autothreshold = Auto threshold #RT_ModuleUI_Autothreshold_Off = Off #RT_ModuleUI_DeactivateatEC = Deactivate at EC % #RT_ModuleUI_ActivateatEC = Activate at EC % #RT_ModuleUI_Transmit = Transmit all science #RT_ModuleUI_SciencePacketSize = Science packet size #RT_ModuleUI_SciencePacketInterval = Science packet interval #RT_ModuleUI_SciencePacketCost = Science packet cost #RT_ModuleUI_Connected = Connected #RT_ModuleUI_NoResources = Out of power #RT_ModuleUI_Malfunction = Malfunction #RT_ModuleUI_DeployAntenna = Deploy Antenna #RT_ModuleUI_RetractAntenna = Retract Antenna #RT_ModuleUI_Comms = Comms #RT_ModuleUI_Comms_Status = Idle #RT_ModuleUI_Comms_Status2 = Uploading Data... #RT_ModuleUI_TransmitMsg = [<<1>>]: Starting Transmission... #RT_ModuleUI_TransmitMsg2 = [<<1>>]: Uploading Data... <<2>> #RT_ModuleUI_TransmitMsg3 = [<<1>>]: Warning! Not Enough <<2>>! #RT_ModuleUI_TransmitMsg4 = [<<1>>]: Done! #RT_ModuleUI_SPU = SPU #RT_ModuleUI_SPU_Status = Operational. #RT_ModuleUI_SPU_Status2 = No connection. #RT_ModuleUI_SPU_Msg = No connection to send command on. #RT_ModuleUI_ActiveVessel = Active Vessel #RT_ModuleUI_ActiveVessel_Tolower = active vessel #RT_ModuleUI_NoTarget = No Target #RT_ModuleUI_NoTarget_Tolower = no target #RT_ModuleUI_UnknownTarget = Unknown Target #RT_ModuleUI_rippedoff = [<<1>>]: <<2>> was ripped off by strong airflow. //Flight Computer #RT_FC_Title = Flight Computer #RT_FC_desc = Switch to Attitude, Rover, Power or PID mode. #RT_ConnectionStatus1 = N/A #RT_ConnectionStatus2 = Local Control #RT_ConnectionStatus3 = D+ <<1>>s #RT_ConnectionStatus4 = Connected #RT_ConnectionStatus5 = No Connection #RT_FC_msg1 = [Flight Computer]: Throttling back time warp... #RT_FC_msg2 = [Flight Computer]: Out of power, cannot run "<<1>>" on schedule. #RT_FC_msg3 = A maneuver burn is required #RT_FC_msg4 = A burn command is required #RT_FC_msg5 = [Flight Computer]: Signal delay is too high to execute this maneuver at the proper time. #RT_MissionControl = Mission Control #RT_Editor_Antenna = Antenna #RT_Editor_Omni = Omni #RT_Editor_range = range #RT_Editor_Dish = Dish #RT_Editor_power = power #RT_Editor_SignalProcessor = Signal Processor #RT_Editor_SignalProcessor_info1 = Remote Command capable (<<1>>+ crew) #RT_Editor_SignalProcessor_info2 = Remote Control capable #RT_Editor_TechnologyPerk = Technology Perk #RT_Editor_TechnologyPerk_info1 = Integrated Omni: <<1>> always-on #RT_Editor_Coneangle = Cone angle:\u0020 #RT_degrees = \u0020degrees #RT_Editor_Activatedbydefault = Activated by default #RT_Editor_Snaps = Snaps under high dynamic pressure #RT_Editor_Notretractable = Antenna is not retractable #RT_Editor_Requires = Requires: #RT_Editor_ElectricCharge = ElectricCharge: //Network Feed Back #RT_NetworkFB_statusTitle = Status: #RT_NetworkFB_status = ok #RT_NetworkFB_status2 = No line of sight #RT_NetworkFB_status3 = Target not in range #RT_NetworkFB_Currentdistance = Current distance: #RT_NetworkFB_Antennarange = Antenna range: #RT_NetworkFB_Targetinfo = Info:<<1>> beam covers <<2>> targets #RT_NetworkFB_NameButton = Name #RT_NetworkFB_Target = Target:\u0020 #RT_NetworkFB_Omni = Omni: #RT_NetworkFB_Dish = Dish: //debug window #RT_DEBUG_title = RemoteTech DebugWindow #RT_DEBUG_LoadedScene = Ground stations are only available in the flight or tracking station. #RT_DEBUG_RTSettings = RemoteTech Settings #RT_DEBUG_APITester = API-Tester #RT_DEBUG_GUIDReader = GUID-Reader #RT_DEBUG_Clearbutton = Clear Logs in <<1>> #RT_DEBUG_Clearbutton_desc = TBD #RT_DEBUG_Onbtton = On #RT_DEBUG_Offbtton = Off //RemoteTech Settings label #RT_DEBUG_DeactivateKSC = Deactivate KSC:\u0020 #RT_DEBUG_CheatOptions = Cheat Options #RT_DEBUG_SignalThroughBodies = Signal Through Bodies: #RT_DEBUG_InfiniteFuel = Infinite Fuel: #RT_DEBUG_InfiniteRCSFuel = Infinite RCS Fuel: //Flight Computer buttons & desc #RT_AttitudeCommand_Off = Mode: Off #RT_AttitudeCommand_Killrotation = Mode: Kill rotation #RT_AttitudeCommand_Hold = Mode: Hold #RT_AttitudeCommand_Prograde = Prograde #RT_AttitudeCommand_Retrograde = Retrograde #RT_AttitudeCommand_RadialMinus = Radial - #RT_AttitudeCommand_RadialPlus = Radial + #RT_AttitudeCommand_NormalMinus = Normal - #RT_AttitudeCommand_NormalPlus = Normal + #RT_AttitudeCommand_Direction = Direction #RT_Command_Signaldelay = Signal delay: #RT_AttitudeCommand_Orbit = OBT #RT_AttitudeCommand_Surface = SRF #RT_AttitudeCommand_TargetVelocity = RVEL #RT_AttitudeCommand_TargetParallel = TGT #RT_AttitudeCommand_North = North #RT_AttitudeCommand_Maneuver = Maneuver #RT_AttitudeCommand_World = World //Buttons #RT_AttitudeFragment_KILL = KILL #RT_AttitudeFragment_KILL_desc = Kill rotation. #RT_AttitudeFragment_NODE = NODE #RT_AttitudeFragment_NODE_desc = Prograde points in the direction of the first maneuver node. #RT_AttitudeFragment_RVEL = RVEL #RT_AttitudeFragment_RVEL_desc = Prograde relative to target velocity. #RT_AttitudeFragment_ORB = ORB #RT_AttitudeFragment_ORB_desc = Prograde relative to orbital velocity. #RT_AttitudeFragment_SRF = SRF #RT_AttitudeFragment_SRF_desc = Prograde relative to surface velocity. #RT_AttitudeFragment_TGT = TGT #RT_AttitudeFragment_TGT_desc = Prograde points directly at target. #RT_AttitudeFragment_OFF = OFF #RT_AttitudeFragment_OFF_desc = Set Attitude to Off. #RT_AttitudeFragment_CUSTOM = CUSTOM #RT_AttitudeFragment_CUSTOM_desc = Prograde fixed as pitch, heading, roll relative to north pole. #RT_AttitudeFragment_Prograde = GRD\n+ #RT_AttitudeFragment_Prograde_desc = Orient to Prograde. #RT_AttitudeFragment_RadialPlus = RAD\n+ #RT_AttitudeFragment_RadialPlus_desc = Orient to Radial. #RT_AttitudeFragment_NormalPlus = NRM\n+ #RT_AttitudeFragment_NormalPlus_desc = Orient to Normal. #RT_AttitudeFragment_Retrograde = GRD\n- #RT_AttitudeFragment_Retrograde_desc = Orient to Retrograde. #RT_AttitudeFragment_RadialMinus = RAD\n- #RT_AttitudeFragment_RadialMinus_desc = Orient to Anti-radial. #RT_AttitudeFragment_NormalMinus = NRM\n- #RT_AttitudeFragment_NormalMinus_desc = Orient to Anti-normal. #RT_AttitudeFragment_PIT = PIT #RT_AttitudeFragment_PIT_desc = Sets pitch. #RT_AttitudeFragment_HDG = HDG #RT_AttitudeFragment_HDG_desc = Sets heading. #RT_AttitudeFragment_RLL = RLL #RT_AttitudeFragment_RLL_desc = Sets roll. #RT_AttitudeFragment_IgnorePit = IGN\nPIT #RT_AttitudeFragment_IgnorePit_desc = Ignore pitch control. #RT_AttitudeFragment_IgnoreHdr = IGN\nHDR #RT_AttitudeFragment_IgnoreHdr_desc = Ignore heading control. #RT_AttitudeFragment_IgnoreRll = IGN\nRLL #RT_AttitudeFragment_IgnoreRll_desc = Ignore roll control. #RT_AttitudeFragment_Throttle = Throttle: #RT_AttitudeFragment_BURN = BURN #RT_AttitudeFragment_BURN_desc = Example: 125, 125s, 5m20s, 1d6h20m10s, 123m/s. #RT_AttitudeFragment_EXEC = EXEC #RT_AttitudeFragment_EXEC_desc = Executes next and subsequent maneuver nodes. #RT_AttitudeFragment_Queue_desc = Toggles the queue and delay functionality. #RT_RoverFragment_TGT = TGT #RT_RoverFragment_TGT_desc = Drive to the latitude and longitude of a body or towards vessel target. #RT_RoverFragment_HDG = HDG #RT_RoverFragment_HDG_desc = Drive with specific heading and distance. #RT_RoverFragment_FINE = FINE #RT_RoverFragment_FINE_desc = Drive with specific turning or distance. #RT_RoverFragment_DRIVE = DRIVE #RT_RoverFragment_DRIVE_desc = Starts the automatic driving. #RT_RoverFragment_Queue_desc = Toggles the queue and delay functionality. //FINE #RT_RoverFragment_FINESteer = Steer: #RT_RoverFragment_FINESteer_desc = How much to turn #RT_RoverFragment_right = right #RT_RoverFragment_left = left #RT_RoverFragment_Turn = Turn #RT_RoverFragment_Turn_desc = How many degrees to turn #RT_RoverFragment_Dist = Dist #RT_RoverFragment_Dist_desc = Distance to drive #RT_RoverFragment_Speed = Speed #RT_RoverFragment_Speed_desc = Speed to maintain, negative for reverse //HDG #RT_RoverFragment_HDGSteer = Steer: #RT_RoverFragment_HDGSteer_desc = How sharp to turn at max #RT_RoverFragment_mHdg = Hdg #RT_RoverFragment_mHdg_desc = Heading to maintain #RT_RoverFragment_HDGSpeed_desc = Speed to maintain //TGT #RT_RoverFragment_coordinations = Body coordinations #RT_RoverFragment_coordinations_desc = Hold <<1>> and click on ground to input coordinates #RT_RoverFragment_TargetVessel = Designated Vessel #RT_RoverFragment_TargetVessel_desc = Drive to this vessel #RT_RoverFragment_ModeLabel = Mode: <<1>> #RT_RoverFragment_LAT = LAT #RT_RoverFragment_LAT_desc = Latitude to drive to #RT_RoverFragment_LON = LON #RT_RoverFragment_LON_desc = Longitude to drive to //PowerFragment #RT_PowerFragment_HBNT = HBNT #RT_PowerFragment_HBNT_desc = Ultra-low power hibernation with all active antennas shut down. #RT_PowerFragment_THLD = THLD #RT_PowerFragment_THLD_desc = Optimally adaptive power-saving threshold control on all antennas #RT_PowerFragment_WAKE = WAKE #RT_PowerFragment_WAKE_desc = Terminate any power-saving state. #RT_PowerFragment_Queue_desc = Toggles the queue and delay functionality. //QueueFragment #RT_QueueFragment_statuText = Status: <<1>>. #RT_QueueFragment_statuText_desc = Effects: <<1>>. #RT_QueueFragment_statu1 = Connection Error #RT_QueueFragment_statu1_desc = Cannot queue commands #RT_QueueFragment_statu2 = Out of Power #RT_QueueFragment_statu2_desc = Commands can be missed #RT_QueueFragment_statu2_desc2 = Timers halt #RT_QueueFragment_statu3 = Slave #RT_QueueFragment_statu3_desc = Has no control #RT_QueueFragment_statu4 = Packed #RT_QueueFragment_statu4_desc = Frozen #RT_QueueFragment_statu5 = All systems nominal #RT_QueueFragment_statu5_desc = None #RT_QueueFragment_Setsignaldelay = Set the signal delay right after this - Current: <<1>> #RT_QueueFragment_Signaldelay = Delay (+ signal): <<1>> #RT_QueueFragment_Signaldelay_desc = Total delay including signal delay. #RT_QueueFragment_AddExtraDelay_desc = Add extra signal delay - Example: 125, 125s, 5m20s, 1d6h20m10s #RT_PowerModecmd_Hibernate = Power: Hibernation (<<1>> antennas) #RT_PowerModecmd_Hibernate_deact = deactivating #RT_PowerModecmd_Hibernate_inact = inactive <<1>> #RT_PowerModecmd_AntennaSaver = Power: Automatically de/re-activating antennas on thresholds #RT_PowerModecmd_Wake = Power: Terminating active power state #RT_PowerModecmd_Unknown = Power: Unknown //PIDControllerFragment //Pitch Info #RT_PIDControllerFragment_Pitch = Pitch //Roll Info #RT_PIDControllerFragment_Roll = Roll //Yaw Info #RT_PIDControllerFragment_Yaw = Yaw #RT_PIDControllerFragment_TorqueMoI = Torque-MoI Rate: #RT_PIDControllerFragment_TorqueMoI_desc = Current rate of torque to mass of inertia #RT_PIDControllerFragment_DeviationError = Deviation Error: #RT_PIDControllerFragment_DeviationError_desc = Deviation from the target point #RT_PIDControllerFragment_Output = Output: #RT_PIDControllerFragment_Output_desc = Output of Flight Control State //PIDControl #RT_PIDControllerFragment_PIDHelp = See ni.com/white-paper/3782/en #RT_PIDControllerFragment_Kp = Proportional gain #RT_PIDControllerFragment_Kp_desc = (1) With I and D terms set to 0, increase until the output of the loop oscillates. #RT_PIDControllerFragment_Ki = Integral #RT_PIDControllerFragment_Ki_desc = (2) Increase to stop the oscillations. #RT_PIDControllerFragment_Kd = Derivative #RT_PIDControllerFragment_Kd_desc = (3) Increase until the loop is acceptably quick to its target point. #RT_PIDControllerFragment_button1 = SAVE #RT_PIDControllerFragment_button1_desc = Save all values persistently. #RT_PIDControllerFragment_button2 = APLY #RT_PIDControllerFragment_button2_desc = Interface all values to Flight PID Controller. #RT_PIDControllerFragment_Queue_desc = Toggles the queue and delay functionality. } } ================================================ FILE: GameData/RemoteTech/Localization/zh-cn.cfg ================================================ Localization { zh-cn { //parts #RemoteTech_Extend = 激活 #RemoteTech_Retract = 停用 #RemoteTech_Toggle = 开关天线 #RT_RTGigaDish1_title = 中继天线GX-128 #RT_RTGigaDish1_manufacturer = Parabolic Industries #RT_RTGigaDish1_desc = 一个巨大的中型行星际级天线盘。无论你在Kerbol系统中的什么地方,你都可以与之保持连接. #RT_GigaDish2_title = 通讯者-1 #RT_GigaDish2_manufacturer = AIES Aerospace #RT_GigaDish2_desc = 一个强大的高增益固定盘。它几乎可以到达太阳系的任何地方。 #RT_LongAntenna2_title = 通信者32 #RT_LongAntenna2_manufacturer = Ionic Protonic Electronics #RT_LongAntenna2_desc = 通信者32是比上一代的增长了天线范围的版本, 现在有了更大的间谍潜力. 如果你不相信我们,去问问坎巴拉安全局。 #RT_LongAntenna3_title = 通讯者 EXP-VR-2T #RT_LongAntenna3_manufacturer = AIES Aerospace #RT_LongAntenna3_desc = 对于科学研究任务我们强烈推荐使用这种有效又省空间的折叠天线. #RT_LongDish1_title = LL-5中继天线 #RT_LongDish1_manufacturer = Parabolic Industries #RT_LongDish1_desc = 这个天线能把你的信号传到Duna.但不要指望它能进一步发挥作用.如果用来放沙拉,则保修无效. #RT_LongDish2_title = KR-14中继天线 #RT_LongDish2_manufacturer = Parabolic Industries #RT_LongDish2_desc = 取代LL-5,这个天线限制能把你的信号带到比Duna更远的地方,让其看起来比以往任何时候都更华丽. #RT_ShortAntenna1_title = DP-10中继天线 #RT_ShortAntenna1_manufacturer = Parabolic Industries #RT_ShortAntenna1_desc = 当把天线移到测试地点时,工程师们总是忘记提前打开它,他们因此沮丧的走来走去.于是这根天线现在默认处于开启状态. #RT_ShortDish1_title = SS-5中继天线 #RT_ShortDish1_manufacturer = Parabolic Industries. #RT_ShortDish1_desc = 如果你想打破Kerbin的引力束缚,你将需要一些真正的大功率天线。曾经被认为只是个垃圾桶盖子的东西,现在变成了和Münar交流的基石 #RT_ShortDish2_title = KR-7中继天线 #RT_ShortDish2_manufacturer = Parabolic Industries. #RT_ShortDish2_desc = 当地人抱怨他们的垃圾桶盖不见了,所以我们的工程师很快就找到了替代方案.只需双倍的成本就能达到与SS-5匹配的性能! //UI #RT_OptionWindow_title = RemoteTech <<1>> 选项 #RT_OptionWindow_closebutton = 关闭 #RT_OptionWindow_start_Text = 点击上面的小菜单按钮浏览不同的选项。 #RT_OptionWindow_start_Text2 = 需要远程技术方面的帮助吗?查看在线手册和教程。如果找不到答案,请在论坛发布页中发表你的问题。\n(单击将打开浏览器) #RT_OptionWindow_start_button1 = 在线手册和教程 #RT_OptionWindow_start_button2 = KSP官方论坛 #RT_OptionWindow_WorldScale_ConsMulti_head = 功耗倍数: (<<1>>) #RT_OptionWindow_WorldScale_ConsMulti_text = 如果设置为1以外的值,则所有天线的功耗都将按此因数增加或减少。\n不影响科学传输的能耗。 #RT_OptionWindow_WorldScale_RangeMulti_head = 天线距离倍数: (<<1>>) #RT_OptionWindow_WorldScale_RangeMulti_text = 如果设置为1以外的值, 则所有天线范围都将按此因子增大或减小.\n不影响任务控制范围. #RT_OptionWindow_WorldScale_MissionControlRangeMulti_head = 任务控制距离倍数: (<<1>>) #RT_OptionWindow_WorldScale_MissionControlRangeMulti_text = 如果设置为1以外的值, 所有任务控制中心的控制范围都将按此因素增大或减小.\n不影响天线范围. #RT_OptionWindow_AlternativeRules_EnableSignalDelay = 启用信号延迟 #RT_OptionWindow_AlternativeRules_disabledSignalDelay = 禁用信号延迟 #RT_OptionWindow_AlternativeRules_SignalDelaydesc = 打开:发送到兼容RemoteTech探测器核心的所有的指令都受光速限制,并且在执行之前会根据距离有一个延迟。\n关闭:所有指令都将立即执行,不过仍然需要与任务控制中心建立连接. #RT_OptionWindow_AlternativeRules_RangeModelMode_head = 天线通讯模式 #RT_OptionWindow_AlternativeRules_RangeModelMode_text = 此设置控制游戏如何确定两个天线是否在彼此的范围内。\n有关每个规则的差异的详细信息,请参阅我们的在线手册。 #RT_OptionWindow_AlternativeRules_RangeModelMode_Standard = 标准 #RT_OptionWindow_AlternativeRules_RangeModelMode_Root = Root #RT_OptionWindow_AlternativeRules_MultipleAntennaMulti_head = 天线叠加倍数 : (<<1>>) #RT_OptionWindow_AlternativeRules_MultipleAntennaMulti_text = 同一飞行器上的多个全向天线将进行协同工作。\n默认值0表示禁用。\n最大值1.0将所有全向天线的范围相加,以提供更大的有效范围。\n有效范围线性叠加,此选项适用于标准和Root模式. #RT_OptionWindow_ColorSlider_Red = 红: (<<1>>) #RT_OptionWindow_ColorSlider_Green = 绿: (<<1>>) #RT_OptionWindow_ColorSlider_Blue = 蓝: (<<1>>) #RT_OptionWindow_VisualStyle_DishColor = 定向天线连接颜色: #RT_OptionWindow_VisualStyle_OmniColor = 全向天线连接颜色: #RT_OptionWindow_VisualStyle_ActiveColor = 连通连接颜色: #RT_OptionWindow_VisualStyle_RemoteStationColor = 远程站颜色: #RT_OptionWindow_VisualStyle_StationsBehindBodyHide = 地面站在天体后面隐藏 #RT_OptionWindow_VisualStyle_StationsBehindBodyShow = 始终显示地面站 #RT_OptionWindow_VisualStyle_StationsBehindBodytext = 打开:地面站被行星或天体遮挡,在其后面将不可见。\n关闭:地面站始终显示(见下面的范围选项)。 #RT_OptionWindow_VisualStyle_StationsOnDistancehide = 地面站在规定的距离内隐藏 #RT_OptionWindow_VisualStyle_StationsOnDistanceShow = 始终显示地面站 #RT_OptionWindow_VisualStyle_StationsOnDistanceText = 打开:地面站将不会显示超过地图视图相机的定义距离。\n关闭:无论距离如何,都会显示地面站。 #RT_OptionWindow_VisualStyle_MouseOverInfoGroundStationsE = 鼠标悬停显示地面站 #RT_OptionWindow_VisualStyle_MouseOverInfoGroundStationsD = 鼠标悬停禁用地面站 #RT_OptionWindow_VisualStyle_MouseOverInfoGroundStationsDesc = 打开:当您在地图视图或跟踪站上鼠标悬停地面站时,会显示一些有用的信息。\n关闭:鼠标悬停期间不会显示信息。 #RT_OptionWindow_Miscellaneous_ThrottleTimeWarp = RemoteTech将限制时间加速 #RT_OptionWindow_Miscellaneous_NoThrottleTimeWarp = RemoteTech不会阻止时间加速 #RT_OptionWindow_Miscellaneous_ThrottleTimeWarp_text = 打开:飞行计算机将在执行排队命令前几秒自动停止时间扭曲。\n关闭:播放机负责在预定操作期间控制时间扭曲。 #RT_OptionWindow_Miscellaneous_ThrottleZeroOnNoConnection = 连接断开时节流阀降至零 #RT_OptionWindow_Miscellaneous_NoThrottleZeroOnNoConnection = 节流阀不受连接断开的影响 #RT_OptionWindow_Miscellaneous_ThrottleZeroOnNoConnection_text = 开:如果失去与任务控制中心的连接,飞行计算机会切断飞船的推力。\n关:节流阀不会自动调整. #RT_OptionWindow_Miscellaneous_StopTimeWrapOnReConnection = Stop time wrap on reconnection #RT_OptionWindow_Miscellaneous_NoStopTimeWrapOnReConnection = Time wrap uninterrupted by reconnection #RT_OptionWindow_Miscellaneous_StopTimeWrapOnReConnection_text = ON: The flight computer will automatically stop time warp when a connection is found. \nOFF: The time wrap will not be stopped when a connection is found. #RT_OptionWindow_Miscellaneous_UpgradeableMissionControl = 任务控制中心天线可升级 #RT_OptionWindow_Miscellaneous_NoUpgradeableMissionControl = 任务控制中心天线不可升级 #RT_OptionWindow_Miscellaneous_UpgradeableMissionControlText = 打开:任务控制中心天线范围在升级跟踪中心时升级。\n关闭:任务控制天线范围不可升级。 #RT_OptionWindow_Miscellaneous_AutoInsertKaCAlerts = 警报添加到Kerbal Alarm Clock中 #RT_OptionWindow_Miscellaneous_NotAutoInsertKaCAlerts = 不添加到Kerbal Alarm Clock #RT_OptionWindow_Miscellaneous_AutoInsertKaCAlertsText = 开启:飞行人工智能将自动向Kerbal Alarm Clock mod添加用于点火和机动命令的警报。警报在命令执行前3分钟关闭。\n关闭:没有警报会添加到Kerbal Alarm Clock #RT_OptionWindow_Presets_HelpText = 您可以将当前设置还原为起始设置,由已安装的mods的MM补丁程序构造。此外,您还可以使用第三方mod来配置自己的RemoteTech设置(没有MM补丁时的回退)并加载到当前设置。\n\n您可以查看当前可用的预设配置: #RT_OptionWindow_Presets_NotFound = 找不到预设 #RT_OptionWindow_Presets_Reload = 重新加载 #RT_OptionWindow_Presets_msg1 = 您的RemoteTech配置设置为 <<1>> #RT_OptionWindow_Cheat_ControlAntennaWithoutConnection = 不需要连接信号就能控制天线 #RT_OptionWindow_Cheat_ControlAntennaNeedConnection = 控制天线需要连接信号 #RT_OptionWindow_Cheat_ControlAntennaWithoutConnectionText = 开:天线可以在没有连接的情况下被激活、停用和锁定。\n关:在没有有效连接链路的情况下不能进行控制. #RT_OptionWindow_Cheat_IgnoreLineOfSight = 行星和卫星不会阻挡信号 #RT_OptionWindow_Cheat_NoIgnoreLineOfSight = 行星和卫星会阻挡信号 #RT_OptionWindow_Cheat_IgnoreLineOfSightText = 开:全向天线和定向天线不需要视线就能保持连接,确保它们在合适的范围和有相应的电力。\n关:全向天线和定向天线需要视线来保持连接. #RT_ModuleUI_DishRange = 定向天线范围 #RT_ModuleUI_EnergyReq = 耗电量 #RT_ModuleUI_Omnirange = 全向天线范围 #RT_ModuleUI_Status = 状态 #RT_ModuleUI_Status_tolower = 状态 #RT_ModuleUI_Off = 关闭 #RT_ModuleUI_Operational = 可操作 #RT_ModuleUI_Deactivate = 停用 #RT_ModuleUI_Activate = 激活 #RT_ModuleUI_Toggle = 收放天线 #RT_ModuleUI_Target = 目标 #RT_ModuleUI_SetTarget = [EVA] 设置目标 #RT_ModuleUI_ForceOpen = [EVA] 强制开启 #RT_ModuleUI_ForceClose = [EVA] 强制关闭 #RT_ModuleUI_Autothreshold = 自动开关 #RT_ModuleUI_Autothreshold_Off = 关闭 #RT_ModuleUI_DeactivateatEC = 当EC达到 %停用 #RT_ModuleUI_ActivateatEC = 当EC达到 %激活 #RT_ModuleUI_Transmit = 传输科学点数 #RT_ModuleUI_SciencePacketSize = 数据包大小 #RT_ModuleUI_SciencePacketInterval = 数据包传输间隔 #RT_ModuleUI_SciencePacketCost = 数据包成本 #RT_ModuleUI_Connected = 连接 #RT_ModuleUI_NoResources = 电力耗尽 #RT_ModuleUI_Malfunction = 故障 #RT_ModuleUI_DeployAntenna = 激活天线 #RT_ModuleUI_RetractAntenna = 停用天线 #RT_ModuleUI_Comms = 通讯 #RT_ModuleUI_Comms_Status = 闲置 #RT_ModuleUI_Comms_Status2 = 上传数据中... #RT_ModuleUI_TransmitMsg = [<<1>>]: 开始发送数据... #RT_ModuleUI_TransmitMsg2 = [<<1>>]: 上传数据... <<2>> #RT_ModuleUI_TransmitMsg3 = [<<1>>]: 警告! 无足够的 <<2>>! #RT_ModuleUI_TransmitMsg4 = [<<1>>]: 完成! #RT_ModuleUI_SPU = SPU #RT_ModuleUI_SPU_Status = 可操作. #RT_ModuleUI_SPU_Status2 = 无连接. #RT_ModuleUI_SPU_Msg = 没有可用链路能发送指令. #RT_ModuleUI_ActiveVessel = 任意载具 #RT_ModuleUI_ActiveVessel_Tolower = 任意载具 #RT_ModuleUI_NoTarget = 无目标 #RT_ModuleUI_NoTarget_Tolower = 无目标 #RT_ModuleUI_UnknownTarget = 未知物体 #RT_ModuleUI_rippedoff = [<<1>>]: <<2>> 被强烈的气流扯掉了. //Flight Computer #RT_FC_Title = 飞行人工智能 #RT_FC_desc = 切换到高度、车辆、电源或PID控制模式 #RT_ConnectionStatus1 = N/A(不可用) #RT_ConnectionStatus2 = 本地控制 #RT_ConnectionStatus3 = 时延 <<1>>s #RT_ConnectionStatus4 = 连接 #RT_ConnectionStatus5 = 无连接 #RT_FC_msg1 = [飞行人工智能]: 停止时间加速... #RT_FC_msg2 = [飞行人工智能]: 失去电力,无法按计划执行"<<1>>". #RT_FC_msg3 = 需要机动燃烧 #RT_FC_msg4 = 需要点火指令 #RT_FC_msg5 = [飞行人工智能]: 信号延迟过高,无法在适当的时间执行此操作。 #RT_MissionControl = 任务控制中心 #RT_Editor_Antenna = 天线 #RT_Editor_Omni = 全向 #RT_Editor_range = 范围 #RT_Editor_Dish = 定向 #RT_Editor_power = 电力 #RT_Editor_SignalProcessor = 信号处理器 #RT_Editor_SignalProcessor_info1 = 远程指令支持 (<<1>>+ 乘员) #RT_Editor_SignalProcessor_info2 = 远程控制支持 #RT_Editor_TechnologyPerk = 科技特性 #RT_Editor_TechnologyPerk_info1 = 内置全向天线:范围 <<1>> 总是开启 #RT_Editor_Coneangle = 发射范围:\u0020 #RT_degrees = \u0020度 #RT_Editor_Activatedbydefault = 默认激活 #RT_Editor_Snaps = 在高大气压力下损坏 #RT_Editor_Notretractable = 天线不可收回 #RT_Editor_Requires = 需要: #RT_Editor_ElectricCharge = 电力: //Network Feed Back #RT_NetworkFB_statusTitle = 状态: #RT_NetworkFB_status = OK #RT_NetworkFB_status2 = 没有视线 #RT_NetworkFB_status3 = 目标不在范围内 #RT_NetworkFB_Currentdistance = 当前距离: #RT_NetworkFB_Antennarange = 天线范围: #RT_NetworkFB_Targetinfo = 摘要:<<1>> 波束覆盖 <<2>> 目标 #RT_NetworkFB_NameButton = 命名 #RT_NetworkFB_Target = 目标:\u0020 #RT_NetworkFB_Omni = 全向距离: #RT_NetworkFB_Dish = 定向距离: //debug window #RT_DEBUG_title = RemoteTech Debug窗口 #RT_DEBUG_LoadedScene = 地面站仅在飞行界面或跟踪站界面可用. #RT_DEBUG_RTSettings = RemoteTech设置 #RT_DEBUG_APITester = API-测试 #RT_DEBUG_GUIDReader = GUID-读取 #RT_DEBUG_Clearbutton = 清除在 <<1>> 的日志 #RT_DEBUG_Onbtton = 开 #RT_DEBUG_Offbtton = 关 //RemoteTech Settings label #RT_DEBUG_DeactivateKSC = 停用KSC:\u0020 #RT_DEBUG_CheatOptions = 作弊选项 #RT_DEBUG_SignalThroughBodies = 信号穿越天体: #RT_DEBUG_InfiniteFuel = 无限燃料: #RT_DEBUG_InfiniteRCSFuel = 无限RCS燃料: //Flight Computer buttons & desc #RT_AttitudeCommand_Off = 模式: 关闭 #RT_AttitudeCommand_Killrotation = 模式: 停止旋转 #RT_AttitudeCommand_Hold = 模式: 保持 #RT_AttitudeCommand_Prograde = 顺向 #RT_AttitudeCommand_Retrograde = 逆向 #RT_AttitudeCommand_RadialMinus = 径向 - #RT_AttitudeCommand_RadialPlus = 径向 + #RT_AttitudeCommand_NormalMinus = 法线 - #RT_AttitudeCommand_NormalPlus = 法线 + #RT_AttitudeCommand_Direction = 方向 #RT_Command_Signaldelay = 信号延迟: #RT_AttitudeCommand_Orbit = 轨道 #RT_AttitudeCommand_Surface = 地面 #RT_AttitudeCommand_TargetVelocity = RVEL #RT_AttitudeCommand_TargetParallel = 目标平面 #RT_AttitudeCommand_North = 北面 #RT_AttitudeCommand_Maneuver = 机动 #RT_AttitudeCommand_World = 世界 //Buttons #RT_AttitudeFragment_KILL = 稳定 #RT_AttitudeFragment_KILL_desc = 稳定航天器. #RT_AttitudeFragment_NODE = NODE #RT_AttitudeFragment_NODE_desc = 沿顺向指向第一个机动节点的方向。 #RT_AttitudeFragment_RVEL = RVEL #RT_AttitudeFragment_RVEL_desc = 朝向所设定目标相对顺向方向. #RT_AttitudeFragment_ORB = ORB #RT_AttitudeFragment_ORB_desc = 朝向相对轨道顺向方向. #RT_AttitudeFragment_SRF = SRF #RT_AttitudeFragment_SRF_desc = 朝向相对地面顺向方向. #RT_AttitudeFragment_TGT = TGT #RT_AttitudeFragment_TGT_desc = 朝向目标所在位置. #RT_AttitudeFragment_OFF = 关闭 #RT_AttitudeFragment_OFF_desc = 关闭功能. #RT_AttitudeFragment_CUSTOM = 自定义 #RT_AttitudeFragment_CUSTOM_desc = 相对北面固定朝向为所设置的俯仰角、偏航角和滚转角. #RT_AttitudeFragment_Prograde = 顺向 #RT_AttitudeFragment_Prograde_desc = 朝向顺向. #RT_AttitudeFragment_RadialPlus = 径上 #RT_AttitudeFragment_RadialPlus_desc = 朝向径向向上. #RT_AttitudeFragment_NormalPlus = 法向 #RT_AttitudeFragment_NormalPlus_desc = 朝向法线方向. #RT_AttitudeFragment_Retrograde = 逆向 #RT_AttitudeFragment_Retrograde_desc = 朝向逆向方向. #RT_AttitudeFragment_RadialMinus = 径下 #RT_AttitudeFragment_RadialMinus_desc = 朝向径向向下. #RT_AttitudeFragment_NormalMinus = 反法向 #RT_AttitudeFragment_NormalMinus_desc = 朝向反法线方向. #RT_AttitudeFragment_PIT = PIT #RT_AttitudeFragment_PIT_desc = 设定俯仰角. #RT_AttitudeFragment_HDG = HDG #RT_AttitudeFragment_HDG_desc = 设定偏航角. #RT_AttitudeFragment_RLL = RLL #RT_AttitudeFragment_RLL_desc = 设定滚转角. #RT_AttitudeFragment_IgnorePit = IGN\nPIT #RT_AttitudeFragment_IgnorePit_desc = Ignore pitch control. #RT_AttitudeFragment_IgnoreHdr = IGN\nHDR #RT_AttitudeFragment_IgnoreHdr_desc = Ignore heading control. #RT_AttitudeFragment_IgnoreRll = IGN\nRLL #RT_AttitudeFragment_IgnoreRll_desc = Ignore roll control. #RT_AttitudeFragment_Throttle = 节流阀: #RT_AttitudeFragment_BURN = 点火 #RT_AttitudeFragment_BURN_desc = 例如: 125, 125s, 5m20s, 1d6h20m10s, 123m/s. #RT_AttitudeFragment_EXEC = 执行 #RT_AttitudeFragment_EXEC_desc = 执行下一个和后续的机动节点。 #RT_AttitudeFragment_Queue_desc = 切换到指令队列和延时功能. #RT_RoverFragment_TGT = TGT #RT_RoverFragment_TGT_desc = 驶向物体的经纬度或船只目标. #RT_RoverFragment_HDG = HDG #RT_RoverFragment_HDG_desc = 驾驶在特定航向和特定距离. #RT_RoverFragment_FINE = FINE #RT_RoverFragment_FINE_desc = 以特定的滚转或距离行驶。. #RT_RoverFragment_DRIVE = 行驶 #RT_RoverFragment_DRIVE_desc = 启动自动驾驶. #RT_RoverFragment_Queue_desc = 切换到指令队列和延时功能. //FINE #RT_RoverFragment_FINESteer = 转向: #RT_RoverFragment_FINESteer_desc = 转多少 #RT_RoverFragment_right = 右 #RT_RoverFragment_left = 左 #RT_RoverFragment_Turn = 转 #RT_RoverFragment_Turn_desc = 转几度 #RT_RoverFragment_Dist = 距 #RT_RoverFragment_Dist_desc = 行驶距离 #RT_RoverFragment_Speed = 速度 #RT_RoverFragment_Speed_desc = 保持多少速度,反向为负 //HDG #RT_RoverFragment_HDGSteer = 转向: #RT_RoverFragment_HDGSteer_desc = 最大转弯速度有多快 #RT_RoverFragment_mHdg = Hdg #RT_RoverFragment_mHdg_desc = 航向保持 #RT_RoverFragment_HDGSpeed_desc = 速度保持 //TGT #RT_RoverFragment_coordinations = 天体坐标 #RT_RoverFragment_coordinations_desc = 按住<<1>>并单击天体地表输入坐标 #RT_RoverFragment_TargetVessel = 指定飞船 #RT_RoverFragment_TargetVessel_desc = 开往这艘飞船 #RT_RoverFragment_ModeLabel = 模式: <<1>> #RT_RoverFragment_LAT = 纬 #RT_RoverFragment_LAT_desc = 开往的纬度 #RT_RoverFragment_LON = 经 #RT_RoverFragment_LON_desc = 开往的经度 //PowerFragment #RT_PowerFragment_HBNT = 节能 #RT_PowerFragment_HBNT_desc = 超低功耗休眠,关闭所有开启的天线. #RT_PowerFragment_THLD = 平衡 #RT_PowerFragment_THLD_desc = 自动节能 #RT_PowerFragment_WAKE = 高性能 #RT_PowerFragment_WAKE_desc = 关闭任何省电方案. #RT_PowerFragment_Queue_desc = 调整指令队列和信号延迟功能. //QueueFragment #RT_QueueFragment_statuText = 状态: <<1>>. #RT_QueueFragment_statuText_desc = 影响: <<1>>. #RT_QueueFragment_statu1 = 连接错误 #RT_QueueFragment_statu1_desc = 无法添加指令到队列 #RT_QueueFragment_statu2 = 电量耗尽 #RT_QueueFragment_statu2_desc = 指令可能会丢失 #RT_QueueFragment_statu2_desc2 = 计时器内容 #RT_QueueFragment_statu3 = 待机 #RT_QueueFragment_statu3_desc = 无法控制 #RT_QueueFragment_statu4 = 堵塞 #RT_QueueFragment_statu4_desc = 冻结 #RT_QueueFragment_statu5 = 所有系统类别 #RT_QueueFragment_statu5_desc = 无 #RT_QueueFragment_Setsignaldelay = 设置信号延迟在此之后-当前:<<1>> #RT_QueueFragment_Signaldelay = 延迟(+信号): <<1>> #RT_QueueFragment_Signaldelay_desc = 包括信号延迟在内的总延迟。 #RT_QueueFragment_AddExtraDelay_desc = 添加额外的信号延迟 - 例如:125,125s,5m20s,1d6h20m10s #RT_PowerModecmd_Hibernate = 电源: 休眠 (<<1>> 天线) #RT_PowerModecmd_Hibernate_deact = 停用 #RT_PowerModecmd_Hibernate_inact = 停止工作 <<1>> #RT_PowerModecmd_AntennaSaver = 电源:在阈值时自动取消/重新激活天线 #RT_PowerModecmd_Wake = 电源:终止任何活动用电状态 #RT_PowerModecmd_Unknown = 电源: 未知 //PIDControllerFragment //Pitch Info #RT_PIDControllerFragment_Pitch = 俯仰 //Roll Info #RT_PIDControllerFragment_Roll = 滚转 //Yaw Info #RT_PIDControllerFragment_Yaw = 偏航 #RT_PIDControllerFragment_TorqueMoI = 惯性扭矩速率: #RT_PIDControllerFragment_TorqueMoI_desc = 当前转矩对质量惯性的速率 #RT_PIDControllerFragment_DeviationError = 偏差: #RT_PIDControllerFragment_DeviationError_desc = 目标点偏差 #RT_PIDControllerFragment_Output = 输出: #RT_PIDControllerFragment_Output_desc = 飞行控制状态输出 //PIDControl #RT_PIDControllerFragment_PIDHelp = 请查看 ni.com/white-paper/3782/en #RT_PIDControllerFragment_Kp = 比例增益 #RT_PIDControllerFragment_Kp_desc = (1) 当I和D项设置为0时,增加,直到循环的输出振荡为止 #RT_PIDControllerFragment_Ki = 积分 #RT_PIDControllerFragment_Ki_desc = (2) 增加以停止振荡. #RT_PIDControllerFragment_Kd = 微分 #RT_PIDControllerFragment_Kd_desc = (3) 增加,直到循环可以接受地快速到达其目标点. #RT_PIDControllerFragment_button1 = 保存 #RT_PIDControllerFragment_button1_desc = 永久保存所有值。 #RT_PIDControllerFragment_button2 = 接受 #RT_PIDControllerFragment_button2_desc = 将所有值连接到飞行PID控制器。 #RT_PIDControllerFragment_Queue_desc = 切换队列和延迟功能。 } } ================================================ FILE: GameData/RemoteTech/Parts/GigaDish1/part.cfg ================================================ PART { name = RTGigaDish1 module = Part author = JDP mesh = model.mu scale = 0.1 node_stack_bottom = 0, 0, 0, 0.0, -1.0, 0.0 node_attach = 0, 0, 0, 0.0, -1.0, 0.0, 1 entryCost = 38500 cost = 11000 category = Communication subcategory = 0 title = #RT_RTGigaDish1_title//Reflectron GX-128 manufacturer = #RT_RTGigaDish1_manufacturer//Parabolic Industries description = #RT_RTGigaDish1_desc//A massive medium-interplanetary class dish. Wherever you are in the Kerbol system, you'll be able to stay in contact with this. attachRules = 1,1,1,0,0 mass = 0.24 dragModelType = default maximum_drag = 0.2 minimum_drag = 0.2 angularDrag = 2 crashTolerance = 12 maxTemp = 2900 bulkheadProfiles = size1,srf MODULE { name = ModuleAnimateGeneric animationName = Default Take isOneShot = false startEventGUIName = #RemoteTech_Extend//Extend endEventGUIName = #RemoteTech_Retract//Retract actionGUIName = #RemoteTech_Toggle//Toggle Antenna } } ================================================ FILE: GameData/RemoteTech/Parts/GigaDish2/part.cfg ================================================ PART { name = RTGigaDish2 module = Part author = Carmics mesh = model.mu scale = 0.1 specPower = 0.1 rimFalloff = 3 alphaCutoff = 0.5 node_stack_bottom = 0, 0, 0, 0.0, -1.0, 0.0 node_attach = 0, 0, 0, 0.0, -1.0, 0.0, 1 entryCost = 33000 cost = 9500 category = Communication subcategory = 0 title = #RT_GigaDish2_title//CommTech-1 manufacturer = #RT_GigaDish2_manufacturer//AIES Aerospace description = #RT_GigaDish2_desc//A powerful high-gain fixed dish. It can reach almost anything in the solar system. attachRules = 1,1,1,0,0 mass = 0.3 dragModelType = default maximum_drag = 0.2 minimum_drag = 0.2 angularDrag = 2 crashTolerance = 12 maxTemp = 2900 bulkheadProfiles = size3,srf } ================================================ FILE: GameData/RemoteTech/Parts/LongAntenna2/part.cfg ================================================ PART { MODEL { model = Squad/Parts/Utility/commsDish16/model position = 0.0, 0.0, 0.0 scale = 1.0, 2.0, 1.0 rotation = 0.0, 0.0, 0.0 } name = RTLongAntenna2 module = Part author = NovaSilisko mesh = model.mu scale = 1 rescaleFactor = 1 node_stack_bottom = 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0 node_attach = 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0 entryCost = 1500 cost = 600 category = Communication subcategory = 0 title = #RT_LongAntenna2_title//Communotron 32 manufacturer = #RT_LongAntenna2_manufacturer//Ionic Protonic Electronics description = #RT_LongAntenna2_desc//The Communotron 32 is a longer range version of the last generation, now with even more spying potential. If you don't believe us, ask the Kerbal Security Agency. attachRules = 1,1,0,0,1 mass = 0.01 dragModelType = default maximum_drag = 0.2 minimum_drag = 0.2 angularDrag = 2 crashTolerance = 7 maxTemp = 2000 PhysicsSignificance = 1 bulkheadProfiles = size0,srf tags = aerial antenna radio signal transmi MODULE { name = ModuleAnimateGeneric animationName = antenna isOneShot = false startEventGUIName = #RemoteTech_Extend//Extend endEventGUIName = #RemoteTech_Retract//Retract actionGUIName = #RemoteTech_Toggle//Toggle Antenna } MODULE { name = ModuleCargoPart stackableQuantity = 4 packedVolume = 2 } } ================================================ FILE: GameData/RemoteTech/Parts/LongAntenna3/part.cfg ================================================ PART { name = RTLongAntenna3 module = Part author = Carmics mesh = model.mu scale = 1 specPower = 0.1 rimFalloff = 3 alphaCutoff = 0.5 node_attach = 0.0, 0.0, 0.0, 0.0, -1.0, 0.0 entryCost = 1000 cost = 400 category = Communication subcategory = 0 title = #RT_LongAntenna3_title//CommTech EXP-VR-2T manufacturer = #RT_LongAntenna3_manufacturer//AIES Aerospace description = #RT_LongAntenna3_desc//This effective and compact folding antenna is highly recommended for your research missions. attachRules = 0,1,0,0,1 mass = 0.02 dragModelType = default maximum_drag = 0.2 minimum_drag = 0.2 angularDrag = 2 crashTolerance = 8 maxTemp = 1200 PhysicsSignificance = 1 bulkheadProfiles = size0,srf tags = aerial antenna radio signal transmi MODULE { name = ModuleAnimateGeneric animationName = EXTantenna isOneShot = false startEventGUIName = #RemoteTech_Extend//Extend endEventGUIName = #RemoteTech_Retract//Retract actionGUIName = #RemoteTech_Toggle//Toggle Antenna } MODULE { name = ModuleCargoPart stackableQuantity = 4 packedVolume = 1 } } ================================================ FILE: GameData/RemoteTech/Parts/LongDish1/part.cfg ================================================ PART { name = RTLongDish1 module = Part author = JDP | rkman mesh = model.mu scale = 0.1 specPower = 0.1 rimFalloff = 3 alphaCutoff = 0.5 node_stack_bottom = 0.0, -0.2, 0.0, 0.0, -1.0, 0.0, 0 node_attach = 0.0, -0.2, 0.0, 0.0, -1.0, 0.0 entryCost = 6000 cost = 2000 category = -1 subcategory = 0 title = #RT_LongDish1_title//Reflectron LL-5 manufacturer = #RT_LongDish1_manufacturer//Parabolic Industries description = #RT_LongDish1_desc//This dish will carry your signal out as far as Duna. But don't count on it working further out. Warranty void if used as a salad bowl. attachRules = 1,1,0,0,1 mass = 1.0 dragModelType = default maximum_drag = 0.2 minimum_drag = 0.2 angularDrag = 2 crashTolerance = 8 maxTemp = 1200 bulkheadProfiles = size1,srf } ================================================ FILE: GameData/RemoteTech/Parts/LongDish2/part.cfg ================================================ PART { name = RTLongDish2 module = Part author = kommit mesh = newll5.mu scale = 0.1 specPower = 0.1 rimFalloff = 3 alphaCutoff = 0.5 node_stack_bottom = 0.0, -0.2, 0.0, 0.0, -1.0, 0.0, 0 node_attach = 0.0, -0.75, 0.0, 0.0, -1.0, 0.0 entryCost = 6000 cost = 2000 category = Communication subcategory = 0 title = #RT_LongDish2_title//Reflectron KR-14 manufacturer = #RT_LongDish2_manufacturer//Parabolic Industries description = #RT_LongDish2_desc//Replacing the LL-5, this dish will carry your signal beyond Duna looking fancier than ever. attachRules = 1,1,0,0,1 mass = 0.2 dragModelType = default maximum_drag = 0.2 minimum_drag = 0.2 angularDrag = 2 crashTolerance = 8 maxTemp = 1200 bulkheadProfiles = size2,srf } ================================================ FILE: GameData/RemoteTech/Parts/ShortAntenna1/part.cfg ================================================ PART { name = RTShortAntenna1 module = Part author = JDP | rkman mesh = model.mu scale = 0.1 specPower = 0.1 rimFalloff = 3 alphaCutoff = 0.5 node_attach = 0.21, 0.0, 0.0, 1.0, 0.0, 0.0 entryCost = 200 cost = 60 category = Communication subcategory = 0 title = #RT_ShortAntenna1_title//Reflectron DP-10 manufacturer = #RT_ShortAntenna1_manufacturer//Parabolic Industries description = #RT_ShortAntenna1_desc//When moving this antenna to a test site, engineers always forgot to turn it on. Frustrated with having to walk back and forth, they had this antenna be active by default. attachRules = 0,1,0,0,0 mass = 0.015 dragModelType = default maximum_drag = 0.2 minimum_drag = 0.2 angularDrag = 2 crashTolerance = 7 maxTemp = 2000 // = 3000 PhysicsSignificance = 1 bulkheadProfiles = size0,srf tags = aerial antenna radio signal transmi MODULE { name = ModuleCargoPart stackableQuantity = 4 packedVolume = 5 } } ================================================ FILE: GameData/RemoteTech/Parts/ShortDish1/part.cfg ================================================ PART { name = RTShortDish1 module = Part author = JDP mesh = model.mu scale = 0.1 specPower = 0.1 rimFalloff = 3 alphaCutoff = 0.5 node_stack_bottom = 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0 node_attach = 0.0, 0.0, 0.0, 0.0, -1.0, 0.0 entryCost = 2000 cost = 800 category = -1 subcategory = 0 title = #RT_ShortDish1_title//Reflectron SS-5 manufacturer = #RT_ShortDish1_manufacturer//Parabolic Industries. description = #RT_ShortDish1_desc//If you want to break the surly bonds of Kerbin, you will need some serious range. What once was considered a mere garbage can lid is now the cornerstone of Münar communication. attachRules = 1,1,0,0,1 mass = 0.5 dragModelType = default maximum_drag = 0.2 minimum_drag = 0.2 angularDrag = 2 crashTolerance = 8 maxTemp = 1200 bulkheadProfiles = size1,srf } ================================================ FILE: GameData/RemoteTech/Parts/ShortDish2/part.cfg ================================================ PART { name = RTShortDish2 module = Part author = kommit mesh = newss5.mu scale = 0.1 specPower = 0.1 rimFalloff = 3 alphaCutoff = 0.5 node_stack_bottom = 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0 node_attach = 0.0, -0.225, 0.0, 0.0, -1.0, 0.0 entryCost = 2000 cost = 800 category = Communication subcategory = 0 title = #RT_ShortDish2_title// Reflectron KR-7 manufacturer = #RT_ShortDish2_manufacturer//Parabolic Industries. description = #RT_ShortDish2_desc//Locals complained about their missing garbage lids, so our engineers quickly developed an alternative. Matching performance with the SS-5 for only double the cost! attachRules = 1,1,0,0,1 mass = 0.05 dragModelType = default maximum_drag = 0.2 minimum_drag = 0.2 angularDrag = 2 crashTolerance = 8 maxTemp = 1200 bulkheadProfiles = size1,srf MODULE { name = ModuleCargoPart packedVolume = 650 } } ================================================ FILE: GameData/RemoteTech/RemoteTech.version ================================================ { "NAME": "RemoteTech", "URL": "https://raw.githubusercontent.com/RemoteTechnologiesGroup/RemoteTech/master/GameData/RemoteTech/RemoteTech.version", "CHANGE_LOG_URL": "https://raw.githubusercontent.com/RemoteTechnologiesGroup/RemoteTech/master/CHANGES.md", "DOWNLOAD": "http://spacedock.info/mod/520/RemoteTech", "GITHUB": { "USERNAME": "RemoteTechnologiesGroup", "REPOSITORY": "RemoteTech", "ALLOW_PRE_RELEASE": false }, "VERSION":{ "MAJOR":1, "MINOR":9, "PATCH":12, "BUILD":0 }, "KSP_VERSION":{ "MAJOR":1, "MINOR":12, "PATCH":1 }, "KSP_VERSION_MIN":{ "MAJOR":1, "MINOR":12, "PATCH":0 }, "KSP_VERSION_MAX":{ "MAJOR":1, "MINOR":12, "PATCH":1 } } ================================================ FILE: GameData/RemoteTech/RemoteTech_AIES_Antennas.cfg ================================================ // Support for AIES antennas // Original config by deepfield // Rebalancing by Starstrider42; blame him for any issues //---------------------------------------------------------- // Omni Antennas // CommTech ESC-EXP Antenna // Same size/weight as the Communotron 16/32; give it a relatively short range @PART[Antennaesc]:AFTER[AIES_Aerospace]:NEEDS[RemoteTech] { !MODULE[ModuleDataTransmitter] {} @MODULE[ModuleAnimateGeneric] { %allowManualControl = false } %MODULE[ModuleRTAntenna] { %Mode0OmniRange = 500000 %Mode1OmniRange = 2000000 %EnergyCost = 0.2 %MaxQ = 6000 %DeployFxModules = 0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } // CommTech EXP-VR-2T Antenna @PART[Antennaexpatvr2]:AFTER[AIES_Aerospace]:NEEDS[RemoteTech] { !MODULE[ModuleDataTransmitter] {} @MODULE[ModuleAnimateGeneric] { %allowManualControl = false } %MODULE[ModuleRTAntenna] { %Mode0OmniRange = 0 %Mode1OmniRange = 3000000 %EnergyCost = 0.18 %MaxQ = 6000 %DeployFxModules = 0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } // Much heavier and more power-hungry than DP-10; give it a longer range to compensate @PART[AntennaDF2]:AFTER[AIES_Aerospace]:NEEDS[RemoteTech] { !MODULE[ModuleDataTransmitter] {} @MODULE[ModuleAnimateGeneric] { %allowManualControl = false } %MODULE[ModuleRTAntenna] { %Mode0OmniRange = 500000 %Mode1OmniRange = 1000000 %EnergyCost = 0.1 %ProgressFxModules = 0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } //---------------------------------------------------------- // Dishes // CommTech CL-1 Dish // Smaller and lighter than the Comms DTS-M1 @PART[Dishcl1]:AFTER[AIES_Aerospace]:NEEDS[RemoteTech] { !MODULE[ModuleDataTransmitter] {} @MODULE[ModuleAnimateGeneric] { %allowManualControl = false } %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 9000000 %EnergyCost = 0.2 %DishAngle = 90.0 %MaxQ = 6000 %DeployFxModules = 0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } // CommTech PCF-5 Dish // Sl. heavier than Comms DTS-M1, but non-animated @PART[Dishpcf]:AFTER[AIES_Aerospace]:NEEDS[RemoteTech] { !MODULE[ModuleDataTransmitter] {} @MODULE[ModuleAnimateGeneric],* { %allowManualControl = false } %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 16000000 %EnergyCost = 0.35 %DishAngle = 60.0 %ProgressFxModules = 0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } // CommTech-1 Antenna // Same mass as PCF-5, but deployable @PART[Antennacomtec1]:AFTER[AIES_Aerospace]:NEEDS[RemoteTech] { !MODULE[ModuleDataTransmitter] {} @MODULE[ModuleAnimateGeneric] { %allowManualControl = false } %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 50000000 %EnergyCost = 0.82 %DishAngle = 45.0 %MaxQ = 6000 %DeployFxModules = 0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } // CommTech-2 Antenna @PART[Antennacomtec2]:AFTER[AIES_Aerospace]:NEEDS[RemoteTech] { !MODULE[ModuleDataTransmitter] {} @MODULE[ModuleAnimateGeneric] { %allowManualControl = false } %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 90000000 %EnergyCost = 0.62 %DishAngle = 25.0 %MaxQ = 6000 %DeployFxModules = 0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } // Comlar 1 Dish // Lighter version of RT's CommTech 1; @PART[dishcomlar1]:AFTER[AIES_Aerospace]:NEEDS[RemoteTech] { !MODULE[ModuleDataTransmitter] {} @MODULE[ModuleAnimateGeneric] { %allowManualControl = false } %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 130000000000 %EnergyCost = 1.95 %DishAngle = 0.016 %ProgressFxModules = 0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } // CommTech CM-60 Dish // Much lighter than the KR-14... make it an intermediate range dish? @PART[Dishmccomu]:AFTER[AIES_Aerospace]:NEEDS[RemoteTech] { !MODULE[ModuleDataTransmitter] {} @MODULE[ModuleAnimateGeneric],* { %allowManualControl = false } %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 40000000000 %EnergyCost = 0.85 %DishAngle = 0.06 %ProgressFxModules = 0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } // CommTech Omega-2G Dish // Lighter, deployable version of KR-14 @PART[Dishomega2g]:AFTER[AIES_Aerospace]:NEEDS[RemoteTech] { !MODULE[ModuleDataTransmitter] {} @MODULE[ModuleAnimateGeneric] { %allowManualControl = false } %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 60000000000 %EnergyCost = 0.85 %DishAngle = 0.04 %MaxQ = 6000 %DeployFxModules = 0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } ================================================ FILE: GameData/RemoteTech/RemoteTech_AIES_Probes.cfg ================================================ // Support for AIES probe cores // Original config by deepfield // Explon 6D @PART[explonpod]:AFTER[AIES_Aerospace]:NEEDS[RemoteTech] { %MODULE[ModuleSPU] { %IsRTCommandStation = true %RTCommandMinCrew = 6 } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } // RC7 'Invest' @PART[investpod]:AFTER[AIES_Aerospace]:NEEDS[RemoteTech] { %MODULE[ModuleSPU] {} %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } // RC3 'Maxur' @PART[Maxurpod]:AFTER[AIES_Aerospace]:NEEDS[RemoteTech] { %MODULE[ModuleSPU] {} %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } // C2 'Neptuno' @PART[neptuno]:AFTER[AIES_Aerospace]:NEEDS[RemoteTech] { %MODULE[ModuleSPU] { %IsRTCommandStation = true %RTCommandMinCrew = 6 } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } // G1 'Nova' @PART[novapod]:AFTER[AIES_Aerospace]:NEEDS[RemoteTech] { %MODULE[ModuleSPU] {} %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } // VR2 'Sondex' @PART[sondex2pod]:AFTER[AIES_Aerospace]:NEEDS[RemoteTech] { %MODULE[ModuleSPU] {} %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } // R350 'TOR' @PART[torpod]:AFTER[AIES_Aerospace]:NEEDS[RemoteTech] { %MODULE[ModuleSPU] {} %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } // UAE 'Cubeplate' @PART[UAEcubplate]:AFTER[AIES_Aerospace]:NEEDS[RemoteTech] { %MODULE[ModuleSPU] {} %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } ================================================ FILE: GameData/RemoteTech/RemoteTech_Antennas.cfg ================================================ // Centralized configuration of new antenna properties // Original config by Cilph @PART[RTShortAntenna1]:FOR[RemoteTech] { %TechRequired = start %MODULE[ModuleRTAntenna] { %IsRTActive = true %Mode0OmniRange = 0 %Mode1OmniRange = 500000 %EnergyCost = 0.01 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } @PART[RTLongAntenna2]:FOR[RemoteTech] { %TechRequired = largeElectrics @MODULE[ModuleAnimateGeneric] { %allowManualControl = false %actionAvailable = false %eventAvailableFlight = false %eventAvailableEditor = false %eventAvailableEVA = false } %MODULE[ModuleRTAntenna] { %Mode0OmniRange = 0 %Mode1OmniRange = 5000000 %MaxQ = 3000 %EnergyCost = 0.6 %DeployFxModules = 0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } @PART[RTLongAntenna3]:FOR[RemoteTech] { %TechRequired = specializedElectrics @MODULE[ModuleAnimateGeneric] { %allowManualControl = false %actionAvailable = false %eventAvailableFlight = false %eventAvailableEditor = false %eventAvailableEVA = false } %MODULE[ModuleRTAntenna] { %Mode0OmniRange = 0 %Mode1OmniRange = 3000000 %MaxQ = 6000 %EnergyCost = 0.18 %DeployFxModules = 0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } @PART[RTShortDish1]:FOR[RemoteTech] { %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 90000000 %EnergyCost = 0.82 %DishAngle = 25.0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } @PART[RTShortDish2]:FOR[RemoteTech] { %TechRequired = electrics %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 90000000 %EnergyCost = 0.82 %DishAngle = 25.0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } @PART[RTLongDish1]:FOR[RemoteTech] { %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 60000000000 %EnergyCost = 0.93 %DishAngle = 0.04 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } @PART[RTLongDish2]:FOR[RemoteTech] { %TechRequired = largeElectrics %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 60000000000 %EnergyCost = 0.93 %DishAngle = 0.04 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } @PART[RTGigaDish1]:FOR[RemoteTech] { %TechRequired = advScienceTech @MODULE[ModuleAnimateGeneric] { %allowManualControl = false %actionAvailable = false %eventAvailableFlight = false %eventAvailableEditor = false %eventAvailableEVA = false } %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 400000000000 %EnergyCost = 2.80 %MaxQ = 6000 %DishAngle = 0.005 %DeployFxModules = 0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } @PART[RTGigaDish2]:FOR[RemoteTech] { %TechRequired = specializedElectrics %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 350000000000 %EnergyCost = 2.60 %DishAngle = 0.006 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } ================================================ FILE: GameData/RemoteTech/RemoteTech_B9_Probes.cfg ================================================ // Support for B9 probe cores // Original config by Starstrider42 @PART[B9_Cockpit_D25]:AFTER[B9_Aerospace]:NEEDS[RemoteTech] { %MODULE[ModuleSPU] { %IsRTCommandStation = true %RTCommandMinCrew = 6 } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } @PART[B9_Cockpit_MK1_Control_ACU]:AFTER[B9_Aerospace]:NEEDS[RemoteTech] { %MODULE[ModuleSPU] { } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } ================================================ FILE: GameData/RemoteTech/RemoteTech_CactEye_Probes.cfg ================================================ // Support for stock probe cores // Original config by xZise @PART[probeCoreSlim]:FOR[RemoteTech] { %MODULE[ModuleSPU] { } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } ================================================ FILE: GameData/RemoteTech/RemoteTech_FASA_Antennas.cfg ================================================ // Support for FASA antennas // Original config by reignerok, used with permission @PART[FASAlaunchClamp125]:AFTER[FASA]:NEEDS[RemoteTech] { %MODULE[ModuleRTAntennaPassive] { %OmniRange = 5000 } } @PART[FASAlaunchClamp25]:AFTER[FASA]:NEEDS[RemoteTech] { %MODULE[ModuleRTAntennaPassive] { %OmniRange = 5000 } } // Apollo and Atlas clamps don't provide power, so why would they provide a land line? @PART[FASAlaunchTower]:AFTER[FASA]:NEEDS[RemoteTech] { %MODULE[ModuleRTAntennaPassive] { %OmniRange = 5000 } } @PART[FASAUmbilicalTower]:AFTER[FASA]:NEEDS[RemoteTech] { %MODULE[ModuleRTAntennaPassive] { %OmniRange = 5000 } } @PART[FASAExplorerProbe]:AFTER[FASA]:NEEDS[RemoteTech] // Explorer Probe Core { !MODULE[ModuleDataTransmitter] {} @MODULE[ModuleAnimateGeneric] { %allowManualControl = false } %MODULE[ModuleRTAntenna] { %Mode0OmniRange = 0 %Mode1OmniRange = 500000 %EnergyCost = 0.01 %DeployFxModules = 0 %TRANSMITTER { %PacketInterval = 1 %PacketSize = 1 %PacketResourceCost = 0.25 } } %MODULE[ModuleSPUPassive] {} } @PART[FASAMercruyCap2]:AFTER[FASA]:NEEDS[RemoteTech] // Mercury Antenna Cap { !MODULE[ModuleDataTransmitter] {} @MODULE[ModuleAnimateGeneric] { %allowManualControl = false } %MODULE[ModuleRTAntenna] { %Mode0OmniRange = 0 %Mode1OmniRange = 1500000 %EnergyCost = 0.01 %DeployFxModules = 0 %TRANSMITTER { %PacketInterval = 1 %PacketSize = 1 %PacketResourceCost = 0.25 } } } @PART[FASAGeminiAntenna]:AFTER[FASA]:NEEDS[RemoteTech] // Gemini Antenna { !MODULE[ModuleDataTransmitter] {} @MODULE[ModuleAnimateGeneric] { %allowManualControl = false } %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 20000000 %EnergyCost = 0.5 %MaxQ = 6000 %DishAngle = 90 %DeployFxModules = 0 %TRANSMITTER { %PacketInterval = 0.15 %PacketSize = 3 %PacketResourceCost = 10.0 } } %MODULE[ModuleSPUPassive] {} } @PART[FASAAgenaAnt]:AFTER[FASA]:NEEDS[RemoteTech] // Agena Antenna { !MODULE[ModuleDataTransmitter] {} @MODULE[ModuleAnimateGeneric] { %allowManualControl = false } %MODULE[ModuleRTAntenna] { %Mode0OmniRange = 0 %Mode1OmniRange = 3750000 %MaxQ = 6000 %EnergyCost = 0.36 %DeployFxModules = 0 %TRANSMITTER { %PacketInterval = 0.10 %PacketSize = 2 %PacketResourceCost = 8.0 } } %MODULE[ModuleSPUPassive] {} } @PART[FASAApollo_SM_Dish]:AFTER[FASA]:NEEDS[RemoteTech] // Apollo Service Module main Dish { !MODULE[ModuleDataTransmitter] {} @MODULE[ModuleAnimateGeneric] { %allowManualControl = false } %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 35000000 %EnergyCost = 0.76 %MaxQ = 6000 %DishAngle = 67.5 %DeployFxModules = 0 %TRANSMITTER { %PacketInterval = 0.18 %PacketSize = 2 %PacketResourceCost = 20.0 } } %MODULE[ModuleSPUPassive] {} } @PART[FASALM_Antenna]:AFTER[FASA]:NEEDS[RemoteTech] // LEM Antennas { !MODULE[ModuleDataTransmitter] {} @MODULE[ModuleAnimateGeneric] { %allowManualControl = false } %MODULE[ModuleRTAntenna] { %Mode0OmniRange = 0 %Mode1OmniRange = 1000000 %EnergyCost = 0.01 %MaxQ = 6000 %DeployFxModules = 0 %TRANSMITTER { %PacketInterval = 0.15 %PacketSize = 3 %PacketResourceCost = 1.0 } } %MODULE[ModuleSPUPassive] {} } ================================================ FILE: GameData/RemoteTech/RemoteTech_FASA_Probes.cfg ================================================ // Support for FASA probe cores // Original config by reignerok, used with permission @PART[FASAExplorerProbe]:AFTER[FASA]:NEEDS[RemoteTech] // Explorer Probe Core { %MODULE[ModuleSPU] { } // Probe core has a standard omni antenna; passive antenna is redundant } @PART[FASAApolloIU]:AFTER[FASA]:NEEDS[RemoteTech] // Apollo Instrument Unit { %MODULE[ModuleSPU] { } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } @PART[FASAAgenaProbe]:AFTER[FASA]:NEEDS[RemoteTech] // Agena Probe Core { %MODULE[ModuleSPU] { } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } @PART[FASAICBMProbe]:AFTER[FASA]:NEEDS[RemoteTech] // MIRV Computer Core { %MODULE[ModuleSPU] { } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } @PART[FASA_Gemini_ASAS_Comp]:AFTER[FASA]:NEEDS[RemoteTech] // Gemini ASAS Mini Computer { %MODULE[ModuleSPU] { } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } @PART[FASAPioneerProbe]:AFTER[FASA]:NEEDS[RemoteTech] // Pioneer probe { %MODULE[ModuleSPU] { } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } ================================================ FILE: GameData/RemoteTech/RemoteTech_HGR.cfg ================================================ // Speedwaystar's RemoteTech patch for HGRSolarPanels // omni antenna, ranges = 100km undeployed and 1500km deployed @PART[HGRSolarPanels1]:NEEDS[RemoteTech]:FIRST { !MODULE[ModuleDataTransmitter] {} %MODULE[ModuleRTAntenna] { %Mode0OmniRange = 100000 %Mode1OmniRange = 1500000 %EnergyCost = 0.05 %DeployFxModules = 1 %TRANSMITTER { %PacketInterval = 0.4 %PacketSize = 2 %PacketResourceCost = 12.0 } } %MODULE[ModuleSPUPassive] {} } ================================================ FILE: GameData/RemoteTech/RemoteTech_LLL_Antennas.cfg ================================================ // Support for LackLuster Labs antennas // Original config by Starstrider42 //---------------------------------------------------------- // Omni Antennas // Communotron 32 // Heavier than RT's Communotron 32 @PART[LLLCommPole2]:AFTER[LLL]:NEEDS[RemoteTech] { !MODULE[ModuleDataTransmitter] {} %MODULE[ModuleRTAntenna] { %Mode0OmniRange = 0 %Mode1OmniRange = 7000000 %EnergyCost = 0.50 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } // Communotron 64 // Same mass as LLL's Communotron 32 @PART[LLLCommPole]:AFTER[LLL]:NEEDS[RemoteTech] { !MODULE[ModuleDataTransmitter] {} %MODULE[ModuleRTAntenna] { %Mode0OmniRange = 0 %Mode1OmniRange = 15000000 %EnergyCost = 1.50 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } // Comm Tower // As heavy as an interplanetary dish @PART[Commtow]:AFTER[LLL]:NEEDS[RemoteTech] { !MODULE[ModuleDataTransmitter] {} %MODULE[ModuleRTAntenna] { %Mode0OmniRange = 0 %Mode1OmniRange = 50000000 %EnergyCost = 10.0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } //---------------------------------------------------------- // Dishes // Small Fixed Satellite Dish // Much smaller than any other dish, and as light as an omni @PART[LLLAttchDishSmall]:AFTER[LLL]:NEEDS[RemoteTech] { !MODULE[ModuleDataTransmitter] {} %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 5000000 %EnergyCost = 0.30 %DishAngle = 120.0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } // Fixed Satellite Dish // Somewhat lighter than the KR-7, but bigger @PART[LLLAttchDish]:AFTER[LLL]:NEEDS[RemoteTech] { !MODULE[ModuleDataTransmitter] {} %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 90000000 %EnergyCost = 0.50 %DishAngle = 15.0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } // Scanning Dish Satellite // Comparable to Fixed Satellite Dish in size // Give it a wider cone and a MUCH higher power consumption @PART[LLLRotDish]:AFTER[LLL]:NEEDS[RemoteTech] { !MODULE[ModuleDataTransmitter] {} %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 90000000 %EnergyCost = 1.50 %DishAngle = 45.0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } // Large Scanning Dish Satellite // As big as the GX-128 // Give it a wider cone and a MUCH higher power consumption @PART[LLLRotDish2-5]:AFTER[LLL]:NEEDS[RemoteTech] { !MODULE[ModuleDataTransmitter] {} %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 400000000000 %EnergyCost = 20.0 %DishAngle = 0.03 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } // Omni Radar // Data transmission is not its main strength, so make it basic @PART[PolyRadar]:AFTER[LLL]:NEEDS[RemoteTech] { !MODULE[ModuleDataTransmitter] {} %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 35000000 %EnergyCost = 0.80 %DishAngle = 15.0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } ================================================ FILE: GameData/RemoteTech/RemoteTech_LLL_Probes.cfg ================================================ // Support for LackLuster Labs probe cores // Original config by Starstrider42 @PART[2x1Probe]:AFTER[LLL]:NEEDS[RemoteTech] { %MODULE[ModuleSPU] { } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } @PART[4x2Probe]:AFTER[LLL]:NEEDS[RemoteTech] { %MODULE[ModuleSPU] { %IsRTCommandStation = true %RTCommandMinCrew = 6 } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } @PART[BERTY3]:AFTER[LLL]:NEEDS[RemoteTech] { %MODULE[ModuleSPU] { } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } @PART[LLL1x1NoseProbe]:AFTER[LLL]:NEEDS[RemoteTech] { %MODULE[ModuleSPU] { } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } @PART[LLLMicrochip] { MODULE { name = ModuleSPU IsRTCommandStation = true } MODULE { name = ModuleRTAntennaPassive TechRequired = unmannedTech OmniRange = 2 } } ================================================ FILE: GameData/RemoteTech/RemoteTech_MarkIV_System.cfg ================================================ // RemoteTech Compatibility Patch For Mark IV Spaceplane System // Author: Sandriell (http://forum.kerbalspaceprogram.com/index.php?/profile/165509-sandriell/) // Mk4 Drone Core @PART[mk4drone-1]:NEEDS[RemoteTech] { %MODULE[ModuleSPU] { } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } ================================================ FILE: GameData/RemoteTech/RemoteTech_MechJeb.cfg ================================================ // Support for MechJeb probe core // Original config by Cilph @PART[mumech_MJ2_AR202]:HAS[!MODULE[ModuleSPU]]:AFTER[MechJeb2]:NEEDS[RemoteTech] { // Append tag to the existing part name @title ^= :$: (ModuleSPU): MODULE { name = ModuleSPU } } ================================================ FILE: GameData/RemoteTech/RemoteTech_NearFutureExploration_Antennas.cfg ================================================ // Support for Near-Future Exploration antennas and reflectors //Antennas @PART[nfex-antenna-rover-1]:FOR[NearFutureExploration]:NEEDS[RemoteTech] { %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 200000 %EnergyCost = 0.006 %MaxQ = 3000 %DishAngle = 15.0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } @PART[nfex-antenna-rover-2]:FOR[NearFutureExploration]:NEEDS[RemoteTech] { %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 90000 %EnergyCost = 0.002 %MaxQ = 3000 %DishAngle = 12.0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } @PART[nfex-antenna-rover-3]:FOR[NearFutureExploration]:NEEDS[RemoteTech] { %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 50000000 %EnergyCost = 0.45 %MaxQ = 3000 %DishAngle = 30.0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } @PART[nfex-antenna-static-mini-1]:FOR[NearFutureExploration]:NEEDS[RemoteTech] { %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 13000000 %EnergyCost = 0.2 %MaxQ = 6000 %DishAngle = 5.0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } @PART[nfex-antenna-top-dish-1]:FOR[NearFutureExploration]:NEEDS[RemoteTech] { %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 1600000 %EnergyCost = 0.15 %MaxQ = 3000 %DishAngle = 35.0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } @PART[nfex-antenna-top-dish-2]:FOR[NearFutureExploration]:NEEDS[RemoteTech] { %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 65000000 %EnergyCost = 0.8 %MaxQ = 6000 %DishAngle = 40.0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 5 %PacketResourceCost = 20.0 } } %MODULE[ModuleSPUPassive] {} } @PART[nfex-antenna-phased-single-1]:FOR[NearFutureExploration]:NEEDS[RemoteTech] { %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 1200000 %EnergyCost = 0.03 %MaxQ = 3000 %DishAngle = 12.0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } @PART[nfex-antenna-phased-single-2]:FOR[NearFutureExploration]:NEEDS[RemoteTech] { %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 8000000 %EnergyCost = 0.2 %MaxQ = 3000 %DishAngle = 12.0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } @PART[nfex-antenna-phased-single-3]:FOR[NearFutureExploration]:NEEDS[RemoteTech] { %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 18000000 %EnergyCost = 0.5 %DishAngle = 22.0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } @PART[nfex-antenna-deploy-wv3-1]:FOR[NearFutureExploration]:NEEDS[RemoteTech] { %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 70000000 %EnergyCost = 0.4 %MaxQ = 6000 %DishAngle = 10.0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } @PART[nfex-antenna-feeder-direct-1]:FOR[NearFutureExploration]:NEEDS[RemoteTech] { %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 100000 %EnergyCost = 0.004 %MaxQ = 6000 %DishAngle = 10.0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } @PART[nfex-antenna-feeder-relay-1]:FOR[NearFutureExploration]:NEEDS[RemoteTech] { %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 300000 %EnergyCost = 0.008 %MaxQ = 3000 %DishAngle = 10.0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } @PART[nfex-antenna-phased-array-1]:FOR[NearFutureExploration]:NEEDS[RemoteTech] { %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 2200000 %EnergyCost = 0.2 %MaxQ = 3000 %DishAngle = 90.0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } @PART[nfex-antenna-phased-array-2]:FOR[NearFutureExploration]:NEEDS[RemoteTech] { %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 35000000000 %EnergyCost = 1.2 %DishAngle = 60.0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } @PART[nfex-antenna-phased-array-3]:FOR[NearFutureExploration]:NEEDS[RemoteTech] { %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 20000000000 %EnergyCost = 1.25 %DishAngle = 130.0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } @PART[nfex-antenna-relay-tiny-1]:FOR[NearFutureExploration]:NEEDS[RemoteTech] { %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 2000000 %EnergyCost = 0.18 %MaxQ = 3000 %DishAngle = 30.0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } @PART[nfex-antenna-relay-tdrs-1]:FOR[NearFutureExploration]:NEEDS[RemoteTech] { %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 75000000000 %EnergyCost = 0.85 %MaxQ = 6000 %DishAngle = 0.03 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } @PART[nfex-antenna-relay-tdrs-2]:FOR[NearFutureExploration]:NEEDS[RemoteTech] { %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 200000000000 %EnergyCost = 1.7 %MaxQ = 6000 %DishAngle = 0.02 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } //Reflectors @PART[nfex-antenna-reflector-side-1]:FOR[NearFutureExploration]:NEEDS[RemoteTech] { %MODULE[ModuleDeployableReflector] { %AddedRange = 2000000 } } @PART[nfex-antenna-reflector-side-2]:FOR[NearFutureExploration]:NEEDS[RemoteTech] { %MODULE[ModuleDeployableReflector] { %AddedRange = 20000000 } } @PART[nfex-antenna-reflector-side-3]:FOR[NearFutureExploration]:NEEDS[RemoteTech] { %MODULE[ModuleDeployableReflector] { %AddedRange = 200000000 } } @PART[nfex-antenna-reflector-large-1]:FOR[NearFutureExploration]:NEEDS[RemoteTech] { %MODULE[ModuleDeployableReflector] { %AddedRange = 400000000000 } } @PART[nfex-antenna-reflector-huge-1]:FOR[NearFutureExploration]:NEEDS[RemoteTech] { %MODULE[ModuleDeployableReflector] { %AddedRange = 4000000000000 } } @PART[nfex-antenna-reflector-giant-1]:FOR[NearFutureExploration]:NEEDS[RemoteTech] { %MODULE[ModuleDeployableReflector] { %AddedRange = 100000000000000 } } ================================================ FILE: GameData/RemoteTech/RemoteTech_NearFutureExploration_Probes.cfg ================================================ // Support for Near-Future Exploration probes // Credit: the_television @PART[nfex-probe*]:FOR[NearFutureExploration]:NEEDS[RemoteTech] { %MODULE[ModuleSPU] { } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } ================================================ FILE: GameData/RemoteTech/RemoteTech_NearFuture_Probes.cfg ================================================ // Support for Near-Future automatable craft // Original config by Starstrider42 // Mk3-9 Orbital Command Pod @PART[mk3-9pod]:AFTER[NearFutureSpacecraft]:NEEDS[RemoteTech] { %MODULE[ModuleSPU] { } // This is a manned vessel with automation tech, not a probe core // So don't give it a passive antenna to reflect its multirole use } // Modular Octo-Girder Guidance Unit @PART[truss-octo-drone-01]:AFTER[NearFutureConstruction]:NEEDS[RemoteTech] { %MODULE[ModuleSPU] { } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } ================================================ FILE: GameData/RemoteTech/RemoteTech_NovaPunch_Antennas.cfg ================================================ //Support for Novapunch Antennas //Started by blnk2007 //Thor Lander RCS Antenna @PART[NP_ThorLanderRCS]:AFTER[NovaPunch2]:NEEDS[RemoteTech] { !MODULE[ModuleDataTransmitter] {} @MODULE[ModuleAnimateGeneric] { %allowManualControl = false } %MODULE[ModuleRTAntenna] { %Mode0OmniRange = 0 %Mode1OmniRange = 2500000 %MaxQ = 3000 %EnergyCost = 0.13 %DeployFxModules = 0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } ================================================ FILE: GameData/RemoteTech/RemoteTech_NovaPunch_Probes.cfg ================================================ // Support for NovaPunch probe cores // Original config submitted by Noio via the forums, used with permission // (http://forum.kerbalspaceprogram.com/threads/83305?p=1481621#post1481621) // M-38 Unoccupied Guidance System @PART[NP_Capsule_Unmanned]:AFTER[NovaPunch2]:NEEDS[RemoteTech] { %MODULE[ModuleSPU] { } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } ================================================ FILE: GameData/RemoteTech/RemoteTech_Procedural_Probes.cfg ================================================ // Support for procedural probe cores @PART[proceduralProbe]:FOR[RemoteTech] { %MODULE[ModuleSPU] { } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } ================================================ FILE: GameData/RemoteTech/RemoteTech_RLA_Probes.cfg ================================================ // Support for RLA probe cores // issue submitted by marosciacchitano; config made by kitoma. @PART[RLA_*]:HAS[@MODULE[ModuleCommand],!MODULE[ModuleSPU]]:FOR[RemoteTech] { %MODULE[ModuleSPU] { } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } ================================================ FILE: GameData/RemoteTech/RemoteTech_RestockPlus_Antennas.cfg ================================================ //Support for ReStockPlus's additional antennas //Contributed by xdreaper15 //A fixed mount version of DTS-M1 antenna without hinges, No stats changes. @PART[restock-antenna-stack-2]:FOR[RemoteTech] { %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 75000000 %EnergyCost = 0.82 %MaxQ = 6000 %DishAngle = 45.0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } //A non-hinged verson of the HG-55, no changes to stats here. @PART[restock-antenna-stack-3]:FOR[RemoteTech] { @MODULE[ModuleDeployableAntenna] { %name=ModuleAnimateGeneric %allowManualControl = false %actionAvailable = false %eventAvailableFlight = false %eventAvailableEditor = false %eventAvailableEVA = false } %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 25000000000 %EnergyCost = 1.04 %MaxQ = 6000 %DishAngle = 0.12 %DeployFxModules = 0 %TRANSMITTER { %PacketInterval = 0.15 %PacketSize = 3 %PacketResourceCost = 20.0 } } %MODULE[ModuleSPUPassive] {} } //This is 4 HighGain5 antennae stuck together, so I just multiplied the range by 4 and the EnergyCost by 2 @PART[restock-relay-radial-2]:FOR[RemoteTech] { @MODULE[ModuleDeployableAntenna] { %name=ModuleAnimateGeneric %allowManualControl = false %actionAvailable = false %eventAvailableFlight = false %eventAvailableEditor = false %eventAvailableEVA = false } %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 80000000 %EnergyCost = 1.10 %MaxQ = 6000 %DishAngle = 90.0 %DeployFxModules = 0 %TRANSMITTER { %PacketInterval = 0.15 %PacketSize = 3 %PacketResourceCost = 20.0 } } %MODULE[ModuleSPUPassive] {} } //This is 4 HighGain5 antennae stuck together, so I just multiplied the range by 4 and the EnergyCost by 2 //Name updated for KSP 1.11 compatability @PART[restock-relay-radial-2_v2]:FOR[RemoteTech] { @MODULE[ModuleDeployableAntenna] { %name=ModuleAnimateGeneric %allowManualControl = false %actionAvailable = false %eventAvailableFlight = false %eventAvailableEditor = false %eventAvailableEVA = false } %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 80000000 %EnergyCost = 1.10 %MaxQ = 6000 %DishAngle = 90.0 %DeployFxModules = 0 %TRANSMITTER { %PacketInterval = 0.15 %PacketSize = 3 %PacketResourceCost = 20.0 } } %MODULE[ModuleSPUPassive] {} } ================================================ FILE: GameData/RemoteTech/RemoteTech_Restock_Antennas.cfg ================================================ //RemoteTech Correction due to ReStock's antenna changes //Contributed by TaxiService, ChrisAdderley //Update RemoteTech Comm-32 to utilise Restock's Comm-16 model @PART[RTLongAntenna2]:AFTER[Restock]:NEEDS[RemoteTech] { @MODEL { //link to Restock's new model mesh %model = ReStock/Assets/Communication/restock-antenna-stack-1 %position = 0.0, 0.0, 0.0 %scale = 1.0, 2.0, 1.0 %rotation = 0.0, 0.0, 0.0 } @MODULE[ModuleDeployableAntenna] { //remove Restock animation control !animationName !pivotName } @MODULE[ModuleAnimateGeneric] { //link to Restock's animation trigger @animationName = Deploy } } //Update RemoteTech 3-km-range tech node to utilise Restock's Stayputnik model @PART[RTPassiveAntennaTech]:AFTER[Restock]:NEEDS[RemoteTech] { @MODEL { //link to Restock's new model mesh %model = ReStock/Assets/Command/restock-probe-sphere-1 } } //Update Communotron 16 @PART[longAntenna]:AFTER[ReStock]:NEEDS[RemoteTech] { @MODULE[ModuleAnimateGeneric] { @animationName = Deploy } } //Update HG-5 @PART[HighGainAntenna5]:AFTER[ReStock]:NEEDS[RemoteTech] { @MODULE[ModuleAnimateGeneric] { @animationName = Deploy } } //Update Communotron HG-55 @PART[HighGainAntenna]:AFTER[ReStock]:NEEDS[RemoteTech] { @MODULE[ModuleAnimateGeneric] { @animationName = Deploy_Radial } } //Update Communotron 88-88 @PART[commDish]:AFTER[ReStock]:NEEDS[RemoteTech] { @MODULE[ModuleAnimateGeneric] { @animationName = Deploy } } ================================================ FILE: GameData/RemoteTech/RemoteTech_SoundingRockets_Probes.cfg ================================================ // RTSoundingRockets // This is free and unencumbered software released into the public domain. // All the code from RemoteTech is in GPLv2 @PART[SR_Nosecone_*]:AFTER[UmbraSpaceIndustries]:NEEDS[RemoteTech,UmbraSpaceIndustries] { %MODULE[ModuleRTAntennaPassive] { %TechRequired = start %OmniRange = 100000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } @PART[SR_ProbeCore]:AFTER[UmbraSpaceIndustries]:NEEDS[RemoteTech,UmbraSpaceIndustries] { //control for probe core %MODULE[ModuleSPU] {} } @PART[SR_InlineProbe]:AFTER[UmbraSpaceIndustries]:NEEDS[RemoteTech,UmbraSpaceIndustries] { //control for probe core %MODULE[ModuleSPU] {} } @PART[RTPassiveAntennaTech]:AFTER[UmbraSpaceIndustries]:NEEDS[RemoteTech,UmbraSpaceIndustries] { %TechRequired = start } @PART[*]:HAS[MODULE[ModuleRTAntennaPassive]]:AFTER[UmbraSpaceIndustries]:NEEDS[RemoteTech,UmbraSpaceIndustries] { %MODULE[ModuleRTAntennaPassive] { %TechRequired = start } } ================================================ FILE: GameData/RemoteTech/RemoteTech_Squad_Antennas.cfg ================================================ // Support for stock antennas // Original config by Cilph @PART[*]:HAS[@MODULE[ModuleDataTransmitter]]:FOR[RemoteTech] { !MODULE[ModuleDataTransmitter]{} } @PART[launchClamp1]:FOR[RemoteTech] { %MODULE[ModuleRTAntennaPassive] { %OmniRange = 5000 } } @PART[longAntenna]:FOR[RemoteTech] { @MODULE[ModuleDeployableAntenna] { %name=ModuleAnimateGeneric %allowManualControl = false %actionAvailable = false %eventAvailableFlight = false %eventAvailableEditor = false %eventAvailableEVA = false } %MODULE[ModuleRTAntenna] { %Mode0OmniRange = 0 %Mode1OmniRange = 2500000 %MaxQ = 6000 %EnergyCost = 0.13 %DeployFxModules = 0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } @PART[mediumDishAntenna]:FOR[RemoteTech] { @MODULE[ModuleDeployableAntenna] { %name=ModuleAnimateGeneric %allowManualControl = false %actionAvailable = false %eventAvailableFlight = false %eventAvailableEditor = false %eventAvailableEVA = false } %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 50000000 %EnergyCost = 0.82 %MaxQ = 6000 %DishAngle = 45.0 %DeployFxModules = 0 %ProgressFxModules = 1 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } @PART[commDish]:FOR[RemoteTech] { @MODULE[ModuleDeployableAntenna] { %name=ModuleAnimateGeneric %allowManualControl = false %actionAvailable = false %eventAvailableFlight = false %eventAvailableEditor = false %eventAvailableEVA = false } %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 40000000000 %EnergyCost = 0.93 %MaxQ = 6000 %DishAngle = 0.06 %DeployFxModules = 0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } @PART[HighGainAntenna]:FOR[RemoteTech] { @MODULE[ModuleDeployableAntenna] { %name=ModuleAnimateGeneric %allowManualControl = false %actionAvailable = false %eventAvailableFlight = false %eventAvailableEditor = false %eventAvailableEVA = false } %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 25000000000 %EnergyCost = 1.04 %MaxQ = 6000 %DishAngle = 0.12 %DeployFxModules = 0 %ProgressFxModules = 1 %TRANSMITTER { %PacketInterval = 0.15 %PacketSize = 3 %PacketResourceCost = 20.0 } } %MODULE[ModuleSPUPassive] {} } @PART[SurfAntenna]:FOR[RemoteTech] { %MODULE[ModuleRTAntenna] { %IsRTActive = true %Mode0OmniRange = 0 %Mode1OmniRange = 1500000 %EnergyCost = 0.02 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } // HG-5 High Gain Antenna for KSP < v1.11 @PART[HighGainAntenna5]:FOR[RemoteTech] { @MODULE[ModuleDeployableAntenna] { %name=ModuleAnimateGeneric %allowManualControl = false %actionAvailable = false %eventAvailableFlight = false %eventAvailableEditor = false %eventAvailableEVA = false } %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 20000000 %EnergyCost = 0.55 %MaxQ = 6000 %DishAngle = 90 %DeployFxModules = 0 %ProgressFxModules = 1 %TRANSMITTER { %PacketInterval = 0.15 %PacketSize = 3 %PacketResourceCost = 20.0 } } %MODULE[ModuleSPUPassive] {} } // HG-5 High Gain Antenna for KSP >= v1.11 @PART[HighGainAntenna5_v2]:FOR[RemoteTech] { @MODULE[ModuleDeployableAntenna] { %name=ModuleAnimateGeneric %allowManualControl = false %actionAvailable = false %eventAvailableFlight = false %eventAvailableEditor = false %eventAvailableEVA = false } %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 20000000 %EnergyCost = 0.55 %MaxQ = 6000 %DishAngle = 90 %DeployFxModules = 0 %ProgressFxModules = 1 %TRANSMITTER { %PacketInterval = 0.15 %PacketSize = 3 %PacketResourceCost = 20.0 } } %MODULE[ModuleSPUPassive] {} } @PART[RelayAntenna100]:FOR[RemoteTech] { %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 250000000000 %EnergyCost = 1.1 %DishAngle = 0.025 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } @PART[RelayAntenna5]:FOR[RemoteTech] { %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 200000000 %EnergyCost = 1.15 %DishAngle = 12.5 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } @PART[RelayAntenna50]:FOR[RemoteTech] { %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 20000000000 %EnergyCost = 0.95 %DishAngle = 0.25 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } ================================================ FILE: GameData/RemoteTech/RemoteTech_Squad_Deployable_Stations.cfg ================================================ // Support for deployable science parts // Unworkable due to physical separation between sat dish and controller //@PART[DeployedSatDish]:FOR[RemoteTech] //{ //%MODULE[ModuleRTAntenna] { //%Mode0DishRange = 0 //%Mode1DishRange = 15000000000 //%EnergyCost = 1.0 //%DishAngle = 0.2 //%TRANSMITTER { //%PacketInterval = 0.3 //%PacketSize = 2 //%PacketResourceCost = 15.0 //} //} //%MODULE[ModuleSPUPassive] {} //} @PART[DeployedCentralStation]:FOR[RemoteTech] { %MODULE[ModuleSPU] { } %MODULE[ModuleRTAntennaPassive] { %TechRequired = spaceExploration %OmniRange = 400000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } ================================================ FILE: GameData/RemoteTech/RemoteTech_Squad_Probes.cfg ================================================ // Support for stock probe cores // Original config by Cilph @PART[probeCoreSphere]:FOR[RemoteTech] { %MODULE[ModuleSPU] { } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } @PART[probeCoreSphere_v2]:FOR[RemoteTech] { %MODULE[ModuleSPU] { } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } @PART[probeStackLarge]:FOR[RemoteTech] { %MODULE[ModuleSPU] { %IsRTCommandStation = true %RTCommandMinCrew = 6 } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } @PART[probeStackSmall]:FOR[RemoteTech] { %MODULE[ModuleSPU] { } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } @PART[probeCoreOcto]:FOR[RemoteTech] { %MODULE[ModuleSPU] { } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } @PART[probeCoreOcto_v2]:FOR[RemoteTech] { %MODULE[ModuleSPU] { } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } @PART[probeCoreOcto2]:FOR[RemoteTech] { %MODULE[ModuleSPU] { } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } @PART[probeCoreOcto2_v2]:FOR[RemoteTech] { %MODULE[ModuleSPU] { } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } @PART[probeCoreHex]:FOR[RemoteTech] { %MODULE[ModuleSPU] { } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } @PART[probeCoreHex_v2]:FOR[RemoteTech] { %MODULE[ModuleSPU] { } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } @PART[probeCoreCube]:FOR[RemoteTech] { %MODULE[ModuleSPU] { } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } @PART[mk2DroneCore]:FOR[RemoteTech] { %MODULE[ModuleSPU] { } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } @PART[roverBody]:FOR[RemoteTech] { %MODULE[ModuleSPU] { } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } @PART[roverBody_v2]:FOR[RemoteTech] { %MODULE[ModuleSPU] { } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } @PART[HECS2_ProbeCore]:FOR[RemoteTech] { %MODULE[ModuleSPU] { } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } @PART[MpoProbe]:FOR[RemoteTech] { %MODULE[ModuleSPU] { } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } @PART[MtmStage]:FOR[RemoteTech] { %MODULE[ModuleSPU] { } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } ================================================ FILE: GameData/RemoteTech/RemoteTech_StationPartsExpansion_Probes.cfg ================================================ // Support for Stockalike Station Parts Expansion station cores // Original config by Darkenator // Kerbalmax RGB-003 'Intercedor' Station Core @PART[crewtube-hub-125]:AFTER[StationPartsExpansion]:NEEDS[RemoteTech] { %MODULE[ModuleSPU] { } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } // Kerbalmax RGB-2 'Distributor' Station Core @PART[crewtube-hub-25]:AFTER[StationPartsExpansion]:NEEDS[RemoteTech] { %MODULE[ModuleSPU] { %IsRTCommandStation = true %RTCommandMinCrew = 6 } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } ================================================ FILE: GameData/RemoteTech/RemoteTech_Tech_Node.cfg ================================================ PART { name = RTPassiveAntennaTech module = Part author = Starstrider42 (config), NovaSilisko (model) MODEL { model = Squad/Parts/Command/probeStackSphere/model } TechRequired = unmannedTech entryCost = 0 cost = 0 category = -1 title = Probe Core Upgrade description = Allows RemoteTech probe cores to contact ships within 3 km without the need for a dedicated antenna. bulkheadProfiles = } ================================================ FILE: GameData/RemoteTech/RemoteTech_UniversalStorage2_Probes.cfg ================================================ // Support for Universal Storage 2 probes // Contributed by NullSnapshot // Universal Storage: Remote Operations System @PART[USDoubleProbeCore]:AFTER[UniversalStorage2]:NEEDS[RemoteTech] { %MODULE[ModuleSPU] { } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } // Universal Storage: Remote Operations System MKII @PART[USSingleProbeCore]:AFTER[UniversalStorage2]:NEEDS[RemoteTech] { %MODULE[ModuleSPU] { } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } ================================================ FILE: GameData/RemoteTech/RemoteTech_VDS_Hull_Camera.cfg ================================================ // Support for the Pictozoom 2000 from the VDS Hull Camera mod // This config made by schnip @PART[Pictozoom*2000]:FOR[RemoteTech] { %MODULE[ModuleSPU] { } %MODULE[ModuleRTAntennaPassive] { %TechRequired = unmannedTech %OmniRange = 3000 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } } ================================================ FILE: GameData/RemoteTech/RemoteTech_VensStockRevamp.cfg ================================================ // RemoteTech Compatibility Patch For Ven's Stock Revamp // Author: Sandriell (http://forum.kerbalspaceprogram.com/index.php?/profile/165509-sandriell/) // Communotron 32 (Renamed: Communotron DTS-M2) @PART[LongDeployableAntenna]:NEEDS[RemoteTech] { @title = Communotron DTS-M2 @description = The bigger brother of the Communotron DTS-M1, the DTS-M2 is a deployable, power-hungry solution to most of your medium-range communications needs. Held together with extra-reflective ductape! @cost = 900 !MODULE[ModuleDataTransmitter] {} %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 1000000000 %DishAngle = 20.0 %EnergyCost = 0.95 %MaxQ = 3000 %DeployFxModules = 0 %ProgressFxModules = 1 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } // Comms DTS-M5 (Renamed: Communotron DTS-M5) @PART[SmallFixedAntenna]:NEEDS[RemoteTech] { @title = Communotron DTS-M5 @description = The Communotron DTS-M5 is a fixed, medium-range dish with a very narrow cone angle and high electric cost. The fancy, totally not made of from one of Jeb's mother's good bed sheets, covering will allow higher temperature tolerances. @cost = 1000 @maxTemp = 2200 @mass = 0.55 !MODULE[ModuleDataTransmitter] {} %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 5000000000 %DishAngle = .05 %EnergyCost = 1.0 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } // Comms DTS-M7 (Renamed: Communotron DTS-M7) @PART[mediumFixedAntenna]:NEEDS[RemoteTech] { @title = Communotron DTS-M7 @description = The Communotron DTS-M7 is a medium-range dish that offers a decent cone-angle at the cost of extra weight and electric cost. @mass = 1.10 !MODULE[ModuleDataTransmitter] {} %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 45000000000 %EnergyCost = 1.10 %DishAngle = .10 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } // Communotron 88-X @PART[largeFixedAntenna]:NEEDS[RemoteTech] { @description = The Communotron 88-X is the chubby hotrod of antennas, fast, long-range communications can be yours in a bulky 3 meter package. @mass = 2.0 @cost = 11000 @crashTolerance = 10 @maxTemp = 2800 !MODULE[ModuleDataTransmitter] {} %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 500000000000 %EnergyCost = 3.40 %DishAngle = 0.0065 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } // Communotron 88-88-V @PART[commDishVSR]:NEEDS[RemoteTech]:AFTER[zzzVSRPathPatch] { !MODULE[ModuleDataTransmitter] {} %MODULE[ModuleRTAntenna] { %Mode0DishRange = 0 %Mode1DishRange = 40000000000 %EnergyCost = 0.93 %MaxQ = 2000 %DishAngle = 0.06 %TRANSMITTER { %PacketInterval = 0.3 %PacketSize = 2 %PacketResourceCost = 15.0 } } %MODULE[ModuleSPUPassive] {} } ================================================ FILE: LICENSE.txt ================================================ GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. ================================================ FILE: README.md ================================================ **master** [![Build status](https://ci.appveyor.com/api/projects/status/18ksahrxar3ghaoh/branch/master?svg=true)](https://ci.appveyor.com/project/KSP-TaxiService/remotetech-hx082/branch/master) **develop** [![Build status](https://ci.appveyor.com/api/projects/status/4kvchix4253kmc58/branch/develop?svg=true)](https://ci.appveyor.com/project/KSP-TaxiService/remotetech/branch/develop) RemoteTech ========== A community-developed continuation of the original RemoteTech mod for Kerbal Space Program. RemoteTech allows you to construct vast relay networks of communication satellites and remotely-controlled unmanned vehicles. Your unmanned vessels require an uplink to a command station to be controlled. This adds a new layer of difficulty that compensates for the lack of live crew members. Installation ------------ [Download Here](https://github.com/RemoteTechnologiesGroup/RemoteTech/releases/latest) on Github or on [SpaceDock](http://spacedock.info/mod/520/RemoteTech). Releases deemed stable are numbered (e.g. `1.8.0`). Development releases are prefixed with `build-develop`. Documentation ------------- A [detailed manual](http://remotetechnologiesgroup.github.io/RemoteTech) is available online. Questions? Try the [KSP forum thread](http://forum.kerbalspaceprogram.com/index.php?/topic/139167-113-remotetech-v171-2016-07-02/). Contributing ------------ See the [guidelines](CONTRIBUTING.md) for both bug reports and pull requests. ================================================ FILE: appveyor.yml ================================================ # Master configuration is below # grep 'Develop configuration' to find the develop conf. #==============================================================================# # Master configuration # #==============================================================================# # configuration for "master" branch # build in Release mode and deploy to Github - #---------------------------------# # general configuration # #---------------------------------# # version format (you need to bump it when changing version) version: 1.9.12 # branches branches: # whitelist only: - master # blacklist except: - gh-pages # Do not build on tags (note: otherwise appveyor keeps looping on a release) # we simply want to build on a new push skip_tags: true #---------------------------------# # environment configuration # #---------------------------------# # Build worker image (VM template) image: Visual Studio 2015 # scripts that are called at very beginning, before repo cloning init: - git config --global core.autocrlf input # clone directory clone_folder: c:\projects\RemoteTech # fetch repository as zip archive shallow_clone: true # environment variables environment: DLL_ARCH_PASS: # KSP DLLs archive password (secured) secure: vfhIenu/wQqC0Yuy4u4tOQ== matrix: # set this flag to immediately finish build once one of the jobs fails. fast_finish: true # scripts that run after cloning repository install: # Note: by default, all script lines are interpreted as batch - cmd: echo Install scripts # setup env. variables - cmd: echo %APPVEYOR_BUILD_FOLDER% - cmd: set DOWNLOAD_FOLDER=%APPVEYOR_BUILD_FOLDER%\.. - cmd: set ARTIFACTS_FOLDER=%APPVEYOR_BUILD_FOLDER%\artifacts - cmd: set GAMEDATA_FOLDER=%APPVEYOR_BUILD_FOLDER%\GameData - cmd: set ASSEMBLY_FOLDER=%GAMEDATA_FOLDER%\RemoteTech\Plugins # download required KSP DLLs - cmd: curl -fsS -o%DOWNLOAD_FOLDER%\dlls.7z https://d237kiopfuf7h0.cloudfront.net/download/KSPDLL_1_12_2.zip # extract them - cmd: cd %DOWNLOAD_FOLDER% & dir - cmd: 7z.exe e -p%DLL_ARCH_PASS% -o%ASSEMBLY_FOLDER% %DOWNLOAD_FOLDER%\dlls.7z - cmd: cd %ASSEMBLY_FOLDER% & dir #---------------------------------# # build configuration # #---------------------------------# # build platform, i.e. x86, x64, Any CPU. This setting is optional. # to add several platforms to build matrix: platform: #- x86 - Any CPU # build Configuration, i.e. Debug, Release, etc. configuration: - Release build: # enable MSBuild parallel builds parallel: true # path to Visual Studio solution or project project: .\src\RemoteTech\RemoteTech.sln # MSBuild verbosity level verbosity: normal # scripts to run before build before_build: # scripts to run *after* solution is built and *before* automatic packaging occurs (web apps, NuGet packages, Azure Cloud Services) before_package: # delete KSP downloaded assembly files - cmd: del %ASSEMBLY_FOLDER%\Assembly-CSharp.dll - cmd: del %ASSEMBLY_FOLDER%\Assembly-CSharp-firstpass.dll - cmd: del %ASSEMBLY_FOLDER%\UnityEngine.dll - cmd: del %ASSEMBLY_FOLDER%\UnityEngine.*.dll - cmd: cd %ASSEMBLY_FOLDER% & dir - cmd: echo done! # scripts to run after build after_build: # go to the artifact folder and zip the build directory (KSP /GameData folder) - cmd: mkdir %ARTIFACTS_FOLDER% - cmd: 7z.exe a %ARTIFACTS_FOLDER%\RemoteTech.zip %GAMEDATA_FOLDER% # to run your custom scripts instead of automatic MSBuild build_script: # to disable automatic builds #build: off #---------------------------------# # artifacts configuration # #---------------------------------# artifacts: # pushing entire folder as a zip archive - path: artifacts\RemoteTech.zip name: rt_gd #---------------------------------# # deployment configuration # #---------------------------------# # to disable deployment #deploy: off # scripts to run before deployment before_deploy: # providers: Local, FTP, WebDeploy, AzureCS, AzureBlob, S3, NuGet, Environment # provider names are case-sensitive! deploy: # Deploy to GitHub 'releases' - provider: GitHub # artfact we want to push on github artifact: rt_gd # release name pushed on github release: RemoteTech-$(appveyor_build_version) # auth token to push on github auth_token: secure: n+llubPy/E9M9wRI1EkEM+dTxzDem7dVCquHhNwHCokxKP42l2svIO9deKnClD4y # is it a draft release? draft: false # is a a pre-release? prerelease: false # which branch? on: branch: master # deploy on tag push only #appveyor_repo_tag: true # scripts to run after deployment after_deploy: # to run your custom scripts instead of provider deployments deploy_script: #---------------------------------# # global handlers # #---------------------------------# # on successful build on_success: #- do something # on build failure on_failure: #- do something # after build failure or success on_finish: #- do something #---------------------------------# # notifications # #---------------------------------# notifications: # Email #- provider: Email # to: # - user1@email.com # - user2@email.com # subject: 'Build {{status}}' # optional # message: "{{message}}, {{commitId}}, ..." # optional # on_build_status_changed: true # Github - provider: GitHubPullRequest auth_token: secure: n+llubPy/E9M9wRI1EkEM+dTxzDem7dVCquHhNwHCokxKP42l2svIO9deKnClD4y # Slack using webhook - provider: Slack incoming_webhook: secure: UYWbRjEf2f/AfPVych87UTtvwwEfdk/ukZQb+PnlGzL9h7fjoQhH0IDfYoLLSguO6uGIEilbfBohUg4znkjikaVcI8OoZVxcPwXnsJliKRI= #==============================================================================# # Develop configuration # #==============================================================================# # configuration for "develop" branch # build in Release mode and no - #---------------------------------# # general configuration # #---------------------------------# # version format (you need to bump it when changing version) version: 1.9.12-{build}-{branch} # branches branches: # whitelist only: - develop # blacklist except: - gh-pages # Do not build on tags (note: otherwise appveyor keeps looping on a release) # we simply want to build on a new push skip_tags: true #---------------------------------# # environment configuration # #---------------------------------# # Build worker image (VM template) image: Visual Studio 2015 # scripts that are called at very beginning, before repo cloning init: - git config --global core.autocrlf input # clone directory clone_folder: c:\projects\RemoteTech # fetch repository as zip archive shallow_clone: true # environment variables environment: DLL_ARCH_PASS: # KSP DLLs archive password (secured) secure: vfhIenu/wQqC0Yuy4u4tOQ== matrix: # set this flag to immediately finish build once one of the jobs fails. fast_finish: true # scripts that run after cloning repository install: # Note: by default, all script lines are interpreted as batch - cmd: echo Install scripts # setup env. variables - cmd: echo %APPVEYOR_BUILD_FOLDER% - cmd: set DOWNLOAD_FOLDER=%APPVEYOR_BUILD_FOLDER%\.. - cmd: set ARTIFACTS_FOLDER=%APPVEYOR_BUILD_FOLDER%\artifacts - cmd: set GAMEDATA_FOLDER=%APPVEYOR_BUILD_FOLDER%\GameData - cmd: set ASSEMBLY_FOLDER=%GAMEDATA_FOLDER%\RemoteTech\Plugins # download required KSP DLLs - cmd: curl -fsS -o%DOWNLOAD_FOLDER%\dlls.7z https://d237kiopfuf7h0.cloudfront.net/download/KSPDLL_1_12_2.zip # extract them - cmd: cd %DOWNLOAD_FOLDER% & dir - cmd: 7z.exe e -p%DLL_ARCH_PASS% -o%ASSEMBLY_FOLDER% %DOWNLOAD_FOLDER%\dlls.7z - cmd: cd %ASSEMBLY_FOLDER% & dir #---------------------------------# # build configuration # #---------------------------------# # build platform, i.e. x86, x64, Any CPU. This setting is optional. # to add several platforms to build matrix: platform: #- x86 - Any CPU # build Configuration, i.e. Debug, Release, etc. # to add several configurations to build matrix: configuration: - Release build: # enable MSBuild parallel builds parallel: true # path to Visual Studio solution or project project: .\src\RemoteTech\RemoteTech.sln # MSBuild verbosity level verbosity: detailed # scripts to run before build before_build: # scripts to run *after* solution is built and *before* automatic packaging occurs (web apps, NuGet packages, Azure Cloud Services) before_package: # delete KSP downloaded assembly files - cmd: del %ASSEMBLY_FOLDER%\Assembly-CSharp.dll - cmd: del %ASSEMBLY_FOLDER%\Assembly-CSharp-firstpass.dll - cmd: del %ASSEMBLY_FOLDER%\UnityEngine.dll - cmd: del %ASSEMBLY_FOLDER%\UnityEngine.*.dll - cmd: cd %ASSEMBLY_FOLDER% & dir - cmd: echo done! # scripts to run after build after_build: # go to the artifact folder and zip the build directory (KSP /GameData folder) - cmd: mkdir %ARTIFACTS_FOLDER% - cmd: 7z.exe a %ARTIFACTS_FOLDER%\RemoteTech.zip %GAMEDATA_FOLDER% # to run your custom scripts instead of automatic MSBuild build_script: # to disable automatic builds #build: off #---------------------------------# # artifacts configuration # #---------------------------------# artifacts: # pushing entire folder as a zip archive - path: artifacts\RemoteTech.zip name: rt_gd #---------------------------------# # deployment configuration # #---------------------------------# # to disable deployment #deploy: off # scripts to run before deployment before_deploy: # providers: Local, FTP, WebDeploy, AzureCS, AzureBlob, S3, NuGet, Environment # provider names are case-sensitive! deploy: # Deploy to GitHub 'releases' - provider: GitHub # artfact we want to push on github artifact: rt_gd # release name pushed on github release: RemoteTech-$(appveyor_build_version) # auth token to push on github auth_token: secure: n+llubPy/E9M9wRI1EkEM+dTxzDem7dVCquHhNwHCokxKP42l2svIO9deKnClD4y # is it a draft release? draft: false # is a a pre-release? prerelease: true # which branch? on: branch: develop # deploy on tag push only appveyor_repo_tag: false # scripts to run after deployment after_deploy: # to run your custom scripts instead of provider deployments deploy_script: #---------------------------------# # global handlers # #---------------------------------# # on successful build on_success: #- do something # on build failure on_failure: #- do something # after build failure or success on_finish: #- do something #---------------------------------# # notifications # #---------------------------------# notifications: # Email #- provider: Email # to: # - user1@email.com # - user2@email.com # subject: 'Build {{status}}' # optional # message: "{{message}}, {{commitId}}, ..." # optional # on_build_status_changed: true # Github - provider: GitHubPullRequest auth_token: secure: n+llubPy/E9M9wRI1EkEM+dTxzDem7dVCquHhNwHCokxKP42l2svIO9deKnClD4y # Slack using webhook - provider: Slack incoming_webhook: secure: UYWbRjEf2f/AfPVych87UTtvwwEfdk/ukZQb+PnlGzL9h7fjoQhH0IDfYoLLSguO6uGIEilbfBohUg4znkjikaVcI8OoZVxcPwXnsJliKRI= ================================================ FILE: buildscripts/UnityDebug/PlayerConnectionConfigFile ================================================ listen 4294967295 1 1 ================================================ FILE: buildscripts/UnityDebug/prepare-debug.bat ================================================ rem Generate the MDB file needed by UnityVS and Monodevelop for debugging @echo off rem get parameters that are passed by visual studio post build event SET TargetName=%1 rem make sure the initial working directory is the one containing the current script SET scriptPath=%~dp0 echo Generating Unity Monodevelop Debug file... echo %TargetName%.dll -^> %TargetName%.dll.mdb "%scriptPath%\pdb2mdb.exe" %TargetName%.dll ================================================ FILE: buildscripts/UnityDebug_2019/instructions.txt ================================================ Quoted from JPLRepo 1) Install 2019.2.2f1 to utilise these two exe's to convert the pdb to mdb: \Editor\Editor\Data\MonoBleedingEdge\bin\mono.exe \Editor\Editor\Data\MonoBleedingEdge\lib\mono\4.5\pdb2mdb.exe 2) Unity No longer uses PlayerConnectionConfigFile instead you edit boot.config file (in the data directory where this file used to go) and add the line: player-connection-debug=1 3) For the game exe. You must copy the WindowsPlayer.exe (rename if you want) UnityPlayer.dll and WinPixEventRuntime.dll into the KSP install directory. 4) Execute this sequence: "C:\Program Files\Unity\Editor\Data\MonoBleedingEdge\bin\mono.exe" "C:\Program Files\Unity\Editor\Data\MonoBleedingEdge\lib\mono\4.5\pdb2mdb.exe" "$(TargetFileName)" ================================================ FILE: buildscripts/UnityDebug_2019/prepare-debug.bat ================================================ rem Generate the MDB file needed by UnityVS and Monodevelop for debugging @echo off rem get parameters that are passed by visual studio post build event SET TargetName=%1 rem make sure the initial working directory is the one containing the current script SET scriptPath=%~dp0 echo Generating Unity Monodevelop Debug file... echo %TargetName%.dll -^> %TargetName%.dll.mdb "%scriptPath%\mono.exe" "%scriptPath%\pdb2mdb.exe" %TargetName%.dll ================================================ FILE: buildscripts/ZipPack/7za-License.txt ================================================ 7-Zip Extra ~~~~~~~~~~~ License for use and distribution ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Copyright (C) 1999-2016 Igor Pavlov. 7-Zip Extra files are under the GNU LGPL license. Notes: You can use 7-Zip Extra on any computer, including a computer in a commercial organization. You don't need to register or pay for 7-Zip. GNU LGPL information -------------------- This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You can receive a copy of the GNU Lesser General Public License from http://www.gnu.org/ ================================================ FILE: buildscripts/ZipPack/build-package.bat ================================================ rem Generate the zip Release package. rem Highly recommend to use a Continuous Integration service to pull source codes from repository, build, test, package and deploy @echo off rem get parameters that are passed by visual studio post build event SET TargetName=%1 SET Dllversion=%~n2 SET KSPversion=%3 rem make sure the initial working directory is the one containing the current script SET scriptPath=%~dp0 SET rootPath=%scriptPath%..\..\ SET initialWD=%CD% echo Generating %TargetName% for %KSPversion% Release Package... xcopy /y "%initialWD%\%TargetName%.dll" %rootPath%GameData\%TargetName%\Plugins\%TargetName%.dll* IF EXIST %rootPath%package\ rd /s /q %rootPath%package mkdir %rootPath%package\GameData cd %rootPath%package\GameData echo Copying %rootPath%GameData files to package stage xcopy /y /E /Q %rootPath%GameData %rootPath%package\GameData echo. echo Compressing %TargetName% for %KSPversion% Release Package... IF EXIST "%rootPath%%TargetName%*_For_%KSPversion%.zip" del "%rootPath%%TargetName%*_For_%KSPversion%.zip" "%scriptPath%7za.exe" a "%rootPath%%TargetName%%Dllversion%_For_%KSPversion%.zip" %rootPath%package\GameData echo Deleting package stage rd /s /q %rootPath%package ================================================ FILE: saves/RemoteTech KSP1_0 Testbed/Ships/SPH/Auto-Saved Ship.craft ================================================ ship = Stearwing A300 version = 1.0.2 description = The Stearwing A300 is a large aircraft, built to carry heavy payloads and a large number of passengers. Don't expect it to reach very impressive altitudes or speeds though. Wings may shear off under excessive stress. Warranty does not cover damage from attempted aerobatics. type = SPH size = 31.65458,9.575359,30.46842 PART { part = mk3Cockpit.Shuttle_4290816042 partName = Part pos = 0.9692943,15.3056,1.117786 attPos = 0,0,-0.2 attPos0 = 0.9692943,15.3056,1.117786 rot = 0.7192138,0,0,0.6947889 attRot = 0.01727098,0,0,0.999851 attRot0 = 0.7071068,0,0,0.7071068 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = noseCone_4290743942 link = mk3CrewCabin_4288610786 link = GearMedium_4291969020 link = telescopicLadderBay_4291957648 link = telescopicLadderBay_4291955254 attN = bottom,mk3CrewCabin_4288610786 attN = top,noseCone_4290743942 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True controlSrcStatusText = EVENTS { MakeReference { active = True guiActive = True guiIcon = Control From Here guiName = Control From Here category = Control From Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } RenameVessel { active = True guiActive = True guiIcon = Rename Vessel guiName = Rename Vessel category = Rename Vessel guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleReactionWheel isEnabled = True stateString = Active WheelState = Active EVENTS { OnToggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle Torque guiName = Toggle Torque category = Toggle Torque guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Deploy category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = True guiActive = False guiIcon = guiName = category = guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } ReviewDataEvent { active = True guiActive = True guiIcon = Review Data guiName = Review Data category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = True guiActive = True guiIcon = Reset guiName = Reset category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Deploy category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = True guiActive = False guiIcon = Reset guiName = Reset category = Reset guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } CleanUpExperimentExternal { active = True guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } MODULE { name = ModuleScienceContainer isEnabled = True EVENTS { StoreDataExternalEvent { active = False guiActive = False guiIcon = guiName = Store Experiments (0) category = guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data (0) category = guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Stored Data (0) category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = FlagDecal isEnabled = True flagDisplayed = True EVENTS { ToggleFlag { active = True guiActive = False guiActiveEditor = True guiIcon = ToggleFlag guiName = ToggleFlag category = ToggleFlag guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle guiName = Lights On category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } MODULE { name = ModuleTripLogger isEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } } RESOURCE { name = ElectricCharge amount = 500 maxAmount = 500 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = MonoPropellant amount = 100 maxAmount = 100 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { part = noseCone_4290743942 partName = Part pos = 0.9692943,14.57089,4.281819 attPos = 0,0,0 attPos0 = 0,3.187501,0.6249997 rot = 0.7192138,0,0,0.6947889 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) attN = bottom01,mk3Cockpit.Shuttle_4290816042 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = mk3CrewCabin_4288610786 partName = Part pos = 0.9692943,15.41353,-2.005358 attPos = 0,0,0 attPos0 = 0,-3.125,6.763279E-07 rot = 0.7192138,0,0,0.6947889 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = mk3CargoBayM_4289912572 link = telescopicLadder_4291953798 attN = top,mk3Cockpit.Shuttle_4290816042 attN = bottom,mk3CargoBayM_4289912572 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Deploy category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = True guiActive = False guiIcon = guiName = category = guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } ReviewDataEvent { active = True guiActive = True guiIcon = Review Data guiName = Review Data category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = True guiActive = True guiIcon = Reset guiName = Reset category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Deploy category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = True guiActive = False guiIcon = Reset guiName = Reset category = Reset guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } CleanUpExperimentExternal { active = True guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } MODULE { name = ModuleScienceContainer isEnabled = True EVENTS { StoreDataExternalEvent { active = False guiActive = False guiIcon = guiName = Store Experiments (0) category = guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data (0) category = guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Stored Data (0) category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle guiName = Lights On category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } MODULE { name = ModuleTripLogger isEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } } } PART { part = mk3CargoBayM_4289912572 partName = Part pos = 0.9692943,15.56463,-6.377754 attPos = 0,0,0 attPos0 = 0,-4.375,-2.930221E-08 rot = 0,-0.6947889,-0.7192138,0 attRot = 0,-0.9999999,0,0 attRot0 = 0,-1,-8.428113E-08,0 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = mk3CargoBayM_4289912028 link = wingStrake_4290715054 link = wingStrake_4289905632 link = wingStrake_4289900666 link = wingStrake_4289633408 attN = top2,mk3CrewCabin_4288610786 attN = bottom2,mk3CargoBayM_4289912028 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = False animTime = 1 animSpeed = 1 EVENTS { Toggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle guiName = Open category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } MODULE { name = ModuleCargoBay isEnabled = True EVENTS { } ACTIONS { } } } PART { part = mk3CargoBayM_4289912028 partName = Part pos = 0.9692943,15.73733,-11.37478 attPos = 0,0,0 attPos0 = 0,-5,3.847869E-07 rot = -0.7192138,0,0,-0.6947889 attRot = 0,0,0,-0.9999999 attRot0 = 0,-1,0,0 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = wingConnector4_4290715304 link = wingConnector4_4289909350 link = wingConnector4_4290715550 link = wingConnector4_4289909118 link = wingStrake_4290715824 link = wingStrake_4289908484 link = wingConnector4_4290716114 link = wingConnector4_4289871078 link = wingConnector4_4290716400 link = wingConnector4_4289869150 link = structuralWing_4290683878 link = structuralWing_4289817920 link = mk2.1m.Bicoupler_4289669746 link = mk2.1m.Bicoupler_4289637456 link = mk3CargoBayS_4288573960 attN = top2,mk3CargoBayM_4289912572 attN = bottom2,mk3CargoBayS_4288573960 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = False animTime = 1 animSpeed = 1 EVENTS { Toggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle guiName = Open category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } MODULE { name = ModuleCargoBay isEnabled = True EVENTS { } ACTIONS { } } } PART { part = wingConnector4_4290715304 partName = Part pos = 2.569294,15.63733,-8.774823 attPos = -0.02698386,0.1428032,0.01014346 attPos0 = 1.626984,2.459097,-1.216042E-07 rot = 4.214687E-08,0.6947889,0.7192138,1.691112E-11 attRot = 0,0,0,1 attRot0 = -2.9271E-08,-1,-4.139545E-08,-3.032434E-08 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = wingConnector_4289873874 sym = wingConnector4_4289909350 srfN = srfAttach,mk3CargoBayM_4289912028 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = wingConnector_4289873874 partName = Part pos = 3.569295,15.64845,-9.930989 attPos = -0.06138581,-0.3640596,-0.028819 attPos0 = -0.9386148,-0.7918023,7.028002E-07 rot = 0.01095164,0.6947079,0.7191308,0.01057957 attRot = 0,0.01522696,8.495224E-08,0.9998841 attRot0 = -2.359274E-07,-0.01522711,6.989953E-08,0.9998841 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = sweptWing2_4289873840 link = sweptWing2_4289873524 sym = wingConnector_4290707514 srfN = srfAttach,wingConnector4_4290715304 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = sweptWing2_4289873840 partName = Part pos = 5.371102,15.64063,-11.53143 attPos = 0.06750774,-0.06607294,-0.008200539 attPos0 = -1.870401,-1.533161,-4.803679E-08 rot = 0.01095152,0.6947083,0.7191304,0.0105795 attRot = 0,0,0,1 attRot0 = -2.112112E-07,-1.441878E-07,-2.971461E-08,1 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = sweptWing2_4289873804 link = structuralWing2_4289873664 link = wingStrake_4294148328 sym = sweptWing2_4290680406 srfN = srfAttach,wingConnector_4289873874 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = sweptWing2_4289873804 partName = Part pos = 9.119452,15.52904,-11.60838 attPos = -6.914139E-06,-1.333654E-06,-8.02625E-07 attPos0 = -3.750059,-0.07305094,-7.137971E-07 rot = 0.0109514,0.6947083,0.7191304,0.0105793 attRot = 0,0,0,1 attRot0 = -4.125953E-08,-2.087177E-07,5.858687E-08,1 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = sweptWing2_4289873768 sym = sweptWing2_4290677574 srfN = srfAttach,sweptWing2_4289873840 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = sweptWing2_4289873768 partName = Part pos = 12.8442,15.47974,-13.46725 attPos = 0.06675625,-0.2305097,0.04514268 attPos0 = -3.726492,-1.856073,-6.648564E-07 rot = 0.01095121,0.6947083,0.7191303,0.01057962 attRot = 0,0,0,1 attRot0 = -4.781773E-08,7.442378E-08,-3.720511E-07,1 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = elevon5_4289873732 link = elevon5_4289873698 sym = sweptWing2_4290676708 srfN = srfAttach,sweptWing2_4289873804 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = elevon5_4289873732 partName = Part pos = 13.84701,15.44519,-14.01503 attPos = 0.0004472733,-0.04403687,0.0147446 attPos0 = -1.004431,-0.5022121,0.008133713 rot = -0.7023238,-0.1549255,0.1702699,-0.6736079 attRot = 0,0,-0.7071067,0.7071067 attRot0 = -0.2297531,0.973249,-6.132499E-09,-3.319909E-07 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = elevon5_4290644412 srfN = srfAttach,sweptWing2_4289873768 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleControlSurface isEnabled = True ignorePitch = True ignoreYaw = True ignoreRoll = True deploy = False deployInvert = False ignorePitch_UIFlight { controlEnabled = True } ignoreYaw_UIFlight { controlEnabled = True } ignoreRoll_UIFlight { controlEnabled = True } deploy_UIFlight { controlEnabled = True } deployInvert_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionExtend { actionGroup = Custom04 } ActionRetract { actionGroup = Custom01, Custom02, Custom03 } } } } PART { part = elevon5_4289873698 partName = Part pos = 15.71317,15.43218,-14.93535 attPos = 0.06268883,0.001058578,-0.02122876 attPos0 = -2.933314,-1.466653,0.03205725 rot = -0.7023238,-0.1549255,0.1702699,-0.6736079 attRot = 0,0,-0.7071067,0.7071067 attRot0 = -0.2297531,0.973249,-6.132499E-09,-3.319909E-07 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = elevon5_4290643496 srfN = srfAttach,sweptWing2_4289873768 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleControlSurface isEnabled = True ignorePitch = True ignoreYaw = True ignoreRoll = False deploy = False deployInvert = False ignorePitch_UIFlight { controlEnabled = True } ignoreYaw_UIFlight { controlEnabled = True } ignoreRoll_UIFlight { controlEnabled = True } deploy_UIFlight { controlEnabled = True } deployInvert_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { ActionToggle { actionGroup = Abort } ActionExtend { actionGroup = None } ActionRetract { actionGroup = None } } } } PART { part = structuralWing2_4289873664 partName = Part pos = 9.031508,15.57568,-12.82087 attPos = 0.06804466,-3.814697E-06,-0.00207295 attPos0 = -3.730042,-1.286418,-1.151779E-06 rot = 0.01095184,0.6947082,0.7191305,0.0105791 attRot = 0,0,0,1 attRot0 = -3.466132E-08,-4.541783E-08,4.918589E-07,1 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = elevon2_4289873628 link = elevon3_4289873594 sym = structuralWing2_4290672060 srfN = srfAttach,sweptWing2_4289873840 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = elevon2_4289873628 partName = Part pos = 10.00939,15.56498,-13.42003 attPos = -0.05285215,0.02655989,0.001610145 attPos0 = -0.9255549,-0.6250013,-8.211348E-10 rot = -0.7187195,0.0260841,0.01660288,-0.6946123 attRot = -0.01560468,-0.7069268,0.7069303,-0.01614982 attRot0 = 4.194928E-07,0.9998841,5.47909E-07,-0.01522709 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = elevon2_4290649288 srfN = srfAttach,structuralWing2_4289873664 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleControlSurface isEnabled = True ignorePitch = True ignoreYaw = True ignoreRoll = False deploy = False deployInvert = False ignorePitch_UIFlight { controlEnabled = True } ignoreYaw_UIFlight { controlEnabled = True } ignoreRoll_UIFlight { controlEnabled = True } deploy_UIFlight { controlEnabled = True } deployInvert_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionExtend { actionGroup = Custom03, Custom04 } ActionRetract { actionGroup = Custom01, Custom02 } } } } PART { part = elevon3_4289873594 partName = Part pos = 11.88366,15.49167,-13.40006 attPos = -0.05227828,0.04904372,0.01709138 attPos0 = -2.801753,-0.6250007,6.275928E-07 rot = -0.7191592,0.00859294,0.008895217,-0.6947353 attRot = 0.002021586,-0.7067148,0.7071036,-0.02355243 attRot0 = 4.194928E-07,0.9998841,5.47909E-07,-0.01522709 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = elevon3_4290646310 srfN = srfAttach,structuralWing2_4289873664 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleControlSurface isEnabled = True ignorePitch = True ignoreYaw = True ignoreRoll = True deploy = False deployInvert = False ignorePitch_UIFlight { controlEnabled = True } ignoreYaw_UIFlight { controlEnabled = True } ignoreRoll_UIFlight { controlEnabled = True } deploy_UIFlight { controlEnabled = True } deployInvert_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionExtend { actionGroup = Custom03, Custom04 } ActionRetract { actionGroup = Custom01, Custom02 } } } } PART { part = sweptWing2_4289873524 partName = Part pos = 5.37042,15.57823,-9.733302 attPos = 0.06675184,-0.2305092,-0.008477521 attPos0 = -1.868967,0.4305076,2.616413E-07 rot = 0.01095152,0.6947083,0.7191304,0.0105795 attRot = 0,0,0,1 attRot0 = -2.112112E-07,-1.441878E-07,-2.971461E-08,1 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = strutConnector_4291745196 sym = sweptWing2_4290679896 srfN = srfAttach,wingConnector_4289873874 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = wingConnector4_4289909350 partName = Part pos = -0.6307062,15.63733,-8.774823 attPos = 0.02698445,0.1428022,0.0101435 attPos0 = -1.626985,2.459097,-1.216042E-07 rot = -0.7192138,-3.03871E-08,-7.35847E-08,-0.6947889 attRot = 0,0,0,1 attRot0 = 1.685611E-07,7.403573E-08,2.9271E-08,1 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = wingConnector_4290707514 sym = wingConnector4_4290715304 srfN = srfAttach,mk3CargoBayM_4289912028 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = wingConnector_4290707514 partName = Part pos = -1.630707,15.64845,-9.930989 attPos = -0.06138647,-0.3640594,0.02881892 attPos0 = -0.9386145,-0.7918023,-5.179224E-07 rot = -0.7191309,-0.0105796,-0.01095167,-0.6947079 attRot = 0,0.01522696,8.495224E-08,0.9998841 attRot0 = 1.011752E-07,-0.01522711,-6.524784E-08,-0.9998841 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = sweptWing2_4290680406 link = sweptWing2_4290679896 sym = wingConnector_4289873874 srfN = srfAttach,wingConnector4_4289909350 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = sweptWing2_4290680406 partName = Part pos = -3.432518,15.64063,-11.53143 attPos = 0.06750751,-0.06607103,0.008196707 attPos0 = -1.870401,-1.533161,-4.803679E-08 rot = -0.7191305,-0.01057953,-0.01095155,-0.6947083 attRot = 0,0,0,1 attRot0 = -2.112112E-07,-1.441878E-07,-2.971461E-08,1 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = sweptWing2_4290677574 link = structuralWing2_4290672060 link = wingStrake_4294146676 sym = sweptWing2_4289873840 srfN = srfAttach,wingConnector_4290707514 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = sweptWing2_4290677574 partName = Part pos = -7.180886,15.52904,-11.60838 attPos = 0.06675625,-0.2305097,0.04514268 attPos0 = -3.750059,-0.07305094,-7.137971E-07 rot = -0.7191305,-0.01057933,-0.01095143,-0.6947083 attRot = 0,0,0,1 attRot0 = -4.125953E-08,-2.087177E-07,5.858687E-08,1 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = sweptWing2_4290676708 sym = sweptWing2_4289873804 srfN = srfAttach,sweptWing2_4290680406 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = sweptWing2_4290676708 partName = Part pos = -10.90565,15.47974,-13.46725 attPos = 0.06675625,-0.2305097,0.04514268 attPos0 = -3.726492,-1.856073,-6.648564E-07 rot = -0.7191303,-0.01057965,-0.01095124,-0.6947085 attRot = 0,0,0,1 attRot0 = -4.781773E-08,7.442378E-08,-3.720511E-07,1 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = elevon5_4290644412 link = elevon5_4290643496 sym = sweptWing2_4289873768 srfN = srfAttach,sweptWing2_4290677574 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = elevon5_4290644412 partName = Part pos = -11.90848,15.44519,-14.01505 attPos = -10.90402,15.9474,-14.02316 attPos0 = -1.004431,-0.5022121,0.008133713 rot = -0.17027,0.6736078,0.7023239,0.1549255 attRot = 0,0,-0.7071067,0.7071067 attRot0 = -0.2297531,0.973249,-6.132499E-09,-3.319909E-07 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = elevon5_4289873732 srfN = srfAttach,sweptWing2_4290676708 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleControlSurface isEnabled = True ignorePitch = True ignoreYaw = True ignoreRoll = True deploy = False deployInvert = False ignorePitch_UIFlight { controlEnabled = True } ignoreYaw_UIFlight { controlEnabled = True } ignoreRoll_UIFlight { controlEnabled = True } deploy_UIFlight { controlEnabled = True } deployInvert_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionExtend { actionGroup = Custom04 } ActionRetract { actionGroup = Custom01, Custom02, Custom03 } } } } PART { part = elevon5_4290643496 partName = Part pos = -13.77465,15.43218,-14.93536 attPos = -10.8413,16.89883,-14.9674 attPos0 = -2.933314,-1.466653,0.03205725 rot = -0.17027,0.6736078,0.7023239,0.1549255 attRot = 0,0,-0.7071067,0.7071067 attRot0 = -0.2297531,0.973249,-6.132499E-09,-3.319909E-07 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = elevon5_4289873698 srfN = srfAttach,sweptWing2_4290676708 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleControlSurface isEnabled = True ignorePitch = True ignoreYaw = True ignoreRoll = False deploy = False deployInvert = False ignorePitch_UIFlight { controlEnabled = True } ignoreYaw_UIFlight { controlEnabled = True } ignoreRoll_UIFlight { controlEnabled = True } deploy_UIFlight { controlEnabled = True } deployInvert_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { ActionToggle { actionGroup = Abort } ActionExtend { actionGroup = None } ActionRetract { actionGroup = None } } } } PART { part = structuralWing2_4290672060 partName = Part pos = -7.092922,15.57568,-12.82088 attPos = 0.06804466,-3.814697E-06,-0.00207295 attPos0 = -3.730042,-1.286418,-1.151779E-06 rot = -0.7191306,-0.01057913,-0.01095187,-0.6947082 attRot = 0,0,0,1 attRot0 = -3.466132E-08,-4.541783E-08,4.918589E-07,1 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = elevon2_4290649288 link = elevon3_4290646310 sym = structuralWing2_4289873664 srfN = srfAttach,sweptWing2_4290680406 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = elevon2_4290649288 partName = Part pos = -8.070858,15.56498,-13.42004 attPos = -7.145271,16.18998,-13.42002 attPos0 = -0.9255549,-0.6250013,-8.211348E-10 rot = -0.01660293,0.6946123,0.7187195,-0.02608415 attRot = -0.01560468,-0.7069268,0.7069303,-0.01614982 attRot0 = 4.194928E-07,0.9998841,5.47909E-07,-0.01522709 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = elevon2_4289873628 srfN = srfAttach,structuralWing2_4290672060 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleControlSurface isEnabled = True ignorePitch = True ignoreYaw = True ignoreRoll = False deploy = False deployInvert = False ignorePitch_UIFlight { controlEnabled = True } ignoreYaw_UIFlight { controlEnabled = True } ignoreRoll_UIFlight { controlEnabled = True } deploy_UIFlight { controlEnabled = True } deployInvert_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionExtend { actionGroup = Custom03, Custom04 } ActionRetract { actionGroup = Custom01, Custom02 } } } } PART { part = elevon3_4290646310 partName = Part pos = -9.945127,15.49166,-13.40006 attPos = -7.143337,16.11666,-13.40003 attPos0 = -2.801753,-0.6250007,6.275928E-07 rot = -0.008895244,0.6947355,0.7191591,-0.008592946 attRot = 0.002021586,-0.7067148,0.7071036,-0.02355243 attRot0 = 4.194928E-07,0.9998841,5.47909E-07,-0.01522709 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = elevon3_4289873594 srfN = srfAttach,structuralWing2_4290672060 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleControlSurface isEnabled = True ignorePitch = True ignoreYaw = True ignoreRoll = True deploy = False deployInvert = False ignorePitch_UIFlight { controlEnabled = True } ignoreYaw_UIFlight { controlEnabled = True } ignoreRoll_UIFlight { controlEnabled = True } deploy_UIFlight { controlEnabled = True } deployInvert_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionExtend { actionGroup = Custom03, Custom04 } ActionRetract { actionGroup = Custom01, Custom02 } } } } PART { part = sweptWing2_4290679896 partName = Part pos = -3.431829,15.57823,-9.733302 attPos = 0.06675148,-0.2305092,0.008476817 attPos0 = -1.868967,0.4305076,2.616413E-07 rot = -0.7191305,-0.01057953,-0.01095155,-0.6947083 attRot = 0,0,0,1 attRot0 = -2.112112E-07,-1.441878E-07,-2.971461E-08,1 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = strutConnector_4291750910 sym = sweptWing2_4289873524 srfN = srfAttach,wingConnector_4290707514 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = wingConnector4_4290715550 partName = Part pos = 2.569294,15.70827,-10.77479 attPos = -0.02407491,0.2188683,0.008320573 attPos0 = 1.624075,0.3817749,2.68676E-07 rot = 4.214687E-08,0.6947889,0.7192138,1.691112E-11 attRot = 0,0,0,1 attRot0 = -2.9271E-08,-1,-4.139545E-08,-3.032434E-08 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = wingConnector4_4289909118 srfN = srfAttach,mk3CargoBayM_4289912028 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = wingConnector4_4289909118 partName = Part pos = -0.6307062,15.70827,-10.7748 attPos = 0.02407455,0.2188663,0.008320639 attPos0 = -1.624075,0.3817749,2.68676E-07 rot = -0.7192138,-3.03871E-08,-7.35847E-08,-0.6947889 attRot = 0,0,0,1 attRot0 = 1.685611E-07,7.403573E-08,2.9271E-08,1 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = wingConnector4_4290715550 srfN = srfAttach,mk3CargoBayM_4289912028 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = wingStrake_4290715824 partName = Part pos = 2.569293,15.33588,-13.17448 attPos = -0.02272391,0.07324851,0.02855155 attPos0 = 1.622724,-1.857989,0.4348076 rot = 1.254608E-08,0.7192138,-0.6947889,-1.436831E-08 attRot = -0.7188077,-0.03029368,0.03138379,-0.6938394 attRot0 = -0.04361942,3.95359E-08,0.9990482,-1.282946E-08 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = structuralWing_4290682942 sym = wingStrake_4289908484 srfN = srfAttach,mk3CargoBayM_4289912028 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = structuralWing_4290682942 partName = Part pos = 3.226177,15.38179,-13.0473 attPos = 0,0,0 attPos0 = -0.6568826,-0.1255264,-0.0502826 rot = -0.140535,0.7182347,-0.6808062,-0.02986259 attRot = -0.2846982,0.6859569,-0.669596,-0.00716943 attRot0 = -0.0106489,-0.08650254,-0.1217183,0.9887308 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = sweptWing1_4290668908 sym = structuralWing_4289908448 srfN = srfAttach,wingStrake_4290715824 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = sweptWing1_4290668908 partName = Part pos = 4.886212,15.55837,-12.2047 attPos = 0.03062499,-0.1813819,0.01090639 attPos0 = -1.45321,-1.032271,0.001355367 rot = -0.2488232,0.6462113,-0.6776071,-0.2476827 attRot = 0.3906358,-0.5717566,0.7163864,0.08537476 attRot0 = -9.997087E-08,-2.736863E-07,0.2297529,-0.973249 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = strutConnector_4293865070 link = StandardCtrlSrf_4293461144 link = StandardCtrlSrf_4293460234 link = smallCtrlSrf_4293454788 sym = sweptWing1_4289797466 srfN = srfAttach,structuralWing_4290682942 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = wingStrake_4289908484 partName = Part pos = -0.6307056,15.33588,-13.17448 attPos = 0.02272367,0.07324851,0.02855155 attPos0 = -1.622724,-1.857989,0.4348076 rot = 0.6947889,-1.706952E-08,1.782411E-08,-0.7192138 attRot = -0.7188077,-0.03029368,0.03138379,-0.6938394 attRot0 = -0.9990483,6.724007E-09,0.04361937,-8.242099E-08 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = structuralWing_4289908448 sym = wingStrake_4290715824 srfN = srfAttach,mk3CargoBayM_4289912028 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = structuralWing_4289908448 partName = Part pos = -1.287588,15.38179,-13.0473 attPos = 0,0,0 attPos0 = -0.6568826,-0.1255264,-0.0502826 rot = 0.6808062,0.02986254,0.140535,-0.7182347 attRot = -0.2846982,0.6859569,-0.669596,-0.00716943 attRot0 = -0.0106489,-0.08650254,-0.1217183,0.9887308 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = sweptWing1_4289797466 sym = structuralWing_4290682942 srfN = srfAttach,wingStrake_4289908484 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = sweptWing1_4289797466 partName = Part pos = -2.947619,15.55837,-12.2047 attPos = 0.03062308,-0.1813813,-0.01090658 attPos0 = -1.45321,-1.03227,-0.001355632 rot = -0.6776072,-0.2476827,-0.2488234,0.6462111 attRot = 0.3906358,-0.5717566,0.7163864,0.08537476 attRot0 = -3.645198E-07,-1.567018E-07,-0.2297529,0.9732491 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = strutConnector_4294023366 link = StandardCtrlSrf_4293460596 link = StandardCtrlSrf_4293459610 link = smallCtrlSrf_4293454420 sym = sweptWing1_4290668908 srfN = srfAttach,structuralWing_4289908448 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = wingConnector4_4290716114 partName = Part pos = -0.6307056,15.30389,-10.77443 attPos = 0.02380061,-0.02322292,-0.02882132 attPos0 = -1.623801,0.6381836,0.4412709 rot = -0.7192138,-1.690389E-11,-4.214685E-08,-0.6947889 attRot = 0,0,0,1 attRot0 = -4.139545E-08,-3.032434E-08,-2.9271E-08,-1 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = wingConnector4_4289871078 srfN = srfAttach,mk3CargoBayM_4289912028 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = wingConnector4_4289871078 partName = Part pos = 2.569293,15.30389,-10.77443 attPos = -0.02380109,-0.02322191,-0.02882132 attPos0 = 1.623801,0.6381826,0.4412709 rot = 1.070901E-08,0.6947889,0.7192138,-3.035328E-08 attRot = 0,0,0,1 attRot0 = -2.927099E-08,-1,-4.139545E-08,1.338706E-08 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = wingConnector4_4290716114 srfN = srfAttach,mk3CargoBayM_4289912028 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = wingConnector4_4290716400 partName = Part pos = 2.569293,15.23932,-8.874454 attPos = -0.02380049,0.04917717,-0.03986967 attPos0 = 1.623801,2.466931,0.4512111 rot = 4.214687E-08,0.6947889,0.7192138,1.691112E-11 attRot = 0,0,0,1 attRot0 = -2.9271E-08,-1,-4.139545E-08,-3.032434E-08 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = wingConnector_4290706576 sym = wingConnector4_4289869150 srfN = srfAttach,mk3CargoBayM_4289912028 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = wingConnector_4290706576 partName = Part pos = 3.507096,15.26983,-9.75746 attPos = 0,0,0 attPos0 = -0.9377999,-0.8835631,-2.533583E-07 rot = -0.05163905,0.6929957,0.7173575,-0.04988538 attRot = -0.08148533,0.706825,0.7023963,-0.01995757 attRot0 = -8.566759E-08,0.04361923,7.486654E-09,0.9990483 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = GearLarge_4291975616 sym = wingConnector_4289869116 srfN = srfAttach,wingConnector4_4290716400 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = wingConnector4_4289869150 partName = Part pos = -0.6307056,15.23932,-8.874454 attPos = 0.02380037,0.04917717,-0.03986967 attPos0 = -1.623801,2.466931,0.4512111 rot = -0.7192138,-3.038708E-08,-7.358471E-08,-0.6947889 attRot = 0,0,0,1 attRot0 = 1.685611E-07,7.403573E-08,2.9271E-08,1 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = wingConnector_4289869116 sym = wingConnector4_4290716400 srfN = srfAttach,mk3CargoBayM_4289912028 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = wingConnector_4289869116 partName = Part pos = -1.568506,15.26983,-9.75746 attPos = 0,0,0 attPos0 = -0.9377999,-0.8835631,-2.533583E-07 rot = -0.7173578,0.04988531,0.05163898,-0.6929955 attRot = -0.08148533,0.706825,0.7023963,-0.01995757 attRot0 = -8.566759E-08,0.04361923,7.486654E-09,0.9990483 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = GearLarge_4291972350 sym = wingConnector_4290706576 srfN = srfAttach,wingConnector4_4289869150 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = structuralWing_4290683878 partName = Part pos = 2.593094,15.59584,-13.67925 attPos = -1.192093E-06,-0.2696583,0.06192112 attPos0 = 1.623801,-2.028546,0.1590712 rot = -2.423149E-09,0.6777841,-0.7352611,-4.20771E-08 attRot = 0.7092105,4.63096E-08,3.912589E-08,-0.7049969 attRot0 = -2.901869E-08,0.0436194,0.9990483,3.056587E-08 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = wingStrake_4289781782 sym = structuralWing_4289817920 srfN = srfAttach,mk3CargoBayM_4289912028 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = structuralWing_4289817920 partName = Part pos = -0.6545057,15.59584,-13.67925 attPos = 8.34465E-07,-0.2696602,0.06192118 attPos0 = -1.623801,-2.028546,0.1590712 rot = -0.7352614,-1.245026E-08,-3.456246E-08,0.6777838 attRot = 0.7092105,4.63096E-08,3.912589E-08,-0.7049969 attRot0 = 0.9990483,3.247254E-08,1.46511E-08,0.04361936 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = wingStrake_4294179498 sym = structuralWing_4290683878 srfN = srfAttach,mk3CargoBayM_4289912028 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = mk2.1m.Bicoupler_4289669746 partName = Part pos = -1.030706,14.43733,-12.8748 attPos = -0.05475104,0.8300118,-0.3177328 attPos0 = -1.945249,-2.284223,1.668763 rot = -0.2682817,-0.6674362,-0.6333386,-0.2853703 attRot = -0.4498205,0.03862571,0.5203404,0.7248554 attRot0 = -1.569541E-09,-0.8972586,-4.454656E-08,-0.4415055 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = turboFanEngine_4289669270 link = turboFanEngine_4289669184 link = mk2SpacePlaneAdapter_4289613904 sym = mk2.1m.Bicoupler_4289637456 srfN = srfAttach,mk3CargoBayM_4289912028 attN = top,mk2SpacePlaneAdapter_4289613904 attN = bottom01,turboFanEngine_4289669184 attN = bottom02,turboFanEngine_4289669270 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } RESOURCE { name = LiquidFuel amount = 135 maxAmount = 135 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 0 maxAmount = 165 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { part = turboFanEngine_4289669270 partName = Part pos = -0.5896356,13.8618,-15.1832 attPos = 0,0,0 attPos0 = -0.625,-2.3375,0 rot = -0.6333386,0.2853702,0.2682817,-0.6674362 attRot = 0,0,0,1 attRot0 = 0,-1,-4.17177E-08,0 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = turboFanEngine_4289636972 attN = top,mk2.1m.Bicoupler_4289669746 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnginesFX isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = None } } } MODULE { name = ModuleAnimateHeat isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 gimbalLock_UIFlight { controlEnabled = True } gimbalLimiter_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 1 } EVENTS { } ACTIONS { ToggleAction { actionGroup = None } LockAction { actionGroup = None } FreeAction { actionGroup = None } } } MODULE { name = ModuleAlternator isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleSurfaceFX isEnabled = True EVENTS { } ACTIONS { } } RESOURCE { name = ElectricCharge amount = 0 maxAmount = 0 flowState = True isTweakable = False hideFlow = True flowMode = Both } } PART { part = turboFanEngine_4289669184 partName = Part pos = -1.456113,14.76128,-15.23459 attPos = 0,0,0 attPos0 = 0.625,-2.3375,0 rot = -0.6333386,0.2853702,0.2682817,-0.6674362 attRot = 0,0,0,1 attRot0 = 0,-1,-4.17177E-08,0 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = turboFanEngine_4289636850 attN = top,mk2.1m.Bicoupler_4289669746 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnginesFX isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = None } } } MODULE { name = ModuleAnimateHeat isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 gimbalLock_UIFlight { controlEnabled = True } gimbalLimiter_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 1 } EVENTS { } ACTIONS { ToggleAction { actionGroup = None } LockAction { actionGroup = None } FreeAction { actionGroup = None } } } MODULE { name = ModuleAlternator isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleSurfaceFX isEnabled = True EVENTS { } ACTIONS { } } RESOURCE { name = ElectricCharge amount = 0 maxAmount = 0 flowState = True isTweakable = False hideFlow = True flowMode = Both } } PART { part = mk2SpacePlaneAdapter_4289613904 partName = Part pos = -1.036988,14.53824,-11.0025 attPos = 0,0,0 attPos0 = 3.05752E-07,1.875,2.372426E-07 rot = 0.6329948,-0.2862242,-0.2690921,0.6670704 attRot = 0.06716881,0.5507328,-0.68453,-0.4728643 attRot0 = 2.613875E-08,0.9541011,9.112729E-08,-0.2994848 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = ramAirIntake_4293096116 sym = mk2SpacePlaneAdapter_4289605784 attN = top,ramAirIntake_4293096116 attN = bottom,mk2.1m.Bicoupler_4289669746 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } RESOURCE { name = LiquidFuel amount = 135 maxAmount = 135 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 0 maxAmount = 165 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { part = mk2.1m.Bicoupler_4289637456 partName = Part pos = 2.969295,14.43733,-12.8748 attPos = 0.05475152,0.8300099,-0.3177328 attPos0 = 1.945249,-2.284223,1.668763 rot = -0.2682817,0.6674362,0.6333386,-0.2853703 attRot = -0.4498205,0.03862571,0.5203404,0.7248554 attRot0 = 8.659489E-08,-0.8972586,-3.151111E-09,0.4415054 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = turboFanEngine_4289636972 link = turboFanEngine_4289636850 link = mk2SpacePlaneAdapter_4289605784 sym = mk2.1m.Bicoupler_4289669746 srfN = srfAttach,mk3CargoBayM_4289912028 attN = top,mk2SpacePlaneAdapter_4289605784 attN = bottom01,turboFanEngine_4289636850 attN = bottom02,turboFanEngine_4289636972 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } RESOURCE { name = LiquidFuel amount = 135 maxAmount = 135 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 0 maxAmount = 165 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { part = turboFanEngine_4289636972 partName = Part pos = 2.528227,13.8618,-15.18322 attPos = 0,0,0 attPos0 = -0.625,-2.3375,0 rot = 0.6333386,0.2853701,0.2682816,0.6674363 attRot = 0,0,0,1 attRot0 = 0,-1,-4.17177E-08,0 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = turboFanEngine_4289669270 attN = top,mk2.1m.Bicoupler_4289637456 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnginesFX isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = None } } } MODULE { name = ModuleAnimateHeat isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 gimbalLock_UIFlight { controlEnabled = True } gimbalLimiter_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 1 } EVENTS { } ACTIONS { ToggleAction { actionGroup = None } LockAction { actionGroup = None } FreeAction { actionGroup = None } } } MODULE { name = ModuleAlternator isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleSurfaceFX isEnabled = True EVENTS { } ACTIONS { } } RESOURCE { name = ElectricCharge amount = 0 maxAmount = 0 flowState = True isTweakable = False hideFlow = True flowMode = Both } } PART { part = turboFanEngine_4289636850 partName = Part pos = 3.394702,14.76128,-15.2346 attPos = 0,0,0 attPos0 = 0.625,-2.3375,0 rot = 0.6333386,0.2853701,0.2682816,0.6674363 attRot = 0,0,0,1 attRot0 = 0,-1,-4.17177E-08,0 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = turboFanEngine_4289669184 attN = top,mk2.1m.Bicoupler_4289637456 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnginesFX isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = None } } } MODULE { name = ModuleAnimateHeat isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 gimbalLock_UIFlight { controlEnabled = True } gimbalLimiter_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 1 } EVENTS { } ACTIONS { ToggleAction { actionGroup = None } LockAction { actionGroup = None } FreeAction { actionGroup = None } } } MODULE { name = ModuleAlternator isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleSurfaceFX isEnabled = True EVENTS { } ACTIONS { } } RESOURCE { name = ElectricCharge amount = 0 maxAmount = 0 flowState = True isTweakable = False hideFlow = True flowMode = Both } } PART { part = mk2SpacePlaneAdapter_4289605784 partName = Part pos = 2.975577,14.53824,-11.00252 attPos = 0,0,0 attPos0 = 2.998433E-07,1.875,-5.364436E-07 rot = 0.6329948,0.2862242,0.2690921,0.6670704 attRot = 0.06716881,0.5507328,-0.68453,-0.4728643 attRot0 = -7.994034E-09,-0.9541011,-1.051358E-08,-0.2994847 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = ramAirIntake_4293099958 sym = mk2SpacePlaneAdapter_4289613904 attN = top,ramAirIntake_4293099958 attN = bottom,mk2.1m.Bicoupler_4289637456 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } RESOURCE { name = LiquidFuel amount = 135 maxAmount = 135 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 0 maxAmount = 165 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { part = wingStrake_4290715054 partName = Part pos = 2.569296,15.56463,-6.477754 attPos = 0.02541137,-0.00430084,-0.003453767 attPos0 = -1.625412,-0.09564137,7.912035E-10 rot = 4.214685E-08,0.6947889,0.7192138,1.690389E-11 attRot = 0,0,0,1 attRot0 = 4.139545E-08,3.032434E-08,-2.9271E-08,-1 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = structuralWing_4290698630 sym = wingStrake_4289905632 srfN = srfAttach,mk3CargoBayM_4289912572 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = structuralWing_4290698630 partName = Part pos = 3.181177,15.5173,-6.506179 attPos = -0.01398683,-0.1429438,-0.04828107 attPos0 = -0.5978906,0.1162057,-7.405351E-08 rot = -0.06730509,0.6872122,0.7156979,0.1048136 attRot = 0.6857868,0.188842,0.01687609,0.7026739 attRot0 = -2.860458E-07,-1.361832E-07,-0.1221832,0.9925076 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = structuralWing_4289905596 srfN = srfAttach,wingStrake_4290715054 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = wingStrake_4289905632 partName = Part pos = -0.6307178,15.56463,-6.477754 attPos = -0.02541053,-0.004302017,-0.003453809 attPos0 = 1.625412,-0.09564114,9.216535E-09 rot = -0.7192138,-3.038708E-08,-7.358469E-08,-0.6947889 attRot = 0,0,0,1 attRot0 = -2.9271E-08,-1,1.685611E-07,7.403573E-08 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = structuralWing_4289905596 sym = wingStrake_4290715054 srfN = srfAttach,mk3CargoBayM_4289912572 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = structuralWing_4289905596 partName = Part pos = -1.242588,15.5173,-6.506181 attPos = -0.0139854,-0.1429448,0.04828122 attPos0 = -0.5978906,0.1162057,-7.405351E-08 rot = -0.7156979,-0.1048136,0.06730507,-0.6872123 attRot = 0.6857868,0.188842,0.01687609,0.7026739 attRot0 = -2.860458E-07,-1.361832E-07,-0.1221832,0.9925076 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = structuralWing_4290698630 srfN = srfAttach,wingStrake_4289905632 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = wingStrake_4289900666 partName = Part pos = -0.6469405,15.28359,-6.496624 attPos = 0.02417004,0.08115029,0.0865104 attPos0 = 1.616224,-0.109062,-0.2849846 rot = 0.6882231,3.12566E-09,3.302875E-08,0.7254992 attRot = -0.0434534,-0.08707279,-0.003801685,0.9952468 attRot0 = 2.07E-08,0.9990483,0.0436194,-2.592642E-08 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = structuralWing_4289900630 sym = wingStrake_4289633408 srfN = srfAttach,mk3CargoBayM_4289912572 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = structuralWing_4289900630 partName = Part pos = -1.238243,15.30913,-6.36104 attPos = 0,0,0 attPos0 = -0.5913108,0.1367579,0.01834842 rot = 0.6752821,0.03399175,-0.1357625,0.7241597 attRot = -0.2548303,0.7232566,0.6415727,-0.0186029 attRot0 = 0.005329568,0.04329239,-0.1220669,0.9915629 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = structuralWing_4289633372 srfN = srfAttach,wingStrake_4289900666 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = wingStrake_4289633408 partName = Part pos = 2.585521,15.28359,-6.496624 attPos = 0.02417004,0.08115029,0.0865104 attPos0 = -1.616224,-0.109062,-0.2849846 rot = 2.945583E-09,0.7254991,0.6882232,-2.858693E-08 attRot = -0.0434534,-0.08707279,-0.003801685,0.9952468 attRot0 = -0.04361936,-1.774337E-08,-2.260667E-08,-0.9990483 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = structuralWing_4289633372 sym = wingStrake_4289900666 srfN = srfAttach,mk3CargoBayM_4289912572 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = structuralWing_4289633372 partName = Part pos = 3.176839,15.30913,-6.36104 attPos = 0,0,0 attPos0 = -0.5913108,0.1367579,0.01834842 rot = -0.1357624,0.7241598,0.6752822,0.03399177 attRot = -0.2548303,0.7232566,0.6415727,-0.0186029 attRot0 = 0.005329568,0.04329239,-0.1220669,0.9915629 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = structuralWing_4289900630 srfN = srfAttach,wingStrake_4289633408 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = mk3CargoBayS_4288573960 partName = Part pos = 0.9692943,15.86684,-15.12255 attPos = 0,0,0 attPos0 = 0,-3.75,5.037737E-07 rot = 0.7192138,0,0,0.6947889 attRot = 0,0,0,1 attRot0 = 4.286848E-08,0,0,-1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = adapterMk3-Mk2_4290785136 attN = top2,mk3CargoBayM_4289912028 attN = bottom2,adapterMk3-Mk2_4290785136 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = False animTime = 1 animSpeed = 1 EVENTS { Toggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle guiName = Open category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } MODULE { name = ModuleCargoBay isEnabled = True EVENTS { } ACTIONS { } } } PART { part = adapterMk3-Mk2_4290785136 partName = Part pos = 0.9692943,15.99636,-18.87036 attPos = 0,0,0 attPos0 = 0,-3.750002,2.151945E-07 rot = -0.6947889,0,0,0.7192138 attRot = 0.9999999,0,0,0 attRot0 = 1,0,0,0 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = mk2SpacePlaneAdapter_4290755794 link = structuralWing3_4290626548 link = structuralWing3_4290625986 attN = top,mk2SpacePlaneAdapter_4290755794 attN = bottom,mk3CargoBayS_4288573960 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 900 maxAmount = 900 flowState = False isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 0 maxAmount = 1100 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { part = mk2SpacePlaneAdapter_4290755794 partName = Part pos = 0.9692943,16.73969,-22.28426 attPos = 0,0,0 attPos0 = 0,3.437502,0.6249996 rot = -0.6947889,0,0,0.7192138 attRot = 0.9999999,0,0,0 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = noseCone_4290749668 link = structuralWing2_4290633334 link = structuralWing2_4290633100 link = structuralWing2_4290621874 link = sweptWing1_4290617190 attN = top,noseCone_4290749668 attN = bottom,adapterMk3-Mk2_4290785136 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } RESOURCE { name = LiquidFuel amount = 135 maxAmount = 135 flowState = False isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 0 maxAmount = 165 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { part = noseCone_4290749668 partName = Part pos = 0.9692943,16.77208,-23.2212 attPos = 0,0,0 attPos0 = 0,0.9375019,-1.192093E-07 rot = -0.6947889,0,0,0.7192138 attRot = 0.9999999,0,0,0 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) attN = bottom01,mk2SpacePlaneAdapter_4290755794 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = structuralWing2_4290633334 partName = Part pos = 0.1632374,16.64114,-21.84563 attPos = 0.2995731,-0.0002078712,-0.04838199 attPos0 = -1.10563,-0.4415417,-0.03495806 rot = -0.6728969,-0.1168326,-0.1293823,0.7189021 attRot = 0.6423867,0.2319042,0.00258141,-0.7304474 attRot0 = -1.239343E-08,1.462043E-07,0.173647,-0.984808 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = elevon3_4290623390 link = elevon3_4290622320 sym = structuralWing2_4290633100 srfN = srfAttach,mk2SpacePlaneAdapter_4290755794 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = elevon3_4290623390 partName = Part pos = -0.6541772,16.71547,-22.87557 attPos = 0.4680167,16.05626,-22.87487 attPos0 = -1.122194,0.6892176,-3.733547E-07 rot = -0.04089208,-0.6817383,-0.7293974,0.03924851 attRot = 0,0,-0.7071067,0.7071067 attRot0 = 2.740115E-07,-4.741569E-08,-0.9732491,0.2297528 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = elevon3_4290622500 srfN = srfAttach,structuralWing2_4290633334 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleControlSurface isEnabled = True ignorePitch = False ignoreYaw = True ignoreRoll = True deploy = False deployInvert = True ignorePitch_UIFlight { controlEnabled = True } ignoreYaw_UIFlight { controlEnabled = True } ignoreRoll_UIFlight { controlEnabled = True } deploy_UIFlight { controlEnabled = True } deployInvert_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionExtend { actionGroup = Custom04 } ActionRetract { actionGroup = Custom01, Custom02, Custom03 } } } } PART { part = elevon3_4290622320 partName = Part pos = -2.510417,16.71264,-22.66385 attPos = 0,0,0 attPos0 = -2.793077,-0.1465349,-1.298047E-07 rot = 0.7293972,0.0392487,-0.04089236,0.6817384 attRot = 0.7071067,0.7071067,0,0 attRot0 = 0.9732491,0.2297528,2.740115E-07,4.741569E-08 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = elevon3_4290622044 srfN = srfAttach,structuralWing2_4290633334 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleControlSurface isEnabled = True ignorePitch = False ignoreYaw = True ignoreRoll = True deploy = False deployInvert = False ignorePitch_UIFlight { controlEnabled = True } ignoreYaw_UIFlight { controlEnabled = True } ignoreRoll_UIFlight { controlEnabled = True } deploy_UIFlight { controlEnabled = True } deployInvert_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionExtend { actionGroup = None } ActionRetract { actionGroup = None } } } } PART { part = structuralWing2_4290633100 partName = Part pos = 1.775351,16.64114,-21.84563 attPos = -0.2995729,-0.0002059639,-0.04838205 attPos0 = 1.10563,-0.4415417,-0.03495806 rot = -0.1293822,0.7189019,-0.672897,-0.1168327 attRot = 0.6423867,0.2319042,0.00258141,-0.7304474 attRot0 = -0.173647,0.984808,-1.561853E-07,-1.834545E-07 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = elevon3_4290622500 link = elevon3_4290622044 sym = structuralWing2_4290633334 srfN = srfAttach,mk2SpacePlaneAdapter_4290755794 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = elevon3_4290622500 partName = Part pos = 2.592767,16.71547,-22.87557 attPos = 0,0,0 attPos0 = -1.122193,0.6892158,3.588209E-07 rot = -0.7293975,0.03924846,-0.04089214,-0.6817381 attRot = 0,0,-0.7071067,0.7071067 attRot0 = -1.204985E-07,-7.192899E-08,-0.9732491,0.2297528 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = elevon3_4290623390 srfN = srfAttach,structuralWing2_4290633100 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleControlSurface isEnabled = True ignorePitch = False ignoreYaw = True ignoreRoll = True deploy = False deployInvert = True ignorePitch_UIFlight { controlEnabled = True } ignoreYaw_UIFlight { controlEnabled = True } ignoreRoll_UIFlight { controlEnabled = True } deploy_UIFlight { controlEnabled = True } deployInvert_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionExtend { actionGroup = Custom04 } ActionRetract { actionGroup = Custom01, Custom02, Custom03 } } } } PART { part = elevon3_4290622044 partName = Part pos = 4.449011,16.71264,-22.66385 attPos = 0,0,0 attPos0 = -2.793078,-0.1465349,-1.31994E-07 rot = -0.0408923,0.6817384,0.7293972,0.03924857 attRot = 0.7071067,0.7071067,0,0 attRot0 = -0.973249,-0.2297528,1.729251E-07,1.33562E-07 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = elevon3_4290622320 srfN = srfAttach,structuralWing2_4290633100 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleControlSurface isEnabled = True ignorePitch = False ignoreYaw = True ignoreRoll = True deploy = False deployInvert = False ignorePitch_UIFlight { controlEnabled = True } ignoreYaw_UIFlight { controlEnabled = True } ignoreRoll_UIFlight { controlEnabled = True } deploy_UIFlight { controlEnabled = True } deployInvert_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionExtend { actionGroup = None } ActionRetract { actionGroup = None } } } } PART { part = structuralWing2_4290621874 partName = Part pos = 0.9692943,17.13732,-22.54746 attPos = 0,0.03178403,-0.2621201 attPos0 = 0,0.2450333,0.6504043 rot = -0.6025022,0.3701231,-0.6025022,0.3701231 attRot = 0,0,-0.2164396,0.9762961 attRot0 = -0.1761704,0.6848095,-0.1761704,0.6848095 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = elevon3_4290621838 link = elevon3_4290621804 srfN = srfAttach,mk2SpacePlaneAdapter_4290755794 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = elevon3_4290621838 partName = Part pos = 0.9692951,18.10814,-23.65412 attPos = -0.2440174,-0.1409609,1.648851E-07 attPos0 = -1.122194,0.6892176,-3.733547E-07 rot = -0.4986484,-0.5013481,-0.4986486,-0.5013477 attRot = 0,0,-0.7071067,0.7071067 attRot0 = 2.740115E-07,-4.741569E-08,-0.9732491,0.2297528 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) srfN = srfAttach,structuralWing2_4290621874 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleControlSurface isEnabled = True ignorePitch = True ignoreYaw = False ignoreRoll = True deploy = False deployInvert = False ignorePitch_UIFlight { controlEnabled = True } ignoreYaw_UIFlight { controlEnabled = True } ignoreRoll_UIFlight { controlEnabled = True } deploy_UIFlight { controlEnabled = True } deployInvert_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionExtend { actionGroup = None } ActionRetract { actionGroup = None } } } } PART { part = elevon3_4290621804 partName = Part pos = 0.9692967,19.95396,-23.66514 attPos = -0.224597,-0.129753,5.777403E-08 attPos0 = -2.793077,-0.1465349,-1.298047E-07 rot = 0.4986486,-0.5013477,-0.4986484,0.5013481 attRot = 0.7071067,0.7071067,0,0 attRot0 = 0.9732491,0.2297528,2.740115E-07,4.741569E-08 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) srfN = srfAttach,structuralWing2_4290621874 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleControlSurface isEnabled = True ignorePitch = True ignoreYaw = False ignoreRoll = True deploy = False deployInvert = False ignorePitch_UIFlight { controlEnabled = True } ignoreYaw_UIFlight { controlEnabled = True } ignoreRoll_UIFlight { controlEnabled = True } deploy_UIFlight { controlEnabled = True } deployInvert_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionExtend { actionGroup = None } ActionRetract { actionGroup = None } } } } PART { part = sweptWing1_4290617190 partName = Part pos = 0.9692943,17.1624,-21.7492 attPos = 0,0.05667299,-0.2655841 attPos0 = 0,-0.5768127,0.7065102 rot = 0.4917551,-0.5081112,-0.4917551,0.5081112 attRot = 0.9999999,0,0,0 attRot0 = 0.706707,-0.02377435,-0.706707,0.02377435 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) srfN = srfAttach,mk2SpacePlaneAdapter_4290755794 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = structuralWing3_4290626548 partName = Part pos = -0.3522533,16.56484,-20.53538 attPos = 3.576279E-07,0.001411438,0.0406751 attPos0 = -1.321548,1.682251,0.4699633 rot = -0.6469862,-0.2041875,-0.2202803,0.7008517 attRot = 0.5841653,0.4024387,-0.00581008,-0.7048122 attRot0 = -0.04324516,-0.005696797,0.3004212,-0.9528087 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = structuralWing3_4290625986 srfN = srfAttach,adapterMk3-Mk2_4290785136 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = structuralWing3_4290625986 partName = Part pos = 2.290842,16.56484,-20.53538 attPos = -2.384186E-07,0.001413345,0.04067504 attPos0 = 1.321548,1.682251,0.4699633 rot = -0.2202803,0.7008517,-0.6469862,-0.2041876 attRot = 0.5841653,0.4024387,-0.00581008,-0.7048122 attRot0 = -0.3004211,0.9528087,0.04324508,0.005696733 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = structuralWing3_4290626548 srfN = srfAttach,adapterMk3-Mk2_4290785136 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = wingStrake_4289781782 partName = Part pos = 3.914923,15.6111,-12.98647 attPos = 0.07575107,0.229269,0.02779106 attPos0 = -1.397573,-0.921002,0.01326094 rot = -0.1269109,0.6563067,-0.7175844,-0.1955196 attRot = 0.2743041,-0.6095916,0.7433096,0.02542196 attRot0 = -5.908064E-08,-2.320366E-07,0.2297529,-0.973249 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = wingStrake_4294179498 srfN = srfAttach,structuralWing_4290683878 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = wingStrake_4294179498 partName = Part pos = -1.976328,15.6111,-12.98647 attPos = 0.07575035,0.2292709,-0.02779079 attPos0 = -1.397573,-0.921002,-0.01326158 rot = -0.7175846,-0.1955195,-0.126911,0.6563065 attRot = 0.2743041,-0.6095916,0.7433096,0.02542196 attRot0 = 1.114786E-07,-1.011775E-07,-0.2297529,0.973249 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = wingStrake_4289781782 srfN = srfAttach,structuralWing_4289817920 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = wingStrake_4294148328 partName = Part pos = 5.618279,15.64089,-11.73845 attPos = 0.03330658,-0.0666171,0.01419871 attPos0 = -0.280577,-0.1402892,-0.01355764 rot = -0.5955265,-0.3540619,-0.3888891,0.6072512 attRot = 0.6142694,-0.3204438,0.7210101,0.01155837 attRot0 = -4.643358E-07,-3.658158E-07,-0.8506509,-0.525731 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = smallCtrlSrf_4292755496 link = smallCtrlSrf_4293477976 link = elevon3_4291839132 link = strutConnector_4291737212 sym = wingStrake_4294146676 srfN = srfAttach,sweptWing2_4289873840 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = wingStrake_4294146676 partName = Part pos = -3.679692,15.64089,-11.73845 attPos = 0.03330706,-0.0666171,-0.01419869 attPos0 = -0.2805774,-0.1402892,0.01355763 rot = -0.388889,0.6072513,-0.5955269,-0.3540612 attRot = 0.6142694,-0.3204438,0.7210101,0.01155837 attRot0 = -5.646528E-07,-1.900052E-07,0.8506508,0.525731 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = smallCtrlSrf_4292757758 link = smallCtrlSrf_4293467486 link = elevon3_4291839768 link = strutConnector_4291743018 sym = wingStrake_4294148328 srfN = srfAttach,sweptWing2_4290680406 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { part = strutConnector_4294023366 partName = CompoundPart pos = -6.953966,15.58477,-13.26224 attPos = 0,0,0 attPos0 = -3.713478,-1.838477,0.0012233 rot = 0.5312434,0.4881381,0.4771772,-0.5018006 attRot = 0,0,0,1 attRot0 = -3.071346E-08,1.110578E-08,0.3826836,-0.9238795 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = strutConnector_4293865070 srfN = srfAttach,sweptWing1_4289797466 EVENTS { } ACTIONS { } PARTDATA { tgt = 4290672060 pos = -0.07965389,-0.1335117,-0.001209627 rot = -7.737637E-09,-0.03243203,0.6810383,0.731532 dir = -0.5123355,-0.8587501,-0.007780344 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { part = strutConnector_4293865070 partName = CompoundPart pos = 8.892575,15.58477,-13.26224 attPos = 0,0,0 attPos0 = -3.713479,-1.838477,-0.001225262 rot = -0.4771774,0.5018005,-0.5312434,-0.4881379 attRot = 0,0,0,1 attRot0 = 2.587079E-07,-3.450816E-09,-0.3826836,0.9238795 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = strutConnector_4294023366 srfN = srfAttach,sweptWing1_4290668908 EVENTS { } ACTIONS { } PARTDATA { tgt = 4289873664 pos = -0.07964988,-0.1335106,0.001210897 rot = 7.208816E-09,0.03243157,0.6810387,0.7315326 dir = -0.5123194,-0.8587596,0.00778866 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { part = smallCtrlSrf_4292757758 partName = Part pos = -2.925114,15.70951,-11.96333 attPos = -2.330313,16.25631,-11.88519 attPos0 = -0.5948014,-0.5467982,-0.07812574 rot = -0.6856418,0.1122814,-0.1489135,-0.703643 attRot = 0.3818548,-0.5949515,-0.4379365,0.5553662 attRot0 = 0.02580431,-0.003052911,-0.6888955,0.7243948 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = smallCtrlSrf_4292755496 srfN = srfAttach,wingStrake_4294146676 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleControlSurface isEnabled = True ignorePitch = True ignoreYaw = True ignoreRoll = True deploy = False deployInvert = False ignorePitch_UIFlight { controlEnabled = True } ignoreYaw_UIFlight { controlEnabled = True } ignoreRoll_UIFlight { controlEnabled = True } deploy_UIFlight { controlEnabled = True } deployInvert_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { ActionToggle { actionGroup = Brakes, Abort } ActionExtend { actionGroup = None } ActionRetract { actionGroup = None } } } } PART { part = smallCtrlSrf_4292755496 partName = Part pos = 4.863701,15.70951,-11.96333 attPos = 0.05330789,-0.02788818,-0.0436243 attPos0 = -0.594802,-0.5467977,0.07812569 rot = 0.1489137,0.703643,0.6856415,-0.1122819 attRot = 0.3818548,-0.5949515,-0.4379365,0.5553662 attRot0 = 0.02580427,-0.003052782,0.6888955,-0.7243949 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = smallCtrlSrf_4292757758 srfN = srfAttach,wingStrake_4294148328 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleControlSurface isEnabled = True ignorePitch = True ignoreYaw = True ignoreRoll = True deploy = False deployInvert = False ignorePitch_UIFlight { controlEnabled = True } ignoreYaw_UIFlight { controlEnabled = True } ignoreRoll_UIFlight { controlEnabled = True } deploy_UIFlight { controlEnabled = True } deployInvert_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { ActionToggle { actionGroup = Brakes, Abort } ActionExtend { actionGroup = None } ActionRetract { actionGroup = None } } } } PART { part = smallCtrlSrf_4293477976 partName = Part pos = 7.644262,15.62388,-12.53766 attPos = 0.2500017,-0.1015427,-0.03654138 attPos0 = -0.05776361,2.270947,0.05481926 rot = 0.1469901,0.6770563,0.7093781,-0.1295049 attRot = 0,0,-0.6427876,0.7660444 attRot0 = -4.040839E-08,6.337173E-08,0.7315697,-0.6817667 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = smallCtrlSrf_4293467486 srfN = srfAttach,wingStrake_4294148328 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleControlSurface isEnabled = True ignorePitch = True ignoreYaw = True ignoreRoll = True deploy = False deployInvert = False ignorePitch_UIFlight { controlEnabled = True } ignoreYaw_UIFlight { controlEnabled = True } ignoreRoll_UIFlight { controlEnabled = True } deploy_UIFlight { controlEnabled = True } deployInvert_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { ActionToggle { actionGroup = Brakes, Abort } ActionExtend { actionGroup = None } ActionRetract { actionGroup = None } } } } PART { part = smallCtrlSrf_4293467486 partName = Part pos = -5.705667,15.62388,-12.53766 attPos = -5.647909,13.35293,-12.48282 attPos0 = -0.05776097,2.270949,-0.05482054 rot = -0.7093782,0.1295044,-0.1469899,-0.6770564 attRot = 0,0,-0.6427876,0.7660444 attRot0 = -1.431018E-08,-2.424996E-07,-0.7315699,0.6817666 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = smallCtrlSrf_4293477976 srfN = srfAttach,wingStrake_4294146676 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleControlSurface isEnabled = True ignorePitch = True ignoreYaw = True ignoreRoll = True deploy = False deployInvert = False ignorePitch_UIFlight { controlEnabled = True } ignoreYaw_UIFlight { controlEnabled = True } ignoreRoll_UIFlight { controlEnabled = True } deploy_UIFlight { controlEnabled = True } deployInvert_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { ActionToggle { actionGroup = Brakes, Abort } ActionExtend { actionGroup = None } ActionRetract { actionGroup = None } } } } PART { part = StandardCtrlSrf_4293461144 partName = Part pos = 7.871233,15.57003,-13.33137 attPos = 0.1620648,0.1620662,2.076849E-07 attPos0 = -3.151636,-1.276636,-0.006800485 rot = 0.6922415,-0.017412,0.03048003,0.7208118 attRot = 0,0,-0.7071068,0.7071068 attRot0 = 3.991188E-07,-2.919056E-07,0.9238794,-0.3826838 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = StandardCtrlSrf_4293460596 srfN = srfAttach,sweptWing1_4290668908 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleControlSurface isEnabled = True ignorePitch = True ignoreYaw = True ignoreRoll = True deploy = False deployInvert = False ignorePitch_UIFlight { controlEnabled = True } ignoreYaw_UIFlight { controlEnabled = True } ignoreRoll_UIFlight { controlEnabled = True } deploy_UIFlight { controlEnabled = True } deployInvert_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionExtend { actionGroup = Custom02, Custom03, Custom04 } ActionRetract { actionGroup = Custom01 } } } } PART { part = StandardCtrlSrf_4293460596 partName = Part pos = -5.93264,15.57003,-13.33137 attPos = -2.781001,16.84667,-13.33815 attPos0 = -3.151639,-1.276641,0.006798814 rot = 0.03048001,0.7208115,0.6922418,-0.01741219 attRot = 0,0,-0.7071068,0.7071068 attRot0 = -6.249411E-07,-9.76472E-09,0.9238793,-0.3826838 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = StandardCtrlSrf_4293461144 srfN = srfAttach,sweptWing1_4289797466 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleControlSurface isEnabled = True ignorePitch = True ignoreYaw = True ignoreRoll = True deploy = False deployInvert = False ignorePitch_UIFlight { controlEnabled = True } ignoreYaw_UIFlight { controlEnabled = True } ignoreRoll_UIFlight { controlEnabled = True } deploy_UIFlight { controlEnabled = True } deployInvert_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionExtend { actionGroup = Custom02, Custom03, Custom04 } ActionRetract { actionGroup = Custom01 } } } } PART { part = StandardCtrlSrf_4293460234 partName = Part pos = 6.024903,15.52812,-13.45573 attPos = 0.157252,0.157255,-3.462192E-07 attPos0 = -1.837982,0.03701965,-0.001598044 rot = 0.6922415,-0.017412,0.03048003,0.7208118 attRot = 0,0,-0.7071068,0.7071068 attRot0 = 3.991188E-07,-2.919056E-07,0.9238794,-0.3826838 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = StandardCtrlSrf_4293459610 srfN = srfAttach,sweptWing1_4290668908 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleControlSurface isEnabled = True ignorePitch = True ignoreYaw = True ignoreRoll = True deploy = False deployInvert = False ignorePitch_UIFlight { controlEnabled = True } ignoreYaw_UIFlight { controlEnabled = True } ignoreRoll_UIFlight { controlEnabled = True } deploy_UIFlight { controlEnabled = True } deployInvert_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionExtend { actionGroup = Custom02, Custom03, Custom04 } ActionRetract { actionGroup = Custom01 } } } } PART { part = StandardCtrlSrf_4293459610 partName = Part pos = -4.086306,15.52812,-13.45573 attPos = -2.248322,15.4911,-13.4573 attPos0 = -1.837984,0.03701615,0.001597496 rot = 0.03048001,0.7208115,0.6922418,-0.01741219 attRot = 0,0,-0.7071068,0.7071068 attRot0 = -6.249411E-07,-9.76472E-09,0.9238793,-0.3826838 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = StandardCtrlSrf_4293460234 srfN = srfAttach,sweptWing1_4289797466 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleControlSurface isEnabled = True ignorePitch = True ignoreYaw = True ignoreRoll = True deploy = False deployInvert = False ignorePitch_UIFlight { controlEnabled = True } ignoreYaw_UIFlight { controlEnabled = True } ignoreRoll_UIFlight { controlEnabled = True } deploy_UIFlight { controlEnabled = True } deployInvert_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionExtend { actionGroup = Custom02, Custom03, Custom04 } ActionRetract { actionGroup = Custom01 } } } } PART { part = smallCtrlSrf_4293454788 partName = Part pos = 4.596003,15.49164,-13.55181 attPos = 5.263752,14.2844,-13.55826 attPos0 = -0.6677533,1.20725,0.006470644 rot = 0.6922415,-0.017412,0.03048003,0.7208118 attRot = 0,0,-0.7071068,0.7071068 attRot0 = 3.991188E-07,-2.919056E-07,0.9238794,-0.3826838 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = smallCtrlSrf_4293454420 srfN = srfAttach,sweptWing1_4290668908 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleControlSurface isEnabled = True ignorePitch = True ignoreYaw = True ignoreRoll = False deploy = False deployInvert = False ignorePitch_UIFlight { controlEnabled = True } ignoreYaw_UIFlight { controlEnabled = True } ignoreRoll_UIFlight { controlEnabled = True } deploy_UIFlight { controlEnabled = True } deployInvert_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionExtend { actionGroup = Custom02, Custom03, Custom04 } ActionRetract { actionGroup = Custom01 } } } } PART { part = smallCtrlSrf_4293454420 partName = Part pos = -2.65741,15.49164,-13.55181 attPos = -1.989654,14.2844,-13.54532 attPos0 = -0.6677563,1.207247,-0.006470191 rot = 0.03048006,0.7208117,0.6922417,-0.01741223 attRot = 0,0,-0.7071068,0.7071068 attRot0 = -6.249411E-07,-9.76472E-09,0.9238793,-0.3826838 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = smallCtrlSrf_4293454788 srfN = srfAttach,sweptWing1_4289797466 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleControlSurface isEnabled = True ignorePitch = True ignoreYaw = True ignoreRoll = False deploy = False deployInvert = False ignorePitch_UIFlight { controlEnabled = True } ignoreYaw_UIFlight { controlEnabled = True } ignoreRoll_UIFlight { controlEnabled = True } deploy_UIFlight { controlEnabled = True } deployInvert_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionExtend { actionGroup = Custom02, Custom03, Custom04 } ActionRetract { actionGroup = Custom01 } } } } PART { part = ramAirIntake_4293099958 partName = Part pos = 2.978718,14.58869,-10.06639 attPos = 0,0,0 attPos0 = -1.826312E-07,0.9374977,1.766416E-07 rot = 0.6878165,0.001185091,-0.001184643,0.7258827 attRot = 0,0,0,1 attRot0 = 7.24001E-08,-0.3928108,2.374558E-08,0.9196193 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = ramAirIntake_4293096116 attN = bottom01,mk2SpacePlaneAdapter_4289605784 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleResourceIntake isEnabled = True intakeEnabled = True EVENTS { Deactivate { active = True guiActive = True guiIcon = Close Intake guiName = Close Intake category = Close Intake guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Activate { active = False guiActive = True guiIcon = Open Intake guiName = Open Intake category = Open Intake guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } RESOURCE { name = IntakeAir amount = 1 maxAmount = 1 flowState = True isTweakable = False hideFlow = False flowMode = Both } } PART { part = ramAirIntake_4293096116 partName = Part pos = -1.040129,14.58869,-10.06638 attPos = 0,0,0 attPos0 = 2.684037E-07,0.9374977,2.587584E-07 rot = 0.6878165,-0.001185188,0.001184552,0.7258827 attRot = 0,0,0,1 attRot0 = 1.498567E-07,0.3928108,-5.692267E-08,0.9196194 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = ramAirIntake_4293099958 attN = bottom01,mk2SpacePlaneAdapter_4289613904 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleResourceIntake isEnabled = True intakeEnabled = True EVENTS { Deactivate { active = True guiActive = True guiIcon = Close Intake guiName = Close Intake category = Close Intake guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Activate { active = False guiActive = True guiIcon = Open Intake guiName = Open Intake category = Open Intake guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } RESOURCE { name = IntakeAir amount = 1 maxAmount = 1 flowState = True isTweakable = False hideFlow = False flowMode = Both } } PART { part = GearLarge_4291975616 partName = Part pos = 4.472044,15.15879,-11.52456 attPos = -0.2413194,-0.7565618,-0.2146888 attPos0 = -0.6890443,-1.005651,-0.09374945 rot = 0,7.802501E-08,4.771612E-08,1 attRot = 9.508163E-08,0.7071068,0.7071069,-4.271426E-08 attRot0 = -9.736009E-08,-0.7071068,-0.7071069,7.931339E-08 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = GearLarge_4291972350 srfN = srfAttach,wingConnector_4290706576 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLandingGear isEnabled = True BrakeTorque = 12 brakesEngaged = False brakesEnabled = True storedGearState = UNDEFINED storedAnimationSpeed = 0 storedAnimationTime = 0 StartDeployed = True BrakeTorque_UIFlight { controlEnabled = True minValue = 0 maxValue = 30 stepIncrement = 1 } StartDeployed_UIFlight { controlEnabled = True } EVENTS { EnableBrakes { active = False guiActive = False guiActiveEditor = True guiIcon = Enable brakes guiName = Enable brakes category = Enable brakes guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DisableBrakes { active = True guiActive = False guiActiveEditor = True guiIcon = Disable brakes guiName = Disable brakes category = Disable brakes guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } LowerLandingGear { active = False guiActive = True guiIcon = Lower Gear guiName = Lower Gear category = Lower Gear guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } RaiseLandingGear { active = True guiActive = True guiIcon = Raise Gear guiName = Raise Gear category = Raise Gear guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = Gear } BrakesAction { actionGroup = Brakes } } } MODULE { name = FXModuleLookAtConstraint isEnabled = True EVENTS { } ACTIONS { } } } PART { part = GearLarge_4291972350 partName = Part pos = -2.533454,15.15879,-11.52456 attPos = -0.2413181,-0.7565588,0.214689 attPos0 = -0.6890454,-1.005651,0.09375025 rot = 1.455838E-09,-7.320114E-08,-2.466783E-08,1 attRot = 9.508163E-08,0.7071068,0.7071069,-4.271426E-08 attRot0 = 0.7071071,1.767379E-07,1.551849E-07,-0.7071065 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = GearLarge_4291975616 srfN = srfAttach,wingConnector_4289869116 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLandingGear isEnabled = True BrakeTorque = 12 brakesEngaged = False brakesEnabled = True storedGearState = UNDEFINED storedAnimationSpeed = 0 storedAnimationTime = 0 StartDeployed = True BrakeTorque_UIFlight { controlEnabled = True minValue = 0 maxValue = 30 stepIncrement = 1 } StartDeployed_UIFlight { controlEnabled = True } EVENTS { EnableBrakes { active = False guiActive = False guiActiveEditor = True guiIcon = Enable brakes guiName = Enable brakes category = Enable brakes guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DisableBrakes { active = True guiActive = False guiActiveEditor = True guiIcon = Disable brakes guiName = Disable brakes category = Disable brakes guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } LowerLandingGear { active = False guiActive = True guiIcon = Lower Gear guiName = Lower Gear category = Lower Gear guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } RaiseLandingGear { active = True guiActive = True guiIcon = Raise Gear guiName = Raise Gear category = Raise Gear guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = Gear } BrakesAction { actionGroup = Brakes } } } MODULE { name = FXModuleLookAtConstraint isEnabled = True EVENTS { } ACTIONS { } } } PART { part = GearMedium_4291969020 partName = Part pos = 0.9692943,13.7056,2.517787 attPos = 0,-0.05155671,-0.08808994 attPos0 = 0,1.505981,1.638784 rot = 0,-0.9984459,0.05573133,0 attRot = 0,-0.9999999,0,0 attRot0 = 0,-0.6536263,0.7568175,0 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) srfN = srfAttach,mk3Cockpit.Shuttle_4290816042 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLandingGear isEnabled = True BrakeTorque = 12 brakesEngaged = False brakesEnabled = True storedGearState = UNDEFINED storedAnimationSpeed = 0 storedAnimationTime = 0 StartDeployed = True BrakeTorque_UIFlight { controlEnabled = True minValue = 0 maxValue = 30 stepIncrement = 1 } StartDeployed_UIFlight { controlEnabled = True } EVENTS { EnableBrakes { active = False guiActive = False guiActiveEditor = True guiIcon = Enable brakes guiName = Enable brakes category = Enable brakes guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DisableBrakes { active = True guiActive = False guiActiveEditor = True guiIcon = Disable brakes guiName = Disable brakes category = Disable brakes guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } LowerLandingGear { active = False guiActive = True guiIcon = Lower Gear guiName = Lower Gear category = Lower Gear guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } RaiseLandingGear { active = True guiActive = True guiIcon = Raise Gear guiName = Raise Gear category = Raise Gear guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = Gear } BrakesAction { actionGroup = Brakes } } } MODULE { name = FXModuleLookAtConstraint isEnabled = True EVENTS { } ACTIONS { } } } PART { part = telescopicLadderBay_4291957648 partName = Part pos = 2.523416,14.39126,0.4227064 attPos = 0,0,0 attPos0 = 1.554121,-0.6630861,0.9378024 rot = 0.002196863,0.9981068,0.01717126,0.05901946 attRot = 0.7071068,0,0,0.7071068 attRot0 = -0.04092127,0.7058232,-0.7059217,0.0425861 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = telescopicLadderBay_4291955254 srfN = srfAttach,mk3Cockpit.Shuttle_4290816042 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = RetractableLadder isEnabled = True StateName = Retracted EVENTS { Extend { active = True guiActive = True guiActiveEditor = True guiIcon = Extend Ladder guiName = Extend Ladder category = Extend Ladder guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiActiveEditor = True guiIcon = Retract Ladder guiName = Retract Ladder category = Retract Ladder guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { part = telescopicLadderBay_4291955254 partName = Part pos = -0.5848273,14.39126,0.4227065 attPos = 0,0,0 attPos0 = -1.554122,-0.6630859,0.9378024 rot = -0.01717126,-0.05901952,-0.002196864,-0.9981068 attRot = 0.7071068,0,0,0.7071068 attRot0 = 0.7059217,-0.04258612,0.0409213,-0.7058232 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = telescopicLadderBay_4291957648 srfN = srfAttach,mk3Cockpit.Shuttle_4290816042 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = RetractableLadder isEnabled = True StateName = Retracted EVENTS { Extend { active = True guiActive = True guiActiveEditor = True guiIcon = Extend Ladder guiName = Extend Ladder category = Extend Ladder guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiActiveEditor = True guiIcon = Retract Ladder guiName = Retract Ladder category = Retract Ladder guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { part = telescopicLadder_4291953798 partName = Part pos = 0.9692943,13.61242,-3.254021 attPos = 0,0,0 attPos0 = 0,-1.185711,1.843159 rot = 0.2242464,0.6706069,0.2242464,0.6706069 attRot = 0,0,-0.4617487,0.887011 attRot0 = -0.3265057,0.6272113,-0.3265057,0.6272113 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) srfN = srfAttach,mk3CrewCabin_4288610786 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = RetractableLadder isEnabled = True StateName = Retracted EVENTS { Extend { active = True guiActive = True guiActiveEditor = True guiIcon = Extend Ladder guiName = Extend Ladder category = Extend Ladder guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiActiveEditor = True guiIcon = Retract Ladder guiName = Retract Ladder category = Retract Ladder guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { part = elevon3_4291839768 partName = Part pos = -4.279695,15.64089,-12.32549 attPos = 0.1670775,-0.01024979,0.003559722 attPos0 = -0.4233277,0.8095829,6.669556E-07 rot = 0.7179655,-0.0671858,0.08742197,0.6872914 attRot = 0,0,-0.7071067,0.7071067 attRot0 = 1.390425E-07,-2.640105E-07,0.7882053,-0.6154124 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = elevon3_4291839132 srfN = srfAttach,wingStrake_4294146676 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleControlSurface isEnabled = True ignorePitch = True ignoreYaw = True ignoreRoll = True deploy = False deployInvert = False ignorePitch_UIFlight { controlEnabled = True } ignoreYaw_UIFlight { controlEnabled = True } ignoreRoll_UIFlight { controlEnabled = True } deploy_UIFlight { controlEnabled = True } deployInvert_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { ActionToggle { actionGroup = Brakes, Abort } ActionExtend { actionGroup = None } ActionRetract { actionGroup = None } } } } PART { part = elevon3_4291839132 partName = Part pos = 6.218281,15.64089,-12.32549 attPos = 0.167075,-0.01024842,-0.003559833 attPos0 = -0.4233278,0.8095841,-1.047743E-06 rot = 0.08742209,0.6872913,0.7179654,-0.06718607 attRot = 0,0,-0.7071067,0.7071067 attRot0 = 8.135602E-09,4.344875E-07,0.7882051,-0.6154128 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = elevon3_4291839768 srfN = srfAttach,wingStrake_4294148328 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleControlSurface isEnabled = True ignorePitch = True ignoreYaw = True ignoreRoll = True deploy = False deployInvert = False ignorePitch_UIFlight { controlEnabled = True } ignoreYaw_UIFlight { controlEnabled = True } ignoreRoll_UIFlight { controlEnabled = True } deploy_UIFlight { controlEnabled = True } deployInvert_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { ActionToggle { actionGroup = Brakes, Abort } ActionExtend { actionGroup = None } ActionRetract { actionGroup = None } } } } PART { part = strutConnector_4291750910 partName = CompoundPart pos = -3.677924,15.44067,-8.685241 attPos = -0.00290072,-0.0007009506,-0.02003981 attPos0 = -0.2490656,1.05219,0.09374283 rot = 0.5007581,0.4987139,0.516246,0.483752 attRot = 0,0,0,1 attRot0 = -2.745843E-08,-0.707107,-3.289512E-08,-0.7071066 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = strutConnector_4291745196 srfN = srfAttach,sweptWing2_4290679896 EVENTS { } ACTIONS { } PARTDATA { tgt = 4289869116 pos = -0.04234691,0.0320958,0.2565318 rot = 6.571659E-15,0.996211,1.578386E-07,0.0869788 dir = -0.1616436,0.1225138,0.9792148 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { part = strutConnector_4291745196 partName = CompoundPart pos = 5.616514,15.44067,-8.685243 attPos = -0.00290072,-0.0007009506,-0.02003981 attPos0 = -0.2490636,1.052189,-0.0937431 rot = -0.516246,-0.4837521,-0.5007583,-0.4987137 attRot = 0,0,0,1 attRot0 = 8.451936E-08,0.707107,-7.038569E-08,-0.7071066 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = strutConnector_4291750910 srfN = srfAttach,sweptWing2_4289873524 EVENTS { } ACTIONS { } PARTDATA { tgt = 4290706576 pos = -0.04241708,0.03215016,-0.2569556 rot = -1.716503E-13,0.9962105,-4.881148E-06,-0.08697902 dir = -0.1616443,0.1225188,-0.9792141 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { part = strutConnector_4291743018 partName = CompoundPart pos = -3.666882,15.56696,-11.8352 attPos = 0,0,0 attPos0 = -0.0883956,0.03275055,0.07812452 rot = -0.3773371,-0.3656129,-0.6188029,-0.5839755 attRot = 0.7071068,0,0,0.7071068 attRot0 = 0.4999998,0.5000001,-0.5000002,0.4999999 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = strutConnector_4291737212 srfN = srfAttach,wingStrake_4294146676 EVENTS { } ACTIONS { } PARTDATA { tgt = 4289869116 pos = -0.04765281,0.121664,0.3901443 rot = 6.615073E-09,0.3170952,-0.634178,0.7051731 dir = -0.1158187,0.2957007,0.9482337 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { part = strutConnector_4291737212 partName = CompoundPart pos = 5.605474,15.56696,-11.8352 attPos = 0,0,0 attPos0 = -0.08839609,0.03275174,-0.07812451 rot = 0.6188028,0.5839758,0.3773371,0.3656122 attRot = 0.7071068,0,0,0.7071068 attRot0 = 0.4999998,0.5000004,0.4999998,-0.5000001 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = strutConnector_4291743018 srfN = srfAttach,wingStrake_4294148328 EVENTS { } ACTIONS { } PARTDATA { tgt = 4290706576 pos = -0.04765271,0.1216643,-0.3901437 rot = 1.190284E-08,-0.3170955,-0.6341785,0.7051729 dir = -0.1158186,0.2957017,-0.9482334 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } ================================================ FILE: saves/RemoteTech KSP1_0 Testbed/Ships/VAB/Auto-Saved Ship.craft ================================================ ship = Z-MAP Satellite Launch Kit version = 1.0.2 description = The Z-Map Satellite kit is a complete spacecraft capable of actually putting its payload into orbit! ¨¨Set includes: Payload satellite with booster stage,¨Liquid-fueled fin-stabilized launcher and two detachable boosters.¨¨Return from orbit not guaranteed. Orbit also not guaranteed. Survival also not guaranteed. Keep out of reach of children and irresponsible adults. type = VAB size = 5.062787,18.50608,3.137414 PART { part = probeCoreOcto2_4293017764 partName = Part pos = 0.03663391,14.71699,-0.04683471 attPos = 0,0,0 attPos0 = 0,0,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = structuralPanel1_4293017732 link = miniFuelTank_4293017574 attN = bottom,miniFuelTank_4293017574 attN = top,structuralPanel1_4293017732 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True controlSrcStatusText = EVENTS { MakeReference { active = True guiActive = True guiIcon = Control From Here guiName = Control From Here category = Control From Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } RenameVessel { active = True guiActive = True guiIcon = Rename Vessel guiName = Rename Vessel category = Rename Vessel guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True standaloneToggle_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 EVENTS { } ACTIONS { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 EVENTS { } ACTIONS { } } MODULE { name = ModuleTripLogger isEnabled = False EVENTS { } ACTIONS { } Log { flight = 0 } } RESOURCE { name = ElectricCharge amount = 2 maxAmount = 2 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { part = structuralPanel1_4293017732 partName = Part pos = 0.03663391,14.80555,-0.04683471 attPos = 0,0,0 attPos0 = 0,0,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = commDish_4293017712 link = strutCube_4293017546 link = strutCube_4293017526 link = strutCube_4293017506 link = strutCube_4293017486 link = structuralPanel1_4293017182 link = structuralPanel1_4293017162 link = structuralPanel1_4293017142 link = structuralPanel1_4293017122 link = longAntenna_4293016478 link = longAntenna_4293016418 link = longAntenna_4293016358 link = longAntenna_4293016298 attN = top,commDish_4293017712 attN = bottom,probeCoreOcto2_4293017764 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = commDish_4293017712 partName = Part pos = 0.03663391,14.83305,-0.04683471 attPos = 0,0,0 attPos0 = 0,0,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) attN = bottom,structuralPanel1_4293017732 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = Custom01 active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = True IsRTBroken = False RTDishCosAngle = 0.99999986292217 RTOmniRange = 0 RTDishRange = 0 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = Unknown Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { part = miniFuelTank_4293017574 partName = Part pos = 0.03663391,14.48165,-0.04683471 attPos = 0,0,0 attPos0 = 0,0,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = microEngine_4293017226 attN = top,probeCoreOcto2_4293017764 attN = bottom,microEngine_4293017226 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 5.735 maxAmount = 5.735 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 7 maxAmount = 7 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { part = strutCube_4293017546 partName = Part pos = 0.4263285,14.66067,0.3428601 attPos = 0,0,0 attPos0 = 0,0,0 rot = -1,0,8.42937E-08,-1.192093E-07 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = strutCube_4293017406 sym = strutCube_4293017486 sym = strutCube_4293017526 sym = strutCube_4293017506 srfN = srfAttach,structuralPanel1_4293017732 attN = top,strutCube_4293017406 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = strutCube_4293017526 partName = Part pos = 0.4263286,14.66067,-0.4365293 attPos = 0,0,0 attPos0 = 0,0,0 rot = -0.7071067,-8.429371E-08,0.7071069,-8.42937E-08 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = strutCube_4293017446 sym = strutCube_4293017486 sym = strutCube_4293017546 sym = strutCube_4293017506 srfN = srfAttach,structuralPanel1_4293017732 attN = top,strutCube_4293017446 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = strutCube_4293017506 partName = Part pos = -0.3530607,14.66067,-0.4365293 attPos = 0,0,0 attPos0 = 0,0,0 rot = 8.42937E-08,-1.192093E-07,1,0 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = strutCube_4293017426 sym = strutCube_4293017486 sym = strutCube_4293017546 sym = strutCube_4293017526 srfN = srfAttach,structuralPanel1_4293017732 attN = top,strutCube_4293017426 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = strutCube_4293017486 partName = Part pos = -0.3530608,14.66067,0.3428599 attPos = 0,0,0 attPos0 = 0,0,0 rot = -0.7071068,8.42937E-08,-0.7071068,-8.42937E-08 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = strutCube_4293017466 sym = strutCube_4293017546 sym = strutCube_4293017526 sym = strutCube_4293017506 srfN = srfAttach,structuralPanel1_4293017732 attN = top,strutCube_4293017466 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = strutCube_4293017466 partName = Part pos = -0.3530608,14.4032,0.3428599 attPos = 0,0,0 attPos0 = 0,0,0 rot = -1.507289E-14,-0.7071068,-1.507289E-14,0.7071068 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = strutCube_4293017326 sym = strutCube_4293017406 sym = strutCube_4293017446 sym = strutCube_4293017426 srfN = srfAttach,structuralPanel1_4293017732 attN = top,strutCube_4293017486 attN = bottom,strutCube_4293017326 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = strutCube_4293017446 partName = Part pos = 0.4263287,14.4032,-0.4365293 attPos = 0,0,0 attPos0 = 0,0,0 rot = 3.158673E-15,0.7071068,-2.727657E-15,0.7071068 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = strutCube_4293017366 sym = strutCube_4293017406 sym = strutCube_4293017466 sym = strutCube_4293017426 srfN = srfAttach,structuralPanel1_4293017732 attN = top,strutCube_4293017526 attN = bottom,strutCube_4293017366 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = strutCube_4293017426 partName = Part pos = -0.3530607,14.4032,-0.4365294 attPos = 0,0,0 attPos0 = 0,0,0 rot = 0,1,0,0 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = strutCube_4293017346 sym = strutCube_4293017406 sym = strutCube_4293017466 sym = strutCube_4293017446 srfN = srfAttach,structuralPanel1_4293017732 attN = top,strutCube_4293017506 attN = bottom,strutCube_4293017346 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = strutCube_4293017406 partName = Part pos = 0.4263285,14.4032,0.3428601 attPos = 0,0,0 attPos0 = 0,0,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = strutCube_4293017386 sym = strutCube_4293017466 sym = strutCube_4293017446 sym = strutCube_4293017426 srfN = srfAttach,structuralPanel1_4293017732 attN = top,strutCube_4293017546 attN = bottom,strutCube_4293017386 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = strutCube_4293017386 partName = Part pos = 0.4263285,14.14573,0.3428601 attPos = 0,0,0 attPos0 = 0,0,0 rot = -2.943164E-15,0.7071068,-2.943166E-15,0.7071068 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = strutCube_4293017306 sym = strutCube_4293017326 sym = strutCube_4293017366 sym = strutCube_4293017346 attN = top,strutCube_4293017406 attN = bottom,strutCube_4293017306 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = strutCube_4293017366 partName = Part pos = 0.4263287,14.14573,-0.4365293 attPos = 0,0,0 attPos0 = 0,0,0 rot = 0,1,-1.694066E-21,-8.429371E-08 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = strutCube_4293017286 sym = strutCube_4293017326 sym = strutCube_4293017386 sym = strutCube_4293017346 attN = top,strutCube_4293017446 attN = bottom,strutCube_4293017286 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = strutCube_4293017346 partName = Part pos = -0.3530607,14.14573,-0.4365294 attPos = 0,0,0 attPos0 = 0,0,0 rot = -2.943166E-15,0.7071068,2.943164E-15,-0.7071068 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = strutCube_4293017266 sym = strutCube_4293017326 sym = strutCube_4293017386 sym = strutCube_4293017366 attN = top,strutCube_4293017426 attN = bottom,strutCube_4293017266 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = strutCube_4293017326 partName = Part pos = -0.3530608,14.14573,0.3428599 attPos = 0,0,0 attPos0 = 0,0,0 rot = -5.024296E-15,-8.42937E-08,-5.024296E-15,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = strutCube_4293017246 sym = strutCube_4293017386 sym = strutCube_4293017366 sym = strutCube_4293017346 attN = top,strutCube_4293017466 attN = bottom,strutCube_4293017246 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = strutCube_4293017306 partName = Part pos = 0.4263285,13.88826,0.3428601 attPos = 0,0,0 attPos0 = 0,0,0 rot = 4.162264E-15,0.7071068,4.162261E-15,0.7071068 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = strutCube_4293017246 sym = strutCube_4293017286 sym = strutCube_4293017266 attN = top,strutCube_4293017386 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = strutCube_4293017286 partName = Part pos = 0.4263287,13.88826,-0.4365293 attPos = 0,0,0 attPos0 = 0,0,0 rot = -5.024294E-15,1,1.507289E-14,-8.429371E-08 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = strutCube_4293017246 sym = strutCube_4293017306 sym = strutCube_4293017266 attN = top,strutCube_4293017366 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = strutCube_4293017266 partName = Part pos = -0.3530607,13.88826,-0.4365294 attPos = 0,0,0 attPos0 = 0,0,0 rot = 4.162261E-15,0.7071068,-4.162264E-15,-0.7071068 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = strutCube_4293017246 sym = strutCube_4293017306 sym = strutCube_4293017286 attN = top,strutCube_4293017346 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = strutCube_4293017246 partName = Part pos = -0.3530608,13.88826,0.3428599 attPos = 0,0,0 attPos0 = 0,0,0 rot = -5.024296E-15,0,5.024296E-15,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = strutCube_4293017306 sym = strutCube_4293017286 sym = strutCube_4293017266 attN = top,strutCube_4293017326 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = microEngine_4293017226 partName = Part pos = 0.03663391,14.30738,-0.04683471 attPos = 0,0,0 attPos0 = 0,0,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = 0 sqor = 0 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) attN = top,miniFuelTank_4293017574 attN = bottom,stackDecouplerMini_4293016238 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = None } } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } } PART { part = structuralPanel1_4293017182 partName = Part pos = -0.4638493,14.31053,-0.04683471 attPos = 0,0,0 attPos0 = 0,0,0 rot = -0.7071068,0.7071068,6.322028E-08,-6.322028E-08 attRot = 0.7071067,0,0,0.7071067 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = solarPanels5_4293017102 link = solarPanels5_4293016998 link = solarPanels5_4293016894 link = solarPanels5_4293016790 link = solarPanels5_4293016686 link = solarPanels5_4293016582 sym = structuralPanel1_4293017122 sym = structuralPanel1_4293017162 sym = structuralPanel1_4293017142 srfN = srfAttach,structuralPanel1_4293017732 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = structuralPanel1_4293017162 partName = Part pos = 0.03663391,14.31053,0.4536486 attPos = 0,0,0 attPos0 = 0,0,0 rot = -0.4999999,0.4999999,0.5000001,-0.5000001 attRot = 0.7071067,0,0,0.7071067 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = solarPanels5_4293017076 link = solarPanels5_4293016972 link = solarPanels5_4293016868 link = solarPanels5_4293016764 link = solarPanels5_4293016660 link = solarPanels5_4293016556 link = stackDecouplerMini_4293016238 sym = structuralPanel1_4293017122 sym = structuralPanel1_4293017182 sym = structuralPanel1_4293017142 srfN = srfAttach,structuralPanel1_4293017732 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = structuralPanel1_4293017142 partName = Part pos = 0.5371171,14.31053,-0.04683471 attPos = 0,0,0 attPos0 = 0,0,0 rot = 6.322028E-08,-6.322028E-08,0.7071068,-0.7071068 attRot = 0.7071067,0,0,0.7071067 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = solarPanels5_4293017050 link = solarPanels5_4293016946 link = solarPanels5_4293016842 link = solarPanels5_4293016738 link = solarPanels5_4293016634 link = solarPanels5_4293016530 sym = structuralPanel1_4293017122 sym = structuralPanel1_4293017182 sym = structuralPanel1_4293017162 srfN = srfAttach,structuralPanel1_4293017732 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = structuralPanel1_4293017122 partName = Part pos = 0.03663391,14.31053,-0.547318 attPos = 0,0,0 attPos0 = 0,0,0 rot = -0.5000001,0.5000001,-0.4999999,0.4999999 attRot = 0.7071067,0,0,0.7071067 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = solarPanels5_4293017024 link = solarPanels5_4293016920 link = solarPanels5_4293016816 link = solarPanels5_4293016712 link = solarPanels5_4293016608 link = solarPanels5_4293016504 sym = structuralPanel1_4293017182 sym = structuralPanel1_4293017162 sym = structuralPanel1_4293017142 srfN = srfAttach,structuralPanel1_4293017732 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = solarPanels5_4293017102 partName = Part pos = -0.4810368,14.57383,0.3053553 attPos = 0,0,0 attPos0 = 0,0,0 rot = 0.7071068,0,-0.7071068,6.53613E-18 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = solarPanels5_4293017024 sym = solarPanels5_4293017076 sym = solarPanels5_4293017050 srfN = srfAttach,structuralPanel1_4293017182 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 0) stateString = RETRACTED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = True guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { part = solarPanels5_4293017076 partName = Part pos = 0.388822,14.57383,0.4708368 attPos = 0,0,0 attPos0 = 0,0,0 rot = 0,0,-1,0 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = solarPanels5_4293017024 sym = solarPanels5_4293017102 sym = solarPanels5_4293017050 srfN = srfAttach,structuralPanel1_4293017162 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 0) stateString = RETRACTED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = True guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { part = solarPanels5_4293017050 partName = Part pos = 0.5543054,14.57383,-0.3990226 attPos = 0,0,0 attPos0 = 0,0,0 rot = -0.7071068,6.53613E-18,-0.7071068,0 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = solarPanels5_4293017024 sym = solarPanels5_4293017102 sym = solarPanels5_4293017076 srfN = srfAttach,structuralPanel1_4293017142 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 0) stateString = RETRACTED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = True guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { part = solarPanels5_4293017024 partName = Part pos = -0.315554,14.57383,-0.5645061 attPos = 0,0,0 attPos0 = 0,0,0 rot = 1,0,0,0 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = solarPanels5_4293017102 sym = solarPanels5_4293017076 sym = solarPanels5_4293017050 srfN = srfAttach,structuralPanel1_4293017122 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 0) stateString = RETRACTED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = True guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { part = solarPanels5_4293016998 partName = Part pos = -0.4810374,14.5737,-0.05926123 attPos = 0,0,0 attPos0 = 0,0,0 rot = 0.7071068,0,-0.7071068,6.53613E-18 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = solarPanels5_4293016920 sym = solarPanels5_4293016972 sym = solarPanels5_4293016946 srfN = srfAttach,structuralPanel1_4293017182 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 0) stateString = RETRACTED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = True guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { part = solarPanels5_4293016972 partName = Part pos = 0.02420764,14.5737,0.4708369 attPos = 0,0,0 attPos0 = 0,0,0 rot = 0,0,-1,0 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = solarPanels5_4293016920 sym = solarPanels5_4293016998 sym = solarPanels5_4293016946 srfN = srfAttach,structuralPanel1_4293017162 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 0) stateString = RETRACTED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = True guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { part = solarPanels5_4293016946 partName = Part pos = 0.5543056,14.5737,-0.0344082 attPos = 0,0,0 attPos0 = 0,0,0 rot = -0.7071068,6.53613E-18,-0.7071068,0 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = solarPanels5_4293016920 sym = solarPanels5_4293016998 sym = solarPanels5_4293016972 srfN = srfAttach,structuralPanel1_4293017142 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 0) stateString = RETRACTED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = True guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { part = solarPanels5_4293016920 partName = Part pos = 0.04906052,14.57369,-0.5645064 attPos = 0,0,0 attPos0 = 0,0,0 rot = 1,0,0,0 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = solarPanels5_4293016998 sym = solarPanels5_4293016972 sym = solarPanels5_4293016946 srfN = srfAttach,structuralPanel1_4293017122 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 0) stateString = RETRACTED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = True guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { part = solarPanels5_4293016894 partName = Part pos = -0.4810374,14.57235,-0.4244115 attPos = 0,0,0 attPos0 = 0,0,0 rot = 0.7071068,0,-0.7071068,6.53613E-18 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = solarPanels5_4293016816 sym = solarPanels5_4293016868 sym = solarPanels5_4293016842 srfN = srfAttach,structuralPanel1_4293017182 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 0) stateString = RETRACTED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = True guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { part = solarPanels5_4293016868 partName = Part pos = -0.3409404,14.57234,0.4708369 attPos = 0,0,0 attPos0 = 0,0,0 rot = 0,0,-1,0 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = solarPanels5_4293016816 sym = solarPanels5_4293016894 sym = solarPanels5_4293016842 srfN = srfAttach,structuralPanel1_4293017162 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 0) stateString = RETRACTED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = True guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { part = solarPanels5_4293016842 partName = Part pos = 0.5543056,14.57235,0.3307399 attPos = 0,0,0 attPos0 = 0,0,0 rot = -0.7071068,6.53613E-18,-0.7071068,0 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = solarPanels5_4293016816 sym = solarPanels5_4293016894 sym = solarPanels5_4293016868 srfN = srfAttach,structuralPanel1_4293017142 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 0) stateString = RETRACTED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = True guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { part = solarPanels5_4293016816 partName = Part pos = 0.4142086,14.57234,-0.5645065 attPos = 0,0,0 attPos0 = 0,0,0 rot = 1,0,0,0 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = solarPanels5_4293016894 sym = solarPanels5_4293016868 sym = solarPanels5_4293016842 srfN = srfAttach,structuralPanel1_4293017122 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 0) stateString = RETRACTED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = True guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { part = solarPanels5_4293016790 partName = Part pos = -0.4810383,14.03705,-0.05909909 attPos = 0,0,0 attPos0 = 0,0,0 rot = 0.7071068,0,-0.7071068,6.53613E-18 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = solarPanels5_4293016712 sym = solarPanels5_4293016764 sym = solarPanels5_4293016738 srfN = srfAttach,structuralPanel1_4293017182 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 0) stateString = RETRACTED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = True guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { part = solarPanels5_4293016764 partName = Part pos = 0.02436949,14.03705,0.4708369 attPos = 0,0,0 attPos0 = 0,0,0 rot = -7.450581E-08,4.470348E-08,-1,-1.490117E-08 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = solarPanels5_4293016712 sym = solarPanels5_4293016790 sym = solarPanels5_4293016738 srfN = srfAttach,structuralPanel1_4293017162 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 0) stateString = RETRACTED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = True guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { part = solarPanels5_4293016738 partName = Part pos = 0.5543055,14.03705,-0.0345704 attPos = 0,0,0 attPos0 = 0,0,0 rot = -0.7071068,6.53613E-18,-0.7071068,0 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = solarPanels5_4293016712 sym = solarPanels5_4293016790 sym = solarPanels5_4293016764 srfN = srfAttach,structuralPanel1_4293017142 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 0) stateString = RETRACTED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = True guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { part = solarPanels5_4293016712 partName = Part pos = 0.04889809,14.03705,-0.5645063 attPos = 0,0,0 attPos0 = 0,0,0 rot = 1,0,0,0 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = solarPanels5_4293016790 sym = solarPanels5_4293016764 sym = solarPanels5_4293016738 srfN = srfAttach,structuralPanel1_4293017122 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 0) stateString = RETRACTED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = True guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { part = solarPanels5_4293016686 partName = Part pos = -0.4810383,14.0369,0.3149532 attPos = 0,0,0 attPos0 = 0,0,0 rot = 0.7071068,0,-0.7071068,6.53613E-18 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = solarPanels5_4293016608 sym = solarPanels5_4293016660 sym = solarPanels5_4293016634 srfN = srfAttach,structuralPanel1_4293017182 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 0) stateString = RETRACTED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = True guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { part = solarPanels5_4293016660 partName = Part pos = 0.3984196,14.0369,0.4708376 attPos = 0,0,0 attPos0 = 0,0,0 rot = -7.450581E-08,4.470348E-08,-1,-1.490117E-08 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = solarPanels5_4293016608 sym = solarPanels5_4293016686 sym = solarPanels5_4293016634 srfN = srfAttach,structuralPanel1_4293017162 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 0) stateString = RETRACTED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = True guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { part = solarPanels5_4293016634 partName = Part pos = 0.5543054,14.0369,-0.4086203 attPos = 0,0,0 attPos0 = 0,0,0 rot = -0.7071068,6.53613E-18,-0.7071068,0 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = solarPanels5_4293016608 sym = solarPanels5_4293016686 sym = solarPanels5_4293016660 srfN = srfAttach,structuralPanel1_4293017142 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 0) stateString = RETRACTED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = True guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { part = solarPanels5_4293016608 partName = Part pos = -0.325152,14.0369,-0.5645062 attPos = 0,0,0 attPos0 = 0,0,0 rot = 1,0,0,0 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = solarPanels5_4293016686 sym = solarPanels5_4293016660 sym = solarPanels5_4293016634 srfN = srfAttach,structuralPanel1_4293017122 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 0) stateString = RETRACTED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = True guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { part = solarPanels5_4293016582 partName = Part pos = -0.4810383,14.03764,-0.4274477 attPos = 0,0,0 attPos0 = 0,0,0 rot = 0.7071068,0,-0.7071068,6.53613E-18 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = solarPanels5_4293016504 sym = solarPanels5_4293016556 sym = solarPanels5_4293016530 srfN = srfAttach,structuralPanel1_4293017182 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 0) stateString = RETRACTED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = True guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { part = solarPanels5_4293016556 partName = Part pos = -0.3439769,14.03764,0.4708371 attPos = 0,0,0 attPos0 = 0,0,0 rot = 0,0,-1,0 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = solarPanels5_4293016504 sym = solarPanels5_4293016582 sym = solarPanels5_4293016530 srfN = srfAttach,structuralPanel1_4293017162 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 0) stateString = RETRACTED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = True guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { part = solarPanels5_4293016530 partName = Part pos = 0.5543056,14.03764,0.3337762 attPos = 0,0,0 attPos0 = 0,0,0 rot = -0.7071068,6.53613E-18,-0.7071068,0 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = solarPanels5_4293016504 sym = solarPanels5_4293016582 sym = solarPanels5_4293016556 srfN = srfAttach,structuralPanel1_4293017142 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 0) stateString = RETRACTED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = True guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { part = solarPanels5_4293016504 partName = Part pos = 0.4172447,14.03764,-0.5645069 attPos = 0,0,0 attPos0 = 0,0,0 rot = 1,0,0,0 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = solarPanels5_4293016582 sym = solarPanels5_4293016556 sym = solarPanels5_4293016530 srfN = srfAttach,structuralPanel1_4293017122 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 0) stateString = RETRACTED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = True guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { part = longAntenna_4293016478 partName = Part pos = 0.4597678,14.82274,0.3726038 attPos = 0,0,0 attPos0 = 0,0,0 rot = 0.6532815,0.2705982,-0.270598,0.6532816 attRot = 0.6532815,-0.2705981,-0.2705981,0.6532815 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = longAntenna_4293016298 sym = longAntenna_4293016418 sym = longAntenna_4293016358 srfN = srfAttach,structuralPanel1_4293017732 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = Custom01 active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = Unknown Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { part = longAntenna_4293016418 partName = Part pos = 0.4560724,14.82274,-0.4699687 attPos = 0,0,0 attPos0 = 0,0,0 rot = 0.2705981,0.6532816,-0.6532815,0.270598 attRot = 0.6532815,-0.2705981,-0.2705981,0.6532815 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = longAntenna_4293016298 sym = longAntenna_4293016478 sym = longAntenna_4293016358 srfN = srfAttach,structuralPanel1_4293017732 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = Custom01 active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = Unknown Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { part = longAntenna_4293016358 partName = Part pos = -0.3865001,14.82274,-0.4662731 attPos = 0,0,0 attPos0 = 0,0,0 rot = -0.270598,0.6532816,-0.6532815,-0.2705982 attRot = 0.6532815,-0.2705981,-0.2705981,0.6532815 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = longAntenna_4293016298 sym = longAntenna_4293016478 sym = longAntenna_4293016418 srfN = srfAttach,structuralPanel1_4293017732 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = Custom01 active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = Unknown Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { part = longAntenna_4293016298 partName = Part pos = -0.3828046,14.82274,0.3762993 attPos = 0,0,0 attPos0 = 0,0,0 rot = 0.6532815,-0.270598,0.2705981,0.6532816 attRot = 0.6532815,-0.2705981,-0.2705981,0.6532815 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = longAntenna_4293016478 sym = longAntenna_4293016418 sym = longAntenna_4293016358 srfN = srfAttach,structuralPanel1_4293017732 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = Custom01 active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = Unknown Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { part = stackDecouplerMini_4293016238 partName = Part pos = 0.03663332,13.94977,-0.04683471 attPos = 0,0,0 attPos0 = 0,0,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 1 dstg = 1 sidx = 0 sqor = 1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = probeCoreCube_4293016212 attN = bottom,probeCoreCube_4293016212 attN = top,structuralPanel1_4293017162 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDecouple isEnabled = True ejectionForcePercent = 100 isDecoupled = False ejectionForcePercent_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 1 } EVENTS { Decouple { active = True guiActive = True guiIcon = Decouple guiName = Decouple category = Decouple guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { DecoupleAction { actionGroup = None } } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } } PART { part = probeCoreCube_4293016212 partName = Part pos = 0.03663305,13.58927,-0.04683411 attPos = 0,0,0 attPos0 = 0,0,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = toroidalFuelTank_4293016184 attN = bottom,toroidalFuelTank_4293016184 attN = top,stackDecouplerMini_4293016238 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True controlSrcStatusText = EVENTS { MakeReference { active = True guiActive = True guiIcon = Control From Here guiName = Control From Here category = Control From Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } RenameVessel { active = True guiActive = True guiIcon = Rename Vessel guiName = Rename Vessel category = Rename Vessel guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True standaloneToggle_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 EVENTS { } ACTIONS { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 EVENTS { } ACTIONS { } } MODULE { name = ModuleTripLogger isEnabled = False EVENTS { } ACTIONS { } Log { flight = 0 } } RESOURCE { name = ElectricCharge amount = 1 maxAmount = 1 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { part = toroidalFuelTank_4293016184 partName = Part pos = 0.03663258,13.25481,-0.04683352 attPos = 0,0,0 attPos0 = 0,0,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = fuelTankSmall_4293016120 attN = top,probeCoreCube_4293016212 attN = bottom,fuelTankSmall_4293016120 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 12.2 maxAmount = 12.2 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { part = fuelTankSmall_4293016120 partName = Part pos = 0.0366318,12.6497,-0.04683292 attPos = 0,0,0 attPos0 = 0,0,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = liquidEngine3_4293016088 link = strutConnector_4293016002 link = strutConnector_4293015946 link = strutConnector_4293015890 link = strutConnector_4293015834 attN = top,toroidalFuelTank_4293016184 attN = bottom,liquidEngine3_4293016088 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 90 maxAmount = 90 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 110 maxAmount = 110 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { part = liquidEngine3_4293016088 partName = Part pos = 0.03663066,11.82382,-0.04683209 attPos = 0,0,0 attPos0 = 0,0,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sidx = 0 sqor = 2 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = stackDecoupler_4293015778 attN = top,fuelTankSmall_4293016120 attN = bottom,stackDecoupler_4293015778 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = None } } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 gimbalLock_UIFlight { controlEnabled = True } gimbalLimiter_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 1 } EVENTS { } ACTIONS { ToggleAction { actionGroup = None } LockAction { actionGroup = None } FreeAction { actionGroup = None } } } MODULE { name = ModuleAnimateHeat isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = ModuleJettison isEnabled = True isJettisoned = False EVENTS { Jettison { active = False guiActive = True guiIcon = Jettison guiName = Jettison category = Jettison guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { JettisonAction { actionGroup = None } } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleSurfaceFX isEnabled = True EVENTS { } ACTIONS { } } } PART { part = strutConnector_4293016002 partName = CompoundPart pos = -0.4113114,13.10385,0.4011101 attPos = 0,0,0 attPos0 = 0,0,0 rot = 2.980232E-08,-0.3826834,-2.980233E-08,-0.9238797 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = strutConnector_4293015834 sym = strutConnector_4293015946 sym = strutConnector_4293015890 srfN = srfAttach,fuelTankSmall_4293016120 EVENTS { } ACTIONS { } PARTDATA { tgt = 4293017246 pos = 0.03951336,0.67441,-0.007161237 rot = 0,0,0,0 dir = 0.05848599,0.998232,-0.01059962 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { part = strutConnector_4293015946 partName = CompoundPart pos = 0.4845772,13.10385,0.401112 attPos = 0,0,0 attPos0 = 0,0,0 rot = -4.470349E-08,-0.9238797,-1.490115E-08,-0.3826834 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = strutConnector_4293015834 sym = strutConnector_4293016002 sym = strutConnector_4293015890 srfN = srfAttach,fuelTankSmall_4293016120 EVENTS { } ACTIONS { } PARTDATA { tgt = 4293017306 pos = 0.03951327,0.6744099,-0.007161274 rot = 0,0,0,0 dir = 0.05848599,0.998232,-0.01059962 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { part = strutConnector_4293015890 partName = CompoundPart pos = 0.4845757,13.10385,-0.4947771 attPos = 0,0,0 attPos0 = 0,0,0 rot = -2.980232E-08,-0.9238797,2.980233E-08,0.3826834 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = strutConnector_4293015834 sym = strutConnector_4293016002 sym = strutConnector_4293015946 srfN = srfAttach,fuelTankSmall_4293016120 EVENTS { } ACTIONS { } PARTDATA { tgt = 4293017286 pos = 0.03951366,0.6744099,-0.00716095 rot = 0,0,0,0 dir = 0.05848599,0.998232,-0.01059962 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { part = strutConnector_4293015834 partName = CompoundPart pos = -0.4113129,13.10385,-0.4947785 attPos = 0,0,0 attPos0 = 0,0,0 rot = -4.470349E-08,0.3826834,-4.470348E-08,-0.9238797 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = strutConnector_4293016002 sym = strutConnector_4293015946 sym = strutConnector_4293015890 srfN = srfAttach,fuelTankSmall_4293016120 EVENTS { } ACTIONS { } PARTDATA { tgt = 4293017266 pos = 0.0395132,0.67441,-0.007160879 rot = 0,0,0,0 dir = 0.05848599,0.998232,-0.01059962 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { part = stackDecoupler_4293015778 partName = Part pos = 0.03662975,11.28596,-0.0468309 attPos = 0,0,0 attPos0 = 0,0,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 3 dstg = 3 sidx = 0 sqor = 3 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = fuelTank.long_4293015742 attN = bottom,fuelTank.long_4293015742 attN = top,liquidEngine3_4293016088 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDecouple isEnabled = True ejectionForcePercent = 100 isDecoupled = False ejectionForcePercent_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 1 } EVENTS { Decouple { active = True guiActive = True guiIcon = Decouple guiName = Decouple category = Decouple guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { DecoupleAction { actionGroup = None } } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } } PART { part = fuelTank.long_4293015742 partName = Part pos = 0.03662739,9.27795,-0.04682845 attPos = 0,0,0 attPos0 = 0,0,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 4 dstg = 4 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = fuelTank.long_4293015710 attN = top,stackDecoupler_4293015778 attN = bottom,fuelTank.long_4293015710 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 360 maxAmount = 360 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 440 maxAmount = 440 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { part = fuelTank.long_4293015710 partName = Part pos = 0.03662187,5.515424,-0.04682309 attPos = 0,0,0 attPos0 = 0,0,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 4 dstg = 4 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = liquidEngine2_4293015678 link = radialDecoupler_4293015576 link = radialDecoupler_4293015462 link = winglet3_4293015348 link = winglet3_4293015312 link = winglet3_4293015276 link = winglet3_4293015240 attN = top,fuelTank.long_4293015742 attN = bottom,liquidEngine2_4293015678 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 360 maxAmount = 360 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 440 maxAmount = 440 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { part = liquidEngine2_4293015678 partName = Part pos = 0.03661772,2.726096,-0.04681898 attPos = 0,0,0 attPos0 = 0,0,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 6 dstg = 4 sidx = 0 sqor = 6 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) attN = top,fuelTank.long_4293015710 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = None } } } MODULE { name = ModuleJettison isEnabled = True isJettisoned = True EVENTS { Jettison { active = False guiActive = True guiIcon = Jettison guiName = Jettison category = Jettison guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { JettisonAction { actionGroup = None } } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 gimbalLock_UIFlight { controlEnabled = True } gimbalLimiter_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 1 } EVENTS { } ACTIONS { ToggleAction { actionGroup = None } LockAction { actionGroup = None } FreeAction { actionGroup = None } } } MODULE { name = ModuleAnimateHeat isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = ModuleAlternator isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = ModuleSurfaceFX isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } RESOURCE { name = ElectricCharge amount = 0 maxAmount = 0 flowState = True isTweakable = False hideFlow = True flowMode = Both } } PART { part = radialDecoupler_4293015576 partName = Part pos = 0.665702,4.698008,-0.0468207 attPos = 0,0,0 attPos0 = 0,0,0 rot = 0,-1,0,2.980233E-08 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 4 dstg = 5 sidx = 0 sqor = 4 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = solidBooster_4293015532 sym = radialDecoupler_4293015462 srfN = srfAttach,fuelTank.long_4293015710 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnchoredDecoupler isEnabled = True ejectionForcePercent = 100 isDecoupled = False ejectionForcePercent_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 1 } EVENTS { Decouple { active = True guiActive = True guiIcon = Decouple guiName = Decouple category = Decouple guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { DecoupleAction { actionGroup = None } } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } } PART { part = solidBooster_4293015532 partName = Part pos = 1.453001,4.22082,-0.04681898 attPos = 0,0,0 attPos0 = 0,0,0 rot = 0,-0.7071068,0,-0.7071068 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 5 dstg = 6 sidx = 2 sqor = 5 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = launchClamp1_4293015204 link = noseCone_4293014992 sym = solidBooster_4293015418 srfN = srfAttach,radialDecoupler_4293015576 attN = top,noseCone_4293014992 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0.3552277 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = None } } } MODULE { name = ModuleAnimateHeat isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleSurfaceFX isEnabled = True EVENTS { } ACTIONS { } } RESOURCE { name = SolidFuel amount = 433 maxAmount = 433 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { part = radialDecoupler_4293015462 partName = Part pos = -0.5924617,4.698008,-0.0468216 attPos = 0,0,0 attPos0 = 0,0,0 rot = 0,0,0,-1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 4 dstg = 5 sidx = 2 sqor = 4 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = solidBooster_4293015418 sym = radialDecoupler_4293015576 srfN = srfAttach,fuelTank.long_4293015710 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnchoredDecoupler isEnabled = True ejectionForcePercent = 100 isDecoupled = False ejectionForcePercent_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 1 } EVENTS { Decouple { active = True guiActive = True guiIcon = Decouple guiName = Decouple category = Decouple guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { DecoupleAction { actionGroup = None } } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } } PART { part = solidBooster_4293015418 partName = Part pos = -1.37976,4.220824,-0.04682166 attPos = 0,0,0 attPos0 = 0,0,0 rot = -7.450575E-09,0.7071068,-7.450572E-09,-0.7071068 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 5 dstg = 6 sidx = 3 sqor = 5 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = launchClamp1_4293015098 link = noseCone_4293014964 sym = solidBooster_4293015532 srfN = srfAttach,radialDecoupler_4293015462 attN = top,noseCone_4293014964 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0.3552277 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = None } } } MODULE { name = ModuleAnimateHeat isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleSurfaceFX isEnabled = True EVENTS { } ACTIONS { } } RESOURCE { name = SolidFuel amount = 433 maxAmount = 433 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { part = winglet3_4293015348 partName = Part pos = -0.7491466,3.554364,0.7389474 attPos = 0,0,0 attPos0 = 0,0,0 rot = 0,-0.3826833,0,-0.9238796 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 4 dstg = 4 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = winglet3_4293015240 sym = winglet3_4293015312 sym = winglet3_4293015276 srfN = srfAttach,fuelTank.long_4293015710 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleControlSurface isEnabled = True ignorePitch = False ignoreYaw = False ignoreRoll = False deploy = False deployInvert = False ignorePitch_UIFlight { controlEnabled = True } ignoreYaw_UIFlight { controlEnabled = True } ignoreRoll_UIFlight { controlEnabled = True } deploy_UIFlight { controlEnabled = True } deployInvert_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionExtend { actionGroup = None } ActionRetract { actionGroup = None } } } } PART { part = winglet3_4293015312 partName = Part pos = 0.8223876,3.554364,0.7389466 attPos = 0,0,0 attPos0 = 0,0,0 rot = 0,-0.9238796,0,-0.3826835 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 4 dstg = 4 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = winglet3_4293015240 sym = winglet3_4293015348 sym = winglet3_4293015276 srfN = srfAttach,fuelTank.long_4293015710 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleControlSurface isEnabled = True ignorePitch = False ignoreYaw = False ignoreRoll = False deploy = False deployInvert = False ignorePitch_UIFlight { controlEnabled = True } ignoreYaw_UIFlight { controlEnabled = True } ignoreRoll_UIFlight { controlEnabled = True } deploy_UIFlight { controlEnabled = True } deployInvert_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionExtend { actionGroup = None } ActionRetract { actionGroup = None } } } } PART { part = winglet3_4293015276 partName = Part pos = 0.8223839,3.554364,-0.8325869 attPos = 0,0,0 attPos0 = 0,0,0 rot = 0,-0.9238796,0,0.3826833 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 4 dstg = 4 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = winglet3_4293015240 sym = winglet3_4293015348 sym = winglet3_4293015312 srfN = srfAttach,fuelTank.long_4293015710 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleControlSurface isEnabled = True ignorePitch = False ignoreYaw = False ignoreRoll = False deploy = False deployInvert = False ignorePitch_UIFlight { controlEnabled = True } ignoreYaw_UIFlight { controlEnabled = True } ignoreRoll_UIFlight { controlEnabled = True } deploy_UIFlight { controlEnabled = True } deployInvert_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionExtend { actionGroup = None } ActionRetract { actionGroup = None } } } } PART { part = winglet3_4293015240 partName = Part pos = -0.7491505,3.554364,-0.8325869 attPos = 0,0,0 attPos0 = 0,0,0 rot = 0,0.3826835,0,-0.9238796 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 4 dstg = 4 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = winglet3_4293015348 sym = winglet3_4293015312 sym = winglet3_4293015276 srfN = srfAttach,fuelTank.long_4293015710 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleControlSurface isEnabled = True ignorePitch = False ignoreYaw = False ignoreRoll = False deploy = False deployInvert = False ignorePitch_UIFlight { controlEnabled = True } ignoreYaw_UIFlight { controlEnabled = True } ignoreRoll_UIFlight { controlEnabled = True } deploy_UIFlight { controlEnabled = True } deployInvert_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionExtend { actionGroup = None } ActionRetract { actionGroup = None } } } } PART { part = launchClamp1_4293015204 partName = Part pos = 0.1144098,1.870118,-0.04681737 attPos = 0,0,0 attPos0 = 0,0,0 rot = -0.5000004,-0.4999996,-0.5000004,0.4999999 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 5 dstg = 6 sidx = 0 sqor = 5 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = launchClamp1_4293015098 srfN = srfAttach,solidBooster_4293015532 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = LaunchClamp isEnabled = True scaleFactor = 0.1261386 height = 0.3182726 towerRot = 0.5000003,0.4999996,0.5000003,0.4999999 EVENTS { Release { active = False guiActive = True guiIcon = Release Clamp guiName = Release Clamp category = Release Clamp guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ReleaseClamp { actionGroup = None } } } MODULE { name = ModuleGenerator isEnabled = True generatorIsActive = False throttle = 0 EVENTS { Activate { active = True guiActive = True guiIcon = Activate Generator guiName = Activate Generator category = Activate Generator guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = True guiActive = True guiIcon = Shutdown Generator guiName = Shutdown Generator category = Shutdown Generator guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } ActivateAction { actionGroup = None } ShutdownAction { actionGroup = None } } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 5000 RTDishRange = -1 EVENTS { } ACTIONS { } } } PART { part = launchClamp1_4293015098 partName = Part pos = -0.04117743,1.870126,-0.04681659 attPos = 0,0,0 attPos0 = 0,0,0 rot = 0.5000003,-0.4999999,-0.5000003,-0.4999999 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 5 dstg = 6 sidx = 1 sqor = 5 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = launchClamp1_4293015204 srfN = srfAttach,solidBooster_4293015418 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = LaunchClamp isEnabled = True scaleFactor = 0.1261417 height = 0.3182802 towerRot = -0.5000002,0.4999998,0.5000002,-0.4999998 EVENTS { Release { active = False guiActive = True guiIcon = Release Clamp guiName = Release Clamp category = Release Clamp guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ReleaseClamp { actionGroup = None } } } MODULE { name = ModuleGenerator isEnabled = True generatorIsActive = False throttle = 0 EVENTS { Activate { active = True guiActive = True guiIcon = Activate Generator guiName = Activate Generator category = Activate Generator guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = True guiActive = True guiIcon = Shutdown Generator guiName = Shutdown Generator category = Shutdown Generator guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } ActivateAction { actionGroup = None } ShutdownAction { actionGroup = None } } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 5000 RTDishRange = -1 EVENTS { } ACTIONS { } } } PART { part = noseCone_4293014992 partName = Part pos = 1.453,5.502664,-0.04681838 attPos = 0,0,0 attPos0 = 0,0,0 rot = -4.470349E-08,1,-1.490115E-08,-4.47035E-08 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 6 dstg = 6 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = noseCone_4293014964 attN = bottom01,solidBooster_4293015532 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = noseCone_4293014964 partName = Part pos = -1.379762,5.502652,-0.04682064 attPos = 0,0,0 attPos0 = 0,0,0 rot = 0,2.4869E-14,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial istg = 6 dstg = 6 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) sym = noseCone_4293014992 attN = bottom01,solidBooster_4293015418 EVENTS { } ACTIONS { } PARTDATA { } } ================================================ FILE: saves/RemoteTech KSP1_0 Testbed/persistent.sfs ================================================ GAME { version = 1.0.2 Title = RemoteTech KSP1_0 Tests (CAREER) Description = No description available. linkURL = linkCaption = Mode = CAREER Status = 1 scene = 5 editor = None flag = Squad/Flags/default launchID = 32 PARAMETERS { preset = Custom FLIGHT { CanQuickSave = True CanQuickLoad = True CanAutoSave = True CanUseMap = True CanSwitchVesselsNear = True CanSwitchVesselsFar = True CanTimeWarpHigh = True CanTimeWarpLow = True CanEVA = True CanIVA = True CanBoard = True CanRestart = True CanLeaveToEditor = True CanLeaveToTrackingStation = True CanLeaveToSpaceCenter = True CanLeaveToMainMenu = False } EDITOR { CanSave = True CanLoad = True CanStartNew = True CanLaunch = True CanLeaveToSpaceCenter = True CanLeaveToMainMenu = False startUpMode = 0 craftFileToLoad = } TRACKINGSTATION { CanFlyVessel = True CanAbortVessel = True CanLeaveToSpaceCenter = True CanLeaveToMainMenu = False } SPACECENTER { CanGoInVAB = True CanGoInSPH = True CanGoInTrackingStation = True CanLaunchAtPad = True CanLaunchAtRunway = True CanLeaveToMainMenu = True } DIFFICULTY { AutoHireCrews = True MissingCrewsRespawn = True BypassEntryPurchaseAfterResearch = True AllowStockVessels = True IndestructibleFacilities = True ResourceAbundance = 1.2 ReentryHeatScale = 0.5 } CAREER { TechTreeUrl = GameData\ModuleManager.TechTree StartingFunds = 500000 StartingScience = 5000 StartingReputation = 1000 FundsGainMultiplier = 10 RepGainMultiplier = 10 ScienceGainMultiplier = 10 FundsLossMultiplier = 0.1 RepLossMultiplier = 0.1 } } SCENARIO { name = ContractSystem scene = 7, 8, 5, 6 update = 547458.725668757 CONTRACTS { CONTRACT { guid = e683b9da-05cb-42ea-b5f9-e1f307330baf type = ExploreBody prestige = 2 seed = 899822448 state = Offered agent = StrutCo deadlineType = None expiryType = None values = 0,0,750000,1724999.96423721,862499.982118607,0,156.5217,1,0,0,0,0 body = 2 PARAM { name = EnterOrbit id = Orbit state = Incomplete values = 150000,0,0,30,0 body = 2 } PARAM { name = CollectScience id = ScienceSpace state = Incomplete values = 150000,0,60,15,0 body = 2 location = Space } PARAM { name = LandOnBody id = Land state = Incomplete values = 300000,0,0,30,0 body = 2 } PARAM { name = CollectScience id = ScienceSurface state = Incomplete values = 150000,0,60,15,0 body = 2 location = Surface } } CONTRACT { guid = 9bbf0ab2-f570-4c17-b296-b60ddab83432 type = ISRUContract prestige = 0 seed = 1232329824 state = Offered agent = Maxo Construction Toys deadlineType = Floating expiryType = Floating values = 129600,161028000,747000,1903675,747000,0,210,1,669561.376074472,0,0,0 targetBody = 3 gatherGoal = 500 targetResource = Ore resourceTitle = ore isDelivering = False PARAM { name = ResourceExtractionParameter state = Incomplete values = 0,0,0,0,0 targetBody = 3 totalHarvested = 0 goalHarvested = 500 resourceName = Ore resourceTitle = ore notifyLevel = 0.25 } } CONTRACT { guid = 2a27c16f-dfcd-4942-932f-41016135855b type = PlantFlag prestige = 0 seed = 1232329825 state = Offered agent = Zaltonic Electronics deadlineType = Floating expiryType = Floating values = 64800,322056000,1626099.98464584,4305629.76381302,1707404.90633965,0,125.7269,0.952381,604761.376074472,0,0,0 body = 4 PARAM { name = PlantFlag state = Incomplete values = 0,0,0,0,0 body = 4 } } CONTRACT { guid = 9e45454b-1962-4ce0-bdfa-fb56a7af59e2 type = SatelliteContract prestige = 0 seed = 1232329827 state = Offered agent = Kerbal Motion LLC deadlineType = Floating expiryType = Floating values = 43200,46008000,336000,861000,336000,40,130,1,583161.376074472,0,0,0 targetBody = 1 deviation = 7 orbitType = 6 PARAM { name = ProbeSystemsParameter state = Incomplete values = 0,0,0,0,0 hasAntenna = False hasPowerGenerator = False launchID = 0 } PARAM { name = SpecificOrbitParameter state = Incomplete values = 0,0,0,0,0 targetBody = 1 deviationWindow = 7 orbitType = 6 inclination = 10.8290079233038 eccentricity = 0.113608186510403 sma = 3945282.79957487 lan = 167.714585926251 argumentOfPeriapsis = 74.5132813788504 meanAnomalyAtEpoch = 5.48935996759498 epoch = 0 } PARAM { name = PartRequestParameter state = Incomplete values = 0,0,0,0,0 title = Have a gravioli detector on the satellite partNames = sensorGravimeter moduleNames = } PARAM { name = StabilityParameter state = Incomplete values = 0,0,0,0,0 holdSeconds = 10 } } CONTRACT { guid = eb7eb14e-abd2-4bb1-9fdc-bf8e15ea8750 type = SatelliteContract prestige = 0 seed = 1232329828 state = Offered agent = Reaction Systems Ltd deadlineType = Floating expiryType = Floating values = 108000,115020000,400000,1076249.95112419,419999.980926514,0,95.2381,0,647961.376074472,0,0,0 targetBody = 3 deviation = 7 orbitType = 2 PARAM { name = ProbeSystemsParameter state = Incomplete values = 0,0,0,0,0 hasAntenna = False hasPowerGenerator = False launchID = 0 } PARAM { name = SpecificOrbitParameter state = Incomplete values = 0,0,0,0,0 targetBody = 3 deviationWindow = 7 orbitType = 2 inclination = 90 eccentricity = 0.0130195798807026 sma = 300191.988207185 lan = -34.7863730577688 argumentOfPeriapsis = 29.2472527113707 meanAnomalyAtEpoch = 5.11968386634454 epoch = 0 } PARAM { name = StabilityParameter state = Incomplete values = 0,0,0,0,0 holdSeconds = 10 } } CONTRACT { guid = f4dcccc9-ea0c-4a30-b6d0-1bccc2165d60 type = RecoverAsset prestige = 1 seed = 1232329831 state = Offered agent = Sean's Cannery deadlineType = Floating expiryType = Floating values = 122264.141178131,108509425.295591,775125.045329332,1947948.90613675,804375.017434359,0,107.2727,1,662225.517252603,0,0,0 targetBody = 3 kerbalName = Jenke Kerman partName = mk2LanderCabin partID = 0 recoveryLocation = 2 recoveryType = 1 gender = 1 PARAM { name = AcquireCrew state = Incomplete values = 185625,0,0,51,0 title = Save Jenke Kerman winOn = 0 } PARAM { name = RecoverKerbal state = Incomplete values = 0,0,0,0,0 title = Recover Jenke Kerman on Kerbin failOn = All winOn = All } } CONTRACT { guid = 22333490-550e-47c6-bedd-a3278c7fdd23 type = ISRUContract prestige = 1 seed = 1232329832 state = Offered agent = Vac-Co Advanced Suction Systems deadlineType = Floating expiryType = Floating values = 63529.4118404388,126296470.738792,1981596.40882895,5554838.33337228,2137015.82129131,0,557.4613,3,603490.78791491,0,0,0 targetBody = 2 gatherGoal = 1200 targetResource = Ore resourceTitle = ore isDelivering = True deliveryBody = 1 deliverySituation = 0 PARAM { name = ResourceExtractionParameter state = Incomplete values = 0,0,0,0,0 targetBody = 2 totalHarvested = 0 goalHarvested = 1200 resourceName = Ore resourceTitle = ore notifyLevel = 0.25 } PARAM { name = ResourcePossessionParameter state = Incomplete values = 0,0,0,0,0 goalResource = 1200 resourceName = Ore resourceTitle = ore vesselName = vessel } PARAM { name = LocationAndSituationParameter state = Incomplete values = 0,0,0,0,0 targetBody = 1 targetSituation = 0 noun = Ore finalObjective = False } PARAM { name = StabilityParameter state = Incomplete values = 0,0,0,0,0 holdSeconds = 10 } } CONTRACT { guid = 2b2149c2-2410-4847-b501-36514f309652 type = SurveyContract prestige = 1 seed = 1232329833 state = Offered agent = Kerlington Model Rockets and Paper Products Inc deadlineType = Floating expiryType = Floating values = 86400,46008000,375000,662500,375000,0,112,1,626361.376074472,0,0,0 targetBody = 1 centerLatitude = 49.7665580895793 centerLongitude = -139.444179087618 surveyTitle = Perform temperature scans of Kerbin. randomTopic = 2HOT Thermometer surveyBriefing = We want to see how the temperature fluctuates in one particular region of Kerbin. Take a few measurements there. surveyDebriefing = It looks like Kerbin is a touch warmer than we expected, but this is what we needed. focusedSurvey = False PARAM { name = SurveyWaypointParameter state = Incomplete values = 110000,0,38,38,0 actionDescription = Measure the temperature experiment = temperatureScan flightThreshold = 17100 band = 1 clusterState = MIXED targetBody = 1 verified = True wpSeed = 539679170 wpIndex = 0 wpTexture = thermometer wpLatitude = 49.7793013789601 wpLongitude = -139.422361086512 wpLandlocked = True } PARAM { name = SurveyWaypointParameter state = Incomplete values = 110000,0,38,38,0 actionDescription = Measure the temperature experiment = temperatureScan flightThreshold = 17700 band = 1 clusterState = MIXED targetBody = 1 verified = True wpSeed = 539679170 wpIndex = 1 wpTexture = thermometer wpLatitude = 49.5796102417915 wpLongitude = -139.201036212097 wpLandlocked = True } PARAM { name = SurveyWaypointParameter state = Incomplete values = 110000,0,38,38,0 actionDescription = Measure the temperature experiment = temperatureScan flightThreshold = 17300 band = 3 clusterState = MIXED targetBody = 1 verified = True wpSeed = 539679170 wpIndex = 2 wpTexture = thermometer wpLatitude = 47.4854761129447 wpLongitude = -119.101800728318 wpLandlocked = False } PARAM { name = SurveyWaypointParameter state = Incomplete values = 110000,0,38,38,0 actionDescription = Measure the temperature experiment = temperatureScan flightThreshold = 17600 band = 3 clusterState = MIXED targetBody = 1 verified = True wpSeed = 539679170 wpIndex = 3 wpTexture = thermometer wpLatitude = 38.9052206769568 wpLongitude = -137.61624651174 wpLandlocked = False } } CONTRACT { guid = 60abc281-58b9-4d5b-89e4-e99db425ae4f type = StationContract prestige = 2 seed = 1232329835 state = Offered agent = Rokea Inc deadlineType = Floating expiryType = Floating values = 49031.4776989796,243686444.163929,4818253.60806089,14371894.1453335,4947313.8489315,330,423.6139,2,588992.853773451,0,0,0 targetBody = 6 capacity = 16 PARAM { name = LocationAndSituationParameter state = Incomplete values = 0,0,0,0,0 targetBody = 6 targetSituation = 5 noun = station finalObjective = False } PARAM { name = FacilitySystemsParameter state = Incomplete values = 0,0,0,0,0 hasAntenna = False hasPowerGenerator = False hasDockingPort = False typeString = station launchID = 0 } PARAM { name = CrewCapacityParameter state = Incomplete values = 0,0,0,0,0 targetCapacity = 16 } PARAM { name = PartRequestParameter state = Incomplete values = 0,0,0,0,0 title = Have a research lab at the station partNames = Large_Crewed_Lab moduleNames = ModuleScienceLab } PARAM { name = PartRequestParameter state = Incomplete values = 0,0,0,0,0 title = Have a viewing cupola at the station partNames = cupola moduleNames = } PARAM { name = ResourcePossessionParameter state = Incomplete values = 0,0,0,0,0 goalResource = 5000 resourceName = Ore resourceTitle = ore vesselName = station } PARAM { name = StabilityParameter state = Incomplete values = 0,0,0,0,0 holdSeconds = 10 } } CONTRACT { guid = 5e002f6b-0157-463f-bcd9-e3a14ea36d78 type = TourismContract prestige = 2 seed = 1232329837 state = Offered agent = Integrated Integrals deadlineType = Floating expiryType = Floating values = 125825.248718262,312675743.06488,0,0,0,0,276.5217,2,665786.624792733,0,0,0 gender = 0 kerbalName = Ludmal Kerman kerbalName = Aldden Kerman kerbalName = Carol Kerman kerbalName = Siethy Kerman PARAM { name = KerbalTourParameter state = Incomplete values = 4095000,0,0,0,0 kerbalName = Ludmal Kerman PARAM { name = KerbalDestinationParameter state = Incomplete values = 341250,0,0,0,0 targetBody = 4 targetType = Orbit kerbalName = Ludmal Kerman } PARAM { name = KerbalDestinationParameter state = Incomplete values = 341250,0,0,0,0 targetBody = 4 targetType = Land kerbalName = Ludmal Kerman } PARAM { name = KerbalDestinationParameter state = Incomplete values = 341250,0,0,0,0 targetBody = 2 targetType = Flyby kerbalName = Ludmal Kerman } PARAM { name = KerbalDestinationParameter state = Incomplete values = 341250,0,0,0,0 targetBody = 6 targetType = Suborbit kerbalName = Ludmal Kerman } } PARAM { name = KerbalTourParameter state = Incomplete values = 1096875,0,0,0,0 kerbalName = Aldden Kerman PARAM { name = KerbalDestinationParameter state = Incomplete values = 121875,0,0,0,0 targetBody = 3 targetType = Suborbit kerbalName = Aldden Kerman } PARAM { name = KerbalDestinationParameter state = Incomplete values = 121875,0,0,0,0 targetBody = 2 targetType = Suborbit kerbalName = Aldden Kerman } PARAM { name = KerbalDestinationParameter state = Incomplete values = 121875,0,0,0,0 targetBody = 2 targetType = Flyby kerbalName = Aldden Kerman } } PARAM { name = KerbalTourParameter state = Incomplete values = 4095000,0,0,0,0 kerbalName = Carol Kerman PARAM { name = KerbalDestinationParameter state = Incomplete values = 341250,0,0,0,0 targetBody = 3 targetType = Suborbit kerbalName = Carol Kerman } PARAM { name = KerbalDestinationParameter state = Incomplete values = 341250,0,0,0,0 targetBody = 4 targetType = Suborbit kerbalName = Carol Kerman } PARAM { name = KerbalDestinationParameter state = Incomplete values = 341250,0,0,0,0 targetBody = 4 targetType = Flyby kerbalName = Carol Kerman } PARAM { name = KerbalDestinationParameter state = Incomplete values = 341250,0,0,0,0 targetBody = 3 targetType = Orbit kerbalName = Carol Kerman } } PARAM { name = KerbalTourParameter state = Incomplete values = 2925000,0,0,0,0 kerbalName = Siethy Kerman PARAM { name = KerbalDestinationParameter state = Incomplete values = 243750,0,0,0,0 targetBody = 2 targetType = Flyby kerbalName = Siethy Kerman } PARAM { name = KerbalDestinationParameter state = Incomplete values = 243750,0,0,0,0 targetBody = 1 targetType = Suborbit kerbalName = Siethy Kerman } PARAM { name = KerbalDestinationParameter state = Incomplete values = 243750,0,0,0,0 targetBody = 2 targetType = Orbit kerbalName = Siethy Kerman } PARAM { name = KerbalDestinationParameter state = Incomplete values = 243750,0,0,0,0 targetBody = 6 targetType = Orbit kerbalName = Siethy Kerman } } } CONTRACT { guid = eaaf2b01-cabf-480b-82c6-ad9b5672ad81 type = WorldFirstContract prestige = 1 seed = 1232329839 state = Offered agent = Kerbin World-Firsts Record-Keeping Society deadlineType = None expiryType = Floating values = 129600,0,233050.836622715,614406.751096249,275000,100,236,0,669561.376074472,0,0,0 targetBody = 1 targetType = ORBITRETURN PARAM { name = ProgressTrackingParameter state = Incomplete values = 0,0,0,0,0 targetBody = 1 targetType = ORBITRETURN } } CONTRACT { guid = fe6093b1-da84-4865-9ff1-d353479cc595 type = RecoverAsset prestige = 2 seed = 1232329840 state = Offered agent = Vac-Co Advanced Suction Systems deadlineType = Floating expiryType = Floating values = 62912.6243591309,312675743.06488,2758473.90784964,7247359.5668708,3079849.53046131,0,113.2828,1,602874.000433602,0,0,0 targetBody = 4 kerbalName = Shepski Kerman partName = Mark1Cockpit partID = 0 recoveryLocation = 1 recoveryType = 1 gender = 1 PARAM { name = AcquireCrew state = Incomplete values = 623700,0,0,61,0 title = Save Shepski Kerman winOn = 0 } PARAM { name = RecoverKerbal state = Incomplete values = 0,0,0,0,0 title = Recover Shepski Kerman on Kerbin failOn = All winOn = All } } CONTRACT { guid = d7ae74c6-d09c-4352-82c1-0c652613cc37 type = RecoverAsset prestige = 2 seed = 1232329844 state = Offered agent = Vac-Co Advanced Suction Systems deadlineType = Floating expiryType = Floating values = 20970.874786377,312675743.06488,2758473.90784964,7247359.5668708,3079849.53046131,0,113.2828,1,560932.250860849,0,0,0 targetBody = 4 kerbalName = Corely Kerman partName = Mark1-2Pod partID = 0 recoveryLocation = 2 recoveryType = 1 gender = 1 PARAM { name = AcquireCrew state = Incomplete values = 623700,0,0,61,0 title = Save Corely Kerman winOn = 0 } PARAM { name = RecoverKerbal state = Incomplete values = 0,0,0,0,0 title = Recover Corely Kerman on Kerbin failOn = All winOn = All } } CONTRACT { guid = 5e913918-9b3c-47af-9a3d-300dd70f8cfe type = StationContract prestige = 2 seed = 1232329845 state = Offered agent = C7 Aerospace Division deadlineType = Floating expiryType = Floating values = 129600,257644800,2208000,5727000,2208000,0,285,1,669561.376074472,0,0,0 targetBody = 0 capacity = 10 PARAM { name = LocationAndSituationParameter state = Incomplete values = 0,0,0,0,0 targetBody = 0 targetSituation = 5 noun = station finalObjective = False } PARAM { name = FacilitySystemsParameter state = Incomplete values = 0,0,0,0,0 hasAntenna = False hasPowerGenerator = False hasDockingPort = False typeString = station launchID = 0 } PARAM { name = CrewCapacityParameter state = Incomplete values = 0,0,0,0,0 targetCapacity = 10 } PARAM { name = PartRequestParameter state = Incomplete values = 0,0,0,0,0 title = Have an ISRU resource conversion unit at the station partNames = ISRU moduleNames = } PARAM { name = StabilityParameter state = Incomplete values = 0,0,0,0,0 holdSeconds = 10 } } CONTRACT { guid = d069e8a9-dff4-440d-9bcb-1381ad9459a9 type = PartTest prestige = 2 seed = 1233509893 state = Offered agent = C7 Aerospace Division deadlineType = Floating expiryType = Floating values = 43200,18403200,432000,1080000,432000,75,150,1,583173.033301034,0,0,0 part = structuralPylon dest = 2 sit = ORBITING exp = True PARAM { name = PartTest id = runTest state = Incomplete values = 0,0,0,0,0 part = structuralPylon notes = To perform the test, activate the part through the staging sequence when all test conditions are met. PARAM { name = ReachDestination id = testDestination state = Incomplete disableOnStateChange = False values = 0,0,0,0,0 dest = 2 title = } PARAM { name = ReachSituation id = testSituation state = Incomplete disableOnStateChange = False values = 0,0,0,0,0 sit = ORBITING title = } PARAM { name = ReachAltitudeEnvelope id = testAltitudeEnvelope state = Incomplete disableOnStateChange = False values = 0,0,0,0,0 minAlt = 10000 maxAlt = 13000 } } } CONTRACT_FINISHED { guid = 2aedaf63-28b2-42f6-9266-b818ddb1f8c7 type = WorldFirstContract prestige = 1 seed = 443976542 state = Completed agent = Kerbin World-Firsts Record-Keeping Society deadlineType = None expiryType = Floating values = 64800,0,186440.669298172,491525.400876999,220000,80,188.8,0,211894.533335038,172260.375098672,0,0 targetBody = 1 targetType = REACHSPACE PARAM { name = ProgressTrackingParameter enabled = False state = Complete values = 0,0,0,0,0 targetBody = 1 targetType = REACHSPACE } } CONTRACT_FINISHED { guid = 6da05e71-536c-4c97-8f97-cdf855d9c8b5 type = WorldFirstContract prestige = 0 seed = 463431745 state = Completed agent = Kerbin World-Firsts Record-Keeping Society deadlineType = None expiryType = Floating values = 129600,0,20183.485865593,53211.0081911087,22000,8,17.44,0,197710.778432624,172297.855098652,0,0 targetBody = 1 targetType = FIRSTLAUNCH PARAM { name = ProgressTrackingParameter enabled = False state = Complete values = 0,0,0,0,0 targetBody = 1 targetType = FIRSTLAUNCH } } CONTRACT_FINISHED { guid = 1340abae-dafe-4ed9-ba40-150811c42e9e type = RecordTrackContract prestige = 0 seed = 2018109692 state = Completed agent = Kerbin World-Firsts Record-Keeping Society deadlineType = None expiryType = None autoAccept = True values = 0,0,0,28899.0820348263,0,0,7.63,0,0,0.06,0,0 trackType = ALTITUDE trackValue = 3500 PARAM { name = RecordTrackingParameter enabled = False state = Complete values = 0,0,0,0,0 trackType = ALTITUDE trackValue = 3500 } } CONTRACT_FINISHED { guid = 1cc04432-d256-4ebe-81dc-cd294b1e74b8 type = RecordTrackContract prestige = 0 seed = 2018109667 state = Completed agent = Kerbin World-Firsts Record-Keeping Society deadlineType = None expiryType = None autoAccept = True values = 0,0,0,28899.0820348263,0,0,7.63,0,0,0.06,0,0 trackType = DISTANCE trackValue = 5000 PARAM { name = RecordTrackingParameter enabled = False state = Complete values = 0,0,0,0,0 trackType = DISTANCE trackValue = 5000 } } CONTRACT_FINISHED { guid = cc65805f-0426-44f6-aa9f-160338b11f5c type = RecordTrackContract prestige = 0 seed = 2018109704 state = Completed agent = Kerbin World-Firsts Record-Keeping Society deadlineType = None expiryType = None autoAccept = True values = 0,0,0,34678.8984417915,0,0,8.72,0,0,0.06,0,0 trackType = SPEED trackValue = 150 PARAM { name = RecordTrackingParameter enabled = False state = Complete values = 0,0,0,0,0 trackType = SPEED trackValue = 150 } } } } SCENARIO { name = Funding scene = 7, 8, 5, 6 funds = 32898266.2260324 } SCENARIO { name = ProgressTracking scene = 7, 8, 5 Progress { FirstLaunch { completed = 172306.115098648 } FirstCrewToSurvive { completed = 168061.665870748 crew { crews = Kimne Kerman } } RecordsAltitude { completed = 172531.599981356 record = 70000 } RecordsSpeed { reached = 168571.365870482 record = 2406.13968769922 } RecordsDistance { completed = 68.8600000000034 record = 100000 } ReachedSpace { completed = 172531.599981356 vessel { name = Untitled Space Craft flag = Squad/Flags/default } crew { crews = Dudford Kerman } } Kerbin { reached = 68.8400000000034 Flyby { completed = 168571.325870482 } Orbit { completed = 68.8400000000034 vessel { name = KEO Sat 1 flag = Squad/Flags/default } } Escape { completed = 168119.305870718 } Landing { completed = 167983.885870788 vessel { name = Dune flag = Squad/Flags/default } crew { crews = Kimne Kerman } } Science { completed = 129608.090805701 vessel { name = Untitled Space Craft Sta flag = Squad/Flags/default } crew { crews = Valentina Kerman, Jebediah Kerman, Bill Kerman, Bob Kerman } } Rendezvous { completed = 1731.95994628909 } SurfaceEVA { completed = 168700.340997394 crew { crews = Kimne Kerman } } ReturnFromFlyBy { completed = 168682.300997403 vessel { name = Dune flag = Squad/Flags/default } crew { crews = Kimne Kerman } } } Mun { reached = 542698.00816496 Flyby { completed = 542698.00816496 } Orbit { completed = 542698.00816496 vessel { name = Untitled Space Craft flag = Squad/Flags/default } crew { crews = Lodfield Kerman, Nedbart Kerman, Lubro Kerman, Neildo Kerman, Camlie Kerman, Carti Kerman } } Landing { completed = 542928.868165175 vessel { name = Untitled Space Craft flag = Squad/Flags/default } crew { crews = Lodfield Kerman, Nedbart Kerman, Lubro Kerman, Neildo Kerman, Camlie Kerman, Carti Kerman } } } Minmus { reached = 173046.894981198 Flyby { completed = 173046.894981198 } Orbit { completed = 173046.894981198 vessel { name = KEO Sat 1 flag = Squad/Flags/default } } Rendezvous { completed = 173518.687832715 } } Moho { reached = 168119.305870718 Flyby { completed = 168119.305870718 } Orbit { completed = 168119.305870718 vessel { name = Dune flag = Squad/Flags/default } crew { crews = Kimne Kerman } } Escape { completed = 168571.325870482 } Landing { completed = 168354.965870595 vessel { name = Dune flag = Squad/Flags/default } crew { crews = Kimne Kerman } } Science { completed = 168442.565870549 vessel { name = Dune flag = Squad/Flags/default } crew { crews = Kimne Kerman } } ReturnFromFlyBy { completed = 168682.300997403 vessel { name = Dune flag = Squad/Flags/default } crew { crews = Kimne Kerman } } ReturnFromOrbit { completed = 168682.300997403 vessel { name = Dune flag = Squad/Flags/default } crew { crews = Kimne Kerman } } ReturnFromSurface { completed = 168682.300997403 vessel { name = Dune flag = Squad/Flags/default } crew { crews = Kimne Kerman } } } Duna { reached = 168785.540997348 Flyby { completed = 168785.540997348 } Orbit { completed = 168785.540997348 vessel { name = Untitled Space Craft Sta flag = Squad/Flags/default } crew { crews = Kimne Kerman, Stelmy Kerman, Wilanne Kerman, Burbal Kerman, Matwin Kerman, Eliicca Kerman } } } } } SCENARIO { name = ResearchAndDevelopment scene = 7, 8, 5, 6 sci = 9.899167E+07 Tech { id = start state = Available cost = 0 part = basicFin part = mk1pod part = solidBooster.sm part = GooExperiment part = trussPiece1x part = parachuteSingle } Tech { id = basicRocketry state = Available cost = 5 part = liquidEngine part = solidBooster part = fuelTankSmallFlat } Tech { id = engineering101 state = Available cost = 5 part = Mark1Cockpit part = science.module part = longAntenna part = stackDecoupler } Tech { id = stability state = Available cost = 18 part = noseCone part = standardNoseCone part = winglet part = radialDecoupler } Tech { id = generalRocketry state = Available cost = 20 part = liquidEngine2 part = solidBooster1-1 part = fuelTankSmall } Tech { id = survivability state = Available cost = 15 part = HeatShield1 part = miniLandingLeg part = parachuteRadial part = ServiceBay.125 } Tech { id = basicScience state = Available cost = 45 part = probeCoreSphere part = batteryPack part = sensorThermometer part = mediumDishAntenna } Tech { id = flightControl state = Available cost = 45 part = RTShortAntenna1 part = R8winglet part = sasModule part = Mark2Cockpit } Tech { id = aviation state = Available cost = 45 part = airScoop part = sweptWing part = tailfin part = airplaneTail part = winglet3 part = wingConnector2 part = StandardCtrlSrf part = JetEngine part = GearFixed part = GearFree } Tech { id = generalConstruction state = Available cost = 45 part = strutConnector part = Mk1FuselageStructural part = decoupler1-2 part = largeAdapter part = launchClamp1 } Tech { id = advRocketry state = Available cost = 45 part = liquidEngine3 part = radialLiquidEngine1-2 part = fuelTank } Tech { id = electrics state = Available cost = 90 part = RTShortDish2 part = probeCoreOcto part = solarPanels5 part = batteryBankMini part = spotLight1 part = spotLight2 } Tech { id = miniaturization state = Available cost = 90 part = adapterSmallMiniShort part = adapterSmallMiniTall part = stackSeparatorMini part = dockingPort3 } Tech { id = spaceExploration state = Available cost = 90 part = crewCabin part = sensorBarometer part = ladder1 } Tech { id = advFlightControl state = Available cost = 90 part = advSasModule part = landerCabinSmall part = radialRCSTank part = linearRcs part = RCSBlock } Tech { id = landing state = Available cost = 90 part = HeatShield2 part = landingLeg1 part = LaunchEscapeSystem part = parachuteLarge part = SmallGearBay } Tech { id = aerodynamicSystems state = Available cost = 90 part = CircularIntake part = pointyNoseConeA part = airplaneTailB part = fairingSize1 part = wingConnector part = wingConnector3 part = deltaWing part = structuralWing part = structuralWing2 part = sweptWing1 part = sweptWing2 part = MK1Fuselage part = MK1IntakeFuselage } Tech { id = advConstruction state = Available cost = 90 part = rocketNoseCone part = radialDecoupler1-2 part = radialDecoupler2 part = largeAdapter2 part = stackTriCoupler } Tech { id = fuelSystems state = Available cost = 90 part = fuelLine part = fuelTank.long part = fuelTank2-2 part = fuelTank1-2 part = fuelTank4-2 } Tech { id = propulsionSystems state = Available cost = 90 part = liquidEngineMini part = microEngine part = miniFuelTank } Tech { id = heavyRocketry state = Available cost = 90 part = liquidEngine2-2 part = engineLargeSkipper part = MassiveBooster } Tech { id = advElectrics state = Available cost = 160 part = solarPanels2 part = solarPanels4 part = solarPanels1 part = solarPanels3 part = ksp.r.largeBatteryPack } Tech { id = precisionEngineering state = Available cost = 160 part = probeCoreHex part = structuralMiniNode part = strutCube part = strutOcto part = stackDecouplerMini } Tech { id = advExploration state = Available cost = 160 part = Large.Crewed.Lab part = telescopicLadder part = telescopicLadderBay } Tech { id = commandModules state = Available cost = 160 part = cupola part = Mark1-2Pod part = mk2LanderCabin part = ServiceBay.250 } Tech { id = scienceTech state = Available cost = 300 part = SurfaceScanner part = SurveyScanner } Tech { id = unmannedTech state = Available cost = 300 part = RTPassiveAntennaTech part = probeCoreCube part = probeCoreOcto2 } Tech { id = largeElectrics state = Available cost = 300 part = RTLongAntenna2 part = RTLongDish2 part = largeSolarPanel part = batteryBank part = FuelCell } Tech { id = precisionPropulsion state = Available cost = 160 part = smallRadialEngine part = radialEngineMini part = omsEngine part = sepMotor1 part = toroidalFuelTank } Tech { id = advFuelSystems state = Available cost = 160 part = fuelTank3-2 part = RCSTank1-2 part = rcsTankMini part = RCSFuelTank } Tech { id = specializedConstruction state = Available cost = 160 part = trussAdapter part = stackSeparator part = dockingPort2 part = stackPoint1 part = stackBiCoupler } Tech { id = composites state = Available cost = 300 part = structuralIBeam2 part = structuralIBeam3 part = structuralIBeam1 part = structuralPanel1 part = structuralPanel2 part = dockingPortLateral } Tech { id = advMetalworks state = Available cost = 300 part = trussPiece3x part = stackSeparatorBig part = dockingPort1 part = stackQuadCoupler } Tech { id = specializedElectrics state = Available cost = 550 part = RTGigaDish2 part = RTLongAntenna3 part = batteryBankLarge part = FuelCellArray } Tech { id = advUnmanned state = Available cost = 550 part = probeStackSmall } Tech { id = largeUnmanned state = Available cost = 1000 part = probeStackLarge } Tech { id = experimentalElectrics state = Available cost = 1000 part = rtg } Tech { id = ionPropulsion state = Available cost = 550 part = ionEngine part = xenonTank part = xenonTankLarge part = xenonTankRadial } Tech { id = advScienceTech state = Available cost = 550 part = RTGigaDish1 part = ISRU part = RadialDrill part = SmallTank part = sensorGravimeter } Tech { id = electronics state = Available cost = 300 part = sensorAccelerometer part = commDish } Tech { id = experimentalScience state = Available cost = 1000 part = LargeTank part = OrbitalScanner } Tech { id = fieldScience state = Available cost = 300 part = seatExternalCmd part = roverBody part = sensorAtmosphere part = roverWheel1 part = roverWheel2 } Tech { id = heavierRocketry state = Available cost = 160 part = liquidEngine1-2 part = Size2LFB } Tech { id = nuclearPropulsion state = Available cost = 300 part = nuclearEngine } Tech { id = veryHeavyRocketry state = Available cost = 550 part = Size3AdvancedEngine part = Size3EngineCluster } Tech { id = largeVolumeContainment state = Available cost = 300 part = Size3MediumTank part = Size3SmallTank part = size3Decoupler part = Size3to2Adapter } Tech { id = highPerformanceFuelSystems state = Available cost = 550 part = Size3LargeTank } Tech { id = metaMaterials state = Available cost = 550 part = adapterLargeSmallBi part = adapterLargeSmallQuad part = adapterLargeSmallTri part = stationHub part = dockingPortLarge } Tech { id = actuators state = Available cost = 160 part = GrapplingDevice } Tech { id = supersonicFlight state = Available cost = 160 part = nacelleBody part = ramAirIntake part = elevon2 part = elevon3 part = wingStrake part = mk2Cockpit.Standard part = adapterSize2-Size1 part = mk2SpacePlaneAdapter part = mk2FuselageLongLFO part = mk2Fuselage part = mk2CargoBayL } Tech { id = highAltitudeFlight state = Available cost = 300 part = IntakeRadialLong part = wingConnector5 part = delta.small part = structuralWing3 part = mk2Cockpit.Inline part = turboFanEngine part = mk2FuselageShortLFO part = mk2FuselageShortLiquid part = mk2FuselageShortMono part = smallHardpoint } Tech { id = hypersonicFlight state = Available cost = 550 part = AdvancedCanard part = CanardController part = radialEngineBody part = shockConeIntake part = elevon5 part = toroidalAerospike } Tech { id = aerospaceTech state = Available cost = 1000 part = wingShuttleDelta part = wingShuttleElevon1 part = wingShuttleElevon2 part = wingShuttleRudder part = wingShuttleStrake part = RAPIER } Tech { id = advAerodynamics state = Available cost = 160 part = airbrake1 part = pointyNoseConeB part = noseConeAdapter part = fairingSize2 part = wingConnector4 part = smallCtrlSrf part = structuralWing4 part = adapterSize2-Mk2 part = adapterSize2-Size1Slant part = mk2.1m.Bicoupler part = mk2.1m.AdapterLong part = structuralPylon part = mk2CargoBayS part = mk2CrewCabin part = mk2DockingPort } Tech { id = heavyAerodynamics state = Available cost = 300 part = fairingSize3 part = mk3Cockpit.Shuttle part = adapterMk3-Mk2 part = adapterMk3-Size2 part = adapterMk3-Size2Slant part = mk3CrewCabin part = mk3FuselageLFO.25 part = mk3FuselageLFO.50 part = mk3FuselageLF.25 part = mk3FuselageLF.50 part = mk3CargoBayM part = mk3CargoBayS } Tech { id = experimentalAerodynamics state = Available cost = 550 part = airlinerCtrlSrf part = airlinerMainWing part = airlinerTailFin part = adapterSize3-Mk3 part = mk3FuselageLFO.100 part = mk3FuselageLF.100 part = mk3FuselageMONO part = mk3CargoBayL } Tech { id = advLanding state = Available cost = 160 part = HeatShield3 part = landingLeg1-2 part = radialDrogue part = parachuteDrogue part = GearMedium } Tech { id = heavyLanding state = Available cost = 300 part = GearLarge } Tech { id = advancedMotors state = Available cost = 550 part = wheelMed part = roverWheel3 } Tech { id = specializedControl state = Available cost = 160 part = avionicsNoseCone part = asasmodule1-2 part = vernierEngine part = rcsTankRadialLong } Tech { id = automation state = Available cost = 550 part = mk2DroneCore } Science { id = mobileMaterialsLab@KerbinSrfLandedLaunchPad title = Materials Study from LaunchPad dsc = 1 scv = 0.21875 sbv = 0.3 sci = 7.5 cap = 9.6 } Science { id = mysteryGoo@KerbinSrfLandedLaunchPad title = Mystery Goo™ Observation from LaunchPad dsc = 1 scv = 0.05325446 sbv = 0.3 sci = 3.692308 cap = 3.9 } Science { id = crewReport@KerbinSrfLandedLaunchPad title = Crew Report from LaunchPad dsc = 1 scv = 0 sbv = 0.3 sci = 1.5 cap = 1.5 } Science { id = crewReport@KerbinInSpaceHigh title = Crew Report while in space high over Kerbin dsc = 1 scv = 0 sbv = 1.5 sci = 7.5 cap = 7.5 } Science { id = crewReport@MohoInSpaceLow title = Crew Report while in space near Moho dsc = 1 scv = 0 sbv = 8 sci = 40 cap = 40 } Science { id = crewReport@MohoSrfLandedMinorCraters title = Crew Report from Moho's Minor Craters dsc = 1 scv = 0 sbv = 10 sci = 50 cap = 50 } Science { id = mysteryGoo@MohoSrfLandedMinorCraters title = Mystery Goo™ Observation from Moho's Minor Craters dsc = 1 scv = 0.7692308 sbv = 10 sci = 30 cap = 130 } Science { id = mobileMaterialsLab@MohoSrfLandedMinorCraters title = Materials Study from Moho's Minor Craters dsc = 1 scv = 0.7265625 sbv = 10 sci = 87.5 cap = 320 } Science { id = barometerScan@MohoSrfLandedMinorCraters title = Atmospheric Pressure Scan from Moho's Minor Craters dsc = 1 scv = 0.5 sbv = 10 sci = 60 cap = 120 } Science { id = temperatureScan@MohoSrfLandedMinorCraters title = Temperature Scan from Moho's Minor Craters dsc = 1 scv = 0.5 sbv = 10 sci = 40 cap = 80 } Science { id = crewReport@KerbinSrfLandedHighlands title = Crew Report from Kerbin's Highlands dsc = 1 scv = 0 sbv = 0.3 sci = 1.5 cap = 1.5 } Science { id = evaReport@KerbinFlyingLowHighlands title = EVA Report while flying over Kerbin's Highlands dsc = 1 scv = 0 sbv = 0.7 sci = 5.6 cap = 5.6 } Science { id = recovery@MohoSurfaced title = Recovery of a vessel returned from the surface of Moho dsc = 1 scv = 0.1666667 sbv = 105 sci = 105 cap = 126 } Science { id = temperatureScan@DunaInSpaceHigh title = Temperature Scan while in space high over Duna dsc = 1 scv = 1 sbv = 5 sci = 0 cap = 40 } Science { id = recovery@KerbinFlew title = Recovery of a vessel that survived a flight. dsc = 1 scv = 0.02777775 sbv = 5 sci = 5.833333 cap = 6 } Science { id = recovery@KerbinSubOrbited title = Recovery of a vessel after a sub-orbital flight. dsc = 1 scv = 0.1666667 sbv = 8 sci = 8 cap = 9.6 } Science { id = gravityScan@KerbinInSpaceLowWater title = Gravity Scan from space just above Kerbin's Water dsc = 3 scv = 1 sbv = 1 sci = 0 cap = 22 } } SCENARIO { name = VesselRecovery scene = 5, 7, 8, 6 } SCENARIO { name = Reputation scene = 7, 8, 5, 6 rep = 999.999 } SCENARIO { name = StrategySystem scene = 7, 8, 5, 6 STRATEGIES { } } SCENARIO { name = ScenarioDestructibles scene = 5, 7, 6, 8 SpaceCenter/Administration/Facility/mainBuilding { intact = True } SpaceCenter/AstronautComplex/Facility/building { intact = True } SpaceCenter/LaunchPad/Facility/LaunchPadMedium/KSCFlagPoleLaunchPad { intact = True } SpaceCenter/LaunchPad/Facility/LaunchPadMedium/ksp_pad_waterTower { intact = True } SpaceCenter/LaunchPad/Facility/LaunchPadMedium/ksp_pad_sphereTank { intact = True } SpaceCenter/LaunchPad/Facility/LaunchPadMedium/ksp_pad_launchPad { intact = True } SpaceCenter/LaunchPad/Facility/LaunchPadMedium/ksp_pad_cylTank { intact = True } SpaceCenter/MissionControl/Facility/building { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/SideLab { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/Observatory { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/WindTunnel { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/CornerLab { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/MainBuilding { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/CentralBuilding { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/SmallLab { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/ksp_pad_cylTank { intact = True } SpaceCenter/Runway/Facility/Section4 { intact = True } SpaceCenter/Runway/Facility/Section3 { intact = True } SpaceCenter/Runway/Facility/Section2 { intact = True } SpaceCenter/Runway/Facility/Section1 { intact = True } SpaceCenter/Runway/Facility/End27 { intact = True } SpaceCenter/Runway/Facility/End09 { intact = True } SpaceCenter/Runway/Facility/model_runway_new_v43/runway_light_SW { intact = True } SpaceCenter/Runway/Facility/model_runway_new_v43/runway_light_NW { intact = True } SpaceCenter/Runway/Facility/model_runway_new_v43/runway_light_NE { intact = True } SpaceCenter/Runway/Facility/model_runway_new_v43/runway_light_SE { intact = True } SpaceCenter/SpaceplaneHangar/Facility/mainBuilding { intact = True } SpaceCenter/SpaceplaneHangar/Facility/ksp_pad_waterTower { intact = True } SpaceCenter/SpaceplaneHangar/Facility/ksp_pad_cylTank { intact = True } SpaceCenter/SpaceplaneHangar/Facility/Tank { intact = True } SpaceCenter/TrackingStation/Facility/MainBuilding { intact = True } SpaceCenter/TrackingStation/Facility/dish_array/dish_east { intact = True } SpaceCenter/TrackingStation/Facility/dish_array/dish_north { intact = True } SpaceCenter/TrackingStation/Facility/dish_array/dish_south { intact = True } SpaceCenter/VehicleAssemblyBuilding/Facility/PodMemorial { intact = True } SpaceCenter/VehicleAssemblyBuilding/Facility/mainBuilding { intact = True } SpaceCenter/VehicleAssemblyBuilding/Facility/Tank { intact = True } SpaceCenter/VehicleAssemblyBuilding/Facility/ksp_pad_cylTank { intact = True } SpaceCenter/FlagPole/Facility { intact = True } SpaceCenter/VehicleAssemblyBuilding/Facility/VAB2 { intact = True } SpaceCenter/TrackingStation/Facility/building { intact = True } SpaceCenter/TrackingStation/Facility/OuterDish { intact = True } SpaceCenter/SpaceplaneHangar/Facility/Building { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/mainBuilding { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/ForeverAlone { intact = True } SpaceCenter/MissionControl/Facility/mainBuilding { intact = True } SpaceCenter/LaunchPad/Facility/Flag { intact = True } SpaceCenter/AstronautComplex/Facility/mainBuilding { intact = True } SpaceCenter/Administration/Facility/Building { intact = True } SpaceCenter/LaunchPad/Facility/building { intact = True } SpaceCenter/LaunchPad/Facility/SmallTanks { intact = True } SpaceCenter/LaunchPad/Facility/BigTanks { intact = True } SpaceCenter/VehicleAssemblyBuilding/Facility/VAB3 { intact = True } SpaceCenter/VehicleAssemblyBuilding/Facility/SouthComplex { intact = True } SpaceCenter/TrackingStation/Facility/building/Antenna_South { intact = True } SpaceCenter/TrackingStation/Facility/building/Antenna_North { intact = True } SpaceCenter/TrackingStation/Facility/building/Antenna_East { intact = True } SpaceCenter/TrackingStation/Facility/building/Building { intact = True } SpaceCenter/MissionControl/Facility/Antenna { intact = True } SpaceCenter/SpaceplaneHangar/Facility/Tower { intact = True } SpaceCenter/Runway/Facility/Section5 { intact = True } } SCENARIO { name = ScenarioDiscoverableObjects scene = 7, 8, 5 lastSeed = 272889880 sizeCurve { key = 0 0 1.5 1.5 key = 0.3 0.45 0.875 0.875 key = 0.7 0.55 0.875 0.875 key = 1 1 1.5 1.5 } } SCENARIO { name = ScenarioUpgradeableFacilities scene = 5, 6, 7, 8 SpaceCenter/LaunchPad { lvl = 1 } SpaceCenter/Runway { lvl = 1 } SpaceCenter/VehicleAssemblyBuilding { lvl = 1 } SpaceCenter/SpaceplaneHangar { lvl = 1 } SpaceCenter/TrackingStation { lvl = 1 } SpaceCenter/AstronautComplex { lvl = 1 } SpaceCenter/MissionControl { lvl = 1 } SpaceCenter/ResearchAndDevelopment { lvl = 1 } SpaceCenter/Administration { lvl = 1 } SpaceCenter/FlagPole { lvl = 0 } } SCENARIO { name = ResourceScenario scene = 5, 7, 6 RESOURCE_SETTINGS { GameSeed = 3799167 MaxDeltaTime = 21600 BIOME_LOCK_DATA { PlanetId = 4 BiomeName = Minor Craters } } } FLIGHTSTATE { version = 1.0.2 UT = 547458.845668757 activeVessel = 0 mapViewFiltering = -1 VESSEL { pid = d895c078b9b548b88cd4a0312e38d27a name = KEO Sat 1 type = Probe sit = ORBITING landed = False landedAt = splashed = False met = 172129.235098704 lct = 68.8400000000034 root = 0 lat = 2.51083252452735E-06 lon = 22.6019673548537 alt = 2000041.89995216 hgt = -1 nrm = -5.459676E-05,1,5.978842E-05 rot = -0.04522991,-0.3129308,-0.7056862,0.634063 CoM = -0.0001606973,-0.4303994,-0.0002815838 stg = 1 prst = False ref = 3400340423 ctrl = True cPch = cHdg = cMod = 0 ORBIT { SMA = 2600001.36442638 ECC = 1.54766348513421E-05 INC = 3.1945284701302E-06 LPE = 303.07491500783 LAN = 334.823673765456 MNA = 3.22333772302629 EPH = 172198.075098704 REF = 1 } PART { name = probeCoreOcto cid = 4292954960 uid = 3400340423 mid = 1883268881 launchID = 1 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = bottom, 1 attN = top, 29 mass = 0.1 temp = 288.115656956538 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = probeCoreOcto (KEO Sat 1) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True controlSrcStatusText = Operational EVENTS { MakeReference { active = True guiActive = True guiIcon = Control From Here guiName = Control From Here category = Control From Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } RenameVessel { active = True guiActive = True guiIcon = Rename Vessel guiName = Rename Vessel category = Rename Vessel guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleReactionWheel isEnabled = True stateString = Running WheelState = Active EVENTS { OnToggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle Torque guiName = Toggle Torque category = Toggle Torque guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True standaloneToggle_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = RadialPlus Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 172198.075098704 ExtraDelay = 0 CmdGuid = 94aabbba-72ba-45a0-9ce8-e556af66db88 } } Commands { } } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 EVENTS { } ACTIONS { } } MODULE { name = ModuleTripLogger isEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } } RESOURCE { name = ElectricCharge amount = 9.99625453967989 maxAmount = 10 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = toroidalFuelTank cid = 4292997758 uid = 4186765573 mid = 1883268881 launchID = 1 parent = 0 position = 0,-0.236940383911133,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 0 attN = bottom, 2 mass = 0.0375 temp = 287.999839945917 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = toroidalFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 27 maxAmount = 27 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 33 maxAmount = 33 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = miniFuelTank cid = 4292966554 uid = 3759667010 mid = 1883268881 launchID = 1 parent = 1 position = 0,-0.461079597473145,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 1 attN = bottom, 15 mass = 0.025 temp = 287.995750442653 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = strutCube cid = 4292988880 uid = 3521746923 mid = 1883268881 launchID = 1 parent = 2 position = -0.322761207818985,-0.501720428466797,2.36872192971305E-08 rotation = -0.3799282,0.5963678,-0.3799282,-0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 7 sym = 11 sym = 21 srfN = srfAttach, 2 attN = top, 4 attN = None, -1 mass = 0.001 temp = 290.626522043669 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = miniFuelTank cid = 4292981632 uid = 867217228 mid = 1883268881 launchID = 1 parent = 3 position = -0.509626984596252,-0.414580345153809,1.21527151009104E-07 rotation = -0.3799282,0.5963678,-0.3799282,-0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 8 sym = 12 sym = 22 srfN = None, -1 attN = top, 5 attN = bottom, 3 mass = 0.025 temp = 288.010860651819 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = RTShortDish2 cid = 4292938924 uid = 1548174043 mid = 1883268881 launchID = 1 parent = 4 position = -0.667572617530823,-0.340929985046387,1.60908101065615E-07 rotation = 0.3799282,-0.5963678,0.3799282,0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 9 sym = 13 sym = 23 srfN = None, -1 attN = bottom, 4 mass = 0.5 temp = 288.005635288723 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 0.976296007119933 RTOmniRange = 0 RTDishRange = 0 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = strutConnector cid = 4292934616 uid = 2548887764 mid = 1883268881 launchID = 1 parent = 4 position = -0.501181423664093,-0.411379814147949,-0.301624417304993 rotation = -0.3799281,0.596368,-0.3799284,-0.5963677 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 10 sym = 14 sym = 24 srfN = srfAttach, 4 mass = 0.05 temp = 287.66720451482 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutConnector modCost = 0 EVENTS { } ACTIONS { } PARTDATA { tgt = 4292949498 pos = -0.211275,-0.1778487,-0.09079259 rot = 2.065939E-16,-0.2988362,0.6408563,0.7071071 dir = -0.7267627,-0.6117797,-0.3123165 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { name = strutCube cid = 4292949644 uid = 3492013916 mid = 1883268881 launchID = 1 parent = 2 position = 7.11419829713122E-08,-0.501720428466797,0.322761297225952 rotation = -0.5372996,-3.686581E-08,2.348611E-08,-0.8433915 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 3 sym = 11 sym = 21 srfN = srfAttach, 2 attN = top, 8 attN = None, -1 mass = 0.001 temp = 290.584213264757 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = miniFuelTank cid = 4292949618 uid = 494721749 mid = 1883268881 launchID = 1 parent = 7 position = 1.74179803025254E-07,-0.414580345153809,0.509626984596252 rotation = -0.5372996,-3.686581E-08,2.348611E-08,-0.8433915 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 4 sym = 12 sym = 22 srfN = None, -1 attN = top, 9 attN = bottom, 7 mass = 0.025 temp = 287.988645180702 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = RTShortDish2 cid = 4292939956 uid = 2645204401 mid = 1883268881 launchID = 1 parent = 8 position = 1.87987794220135E-07,-0.340929985046387,0.667572617530823 rotation = 0.5372996,2.869286E-08,-2.869286E-08,0.8433915 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 5 sym = 13 sym = 23 srfN = None, -1 attN = bottom, 8 mass = 0.5 temp = 287.988357310892 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 0.976296007119933 RTOmniRange = 0 RTDishRange = 0 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = strutConnector cid = 4292933968 uid = 3755050593 mid = 1883268881 launchID = 1 parent = 8 position = -0.301624298095703,-0.411379814147949,0.501181483268738 rotation = -0.5372997,2.160153E-07,-1.661747E-07,-0.8433914 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 6 sym = 14 sym = 24 srfN = srfAttach, 8 mass = 0.05 temp = 287.664256985162 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutConnector modCost = 0 EVENTS { } ACTIONS { } PARTDATA { tgt = 4292981632 pos = -0.2112749,-0.1778492,-0.09079282 rot = -7.616486E-16,-0.2988361,0.6408566,0.7071068 dir = -0.7267615,-0.6117809,-0.3123169 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { name = strutCube cid = 4292949584 uid = 2844157562 mid = 1883268881 launchID = 1 parent = 2 position = 0.322761207818985,-0.501720428466797,-6.21633589048542E-08 rotation = -0.3799282,-0.5963678,0.3799282,-0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 3 sym = 7 sym = 21 srfN = srfAttach, 2 attN = top, 12 attN = None, -1 mass = 0.001 temp = 289.781156088026 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = miniFuelTank cid = 4292949558 uid = 3741000018 mid = 1883268881 launchID = 1 parent = 11 position = 0.509627044200897,-0.414580345153809,-1.14955746255418E-07 rotation = -0.3799282,-0.5963678,0.3799282,-0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 4 sym = 8 sym = 22 srfN = None, -1 attN = top, 13 attN = bottom, 11 mass = 0.025 temp = 287.937226748294 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = RTShortDish2 cid = 4292938884 uid = 745854861 mid = 1883268881 launchID = 1 parent = 12 position = 0.667572677135468,-0.340929985046387,-7.55748388314714E-08 rotation = 0.3799282,0.5963678,-0.3799282,0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 5 sym = 9 sym = 23 srfN = None, -1 attN = bottom, 12 mass = 0.5 temp = 287.927135367327 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 0.976296007119933 RTOmniRange = 0 RTDishRange = 0 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = strutConnector cid = 4292933902 uid = 3089106335 mid = 1883268881 launchID = 1 parent = 12 position = 0.501181483268738,-0.411379814147949,0.301624476909637 rotation = -0.3799284,-0.5963677,0.3799281,-0.596368 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 6 sym = 10 sym = 24 srfN = srfAttach, 12 mass = 0.05 temp = 287.658705951739 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutConnector modCost = 0 EVENTS { } ACTIONS { } PARTDATA { tgt = 4292949618 pos = -0.2112752,-0.1778487,-0.09079367 rot = 5.692113E-16,-0.2988362,0.6408563,0.7071072 dir = -0.7267621,-0.6117787,-0.3123197 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { name = fuelTankSmallFlat cid = 4292880082 uid = 414108784 mid = 1883268881 launchID = 1 parent = 11 position = -5.96046447753906E-08,-0.947850227355957,-1.05623485069373E-07 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 11 attN = bottom, 16 mass = 0.0625 temp = 288.723146339916 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = fuelTankSmallFlat modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 45 maxAmount = 45 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 55 maxAmount = 55 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = liquidEngineMini cid = 4292971228 uid = 1063265098 mid = 1883268881 launchID = 1 parent = 15 position = 1.19209289550781E-07,-1.26035022735596,-2.5900061473294E-07 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 15 attN = None, -1 mass = 0.1 temp = 288.722466146559 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = liquidEngineMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnginesFX isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = None } } } MODULE { name = ModuleJettison isEnabled = True isJettisoned = True EVENTS { Jettison { active = False guiActive = True guiIcon = Jettison guiName = Jettison category = Jettison guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { JettisonAction { actionGroup = None } } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 gimbalLock_UIFlight { controlEnabled = True } gimbalLimiter_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 1 } EVENTS { } ACTIONS { ToggleAction { actionGroup = None } LockAction { actionGroup = None } FreeAction { actionGroup = None } } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } } PART { name = solarPanels2 cid = 4292845444 uid = 4154772511 mid = 1883268881 launchID = 1 parent = 15 position = -0.427597016096115,-0.918729782104492,0.427596807479858 rotation = -1.514694E-07,0.3826835,-4.011894E-07,0.9238796 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 18 sym = 19 sym = 20 srfN = srfAttach, 15 mass = 0.025 temp = 289.010616359681 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0.4475639, 0.5474144, -0.5474359, -0.4475912) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels2 cid = 4292844164 uid = 3986520410 mid = 1883268881 launchID = 1 parent = 15 position = 0.427597045898438,-0.918729782104492,0.42759707570076 rotation = -3.640522E-07,0.9238797,-1.677273E-07,0.3826835 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 17 sym = 19 sym = 20 srfN = srfAttach, 15 mass = 0.025 temp = 289.037659727497 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (-0.3621246, 0.6073506, -0.6073391, 0.3621192) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels2 cid = 4292844048 uid = 792420846 mid = 1883268881 launchID = 1 parent = 15 position = 0.42759695649147,-0.918729782104492,-0.42759707570076 rotation = -3.673464E-07,0.9238796,1.612769E-07,-0.3826835 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 17 sym = 18 sym = 20 srfN = srfAttach, 15 mass = 0.025 temp = 289.040384935009 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0.4475917, -0.547439, 0.5474116, -0.4475633) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels2 cid = 4292843932 uid = 2327887775 mid = 1883268881 launchID = 1 parent = 15 position = -0.427597135305405,-0.918729782104492,-0.427597224712372 rotation = -1.725368E-07,0.3826834,3.867105E-07,-0.9238797 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 17 sym = 18 sym = 19 srfN = srfAttach, 15 mass = 0.025 temp = 289.067321785568 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (-0.3621113, -0.6073453, 0.6073586, 0.3621088) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = strutCube cid = 4292949524 uid = 2241757875 mid = 1883268881 launchID = 1 parent = 2 position = -4.29252899891708E-08,-0.501720428466797,-0.322761297225952 rotation = 0,0.8433915,-0.5372996,0 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 3 sym = 7 sym = 11 srfN = srfAttach, 2 attN = top, 22 attN = None, -1 mass = 0.001 temp = 290.546302558384 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = miniFuelTank cid = 4292949498 uid = 1481186905 mid = 1883268881 launchID = 1 parent = 21 position = -1.29626812395145E-07,-0.414580345153809,-0.509626984596252 rotation = 0,0.8433915,-0.5372996,0 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 4 sym = 8 sym = 12 srfN = None, -1 attN = top, 23 attN = bottom, 21 mass = 0.025 temp = 288.002169944284 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = RTShortDish2 cid = 4292938844 uid = 1806011038 mid = 1883268881 launchID = 1 parent = 22 position = -1.29626911871128E-07,-0.340929985046387,-0.667572617530823 rotation = 5.206745E-09,-0.8433915,0.5372996,-8.17295E-09 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 5 sym = 9 sym = 13 srfN = None, -1 attN = bottom, 22 mass = 0.5 temp = 288.004723347104 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 0.976296007119933 RTOmniRange = 0 RTDishRange = 9E+07 RTAntennaTarget = 2d6a2008-6b5c-48b1-ab50-7567ad27dfb5 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = Kerbin Outpost category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = strutConnector cid = 4292933836 uid = 1592872225 mid = 1883268881 launchID = 1 parent = 22 position = 0.301624566316605,-0.411379814147949,-0.501181423664093 rotation = 1.896608E-07,0.8433914,-0.5372997,2.528811E-07 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 6 sym = 10 sym = 14 srfN = srfAttach, 22 mass = 0.05 temp = 287.664818659316 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutConnector modCost = 0 EVENTS { } ACTIONS { } PARTDATA { tgt = 4292949558 pos = -0.2112758,-0.177849,-0.09079277 rot = -2.626155E-15,-0.298836,0.6408562,0.7071073 dir = -0.7267632,-0.6117792,-0.3123161 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { name = solarPanels5 cid = 4292923810 uid = 930777403 mid = 1883268881 launchID = 1 parent = 0 position = 0.243000000715256,0.123909950256348,-0.243000000715256 rotation = 0.6272115,0.6743798,0.3265054,0.2126309 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 26 sym = 27 sym = 28 srfN = srfAttach, 0 mass = 0.005 temp = 287.993889224366 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292922298 uid = 2302957174 mid = 1883268881 launchID = 1 parent = 0 position = -0.242999896407127,0.123909950256348,-0.243000000715256 rotation = 0.6743797,0.6272113,-0.2126313,-0.3265058 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 25 sym = 27 sym = 28 srfN = srfAttach, 0 mass = 0.005 temp = 288.516461633748 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292922266 uid = 4122558838 mid = 1883268881 launchID = 1 parent = 0 position = -0.243000000715256,0.123909950256348,0.243000000715256 rotation = 0.3265054,0.2126309,-0.6272115,-0.6743798 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 25 sym = 26 sym = 28 srfN = srfAttach, 0 mass = 0.005 temp = 287.889896562868 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292922234 uid = 3079033824 mid = 1883268881 launchID = 1 parent = 0 position = 0.243000000715256,0.123909950256348,0.243000000715256 rotation = -0.2126313,-0.3265058,-0.6743797,-0.6272113 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 25 sym = 26 sym = 27 srfN = srfAttach, 0 mass = 0.005 temp = 288.28598613035 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = batteryBankMini cid = 4292913722 uid = 3644765623 mid = 1883268881 launchID = 1 parent = 0 position = 0,0.287079811096191,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 38 attN = bottom, 0 mass = 0.01 temp = 289.534575683429 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 199.99625453968 maxAmount = 200 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryPack cid = 4292910914 uid = 2331704005 mid = 1883268881 launchID = 1 parent = 29 position = -1.22532601419019E-15,0.128359794616699,0.311303108930588 rotation = 3.387644E-15,1,-2.277331E-07,1.48755E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 31 sym = 32 sym = 33 srfN = srfAttach, 29 mass = 0.005 temp = 290.493887193459 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 99.9962545396799 maxAmount = 100 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryPack cid = 4292910132 uid = 2799219373 mid = 1883268881 launchID = 1 parent = 29 position = 0.311303108930588,0.128359794616699,1.85551094489256E-08 rotation = -1.610317E-07,0.7071068,-1.610317E-07,-0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 30 sym = 32 sym = 33 srfN = srfAttach, 29 mass = 0.005 temp = 290.509160439368 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 99.9962545396799 maxAmount = 100 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryPack cid = 4292910092 uid = 769948698 mid = 1883268881 launchID = 1 parent = 29 position = -2.72149804914079E-08,0.128359794616699,-0.311303108930588 rotation = -2.277331E-07,-2.883589E-08,6.566887E-15,-1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 30 sym = 31 sym = 33 srfN = srfAttach, 29 mass = 0.005 temp = 290.436296135972 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 99.9962545396799 maxAmount = 100 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryPack cid = 4292910052 uid = 1261639223 mid = 1883268881 launchID = 1 parent = 29 position = -0.311303108930588,0.128359794616699,1.85551094489256E-08 rotation = -1.610317E-07,-0.7071068,1.610317E-07,-0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 30 sym = 31 sym = 32 srfN = srfAttach, 29 mass = 0.005 temp = 290.521154294392 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 99.9962545396799 maxAmount = 100 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = solarPanels5 cid = 4292842198 uid = 2359723123 mid = 1883268881 launchID = 1 parent = 29 position = -0.233706101775169,0.380829811096191,0.172279193997383 rotation = -0.707107,0,0,0.7071066 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 35 sym = 36 sym = 37 srfN = srfAttach, 29 mass = 0.005 temp = 290.297456513432 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292841952 uid = 1611127077 mid = 1883268881 launchID = 1 parent = 29 position = 0.172279104590416,0.380829811096191,0.233706101775169 rotation = -0.5000002,0.4999999,0.5000002,0.4999999 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 34 sym = 36 sym = 37 srfN = srfAttach, 29 mass = 0.005 temp = 290.282868203284 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292841920 uid = 1722153238 mid = 1883268881 launchID = 1 parent = 29 position = 0.233705997467041,0.380829811096191,-0.172279193997383 rotation = 3.090863E-08,0.7071066,0.707107,-3.090861E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 34 sym = 35 sym = 37 srfN = srfAttach, 29 mass = 0.005 temp = 290.274686497913 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292841888 uid = 1077268507 mid = 1883268881 launchID = 1 parent = 29 position = -0.172279193997383,0.380829811096191,-0.233705997467041 rotation = 0.5000002,0.4999999,0.5000002,-0.4999999 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 34 sym = 35 sym = 36 srfN = srfAttach, 29 mass = 0.005 temp = 290.306524622792 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = longAntenna cid = 4292805876 uid = 2248252919 mid = 1883268881 launchID = 1 parent = 29 position = 0,0.387080192565918,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = bottom, 29 mass = 0.005 temp = 290.878708890099 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = longAntenna modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0.9924882 animSpeed = 1 EVENTS { Toggle { active = False guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 2500000 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = RTLongAntenna2 cid = 4292803458 uid = 3430099167 mid = 1883268881 launchID = 1 parent = 29 position = 0.213477805256844,0.339059829711914,0.213477805256844 rotation = 0.6532814,0.2705981,-0.270598,0.6532816 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 40 sym = 41 sym = 42 srfN = srfAttach, 29 attN = None, -1 mass = 0.01 temp = 289.323734422265 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = RTLongAntenna2 cid = 4292800282 uid = 326308787 mid = 1883268881 launchID = 1 parent = 29 position = 0.213477805256844,0.339059829711914,-0.213477805256844 rotation = 0.270598,0.6532816,-0.6532815,0.2705981 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 39 sym = 41 sym = 42 srfN = srfAttach, 29 attN = None, -1 mass = 0.01 temp = 289.40901576974 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = RTLongAntenna2 cid = 4292800208 uid = 1527956651 mid = 1883268881 launchID = 1 parent = 29 position = -0.213477894663811,0.339059829711914,-0.213477805256844 rotation = -0.2705981,0.6532816,-0.6532814,-0.2705981 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 39 sym = 40 sym = 42 srfN = srfAttach, 29 attN = None, -1 mass = 0.01 temp = 289.24509800489 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = RTLongAntenna2 cid = 4292800134 uid = 1922492772 mid = 1883268881 launchID = 1 parent = 29 position = -0.213477805256844,0.339059829711914,0.213477805256844 rotation = -0.6532815,0.2705981,-0.270598,-0.6532816 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 39 sym = 40 sym = 41 srfN = srfAttach, 29 attN = None, -1 mass = 0.01 temp = 289.380107666155 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0.993765 animSpeed = 1 EVENTS { Toggle { active = False guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True EVENTS { } ACTIONS { } } } ACTIONGROUPS { Stage = False, 0 Gear = True, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0.001006855 yaw = 0.0008572704 roll = 0.003153436 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } } VESSEL { pid = 5723fa7e1f8445e3b6ee4d67e2fbd614 name = KEO Sat 2 type = Probe sit = ORBITING landed = False landedAt = splashed = False met = 170535.095152379 lct = 1731.93994628909 root = 0 lat = -3.81831709607325E-05 lon = 116.122073362443 alt = 1999999.79723489 hgt = -1 nrm = -0.0009122699,0.9999979,-0.001849497 rot = 0.4803462,-0.677851,-0.5188341,0.2014864 CoM = -8.372146E-05,-0.4306653,-0.0001373518 stg = 1 prst = False ref = 2692281660 ctrl = True cPch = cHdg = cMod = 0 ORBIT { SMA = 2600000.39703546 ECC = 5.20802919129528E-07 INC = 4.68565413829249E-05 LPE = 275.022370576102 LAN = 322.671651506319 MNA = 5.57733141430987 EPH = 172267.035098668 REF = 1 } PART { name = probeCoreOcto cid = 4292954960 uid = 2692281660 mid = 2454308853 launchID = 2 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = bottom, 1 attN = top, 29 mass = 0.1 temp = 308.892260046596 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = probeCoreOcto (KEO Sat 2) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True controlSrcStatusText = Operational EVENTS { MakeReference { active = True guiActive = True guiIcon = Control From Here guiName = Control From Here category = Control From Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } RenameVessel { active = True guiActive = True guiIcon = Rename Vessel guiName = Rename Vessel category = Rename Vessel guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleReactionWheel isEnabled = True stateString = Running WheelState = Active EVENTS { OnToggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle Torque guiName = Toggle Torque category = Toggle Torque guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True standaloneToggle_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = RadialPlus Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 172267.035098668 ExtraDelay = 0 CmdGuid = bf05b559-c393-4705-911d-137586ead341 } } Commands { } } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 EVENTS { } ACTIONS { } } MODULE { name = ModuleTripLogger isEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } } RESOURCE { name = ElectricCharge amount = 6.34980001614868 maxAmount = 10 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = toroidalFuelTank cid = 4292997758 uid = 3604249086 mid = 2454308853 launchID = 2 parent = 0 position = 0,-0.236940383911133,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 0 attN = bottom, 2 mass = 0.0375 temp = 309.17348874271 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = toroidalFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 27 maxAmount = 27 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 33 maxAmount = 33 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = miniFuelTank cid = 4292966554 uid = 193223127 mid = 2454308853 launchID = 2 parent = 1 position = 0,-0.461079597473145,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 1 attN = bottom, 15 mass = 0.025 temp = 309.266797247695 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = strutCube cid = 4292988880 uid = 2058964983 mid = 2454308853 launchID = 2 parent = 2 position = -0.322761207818985,-0.501720428466797,2.36872192971305E-08 rotation = -0.3799282,0.5963678,-0.3799282,-0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 7 sym = 11 sym = 21 srfN = srfAttach, 2 attN = top, 4 attN = None, -1 mass = 0.001 temp = 307.881891904082 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = miniFuelTank cid = 4292981632 uid = 4107206544 mid = 2454308853 launchID = 2 parent = 3 position = -0.509626984596252,-0.414580345153809,1.21527151009104E-07 rotation = -0.3799282,0.5963678,-0.3799282,-0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 8 sym = 12 sym = 22 srfN = None, -1 attN = top, 5 attN = bottom, 3 mass = 0.025 temp = 309.136256568353 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = RTShortDish2 cid = 4292938924 uid = 2197969647 mid = 2454308853 launchID = 2 parent = 4 position = -0.667572617530823,-0.340929985046387,1.60908101065615E-07 rotation = 0.3799282,-0.5963678,0.3799282,0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 9 sym = 13 sym = 23 srfN = None, -1 attN = bottom, 4 mass = 0.5 temp = 309.103601344333 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 0.976296007119933 RTOmniRange = 0 RTDishRange = 0 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = strutConnector cid = 4292934616 uid = 3767862512 mid = 2454308853 launchID = 2 parent = 4 position = -0.501181423664093,-0.411379814147949,-0.301624417304993 rotation = -0.3799281,0.596368,-0.3799284,-0.5963677 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 10 sym = 14 sym = 24 srfN = srfAttach, 4 mass = 0.05 temp = 309.173806858075 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutConnector modCost = 0 EVENTS { } ACTIONS { } PARTDATA { tgt = 4292949498 pos = -0.211275,-0.1778487,-0.09079259 rot = 2.065939E-16,-0.2988362,0.6408563,0.7071071 dir = -0.7267627,-0.6117797,-0.3123165 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { name = strutCube cid = 4292949644 uid = 3688368998 mid = 2454308853 launchID = 2 parent = 2 position = 7.11419829713122E-08,-0.501720428466797,0.322761297225952 rotation = -0.5372996,-3.686581E-08,2.348611E-08,-0.8433915 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 3 sym = 11 sym = 21 srfN = srfAttach, 2 attN = top, 8 attN = None, -1 mass = 0.001 temp = 307.820601343852 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = miniFuelTank cid = 4292949618 uid = 3161747991 mid = 2454308853 launchID = 2 parent = 7 position = 1.74179803025254E-07,-0.414580345153809,0.509626984596252 rotation = -0.5372996,-3.686581E-08,2.348611E-08,-0.8433915 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 4 sym = 12 sym = 22 srfN = None, -1 attN = top, 9 attN = bottom, 7 mass = 0.025 temp = 309.105263992185 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = RTShortDish2 cid = 4292939956 uid = 3785255802 mid = 2454308853 launchID = 2 parent = 8 position = 1.87987794220135E-07,-0.340929985046387,0.667572617530823 rotation = 0.5372996,2.869286E-08,-2.869286E-08,0.8433915 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 5 sym = 13 sym = 23 srfN = None, -1 attN = bottom, 8 mass = 0.5 temp = 309.075485549096 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 0.976296007119933 RTOmniRange = 0 RTDishRange = 0 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = strutConnector cid = 4292933968 uid = 1412610754 mid = 2454308853 launchID = 2 parent = 8 position = -0.301624298095703,-0.411379814147949,0.501181483268738 rotation = -0.5372997,2.160153E-07,-1.661747E-07,-0.8433914 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 6 sym = 14 sym = 24 srfN = srfAttach, 8 mass = 0.05 temp = 309.171890291553 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutConnector modCost = 0 EVENTS { } ACTIONS { } PARTDATA { tgt = 4292981632 pos = -0.2112749,-0.1778492,-0.09079282 rot = -7.616486E-16,-0.2988361,0.6408566,0.7071068 dir = -0.7267615,-0.6117809,-0.3123169 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { name = strutCube cid = 4292949584 uid = 2010998869 mid = 2454308853 launchID = 2 parent = 2 position = 0.322761207818985,-0.501720428466797,-6.21633589048542E-08 rotation = -0.3799282,-0.5963678,0.3799282,-0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 3 sym = 7 sym = 21 srfN = srfAttach, 2 attN = top, 12 attN = None, -1 mass = 0.001 temp = 307.822999021517 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = miniFuelTank cid = 4292949558 uid = 4030104885 mid = 2454308853 launchID = 2 parent = 11 position = 0.509627044200897,-0.414580345153809,-1.14955746255418E-07 rotation = -0.3799282,-0.5963678,0.3799282,-0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 4 sym = 8 sym = 22 srfN = None, -1 attN = top, 13 attN = bottom, 11 mass = 0.025 temp = 309.068888534317 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = RTShortDish2 cid = 4292938884 uid = 3501306915 mid = 2454308853 launchID = 2 parent = 12 position = 0.667572677135468,-0.340929985046387,-7.55748388314714E-08 rotation = 0.3799282,0.5963678,-0.3799282,0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 5 sym = 9 sym = 23 srfN = None, -1 attN = bottom, 12 mass = 0.5 temp = 309.035411176453 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 0.976296007119933 RTOmniRange = 0 RTDishRange = 0 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = strutConnector cid = 4292933902 uid = 3882616485 mid = 2454308853 launchID = 2 parent = 12 position = 0.501181483268738,-0.411379814147949,0.301624476909637 rotation = -0.3799284,-0.5963677,0.3799281,-0.596368 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 6 sym = 10 sym = 24 srfN = srfAttach, 12 mass = 0.05 temp = 309.16968762176 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutConnector modCost = 0 EVENTS { } ACTIONS { } PARTDATA { tgt = 4292949618 pos = -0.2112752,-0.1778487,-0.09079367 rot = 5.692113E-16,-0.2988362,0.6408563,0.7071072 dir = -0.7267621,-0.6117787,-0.3123197 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { name = fuelTankSmallFlat cid = 4292880082 uid = 772258621 mid = 2454308853 launchID = 2 parent = 11 position = -5.96046447753906E-08,-0.947850227355957,-1.05623485069373E-07 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 11 attN = bottom, 16 mass = 0.0625 temp = 309.313531890979 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = fuelTankSmallFlat modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 45 maxAmount = 45 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 55 maxAmount = 55 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = liquidEngineMini cid = 4292971228 uid = 11590008 mid = 2454308853 launchID = 2 parent = 15 position = 1.19209289550781E-07,-1.26035022735596,-2.5900061473294E-07 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 15 attN = None, -1 mass = 0.1 temp = 309.414978261657 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = liquidEngineMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnginesFX isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = None } } } MODULE { name = ModuleJettison isEnabled = True isJettisoned = True EVENTS { Jettison { active = False guiActive = True guiIcon = Jettison guiName = Jettison category = Jettison guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { JettisonAction { actionGroup = None } } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 gimbalLock_UIFlight { controlEnabled = True } gimbalLimiter_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 1 } EVENTS { } ACTIONS { ToggleAction { actionGroup = None } LockAction { actionGroup = None } FreeAction { actionGroup = None } } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } } PART { name = solarPanels2 cid = 4292845444 uid = 1912383542 mid = 2454308853 launchID = 2 parent = 15 position = -0.427597016096115,-0.918729782104492,0.427596807479858 rotation = -1.514694E-07,0.3826835,-4.011894E-07,0.9238796 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 18 sym = 19 sym = 20 srfN = srfAttach, 15 mass = 0.025 temp = 306.132254561117 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (-0.6892908, 0.1577017, -0.1577045, 0.6893024) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels2 cid = 4292844164 uid = 4059901662 mid = 2454308853 launchID = 2 parent = 15 position = 0.427597045898438,-0.918729782104492,0.42759707570076 rotation = -3.640522E-07,0.9238797,-1.677273E-07,0.3826835 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 17 sym = 19 sym = 20 srfN = srfAttach, 15 mass = 0.025 temp = 305.853454507847 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (-0.6968093, -0.1202697, 0.1202278, 0.6968051) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels2 cid = 4292844048 uid = 502310478 mid = 2454308853 launchID = 2 parent = 15 position = 0.42759695649147,-0.918729782104492,-0.42759707570076 rotation = -3.673464E-07,0.9238796,1.612769E-07,-0.3826835 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 17 sym = 18 sym = 20 srfN = srfAttach, 15 mass = 0.025 temp = 305.836229290393 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (-0.6892931, -0.1577083, 0.1576992, 0.6892998) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels2 cid = 4292843932 uid = 2661256438 mid = 2454308853 launchID = 2 parent = 15 position = -0.427597135305405,-0.918729782104492,-0.427597224712372 rotation = -1.725368E-07,0.3826834,3.867105E-07,-0.9238797 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 17 sym = 18 sym = 19 srfN = srfAttach, 15 mass = 0.025 temp = 306.195466087797 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (-0.696794, 0.1202363, -0.120267, 0.6968194) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = strutCube cid = 4292949524 uid = 3394469193 mid = 2454308853 launchID = 2 parent = 2 position = -4.29252899891708E-08,-0.501720428466797,-0.322761297225952 rotation = 0,0.8433915,-0.5372996,0 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 3 sym = 7 sym = 11 srfN = srfAttach, 2 attN = top, 22 attN = None, -1 mass = 0.001 temp = 307.903747732555 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = miniFuelTank cid = 4292949498 uid = 2540794596 mid = 2454308853 launchID = 2 parent = 21 position = -1.29626812395145E-07,-0.414580345153809,-0.509626984596252 rotation = 0,0.8433915,-0.5372996,0 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 4 sym = 8 sym = 12 srfN = None, -1 attN = top, 23 attN = bottom, 21 mass = 0.025 temp = 309.097829381487 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = RTShortDish2 cid = 4292938844 uid = 2758963018 mid = 2454308853 launchID = 2 parent = 22 position = -1.29626911871128E-07,-0.340929985046387,-0.667572617530823 rotation = 5.206745E-09,-0.8433915,0.5372996,-8.17295E-09 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 5 sym = 9 sym = 13 srfN = None, -1 attN = bottom, 22 mass = 0.5 temp = 309.060256704151 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 0.976296007119933 RTOmniRange = 0 RTDishRange = 9E+07 RTAntennaTarget = 2d6a2008-6b5c-48b1-ab50-7567ad27dfb5 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = Kerbin Outpost category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = strutConnector cid = 4292933836 uid = 1450400098 mid = 2454308853 launchID = 2 parent = 22 position = 0.301624566316605,-0.411379814147949,-0.501181423664093 rotation = 1.896608E-07,0.8433914,-0.5372997,2.528811E-07 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 6 sym = 10 sym = 14 srfN = srfAttach, 22 mass = 0.05 temp = 309.171795592405 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutConnector modCost = 0 EVENTS { } ACTIONS { } PARTDATA { tgt = 4292949558 pos = -0.2112758,-0.177849,-0.09079277 rot = -2.626155E-15,-0.298836,0.6408562,0.7071073 dir = -0.7267632,-0.6117792,-0.3123161 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { name = solarPanels5 cid = 4292923810 uid = 3021979222 mid = 2454308853 launchID = 2 parent = 0 position = 0.243000000715256,0.123909950256348,-0.243000000715256 rotation = 0.6272115,0.6743798,0.3265054,0.2126309 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 26 sym = 27 sym = 28 srfN = srfAttach, 0 mass = 0.005 temp = 305.677612768497 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292922298 uid = 2926979304 mid = 2454308853 launchID = 2 parent = 0 position = -0.242999896407127,0.123909950256348,-0.243000000715256 rotation = 0.6743797,0.6272113,-0.2126313,-0.3265058 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 25 sym = 27 sym = 28 srfN = srfAttach, 0 mass = 0.005 temp = 305.716230695931 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292922266 uid = 3455448086 mid = 2454308853 launchID = 2 parent = 0 position = -0.243000000715256,0.123909950256348,0.243000000715256 rotation = 0.3265054,0.2126309,-0.6272115,-0.6743798 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 25 sym = 26 sym = 28 srfN = srfAttach, 0 mass = 0.005 temp = 305.757582082096 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292922234 uid = 1394669466 mid = 2454308853 launchID = 2 parent = 0 position = 0.243000000715256,0.123909950256348,0.243000000715256 rotation = -0.2126313,-0.3265058,-0.6743797,-0.6272113 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 25 sym = 26 sym = 27 srfN = srfAttach, 0 mass = 0.005 temp = 305.787607910388 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = batteryBankMini cid = 4292913722 uid = 948402321 mid = 2454308853 launchID = 2 parent = 0 position = 0,0.287079811096191,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 38 attN = bottom, 0 mass = 0.01 temp = 307.062733067022 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 196.349800016164 maxAmount = 200 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryPack cid = 4292910914 uid = 786558213 mid = 2454308853 launchID = 2 parent = 29 position = -1.22532601419019E-15,0.128359794616699,0.311303108930588 rotation = 3.387644E-15,1,-2.277331E-07,1.48755E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 31 sym = 32 sym = 33 srfN = srfAttach, 29 mass = 0.005 temp = 305.572853133333 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 96.3498000161554 maxAmount = 100 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryPack cid = 4292910132 uid = 485725775 mid = 2454308853 launchID = 2 parent = 29 position = 0.311303108930588,0.128359794616699,1.85551094489256E-08 rotation = -1.610317E-07,0.7071068,-1.610317E-07,-0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 30 sym = 32 sym = 33 srfN = srfAttach, 29 mass = 0.005 temp = 305.623220772642 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 96.3498000161554 maxAmount = 100 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryPack cid = 4292910092 uid = 468393208 mid = 2454308853 launchID = 2 parent = 29 position = -2.72149804914079E-08,0.128359794616699,-0.311303108930588 rotation = -2.277331E-07,-2.883589E-08,6.566887E-15,-1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 30 sym = 31 sym = 33 srfN = srfAttach, 29 mass = 0.005 temp = 305.58765796778 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 96.3498000161554 maxAmount = 100 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryPack cid = 4292910052 uid = 2332772744 mid = 2454308853 launchID = 2 parent = 29 position = -0.311303108930588,0.128359794616699,1.85551094489256E-08 rotation = -1.610317E-07,-0.7071068,1.610317E-07,-0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 30 sym = 31 sym = 32 srfN = srfAttach, 29 mass = 0.005 temp = 305.971832052316 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 96.3498000161554 maxAmount = 100 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = solarPanels5 cid = 4292842198 uid = 3750678605 mid = 2454308853 launchID = 2 parent = 29 position = -0.233706101775169,0.380829811096191,0.172279193997383 rotation = -0.707107,0,0,0.7071066 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 35 sym = 36 sym = 37 srfN = srfAttach, 29 mass = 0.005 temp = 306.206215977167 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292841952 uid = 1924278344 mid = 2454308853 launchID = 2 parent = 29 position = 0.172279104590416,0.380829811096191,0.233706101775169 rotation = -0.5000002,0.4999999,0.5000002,0.4999999 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 34 sym = 36 sym = 37 srfN = srfAttach, 29 mass = 0.005 temp = 306.192361144309 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292841920 uid = 213313766 mid = 2454308853 launchID = 2 parent = 29 position = 0.233705997467041,0.380829811096191,-0.172279193997383 rotation = 3.090863E-08,0.7071066,0.707107,-3.090861E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 34 sym = 35 sym = 37 srfN = srfAttach, 29 mass = 0.005 temp = 306.19894802632 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292841888 uid = 1658660986 mid = 2454308853 launchID = 2 parent = 29 position = -0.172279193997383,0.380829811096191,-0.233705997467041 rotation = 0.5000002,0.4999999,0.5000002,-0.4999999 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 34 sym = 35 sym = 36 srfN = srfAttach, 29 mass = 0.005 temp = 306.192414209773 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = longAntenna cid = 4292805876 uid = 224981268 mid = 2454308853 launchID = 2 parent = 29 position = 0,0.387080192565918,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = bottom, 29 mass = 0.005 temp = 308.419141193512 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = longAntenna modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0.9942412 animSpeed = 1 EVENTS { Toggle { active = False guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 2500000 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = RTLongAntenna2 cid = 4292803458 uid = 2231548577 mid = 2454308853 launchID = 2 parent = 29 position = 0.213477805256844,0.339059829711914,0.213477805256844 rotation = 0.6532814,0.2705981,-0.270598,0.6532816 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 40 sym = 41 sym = 42 srfN = srfAttach, 29 attN = None, -1 mass = 0.01 temp = 308.858887980192 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = RTLongAntenna2 cid = 4292800282 uid = 243265599 mid = 2454308853 launchID = 2 parent = 29 position = 0.213477805256844,0.339059829711914,-0.213477805256844 rotation = 0.270598,0.6532816,-0.6532815,0.2705981 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 39 sym = 41 sym = 42 srfN = srfAttach, 29 attN = None, -1 mass = 0.01 temp = 308.863561945613 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = RTLongAntenna2 cid = 4292800208 uid = 810456448 mid = 2454308853 launchID = 2 parent = 29 position = -0.213477894663811,0.339059829711914,-0.213477805256844 rotation = -0.2705981,0.6532816,-0.6532814,-0.2705981 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 39 sym = 40 sym = 42 srfN = srfAttach, 29 attN = None, -1 mass = 0.01 temp = 308.924216235608 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = RTLongAntenna2 cid = 4292800134 uid = 1367055892 mid = 2454308853 launchID = 2 parent = 29 position = -0.213477805256844,0.339059829711914,0.213477805256844 rotation = -0.6532815,0.2705981,-0.270598,-0.6532816 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 39 sym = 40 sym = 41 srfN = srfAttach, 29 attN = None, -1 mass = 0.01 temp = 308.840758521316 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0.9906955 animSpeed = 1 EVENTS { Toggle { active = False guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True EVENTS { } ACTIONS { } } } ACTIONGROUPS { Stage = False, 0 Gear = True, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0.004725753 yaw = -0.001691469 roll = 0.0001050606 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } } VESSEL { pid = fd099eaf782844119d8268102af5bc36 name = KEO Sat 3 type = Probe sit = ORBITING landed = False landedAt = splashed = False met = 149192.27034771 lct = 23038.4447509774 root = 0 lat = 4.48202171774955E-06 lon = 292.9917448173 alt = 1999975.40330184 hgt = -1 nrm = -3.516241E-05,0.9999987,0.001692126 rot = 0.4748122,-0.2979991,0.5242337,-0.6410376 CoM = -0.000121204,-0.4304466,-0.0003978928 stg = 1 prst = False ref = 16803405 ctrl = True cPch = cHdg = cMod = 0 ORBIT { SMA = 2599997.97652601 ECC = 1.23324060365751E-05 INC = 8.91365855609682E-06 LPE = 74.3283410071744 LAN = 343.344867142295 MNA = 5.51251151469166 EPH = 172230.715098687 REF = 1 } PART { name = probeCoreOcto cid = 4292954960 uid = 16803405 mid = 818507453 launchID = 3 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = bottom, 1 attN = top, 29 mass = 0.1 temp = 287.733671507167 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = probeCoreOcto (KEO Sat 3) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True controlSrcStatusText = Operational EVENTS { MakeReference { active = True guiActive = True guiIcon = Control From Here guiName = Control From Here category = Control From Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } RenameVessel { active = True guiActive = True guiIcon = Rename Vessel guiName = Rename Vessel category = Rename Vessel guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleReactionWheel isEnabled = True stateString = Running WheelState = Active EVENTS { OnToggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle Torque guiName = Toggle Torque category = Toggle Torque guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True standaloneToggle_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = RadialPlus Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 172230.715098687 ExtraDelay = 0 CmdGuid = 4002d623-d4d4-42da-b14d-341f500b538e } } Commands { } } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 EVENTS { } ACTIONS { } } MODULE { name = ModuleTripLogger isEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } } RESOURCE { name = ElectricCharge amount = 9.99756666668691 maxAmount = 10 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = toroidalFuelTank cid = 4292997758 uid = 3698707295 mid = 818507453 launchID = 3 parent = 0 position = 0,-0.236940383911133,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 0 attN = bottom, 2 mass = 0.0375 temp = 287.691988959661 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = toroidalFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 27 maxAmount = 27 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 33 maxAmount = 33 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = miniFuelTank cid = 4292966554 uid = 1480514150 mid = 818507453 launchID = 3 parent = 1 position = 0,-0.461079597473145,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 1 attN = bottom, 15 mass = 0.025 temp = 287.689120258678 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = strutCube cid = 4292988880 uid = 493721094 mid = 818507453 launchID = 3 parent = 2 position = -0.322761207818985,-0.501720428466797,2.36872192971305E-08 rotation = -0.3799282,0.5963678,-0.3799282,-0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 7 sym = 11 sym = 21 srfN = srfAttach, 2 attN = top, 4 attN = None, -1 mass = 0.001 temp = 288.63636191127 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = miniFuelTank cid = 4292981632 uid = 963789478 mid = 818507453 launchID = 3 parent = 3 position = -0.509626984596252,-0.414580345153809,1.21527151009104E-07 rotation = -0.3799282,0.5963678,-0.3799282,-0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 8 sym = 12 sym = 22 srfN = None, -1 attN = top, 5 attN = bottom, 3 mass = 0.025 temp = 287.733372180589 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = RTShortDish2 cid = 4292938924 uid = 2075082110 mid = 818507453 launchID = 3 parent = 4 position = -0.667572617530823,-0.340929985046387,1.60908101065615E-07 rotation = 0.3799282,-0.5963678,0.3799282,0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 9 sym = 13 sym = 23 srfN = None, -1 attN = bottom, 4 mass = 0.5 temp = 287.7322107946 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 0.976296007119933 RTOmniRange = 0 RTDishRange = 9E+07 RTAntennaTarget = 2d6a2008-6b5c-48b1-ab50-7567ad27dfb5 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = Kerbin Outpost category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = strutConnector cid = 4292934616 uid = 3014373554 mid = 818507453 launchID = 3 parent = 4 position = -0.501181423664093,-0.411379814147949,-0.301624417304993 rotation = -0.3799281,0.596368,-0.3799284,-0.5963677 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 10 sym = 14 sym = 24 srfN = srfAttach, 4 mass = 0.05 temp = 287.595697631233 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutConnector modCost = 0 EVENTS { } ACTIONS { } PARTDATA { tgt = 4292949498 pos = -0.211275,-0.1778487,-0.09079259 rot = 2.065939E-16,-0.2988362,0.6408563,0.7071071 dir = -0.7267627,-0.6117797,-0.3123165 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { name = strutCube cid = 4292949644 uid = 277044067 mid = 818507453 launchID = 3 parent = 2 position = 7.11419829713122E-08,-0.501720428466797,0.322761297225952 rotation = -0.5372996,-3.686581E-08,2.348611E-08,-0.8433915 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 3 sym = 11 sym = 21 srfN = srfAttach, 2 attN = top, 8 attN = None, -1 mass = 0.001 temp = 288.746629045681 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = miniFuelTank cid = 4292949618 uid = 3159687721 mid = 818507453 launchID = 3 parent = 7 position = 1.74179803025254E-07,-0.414580345153809,0.509626984596252 rotation = -0.5372996,-3.686581E-08,2.348611E-08,-0.8433915 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 4 sym = 12 sym = 22 srfN = None, -1 attN = top, 9 attN = bottom, 7 mass = 0.025 temp = 287.72279587532 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = RTShortDish2 cid = 4292939956 uid = 977881000 mid = 818507453 launchID = 3 parent = 8 position = 1.87987794220135E-07,-0.340929985046387,0.667572617530823 rotation = 0.5372996,2.869286E-08,-2.869286E-08,0.8433915 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 5 sym = 13 sym = 23 srfN = None, -1 attN = bottom, 8 mass = 0.5 temp = 287.713776441917 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 0.976296007119933 RTOmniRange = 0 RTDishRange = 0 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = strutConnector cid = 4292933968 uid = 1973695662 mid = 818507453 launchID = 3 parent = 8 position = -0.301624298095703,-0.411379814147949,0.501181483268738 rotation = -0.5372997,2.160153E-07,-1.661747E-07,-0.8433914 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 6 sym = 14 sym = 24 srfN = srfAttach, 8 mass = 0.05 temp = 287.594604495198 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutConnector modCost = 0 EVENTS { } ACTIONS { } PARTDATA { tgt = 4292981632 pos = -0.2112749,-0.1778492,-0.09079282 rot = -7.616486E-16,-0.2988361,0.6408566,0.7071068 dir = -0.7267615,-0.6117809,-0.3123169 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { name = strutCube cid = 4292949584 uid = 1120277195 mid = 818507453 launchID = 3 parent = 2 position = 0.322761207818985,-0.501720428466797,-6.21633589048542E-08 rotation = -0.3799282,-0.5963678,0.3799282,-0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 3 sym = 7 sym = 21 srfN = srfAttach, 2 attN = top, 12 attN = None, -1 mass = 0.001 temp = 288.226391970613 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = miniFuelTank cid = 4292949558 uid = 289157856 mid = 818507453 launchID = 3 parent = 11 position = 0.509627044200897,-0.414580345153809,-1.14955746255418E-07 rotation = -0.3799282,-0.5963678,0.3799282,-0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 4 sym = 8 sym = 22 srfN = None, -1 attN = top, 13 attN = bottom, 11 mass = 0.025 temp = 287.702469810346 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = RTShortDish2 cid = 4292938884 uid = 218636803 mid = 818507453 launchID = 3 parent = 12 position = 0.667572677135468,-0.340929985046387,-7.55748388314714E-08 rotation = 0.3799282,0.5963678,-0.3799282,0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 5 sym = 9 sym = 23 srfN = None, -1 attN = bottom, 12 mass = 0.5 temp = 287.700002477741 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 0.976296007119933 RTOmniRange = 0 RTDishRange = 0 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = strutConnector cid = 4292933902 uid = 604915771 mid = 818507453 launchID = 3 parent = 12 position = 0.501181483268738,-0.411379814147949,0.301624476909637 rotation = -0.3799284,-0.5963677,0.3799281,-0.596368 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 6 sym = 10 sym = 24 srfN = srfAttach, 12 mass = 0.05 temp = 287.593203019163 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutConnector modCost = 0 EVENTS { } ACTIONS { } PARTDATA { tgt = 4292949618 pos = -0.2112752,-0.1778487,-0.09079367 rot = 5.692113E-16,-0.2988362,0.6408563,0.7071072 dir = -0.7267621,-0.6117787,-0.3123197 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { name = fuelTankSmallFlat cid = 4292880082 uid = 2151024596 mid = 818507453 launchID = 3 parent = 11 position = -5.96046447753906E-08,-0.947850227355957,-1.05623485069373E-07 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 11 attN = bottom, 16 mass = 0.0625 temp = 287.933698768592 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = fuelTankSmallFlat modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 45 maxAmount = 45 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 55 maxAmount = 55 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = liquidEngineMini cid = 4292971228 uid = 1269881667 mid = 818507453 launchID = 3 parent = 15 position = 1.19209289550781E-07,-1.26035022735596,-2.5900061473294E-07 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 15 attN = None, -1 mass = 0.1 temp = 287.905565427667 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = liquidEngineMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnginesFX isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = None } } } MODULE { name = ModuleJettison isEnabled = True isJettisoned = True EVENTS { Jettison { active = False guiActive = True guiIcon = Jettison guiName = Jettison category = Jettison guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { JettisonAction { actionGroup = None } } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 gimbalLock_UIFlight { controlEnabled = True } gimbalLimiter_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 1 } EVENTS { } ACTIONS { ToggleAction { actionGroup = None } LockAction { actionGroup = None } FreeAction { actionGroup = None } } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } } PART { name = solarPanels2 cid = 4292845444 uid = 2200341591 mid = 818507453 launchID = 3 parent = 15 position = -0.427597016096115,-0.918729782104492,0.427596807479858 rotation = -1.514694E-07,0.3826835,-4.011894E-07,0.9238796 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 18 sym = 19 sym = 20 srfN = srfAttach, 15 mass = 0.025 temp = 288.618771905465 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0.7010034, 0.09271815, -0.09271488, -0.7010004) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels2 cid = 4292844164 uid = 2815096936 mid = 818507453 launchID = 3 parent = 15 position = 0.427597045898438,-0.918729782104492,0.42759707570076 rotation = -3.640522E-07,0.9238797,-1.677273E-07,0.3826835 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 17 sym = 19 sym = 20 srfN = srfAttach, 15 mass = 0.025 temp = 288.637225895229 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0.7029233, -0.0767791, 0.07676556, -0.7029303) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels2 cid = 4292844048 uid = 3261946748 mid = 818507453 launchID = 3 parent = 15 position = 0.42759695649147,-0.918729782104492,-0.42759707570076 rotation = -3.673464E-07,0.9238796,1.612769E-07,-0.3826835 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 17 sym = 18 sym = 20 srfN = srfAttach, 15 mass = 0.025 temp = 288.609887341042 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0.7009995, -0.09271555, 0.09271727, -0.7010044) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels2 cid = 4292843932 uid = 159508126 mid = 818507453 launchID = 3 parent = 15 position = -0.427597135305405,-0.918729782104492,-0.427597224712372 rotation = -1.725368E-07,0.3826834,3.867105E-07,-0.9238797 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 17 sym = 18 sym = 19 srfN = srfAttach, 15 mass = 0.025 temp = 288.80487268474 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0.7029245, 0.07676024, -0.07678454, -0.7029291) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = strutCube cid = 4292949524 uid = 546441977 mid = 818507453 launchID = 3 parent = 2 position = -4.29252899891708E-08,-0.501720428466797,-0.322761297225952 rotation = 0,0.8433915,-0.5372996,0 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 3 sym = 7 sym = 11 srfN = srfAttach, 2 attN = top, 22 attN = None, -1 mass = 0.001 temp = 288.821227366383 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = miniFuelTank cid = 4292949498 uid = 2018411522 mid = 818507453 launchID = 3 parent = 21 position = -1.29626812395145E-07,-0.414580345153809,-0.509626984596252 rotation = 0,0.8433915,-0.5372996,0 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 4 sym = 8 sym = 12 srfN = None, -1 attN = top, 23 attN = bottom, 21 mass = 0.025 temp = 287.706923922453 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = RTShortDish2 cid = 4292938844 uid = 558693946 mid = 818507453 launchID = 3 parent = 22 position = -1.29626911871128E-07,-0.340929985046387,-0.667572617530823 rotation = 5.206745E-09,-0.8433915,0.5372996,-8.17295E-09 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 5 sym = 9 sym = 13 srfN = None, -1 attN = bottom, 22 mass = 0.5 temp = 287.708728293182 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 0.976296007119933 RTOmniRange = 0 RTDishRange = 0 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = strutConnector cid = 4292933836 uid = 3904328451 mid = 818507453 launchID = 3 parent = 22 position = 0.301624566316605,-0.411379814147949,-0.501181423664093 rotation = 1.896608E-07,0.8433914,-0.5372997,2.528811E-07 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 6 sym = 10 sym = 14 srfN = srfAttach, 22 mass = 0.05 temp = 287.593996212898 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutConnector modCost = 0 EVENTS { } ACTIONS { } PARTDATA { tgt = 4292949558 pos = -0.2112758,-0.177849,-0.09079277 rot = -2.626155E-15,-0.298836,0.6408562,0.7071073 dir = -0.7267632,-0.6117792,-0.3123161 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { name = solarPanels5 cid = 4292923810 uid = 3218587884 mid = 818507453 launchID = 3 parent = 0 position = 0.243000000715256,0.123909950256348,-0.243000000715256 rotation = 0.6272115,0.6743798,0.3265054,0.2126309 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 26 sym = 27 sym = 28 srfN = srfAttach, 0 mass = 0.005 temp = 287.635794683952 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292922298 uid = 836264375 mid = 818507453 launchID = 3 parent = 0 position = -0.242999896407127,0.123909950256348,-0.243000000715256 rotation = 0.6743797,0.6272113,-0.2126313,-0.3265058 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 25 sym = 27 sym = 28 srfN = srfAttach, 0 mass = 0.005 temp = 287.754305479406 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292922266 uid = 281381369 mid = 818507453 launchID = 3 parent = 0 position = -0.243000000715256,0.123909950256348,0.243000000715256 rotation = 0.3265054,0.2126309,-0.6272115,-0.6743798 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 25 sym = 26 sym = 28 srfN = srfAttach, 0 mass = 0.005 temp = 287.650971980964 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292922234 uid = 1660771503 mid = 818507453 launchID = 3 parent = 0 position = 0.243000000715256,0.123909950256348,0.243000000715256 rotation = -0.2126313,-0.3265058,-0.6743797,-0.6272113 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 25 sym = 26 sym = 27 srfN = srfAttach, 0 mass = 0.005 temp = 287.63810973328 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = batteryBankMini cid = 4292913722 uid = 3973868780 mid = 818507453 launchID = 3 parent = 0 position = 0,0.287079811096191,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 38 attN = bottom, 0 mass = 0.01 temp = 288.396890671526 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 199.997566666687 maxAmount = 200 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryPack cid = 4292910914 uid = 3829831895 mid = 818507453 launchID = 3 parent = 29 position = -1.22532601419019E-15,0.128359794616699,0.311303108930588 rotation = 3.387644E-15,1,-2.277331E-07,1.48755E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 31 sym = 32 sym = 33 srfN = srfAttach, 29 mass = 0.005 temp = 288.685509852197 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 99.9975666666869 maxAmount = 100 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryPack cid = 4292910132 uid = 1614674427 mid = 818507453 launchID = 3 parent = 29 position = 0.311303108930588,0.128359794616699,1.85551094489256E-08 rotation = -1.610317E-07,0.7071068,-1.610317E-07,-0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 30 sym = 32 sym = 33 srfN = srfAttach, 29 mass = 0.005 temp = 288.620489780937 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 99.9975666666869 maxAmount = 100 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryPack cid = 4292910092 uid = 1811282811 mid = 818507453 launchID = 3 parent = 29 position = -2.72149804914079E-08,0.128359794616699,-0.311303108930588 rotation = -2.277331E-07,-2.883589E-08,6.566887E-15,-1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 30 sym = 31 sym = 33 srfN = srfAttach, 29 mass = 0.005 temp = 288.642033331267 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 99.9975666666869 maxAmount = 100 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryPack cid = 4292910052 uid = 1479503411 mid = 818507453 launchID = 3 parent = 29 position = -0.311303108930588,0.128359794616699,1.85551094489256E-08 rotation = -1.610317E-07,-0.7071068,1.610317E-07,-0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 30 sym = 31 sym = 32 srfN = srfAttach, 29 mass = 0.005 temp = 288.834389271721 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 99.9975666666869 maxAmount = 100 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = solarPanels5 cid = 4292842198 uid = 464728523 mid = 818507453 launchID = 3 parent = 29 position = -0.233706101775169,0.380829811096191,0.172279193997383 rotation = -0.707107,0,0,0.7071066 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 35 sym = 36 sym = 37 srfN = srfAttach, 29 mass = 0.005 temp = 288.753578541549 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292841952 uid = 1581988237 mid = 818507453 launchID = 3 parent = 29 position = 0.172279104590416,0.380829811096191,0.233706101775169 rotation = -0.5000002,0.4999999,0.5000002,0.4999999 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 34 sym = 36 sym = 37 srfN = srfAttach, 29 mass = 0.005 temp = 288.757419172294 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292841920 uid = 802681329 mid = 818507453 launchID = 3 parent = 29 position = 0.233705997467041,0.380829811096191,-0.172279193997383 rotation = 3.090863E-08,0.7071066,0.707107,-3.090861E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 34 sym = 35 sym = 37 srfN = srfAttach, 29 mass = 0.005 temp = 288.751650013712 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292841888 uid = 4199707549 mid = 818507453 launchID = 3 parent = 29 position = -0.172279193997383,0.380829811096191,-0.233705997467041 rotation = 0.5000002,0.4999999,0.5000002,-0.4999999 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 34 sym = 35 sym = 36 srfN = srfAttach, 29 mass = 0.005 temp = 288.747671424198 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = longAntenna cid = 4292805876 uid = 2846388767 mid = 818507453 launchID = 3 parent = 29 position = 0,0.387080192565918,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = bottom, 29 mass = 0.005 temp = 289.023207125944 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = longAntenna modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0.9900246 animSpeed = 1 EVENTS { Toggle { active = False guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 2500000 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True EVENTS { } ACTIONS { } } } PART { name = RTLongAntenna2 cid = 4292803458 uid = 1879667391 mid = 818507453 launchID = 3 parent = 29 position = 0.213477805256844,0.339059829711914,0.213477805256844 rotation = 0.6532814,0.2705981,-0.270598,0.6532816 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 40 sym = 41 sym = 42 srfN = srfAttach, 29 attN = None, -1 mass = 0.01 temp = 288.194404292266 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = RTLongAntenna2 cid = 4292800282 uid = 2256259813 mid = 818507453 launchID = 3 parent = 29 position = 0.213477805256844,0.339059829711914,-0.213477805256844 rotation = 0.270598,0.6532816,-0.6532815,0.2705981 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 39 sym = 41 sym = 42 srfN = srfAttach, 29 attN = None, -1 mass = 0.01 temp = 288.119342532427 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = RTLongAntenna2 cid = 4292800208 uid = 1789509004 mid = 818507453 launchID = 3 parent = 29 position = -0.213477894663811,0.339059829711914,-0.213477805256844 rotation = -0.2705981,0.6532816,-0.6532814,-0.2705981 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 39 sym = 40 sym = 42 srfN = srfAttach, 29 attN = None, -1 mass = 0.01 temp = 288.157058757067 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = RTLongAntenna2 cid = 4292800134 uid = 1681715160 mid = 818507453 launchID = 3 parent = 29 position = -0.213477805256844,0.339059829711914,0.213477805256844 rotation = -0.6532815,0.2705981,-0.270598,-0.6532816 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 39 sym = 40 sym = 41 srfN = srfAttach, 29 attN = None, -1 mass = 0.01 temp = 288.18004648963 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0.9956713 animSpeed = 1 EVENTS { Toggle { active = False guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True EVENTS { } ACTIONS { } } } ACTIONGROUPS { Stage = False, 0 Gear = True, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0.000595343 yaw = 0.002967498 roll = -0.001533251 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } } VESSEL { pid = dd390cd2f4934da8b7786b04df689c94 name = KEO Sat 4 type = Probe sit = ORBITING landed = False landedAt = splashed = False met = 149035.490347694 lct = 23218.5447509813 root = 0 lat = -2.5200842706914E-06 lon = 205.859809168331 alt = 1999993.26062366 hgt = -1 nrm = -1.640766E-05,1,3.043219E-07 rot = -0.6786948,0.5241687,0.1984387,0.4745975 CoM = -0.0005885356,-0.4303089,-0.0003569493 stg = 1 prst = False ref = 1360529449 ctrl = True cPch = cHdg = cMod = 0 ORBIT { SMA = 2600005.0258844 ECC = 5.56617154982431E-06 INC = 4.67631085055434E-06 LPE = 180.399985126326 LAN = 73.7989752459279 MNA = 0.568511294974712 EPH = 172254.035098675 REF = 1 } PART { name = probeCoreOcto cid = 4292954960 uid = 1360529449 mid = 3385413397 launchID = 4 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = bottom, 1 attN = top, 29 mass = 0.1 temp = 287.87924592167 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = probeCoreOcto (KEO Sat 4) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True controlSrcStatusText = Operational EVENTS { MakeReference { active = True guiActive = True guiIcon = Control From Here guiName = Control From Here category = Control From Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } RenameVessel { active = True guiActive = True guiIcon = Rename Vessel guiName = Rename Vessel category = Rename Vessel guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleReactionWheel isEnabled = True stateString = Running WheelState = Active EVENTS { OnToggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle Torque guiName = Toggle Torque category = Toggle Torque guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True standaloneToggle_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = RadialPlus Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 172254.035098675 ExtraDelay = 0 CmdGuid = bdc8c4ec-a176-44b1-98e3-40610af97520 } } Commands { } } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 EVENTS { } ACTIONS { } } MODULE { name = ModuleTripLogger isEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } } RESOURCE { name = ElectricCharge amount = 9.99756666668691 maxAmount = 10 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = toroidalFuelTank cid = 4292997758 uid = 3502633481 mid = 3385413397 launchID = 4 parent = 0 position = 0,-0.236940383911133,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 0 attN = bottom, 2 mass = 0.0375 temp = 287.743119103316 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = toroidalFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 27 maxAmount = 27 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 33 maxAmount = 33 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = miniFuelTank cid = 4292966554 uid = 4107871904 mid = 3385413397 launchID = 4 parent = 1 position = 0,-0.461079597473145,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 1 attN = bottom, 15 mass = 0.025 temp = 287.738537744328 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = strutCube cid = 4292988880 uid = 1031803058 mid = 3385413397 launchID = 4 parent = 2 position = -0.322761207818985,-0.501720428466797,2.36872192971305E-08 rotation = -0.3799282,0.5963678,-0.3799282,-0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 7 sym = 11 sym = 21 srfN = srfAttach, 2 attN = top, 4 attN = None, -1 mass = 0.001 temp = 289.530571687692 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = miniFuelTank cid = 4292981632 uid = 1175566125 mid = 3385413397 launchID = 4 parent = 3 position = -0.509626984596252,-0.414580345153809,1.21527151009104E-07 rotation = -0.3799282,0.5963678,-0.3799282,-0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 8 sym = 12 sym = 22 srfN = None, -1 attN = top, 5 attN = bottom, 3 mass = 0.025 temp = 287.79908580456 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = RTShortDish2 cid = 4292938924 uid = 1264572367 mid = 3385413397 launchID = 4 parent = 4 position = -0.667572617530823,-0.340929985046387,1.60908101065615E-07 rotation = 0.3799282,-0.5963678,0.3799282,0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 9 sym = 13 sym = 23 srfN = None, -1 attN = bottom, 4 mass = 0.5 temp = 287.798154787009 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 0.976296007119933 RTOmniRange = 0 RTDishRange = 0 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = strutConnector cid = 4292934616 uid = 3750977192 mid = 3385413397 launchID = 4 parent = 4 position = -0.501181423664093,-0.411379814147949,-0.301624417304993 rotation = -0.3799281,0.596368,-0.3799284,-0.5963677 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 10 sym = 14 sym = 24 srfN = srfAttach, 4 mass = 0.05 temp = 287.60116650547 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutConnector modCost = 0 EVENTS { } ACTIONS { } PARTDATA { tgt = 4292949498 pos = -0.211275,-0.1778487,-0.09079259 rot = 2.065939E-16,-0.2988362,0.6408563,0.7071071 dir = -0.7267627,-0.6117797,-0.3123165 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { name = strutCube cid = 4292949644 uid = 3957401990 mid = 3385413397 launchID = 4 parent = 2 position = 7.11419829713122E-08,-0.501720428466797,0.322761297225952 rotation = -0.5372996,-3.686581E-08,2.348611E-08,-0.8433915 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 3 sym = 11 sym = 21 srfN = srfAttach, 2 attN = top, 8 attN = None, -1 mass = 0.001 temp = 289.791902705818 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = miniFuelTank cid = 4292949618 uid = 1283523418 mid = 3385413397 launchID = 4 parent = 7 position = 1.74179803025254E-07,-0.414580345153809,0.509626984596252 rotation = -0.5372996,-3.686581E-08,2.348611E-08,-0.8433915 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 4 sym = 12 sym = 22 srfN = None, -1 attN = top, 9 attN = bottom, 7 mass = 0.025 temp = 287.763176007342 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = RTShortDish2 cid = 4292939956 uid = 3852776203 mid = 3385413397 launchID = 4 parent = 8 position = 1.87987794220135E-07,-0.340929985046387,0.667572617530823 rotation = 0.5372996,2.869286E-08,-2.869286E-08,0.8433915 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 5 sym = 13 sym = 23 srfN = None, -1 attN = bottom, 8 mass = 0.5 temp = 287.762368304177 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 0.976296007119933 RTOmniRange = 0 RTDishRange = 0 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = strutConnector cid = 4292933968 uid = 3566695414 mid = 3385413397 launchID = 4 parent = 8 position = -0.301624298095703,-0.411379814147949,0.501181483268738 rotation = -0.5372997,2.160153E-07,-1.661747E-07,-0.8433914 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 6 sym = 14 sym = 24 srfN = srfAttach, 8 mass = 0.05 temp = 287.599534793487 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutConnector modCost = 0 EVENTS { } ACTIONS { } PARTDATA { tgt = 4292981632 pos = -0.2112749,-0.1778492,-0.09079282 rot = -7.616486E-16,-0.2988361,0.6408566,0.7071068 dir = -0.7267615,-0.6117809,-0.3123169 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { name = strutCube cid = 4292949584 uid = 2001505745 mid = 3385413397 launchID = 4 parent = 2 position = 0.322761207818985,-0.501720428466797,-6.21633589048542E-08 rotation = -0.3799282,-0.5963678,0.3799282,-0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 3 sym = 7 sym = 21 srfN = srfAttach, 2 attN = top, 12 attN = None, -1 mass = 0.001 temp = 289.141148977088 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = miniFuelTank cid = 4292949558 uid = 2116171602 mid = 3385413397 launchID = 4 parent = 11 position = 0.509627044200897,-0.414580345153809,-1.14955746255418E-07 rotation = -0.3799282,-0.5963678,0.3799282,-0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 4 sym = 8 sym = 22 srfN = None, -1 attN = top, 13 attN = bottom, 11 mass = 0.025 temp = 287.74190143758 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = RTShortDish2 cid = 4292938884 uid = 996922131 mid = 3385413397 launchID = 4 parent = 12 position = 0.667572677135468,-0.340929985046387,-7.55748388314714E-08 rotation = 0.3799282,0.5963678,-0.3799282,0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 5 sym = 9 sym = 23 srfN = None, -1 attN = bottom, 12 mass = 0.5 temp = 287.745413503823 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 0.976296007119933 RTOmniRange = 0 RTDishRange = 9E+07 RTAntennaTarget = 2d6a2008-6b5c-48b1-ab50-7567ad27dfb5 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = Kerbin Outpost category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = strutConnector cid = 4292933902 uid = 3932007033 mid = 3385413397 launchID = 4 parent = 12 position = 0.501181483268738,-0.411379814147949,0.301624476909637 rotation = -0.3799284,-0.5963677,0.3799281,-0.596368 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 6 sym = 10 sym = 24 srfN = srfAttach, 12 mass = 0.05 temp = 287.598344757016 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutConnector modCost = 0 EVENTS { } ACTIONS { } PARTDATA { tgt = 4292949618 pos = -0.2112752,-0.1778487,-0.09079367 rot = 5.692113E-16,-0.2988362,0.6408563,0.7071072 dir = -0.7267621,-0.6117787,-0.3123197 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { name = fuelTankSmallFlat cid = 4292880082 uid = 175644512 mid = 3385413397 launchID = 4 parent = 11 position = -5.96046447753906E-08,-0.947850227355957,-1.05623485069373E-07 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 11 attN = bottom, 16 mass = 0.0625 temp = 287.921279288891 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = fuelTankSmallFlat modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 45 maxAmount = 45 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 55 maxAmount = 55 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = liquidEngineMini cid = 4292971228 uid = 476095711 mid = 3385413397 launchID = 4 parent = 15 position = 1.19209289550781E-07,-1.26035022735596,-2.5900061473294E-07 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 15 attN = None, -1 mass = 0.1 temp = 287.905346710311 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = liquidEngineMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnginesFX isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = None } } } MODULE { name = ModuleJettison isEnabled = True isJettisoned = True EVENTS { Jettison { active = False guiActive = True guiIcon = Jettison guiName = Jettison category = Jettison guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { JettisonAction { actionGroup = None } } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 gimbalLock_UIFlight { controlEnabled = True } gimbalLimiter_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 1 } EVENTS { } ACTIONS { ToggleAction { actionGroup = None } LockAction { actionGroup = None } FreeAction { actionGroup = None } } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } } PART { name = solarPanels2 cid = 4292845444 uid = 485719959 mid = 3385413397 launchID = 4 parent = 15 position = -0.427597016096115,-0.918729782104492,0.427596807479858 rotation = -1.514694E-07,0.3826835,-4.011894E-07,0.9238796 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 18 sym = 19 sym = 20 srfN = srfAttach, 15 mass = 0.025 temp = 288.245098230595 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0.5488139, -0.4458666, 0.4458869, -0.5488088) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels2 cid = 4292844164 uid = 1643577684 mid = 3385413397 launchID = 4 parent = 15 position = 0.427597045898438,-0.918729782104492,0.42759707570076 rotation = -3.640522E-07,0.9238797,-1.677273E-07,0.3826835 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 17 sym = 19 sym = 20 srfN = srfAttach, 15 mass = 0.025 temp = 287.754868997456 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (-0.6377279, 0.3054402, -0.3054466, 0.6377397) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels2 cid = 4292844048 uid = 3297504129 mid = 3385413397 launchID = 4 parent = 15 position = 0.42759695649147,-0.918729782104492,-0.42759707570076 rotation = -3.673464E-07,0.9238796,1.612769E-07,-0.3826835 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 17 sym = 18 sym = 20 srfN = srfAttach, 15 mass = 0.025 temp = 288.264467602734 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0.5488105, 0.4458844, -0.4458713, -0.5488105) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels2 cid = 4292843932 uid = 1500342885 mid = 3385413397 launchID = 4 parent = 15 position = -0.427597135305405,-0.918729782104492,-0.427597224712372 rotation = -1.725368E-07,0.3826834,3.867105E-07,-0.9238797 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 17 sym = 18 sym = 19 srfN = srfAttach, 15 mass = 0.025 temp = 288.46044187644 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (-0.637734, -0.3054512, 0.3054427, 0.6377301) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = strutCube cid = 4292949524 uid = 4056937403 mid = 3385413397 launchID = 4 parent = 2 position = -4.29252899891708E-08,-0.501720428466797,-0.322761297225952 rotation = 0,0.8433915,-0.5372996,0 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 3 sym = 7 sym = 11 srfN = srfAttach, 2 attN = top, 22 attN = None, -1 mass = 0.001 temp = 289.890627527077 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = miniFuelTank cid = 4292949498 uid = 2929694457 mid = 3385413397 launchID = 4 parent = 21 position = -1.29626812395145E-07,-0.414580345153809,-0.509626984596252 rotation = 0,0.8433915,-0.5372996,0 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 4 sym = 8 sym = 12 srfN = None, -1 attN = top, 23 attN = bottom, 21 mass = 0.025 temp = 287.762048595499 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = RTShortDish2 cid = 4292938844 uid = 2561830582 mid = 3385413397 launchID = 4 parent = 22 position = -1.29626911871128E-07,-0.340929985046387,-0.667572617530823 rotation = 5.206745E-09,-0.8433915,0.5372996,-8.17295E-09 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 5 sym = 9 sym = 13 srfN = None, -1 attN = bottom, 22 mass = 0.5 temp = 287.756865695229 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 0.976296007119933 RTOmniRange = 0 RTDishRange = 0 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = strutConnector cid = 4292933836 uid = 632846024 mid = 3385413397 launchID = 4 parent = 22 position = 0.301624566316605,-0.411379814147949,-0.501181423664093 rotation = 1.896608E-07,0.8433914,-0.5372997,2.528811E-07 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 6 sym = 10 sym = 14 srfN = srfAttach, 22 mass = 0.05 temp = 287.598806938684 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutConnector modCost = 0 EVENTS { } ACTIONS { } PARTDATA { tgt = 4292949558 pos = -0.2112758,-0.177849,-0.09079277 rot = -2.626155E-15,-0.298836,0.6408562,0.7071073 dir = -0.7267632,-0.6117792,-0.3123161 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { name = solarPanels5 cid = 4292923810 uid = 4050809472 mid = 3385413397 launchID = 4 parent = 0 position = 0.243000000715256,0.123909950256348,-0.243000000715256 rotation = 0.6272115,0.6743798,0.3265054,0.2126309 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 26 sym = 27 sym = 28 srfN = srfAttach, 0 mass = 0.005 temp = 287.948986479714 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292922298 uid = 1927417976 mid = 3385413397 launchID = 4 parent = 0 position = -0.242999896407127,0.123909950256348,-0.243000000715256 rotation = 0.6743797,0.6272113,-0.2126313,-0.3265058 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 25 sym = 27 sym = 28 srfN = srfAttach, 0 mass = 0.005 temp = 288.407873855797 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292922266 uid = 158476941 mid = 3385413397 launchID = 4 parent = 0 position = -0.243000000715256,0.123909950256348,0.243000000715256 rotation = 0.3265054,0.2126309,-0.6272115,-0.6743798 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 25 sym = 26 sym = 28 srfN = srfAttach, 0 mass = 0.005 temp = 288.032768007997 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292922234 uid = 3608989745 mid = 3385413397 launchID = 4 parent = 0 position = 0.243000000715256,0.123909950256348,0.243000000715256 rotation = -0.2126313,-0.3265058,-0.6743797,-0.6272113 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 25 sym = 26 sym = 27 srfN = srfAttach, 0 mass = 0.005 temp = 288.352910485115 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = batteryBankMini cid = 4292913722 uid = 3429523842 mid = 3385413397 launchID = 4 parent = 0 position = 0,0.287079811096191,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 38 attN = bottom, 0 mass = 0.01 temp = 289.055626870378 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 199.997566666687 maxAmount = 200 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryPack cid = 4292910914 uid = 964452715 mid = 3385413397 launchID = 4 parent = 29 position = -1.22532601419019E-15,0.128359794616699,0.311303108930588 rotation = 3.387644E-15,1,-2.277331E-07,1.48755E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 31 sym = 32 sym = 33 srfN = srfAttach, 29 mass = 0.005 temp = 289.862841462676 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 99.9975666666869 maxAmount = 100 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryPack cid = 4292910132 uid = 3227606699 mid = 3385413397 launchID = 4 parent = 29 position = 0.311303108930588,0.128359794616699,1.85551094489256E-08 rotation = -1.610317E-07,0.7071068,-1.610317E-07,-0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 30 sym = 32 sym = 33 srfN = srfAttach, 29 mass = 0.005 temp = 289.700968409028 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 99.9975666666869 maxAmount = 100 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryPack cid = 4292910092 uid = 3912863918 mid = 3385413397 launchID = 4 parent = 29 position = -2.72149804914079E-08,0.128359794616699,-0.311303108930588 rotation = -2.277331E-07,-2.883589E-08,6.566887E-15,-1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 30 sym = 31 sym = 33 srfN = srfAttach, 29 mass = 0.005 temp = 289.751622276145 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 99.9975666666869 maxAmount = 100 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryPack cid = 4292910052 uid = 2694268315 mid = 3385413397 launchID = 4 parent = 29 position = -0.311303108930588,0.128359794616699,1.85551094489256E-08 rotation = -1.610317E-07,-0.7071068,1.610317E-07,-0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 30 sym = 31 sym = 32 srfN = srfAttach, 29 mass = 0.005 temp = 289.997686729743 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 99.9975666666869 maxAmount = 100 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = solarPanels5 cid = 4292842198 uid = 3930138164 mid = 3385413397 launchID = 4 parent = 29 position = -0.233706101775169,0.380829811096191,0.172279193997383 rotation = -0.707107,0,0,0.7071066 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 35 sym = 36 sym = 37 srfN = srfAttach, 29 mass = 0.005 temp = 289.518826203801 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292841952 uid = 3573733307 mid = 3385413397 launchID = 4 parent = 29 position = 0.172279104590416,0.380829811096191,0.233706101775169 rotation = -0.5000002,0.4999999,0.5000002,0.4999999 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 34 sym = 36 sym = 37 srfN = srfAttach, 29 mass = 0.005 temp = 289.474461017557 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292841920 uid = 3265101562 mid = 3385413397 launchID = 4 parent = 29 position = 0.233705997467041,0.380829811096191,-0.172279193997383 rotation = 3.090863E-08,0.7071066,0.707107,-3.090861E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 34 sym = 35 sym = 37 srfN = srfAttach, 29 mass = 0.005 temp = 289.509751305097 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292841888 uid = 2125489598 mid = 3385413397 launchID = 4 parent = 29 position = -0.172279193997383,0.380829811096191,-0.233705997467041 rotation = 0.5000002,0.4999999,0.5000002,-0.4999999 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 34 sym = 35 sym = 36 srfN = srfAttach, 29 mass = 0.005 temp = 289.500841923156 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = longAntenna cid = 4292805876 uid = 1144609785 mid = 3385413397 launchID = 4 parent = 29 position = 0,0.387080192565918,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = bottom, 29 mass = 0.005 temp = 289.359720136988 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = longAntenna modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0.9922996 animSpeed = 1 EVENTS { Toggle { active = False guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 2500000 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = RTLongAntenna2 cid = 4292803458 uid = 3642804550 mid = 3385413397 launchID = 4 parent = 29 position = 0.213477805256844,0.339059829711914,0.213477805256844 rotation = 0.6532814,0.2705981,-0.270598,0.6532816 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 40 sym = 41 sym = 42 srfN = srfAttach, 29 attN = None, -1 mass = 0.01 temp = 288.339091886425 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0.9904647 animSpeed = 1 EVENTS { Toggle { active = False guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True EVENTS { } ACTIONS { } } } PART { name = RTLongAntenna2 cid = 4292800282 uid = 279698153 mid = 3385413397 launchID = 4 parent = 29 position = 0.213477805256844,0.339059829711914,-0.213477805256844 rotation = 0.270598,0.6532816,-0.6532815,0.2705981 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 39 sym = 41 sym = 42 srfN = srfAttach, 29 attN = None, -1 mass = 0.01 temp = 288.386416300929 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = RTLongAntenna2 cid = 4292800208 uid = 4168449910 mid = 3385413397 launchID = 4 parent = 29 position = -0.213477894663811,0.339059829711914,-0.213477805256844 rotation = -0.2705981,0.6532816,-0.6532814,-0.2705981 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 39 sym = 40 sym = 42 srfN = srfAttach, 29 attN = None, -1 mass = 0.01 temp = 288.326920285996 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = RTLongAntenna2 cid = 4292800134 uid = 2483292053 mid = 3385413397 launchID = 4 parent = 29 position = -0.213477805256844,0.339059829711914,0.213477805256844 rotation = -0.6532815,0.2705981,-0.270598,-0.6532816 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 39 sym = 40 sym = 41 srfN = srfAttach, 29 attN = None, -1 mass = 0.01 temp = 288.392517489347 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } ACTIONGROUPS { Stage = False, 0 Gear = True, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0.003098126 yaw = -0.002856341 roll = -0.00087646 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } } VESSEL { pid = e0f90da1fba74f17aa817e56387479f2 name = Ast. HSJ-227 type = SpaceObject sit = ORBITING landed = False landedAt = splashed = False met = 129576.570805695 lct = 129576.570805695 root = 0 lat = -2.85105645411584 lon = 77.1133077766936 alt = 14409265100.2342 hgt = -1 nrm = 0,1,0 rot = -0.2984336,0.402898,-0.8173988,0.283672 CoM = 0,0,0 stg = 0 prst = False ref = 0 ctrl = False ORBIT { SMA = 15189393612.488 ECC = 0.104360237388697 INC = 2.88216986005442 LPE = 355.089034780135 LAN = 266.660346618829 MNA = 0.043042226596414 EPH = 2173162.30688968 REF = 0 } PART { name = PotatoRoid cid = 0 uid = 559298752 mid = 559298752 launchID = 0 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = 0 sepI = 0 sidx = 0 attm = 0 srfN = None, -1 mass = 150 temp = -1 expt = 0.1 state = 0 connected = True attached = True flag = rTrf = modCost = 0 } ACTIONGROUPS { } DISCOVERY { state = 1 lastObservedTime = 129576.570805695 lifetime = 586354.751586914 refTime = 1728000 size = 4 } FLIGHTPLAN { } CTRLSTATE { } } VESSEL { pid = 2d6a20086b5c48b1ab507567ad27dfb5 name = Kerbin Outpost type = Station sit = ORBITING landed = False landedAt = splashed = False met = 44196.3770268421 lct = 129637.110805707 root = 0 lat = -0.00524004713491538 lon = 3.33310005158555 alt = 30006143.4719381 hgt = -1 nrm = 0.2113617,0.01325181,-0.977318 rot = -0.008526683,-0.6503127,-0.001899886,0.7596164 CoM = -0.0002410305,-2.080199,0.001077939 stg = 1 prst = False ref = 819178895 ctrl = True cPch = cHdg = cMod = 0 ORBIT { SMA = 30593327.5976111 ECC = 0.000562583279606319 INC = 0.0109502961115737 LPE = 70.4648127398711 LAN = 261.957380990159 MNA = 2.41038393653685 EPH = 173833.507832549 REF = 1 } PART { name = cupola cid = 4292198984 uid = 819178895 mid = 613535646 launchID = 6 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = bottom, 5 attN = None, -1 mass = 1.76 temp = 312.781711608222 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = cupola (Kerbin Outpost) modCost = 0 crew = Jebediah Kerman EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True controlSrcStatusText = Operational EVENTS { MakeReference { active = True guiActive = True guiIcon = Control From Here guiName = Control From Here category = Control From Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } RenameVessel { active = True guiActive = True guiIcon = Rename Vessel guiName = Rename Vessel category = Rename Vessel guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleReactionWheel isEnabled = True stateString = Running WheelState = Active EVENTS { OnToggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle Torque guiName = Toggle Torque category = Toggle Torque guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Crew Report category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data category = guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Report category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Discard Crew Report category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Crew Report category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Discard Crew Report category = Reset guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } MODULE { name = ModuleScienceContainer isEnabled = True EVENTS { StoreDataExternalEvent { active = False guiActive = False guiIcon = guiName = Store Experiments (0) category = guiActiveUnfocused = True unfocusedRange = 1.6 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data (0) category = guiActiveUnfocused = True unfocusedRange = 1.6 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Stored Data (0) category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = FlagDecal isEnabled = True flagDisplayed = True EVENTS { ToggleFlag { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle Flag guiName = Toggle Flag category = Toggle Flag guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleTripLogger isEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } } RESOURCE { name = ElectricCharge amount = 199.987662222109 maxAmount = 200 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = MonoPropellant amount = 9.9833302263343 maxAmount = 10 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = RCSBlock cid = 4291752676 uid = 4025371025 mid = 613535646 launchID = 6 parent = 0 position = -0.971449911594391,-0.0103298490867019,0.972499370574951 rotation = -2.52342E-08,0.3826835,-1.123726E-07,0.9238796 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 2 sym = 3 sym = 4 srfN = srfAttach, 0 mass = 0.05 temp = 312.852517361392 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = RCSBlock cid = 4291738016 uid = 2738482920 mid = 613535646 launchID = 6 parent = 0 position = 0.972499012947083,-0.010330312885344,0.971450448036194 rotation = -9.973994E-08,0.9238796,-5.154018E-08,0.3826835 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 1 sym = 3 sym = 4 srfN = srfAttach, 0 mass = 0.05 temp = 312.849170406534 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = RCSBlock cid = 4291737772 uid = 1403548571 mid = 613535646 launchID = 6 parent = 0 position = 0.971449911594391,-0.010330312885344,-0.972499251365662 rotation = -1.111448E-07,0.9238796,1.946932E-08,-0.3826835 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 4 srfN = srfAttach, 0 mass = 0.05 temp = 312.845595145196 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = RCSBlock cid = 4291737528 uid = 3658790014 mid = 613535646 launchID = 6 parent = 0 position = -0.972498953342438,-0.0103298490867019,-0.971449255943298 rotation = -5.276792E-08,0.3826834,1.237774E-07,-0.9238796 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 srfN = srfAttach, 0 mass = 0.05 temp = 312.852910356611 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = trussPiece1x cid = 4292201706 uid = 3415968676 mid = 613535646 launchID = 6 parent = 0 position = 0.666693210601807,-0.0470202378928661,-1.9371509552002E-07 rotation = -0.5,-0.5000001,0.5000001,-0.4999999 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 13 attN = None, -1 attN = top, 6 mass = 0.125 temp = 312.78078221401 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = trussPiece1x modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = adapterSmallMiniTall cid = 4292180790 uid = 590237852 mid = 613535646 launchID = 6 parent = 5 position = 1.53846597671509,-0.0470204427838326,-3.20374965667725E-07 rotation = 0.7071067,-0.7071069,-1.053672E-08,-1.053668E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 5 attN = bottom, 7 mass = 0.05 temp = 312.708312819735 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = adapterSmallMiniTall modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = dockingPortLateral cid = 4292165726 uid = 721741386 mid = 613535646 launchID = 6 parent = 6 position = 2.48878216743469,-0.0470207892358303,-1.41561031341553E-07 rotation = -0.5000001,0.4999999,-0.5000002,-0.5000001 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 0 srfN = None, -1 attN = top, 6 attN = bottom, 8 mass = 0.3 temp = 312.705039175272 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = dockingPortLateral modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDockingNode isEnabled = True state = Ready dockUId = 0 dockNodeIdx = 0 EVENTS { Undock { active = False guiActive = True guiIcon = Undock guiName = Undock category = Undock guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } UndockSameVessel { active = False guiActive = True guiIcon = Undock guiName = Undock category = Undock guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } Decouple { active = False guiActive = True guiIcon = Decouple Node guiName = Decouple Node category = Decouple Node guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } SetAsTarget { active = True guiActive = False guiIcon = Set as Target guiName = Set as Target category = Set as Target guiActiveUnfocused = True unfocusedRange = 200 externalToEVAOnly = False } UnsetTarget { active = False guiActive = False guiIcon = Unset Target guiName = Unset Target category = Unset Target guiActiveUnfocused = True unfocusedRange = 200 externalToEVAOnly = False } EnableXFeed { active = False guiActive = True guiIcon = Enable Crossfeed guiName = Enable Crossfeed category = Enable Crossfeed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DisableXFeed { active = False guiActive = True guiIcon = Disable Crossfeed guiName = Disable Crossfeed category = Disable Crossfeed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } MakeReferenceTransform { active = True guiActive = True guiIcon = Control from Here guiName = Control from Here category = Control from Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { UndockAction { actionGroup = None } DecoupleAction { actionGroup = None } } } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = False animTime = 1 animSpeed = 1 EVENTS { Toggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle guiName = Close category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = largeAdapter cid = 4292150758 uid = 899731368 mid = 613535646 launchID = 6 parent = 7 position = 3.81409645080566,-0.0470212250947952,0 rotation = -0.5000001,0.5000001,-0.5000001,-0.5000001 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 0 srfN = None, -1 attN = top, 7 attN = bottom, 9 mass = 0.1 temp = 312.726807668521 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = largeAdapter modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = crewCabin cid = 4292158756 uid = 2639640394 mid = 613535646 launchID = 6 parent = 8 position = 5.55600023269653,-0.0470216423273087,1.49011611938477E-07 rotation = -0.5000001,0.5000001,-0.5000001,-0.5 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 0 srfN = None, -1 attN = top, 8 attN = bottom, 11 mass = 2.5 temp = 312.778311545768 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = crewCabin modCost = 0 crew = Bill Kerman crew = Bob Kerman EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Crew Report category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data category = guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Report category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Discard Crew Report category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Crew Report category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Discard Crew Report category = Reset guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } MODULE { name = ModuleScienceContainer isEnabled = True EVENTS { StoreDataExternalEvent { active = False guiActive = False guiIcon = guiName = Store Experiments (0) category = guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data (0) category = guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Stored Data (0) category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = FlagDecal isEnabled = True flagDisplayed = True EVENTS { ToggleFlag { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle Flag guiName = Toggle Flag category = Toggle Flag guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleTripLogger isEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } } } PART { name = largeSolarPanel cid = 4291939154 uid = 570997875 mid = 613535646 launchID = 6 parent = 9 position = 5.39689874649048,-1.20054304599762,1.54972076416016E-06 rotation = -7.194919E-08,-3.341795E-08,0.7071068,0.707107 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 1 srfN = srfAttach, 9 mass = 0.3 temp = 311.884089558913 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = largeSolarPanel modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (-0.7033188, -0.7033184, -0.0730951, 0.07309644) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = largeAdapter2 cid = 4291919060 uid = 2842953447 mid = 613535646 launchID = 6 parent = 9 position = 6.73211669921875,-0.0470220409333706,4.84287738800049E-07 rotation = 0.5,-0.5000001,0.5,0.5000001 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 0 srfN = None, -1 attN = top, 9 attN = None, -1 mass = 0.08 temp = 312.722870175263 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = largeAdapter2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = RCSBlock cid = 4291766360 uid = 2372541883 mid = 613535646 launchID = 6 parent = 11 position = 6.92723751068115,-0.0790220350027084,-0.0199810117483139 rotation = -2.980232E-08,-1,-5.960465E-08,4.470349E-07 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 1 srfN = srfAttach, 11 mass = 0.05 temp = 312.815835991142 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = strutCube cid = 4292205666 uid = 3993511097 mid = 613535646 launchID = 6 parent = 5 position = -2.9849792326786E-07,-0.220741033554077,-8.94069671630859E-08 rotation = 0,1,0,0 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 0 attN = bottom, 22 mass = 0.001 temp = 312.743919387316 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = trussPiece1x cid = 4292202516 uid = 4110429711 mid = 613535646 launchID = 6 parent = 13 position = -0.666693687438965,-0.0470199175179005,2.38418579101563E-07 rotation = 0.5,-0.4999999,0.5,0.5000001 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 13 attN = None, -1 attN = top, 15 mass = 0.125 temp = 312.594693750712 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = trussPiece1x modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = adapterSmallMiniTall cid = 4292179626 uid = 1582859862 mid = 613535646 launchID = 6 parent = 14 position = -1.5384669303894,-0.0470195934176445,1.41561031341553E-07 rotation = 8.728921E-09,7.194912E-08,-0.707107,0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 14 attN = bottom, 16 mass = 0.05 temp = 312.47281850508 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = adapterSmallMiniTall modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = dockingPortLateral cid = 4292165292 uid = 439114608 mid = 613535646 launchID = 6 parent = 15 position = -2.4887843132019,-0.0470182932913303,-3.57627868652344E-07 rotation = -0.4999999,-0.5000001,0.5000002,-0.5000001 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 0 srfN = None, -1 attN = top, 15 attN = bottom, 17 mass = 0.3 temp = 312.614112098356 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = dockingPortLateral modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDockingNode isEnabled = True state = Ready dockUId = 0 dockNodeIdx = 0 EVENTS { Undock { active = False guiActive = True guiIcon = Undock guiName = Undock category = Undock guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } UndockSameVessel { active = False guiActive = True guiIcon = Undock guiName = Undock category = Undock guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } Decouple { active = False guiActive = True guiIcon = Decouple Node guiName = Decouple Node category = Decouple Node guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } SetAsTarget { active = True guiActive = False guiIcon = Set as Target guiName = Set as Target category = Set as Target guiActiveUnfocused = True unfocusedRange = 200 externalToEVAOnly = False } UnsetTarget { active = False guiActive = False guiIcon = Unset Target guiName = Unset Target category = Unset Target guiActiveUnfocused = True unfocusedRange = 200 externalToEVAOnly = False } EnableXFeed { active = False guiActive = True guiIcon = Enable Crossfeed guiName = Enable Crossfeed category = Enable Crossfeed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DisableXFeed { active = False guiActive = True guiIcon = Disable Crossfeed guiName = Disable Crossfeed category = Disable Crossfeed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } MakeReferenceTransform { active = True guiActive = True guiIcon = Control from Here guiName = Control from Here category = Control from Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { UndockAction { actionGroup = None } DecoupleAction { actionGroup = None } } } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = False animTime = 1 animSpeed = 1 EVENTS { Toggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle guiName = Close category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = largeAdapter cid = 4292150476 uid = 4034245158 mid = 613535646 launchID = 6 parent = 16 position = -3.8141040802002,-0.0470178574323654,-1.05798244476318E-06 rotation = -0.5,-0.5000001,0.5000002,-0.5000001 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 0 srfN = None, -1 attN = top, 16 attN = bottom, 18 mass = 0.1 temp = 312.661607808265 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = largeAdapter modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = crewCabin cid = 4292150100 uid = 3159634214 mid = 613535646 launchID = 6 parent = 17 position = -5.55601406097412,-0.0470173209905624,-1.75833702087402E-06 rotation = -0.5,-0.5000001,0.5000002,-0.5000001 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 0 srfN = None, -1 attN = top, 17 attN = bottom, 20 mass = 2.5 temp = 312.809416213706 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = crewCabin modCost = 0 crew = Valentina Kerman EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Crew Report category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data category = guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Report category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Discard Crew Report category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Crew Report category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Discard Crew Report category = Reset guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } MODULE { name = ModuleScienceContainer isEnabled = True EVENTS { StoreDataExternalEvent { active = False guiActive = False guiIcon = guiName = Store Experiments (0) category = guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data (0) category = guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Stored Data (0) category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = FlagDecal isEnabled = True flagDisplayed = True EVENTS { ToggleFlag { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle Flag guiName = Toggle Flag category = Toggle Flag guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleTripLogger isEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } } } PART { name = largeSolarPanel cid = 4291936346 uid = 305826738 mid = 613535646 launchID = 6 parent = 18 position = -5.3234224319458,-1.19528758525848,-2.83122062683105E-06 rotation = -0.7071066,-0.7071071,9.99437E-08,-5.779676E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 1 srfN = srfAttach, 18 mass = 0.3 temp = 312.513693111975 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = largeSolarPanel modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0.5079031, 0.5079027, -0.4919693, 0.4919711) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = largeAdapter2 cid = 4291918596 uid = 2232441412 mid = 613535646 launchID = 6 parent = 18 position = -6.73212862014771,-0.0470169223845005,-2.25752592086792E-06 rotation = -0.4999999,-0.5000001,-0.5000002,0.5 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 0 srfN = None, -1 attN = top, 18 attN = None, -1 mass = 0.08 temp = 312.869389931502 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = largeAdapter2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = RCSBlock cid = 4291765852 uid = 423636857 mid = 613535646 launchID = 6 parent = 20 position = -6.92724895477295,-0.0522985644638538,0.025361992418766 rotation = 1.490116E-07,-2.682209E-07,-3.874302E-07,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 1 srfN = srfAttach, 20 mass = 0.05 temp = 312.862954969049 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = largeAdapter2 cid = 4292210540 uid = 2834255490 mid = 613535646 launchID = 6 parent = 13 position = -2.40192463252242E-07,-0.538690090179443,-3.05473804473877E-07 rotation = -1.192093E-07,-1,1.24345E-14,1.776357E-15 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 13 attN = bottom, 31 mass = 0.08 temp = 312.770975917591 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = largeAdapter2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = radialRCSTank cid = 4292126868 uid = 856936242 mid = 613535646 launchID = 6 parent = 22 position = 5.73110590096348E-08,-0.415869951248169,0.930188417434692 rotation = 9.774324E-08,0.8478565,0.5302259,6.847426E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 24 sym = 25 sym = 26 sym = 27 sym = 28 sym = 29 sym = 30 srfN = srfAttach, 22 mass = 0.075 temp = 313.000682303341 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 59.9833302263333 maxAmount = 60 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = radialRCSTank cid = 4292125464 uid = 3640095868 mid = 613535646 launchID = 6 parent = 22 position = 0.657742619514465,-0.415870100259781,0.6577427983284 rotation = 0.2029088,0.7833172,0.4898648,-0.3244606 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 23 sym = 25 sym = 26 sym = 27 sym = 28 sym = 29 sym = 30 srfN = srfAttach, 22 mass = 0.075 temp = 313.008427656739 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 59.9833302263333 maxAmount = 60 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = radialRCSTank cid = 4292125436 uid = 3771207523 mid = 613535646 launchID = 6 parent = 22 position = 0.9301877617836,-0.415870159864426,-1.41561031341553E-07 rotation = 0.3749264,0.5995249,0.3749264,-0.5995249 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 23 sym = 24 sym = 26 sym = 27 sym = 28 sym = 29 sym = 30 srfN = srfAttach, 22 mass = 0.075 temp = 313.005156863533 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 59.9833302263333 maxAmount = 60 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = radialRCSTank cid = 4292125408 uid = 306070986 mid = 613535646 launchID = 6 parent = 22 position = 0.65774267911911,-0.415870100259781,-0.657742559909821 rotation = 0.4898649,0.3244606,0.2029088,-0.7833171 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 23 sym = 24 sym = 25 sym = 27 sym = 28 sym = 29 sym = 30 srfN = srfAttach, 22 mass = 0.075 temp = 313.007925562224 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 59.9833302263333 maxAmount = 60 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = radialRCSTank cid = 4292125380 uid = 2956093817 mid = 613535646 launchID = 6 parent = 22 position = 5.73110590096348E-08,-0.415869951248169,-0.930188417434692 rotation = 0.5302259,-7.398756E-08,1.137894E-07,-0.8478565 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 23 sym = 24 sym = 25 sym = 26 sym = 28 sym = 29 sym = 30 srfN = srfAttach, 22 mass = 0.075 temp = 313.000674684515 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 59.9833302263333 maxAmount = 60 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = radialRCSTank cid = 4292125352 uid = 950976859 mid = 613535646 launchID = 6 parent = 22 position = -0.657742857933044,-0.415869802236557,-0.657742619514465 rotation = 0.4898649,-0.3244608,-0.2029086,-0.7833171 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 23 sym = 24 sym = 25 sym = 26 sym = 27 sym = 29 sym = 30 srfN = srfAttach, 22 mass = 0.075 temp = 313.008380508049 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 59.9833302263333 maxAmount = 60 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = radialRCSTank cid = 4292125324 uid = 1226830148 mid = 613535646 launchID = 6 parent = 22 position = -0.930189192295074,-0.415869504213333,-2.38418579101563E-07 rotation = 0.3749263,-0.599525,-0.3749263,-0.599525 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 23 sym = 24 sym = 25 sym = 26 sym = 27 sym = 28 sym = 30 srfN = srfAttach, 22 mass = 0.075 temp = 313.00510973483 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 59.9833302263333 maxAmount = 60 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = radialRCSTank cid = 4292125296 uid = 3437820611 mid = 613535646 launchID = 6 parent = 22 position = -0.657742857933044,-0.415869802236557,0.657742738723755 rotation = 0.2029085,-0.7833173,-0.4898649,-0.3244606 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 23 sym = 24 sym = 25 sym = 26 sym = 27 sym = 28 sym = 29 srfN = srfAttach, 22 mass = 0.075 temp = 313.007907983377 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 59.9833302263333 maxAmount = 60 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = advSasModule cid = 4292139330 uid = 611031043 mid = 613535646 launchID = 6 parent = 22 position = 4.19749909497114E-07,-0.926941156387329,-4.69386577606201E-07 rotation = -1.192093E-07,-1,1.24345E-14,1.776357E-15 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 22 attN = bottom, 33 mass = 0.1 temp = 312.758398184477 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = advSasModule modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True stateString = Running WheelState = Active EVENTS { OnToggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle Torque guiName = Toggle Torque category = Toggle Torque guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } } } PART { name = RTLongAntenna3 cid = 4291698972 uid = 3225916106 mid = 613535646 launchID = 6 parent = 31 position = 2.39713386918083E-07,-0.932069063186646,0.604653477668762 rotation = 0.707107,-9.99437E-08,-6.864374E-08,0.7071066 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 31 mass = 0.02 temp = 312.68997079862 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongAntenna3 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0.9917123 animSpeed = 1 EVENTS { Toggle { active = False guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000000 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = advSasModule cid = 4292139650 uid = 2557417463 mid = 613535646 launchID = 6 parent = 31 position = 1.16231170466108E-07,-1.32499098777771,-6.92903995513916E-07 rotation = -1.192093E-07,-1,1.24345E-14,1.776357E-15 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 31 attN = bottom, 36 mass = 0.1 temp = 312.740466922471 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = advSasModule modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True stateString = Running WheelState = Active EVENTS { OnToggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle Torque guiName = Toggle Torque category = Toggle Torque guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } } } PART { name = strutConnector cid = 4291956738 uid = 281194219 mid = 613535646 launchID = 6 parent = 33 position = 0.604069948196411,-1.31225907802582,-0.00124179571866989 rotation = -1.192093E-07,-1,1.24345E-14,1.776357E-15 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 35 srfN = srfAttach, 33 mass = 0.05 temp = 313.108615310433 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutConnector modCost = 0 EVENTS { } ACTIONS { } PARTDATA { tgt = 4292165726 pos = -2.371339,0.6913849,-0.01429938 rot = -2.799439E-08,-1.261305E-07,-0.7071074,0.7071071 dir = -0.9600117,0.2799,-0.005788957 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { name = strutConnector cid = 4291955564 uid = 3720017362 mid = 613535646 launchID = 6 parent = 33 position = -0.604068994522095,-1.31225883960724,0.00124030560255051 rotation = -2.980234E-08,2.980233E-08,-1.192093E-07,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 34 srfN = srfAttach, 33 mass = 0.05 temp = 313.108615310433 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutConnector modCost = 0 EVENTS { } ACTIONS { } PARTDATA { tgt = 4292165292 pos = -2.37134,0.6913856,-0.01430041 rot = -3.567778E-08,2.247182E-07,-0.707107,0.7071074 dir = -0.9600117,0.2799001,-0.005789369 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { name = dockingPort2 cid = 4292351436 uid = 134436185 mid = 613535646 launchID = 6 parent = 33 position = 1.80537384153467E-07,-1.52402114868164,-7.0035457611084E-07 rotation = -1,1.192093E-07,1.776357E-15,-1.24345E-14 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 0 srfN = srfAttach, 38 attN = top, 37 attN = bottom, 33 mass = 0.05 temp = 312.76132161707 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = dockingPort2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDockingNode isEnabled = True state = PreAttached dockUId = 0 dockNodeIdx = 0 EVENTS { Undock { active = False guiActive = True guiIcon = Undock guiName = Undock category = Undock guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } UndockSameVessel { active = False guiActive = True guiIcon = Undock guiName = Undock category = Undock guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } Decouple { active = True guiActive = True guiIcon = Decouple Node guiName = Decouple Node category = Decouple Node guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } SetAsTarget { active = True guiActive = False guiIcon = Set as Target guiName = Set as Target category = Set as Target guiActiveUnfocused = True unfocusedRange = 200 externalToEVAOnly = False } UnsetTarget { active = False guiActive = False guiIcon = Unset Target guiName = Unset Target category = Unset Target guiActiveUnfocused = True unfocusedRange = 200 externalToEVAOnly = False } EnableXFeed { active = False guiActive = True guiIcon = Enable Crossfeed guiName = Enable Crossfeed category = Enable Crossfeed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DisableXFeed { active = False guiActive = True guiIcon = Disable Crossfeed guiName = Disable Crossfeed category = Disable Crossfeed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } MakeReferenceTransform { active = True guiActive = True guiIcon = Control from Here guiName = Control from Here category = Control from Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { UndockAction { actionGroup = None } DecoupleAction { actionGroup = None } } } } PART { name = dockingPort2 cid = 4292352034 uid = 1465049211 mid = 613535646 launchID = 6 parent = 36 position = 8.35411242405826E-07,-2.0897810459137,-8.41915607452393E-07 rotation = -1.192093E-07,-1,1.24345E-14,1.776357E-15 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 0 srfN = srfAttach, 38 attN = top, 36 attN = bottom, 38 mass = 0.05 temp = 312.834218181607 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = dockingPort2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDockingNode isEnabled = True state = PreAttached dockUId = 0 dockNodeIdx = 0 EVENTS { Undock { active = False guiActive = True guiIcon = Undock guiName = Undock category = Undock guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } UndockSameVessel { active = False guiActive = True guiIcon = Undock guiName = Undock category = Undock guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } Decouple { active = True guiActive = True guiIcon = Decouple Node guiName = Decouple Node category = Decouple Node guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } SetAsTarget { active = True guiActive = False guiIcon = Set as Target guiName = Set as Target category = Set as Target guiActiveUnfocused = True unfocusedRange = 200 externalToEVAOnly = False } UnsetTarget { active = False guiActive = False guiIcon = Unset Target guiName = Unset Target category = Unset Target guiActiveUnfocused = True unfocusedRange = 200 externalToEVAOnly = False } EnableXFeed { active = False guiActive = True guiIcon = Enable Crossfeed guiName = Enable Crossfeed category = Enable Crossfeed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DisableXFeed { active = True guiActive = True guiIcon = Disable Crossfeed guiName = Disable Crossfeed category = Disable Crossfeed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } MakeReferenceTransform { active = True guiActive = True guiIcon = Control from Here guiName = Control from Here category = Control from Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { UndockAction { actionGroup = None } DecoupleAction { actionGroup = None } } } } PART { name = Mark1-2Pod cid = 4292407546 uid = 2353499975 mid = 613535646 launchID = 6 parent = 37 position = 1.07247342384653E-06,-3.28297019004822,-1.11013650894165E-06 rotation = -1.192093E-07,-1,1.24345E-14,1.776357E-15 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 0 srfN = None, -1 attN = bottom, 39 attN = top, 37 mass = 4 temp = 312.954219245248 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = Mark1-2Pod modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True controlSrcStatusText = Not Enough Crew (0/1) EVENTS { MakeReference { active = True guiActive = True guiIcon = Control From Here guiName = Control From Here category = Control From Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } RenameVessel { active = True guiActive = True guiIcon = Rename Vessel guiName = Rename Vessel category = Rename Vessel guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleReactionWheel isEnabled = True stateString = Running WheelState = Active EVENTS { OnToggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle Torque guiName = Toggle Torque category = Toggle Torque guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Crew Report category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data category = guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Report category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Discard Crew Report category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Crew Report category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Discard Crew Report category = Reset guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } MODULE { name = ModuleScienceContainer isEnabled = True EVENTS { StoreDataExternalEvent { active = False guiActive = False guiIcon = guiName = Store Experiments (0) category = guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data (0) category = guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Stored Data (0) category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = FlagDecal isEnabled = True flagDisplayed = True EVENTS { ToggleFlag { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle Flag guiName = Toggle Flag category = Toggle Flag guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleTripLogger isEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } } RESOURCE { name = ElectricCharge amount = 149.987662222109 maxAmount = 150 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = MonoPropellant amount = 29.9833302263336 maxAmount = 30 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryBankLarge cid = 4291900512 uid = 3608792855 mid = 613535646 launchID = 6 parent = 38 position = 1.66959546277212E-06,-3.87220883369446,-1.44541263580322E-06 rotation = -1.192093E-07,-1,1.24345E-14,1.776357E-15 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 0 srfN = None, -1 attN = top, 38 attN = bottom, 40 mass = 0.2 temp = 312.931130908642 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryBankLarge modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 3999.98766222211 maxAmount = 4000 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryBankLarge cid = 4291900246 uid = 4164136624 mid = 613535646 launchID = 6 parent = 39 position = 1.96374389815901E-06,-4.10721015930176,-1.75833702087402E-06 rotation = -1.192093E-07,-1,1.24345E-14,1.776357E-15 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 0 srfN = None, -1 attN = top, 39 attN = bottom, 41 mass = 0.2 temp = 312.910473497992 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryBankLarge modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 3999.98766222211 maxAmount = 4000 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryBankLarge cid = 4291898798 uid = 3578816536 mid = 613535646 launchID = 6 parent = 40 position = 2.56336670645396E-06,-4.342209815979,-2.07126140594482E-06 rotation = -1.192093E-07,-1,1.24345E-14,1.776357E-15 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 0 srfN = None, -1 attN = top, 40 attN = bottom, 42 mass = 0.2 temp = 312.890250411741 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryBankLarge modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 3999.98766222211 maxAmount = 4000 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryBankLarge cid = 4291898436 uid = 1578587057 mid = 613535646 launchID = 6 parent = 41 position = 3.15553870677832E-06,-4.57721042633057,-2.38418579101563E-06 rotation = -1.192093E-07,-1,1.24345E-14,1.776357E-15 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 0 srfN = None, -1 attN = top, 41 attN = bottom, 43 mass = 0.2 temp = 312.871027068494 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryBankLarge modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 3999.98766222211 maxAmount = 4000 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = largeAdapter2 cid = 4291781952 uid = 571435593 mid = 613535646 launchID = 6 parent = 42 position = 3.63941876457829E-06,-4.89142036437988,-2.70456075668335E-06 rotation = -1.192093E-07,-1,1.24345E-14,1.776357E-15 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 0 srfN = None, -1 attN = top, 42 attN = bottom, 44 mass = 0.08 temp = 312.823940641044 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = largeAdapter2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = trussAdapter cid = 4291891810 uid = 2352359096 mid = 613535646 launchID = 6 parent = 43 position = 4.17435876443051E-06,-5.49147033691406,-3.13669443130493E-06 rotation = 1.776357E-15,1.24345E-14,1,1.192093E-07 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 0 srfN = None, -1 attN = bottom, 43 attN = top, 45 mass = 0.25 temp = 312.817511677864 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = trussAdapter modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = trussPiece1x cid = 4291885248 uid = 1607143141 mid = 613535646 launchID = 6 parent = 44 position = 4.76536479254719E-06,-6.70011043548584,-3.51667404174805E-06 rotation = -1.192093E-07,-1,1.24345E-14,1.776357E-15 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 0 srfN = None, -1 attN = None, -1 attN = top, 44 mass = 0.125 temp = 312.807697842885 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = trussPiece1x modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = RTLongDish2 cid = 4291876184 uid = 1955501014 mid = 613535646 launchID = 6 parent = 45 position = 5.60207354283193E-06,-7.09695053100586,0.416945070028305 rotation = 0.6427878,-6.750937E-08,-9.70894E-08,0.7660444 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 1 sym = 47 srfN = srfAttach, 45 attN = None, -1 mass = 1 temp = 312.808603035431 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 0.999999939076519 RTOmniRange = 0 RTDishRange = 6E+10 RTAntennaTarget = 35b89a0d-664c-43c6-bec8-d0840afc97b2 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = Active Vessel category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = RTLongDish2 cid = 4291875394 uid = 2876114109 mid = 613535646 launchID = 6 parent = 45 position = 5.42325960850576E-06,-7.09695053100586,-0.416952908039093 rotation = 4.494979E-08,0.7660443,-0.6427879,-1.304611E-07 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 1 sym = 46 srfN = srfAttach, 45 attN = None, -1 mass = 1 temp = 312.803694053861 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 0.999999939076519 RTOmniRange = 0 RTDishRange = 6E+10 RTAntennaTarget = 44756e61-4475-6e61-4475-6e6144756e61 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = Duna category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = spotLight2 cid = 4291869160 uid = 885722380 mid = 613535646 launchID = 6 parent = 45 position = 0.542639315128326,-7.34257125854492,-4.55230474472046E-06 rotation = -0.6830127,0.1830128,0.6830127,0.1830128 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 1 sym = 49 srfN = srfAttach, 45 mass = 0.015 temp = 312.179190776962 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = spotLight2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLight isEnabled = True isOn = True lightR = 0.35 lightG = 0.35 lightB = 0.45 lightR_UIFlight { controlEnabled = True minValue = 0 maxValue = 1 stepIncrement = 0.05 } lightG_UIFlight { controlEnabled = True minValue = 0 maxValue = 1 stepIncrement = 0.05 } lightB_UIFlight { controlEnabled = True minValue = 0 maxValue = 1 stepIncrement = 0.05 } EVENTS { LightsOff { active = True guiActive = True guiActiveEditor = True guiIcon = Lights Off guiName = Lights Off category = Lights Off guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } LightsOn { active = False guiActive = True guiActiveEditor = True guiIcon = Lights On guiName = Lights On category = Lights On guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleLightAction { actionGroup = Light } LightOnAction { actionGroup = None } LightOffAction { actionGroup = None } } } } PART { name = spotLight2 cid = 4291868024 uid = 1397557477 mid = 613535646 launchID = 6 parent = 45 position = -0.542629241943359,-7.34257030487061,-2.95042991638184E-06 rotation = 0.6830128,0.1830126,0.6830127,-0.1830126 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 1 sym = 48 srfN = srfAttach, 45 mass = 0.015 temp = 312.182195877044 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = spotLight2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLight isEnabled = True isOn = True lightR = 0.35 lightG = 0.35 lightB = 0.45 lightR_UIFlight { controlEnabled = True minValue = 0 maxValue = 1 stepIncrement = 0.05 } lightG_UIFlight { controlEnabled = True minValue = 0 maxValue = 1 stepIncrement = 0.05 } lightB_UIFlight { controlEnabled = True minValue = 0 maxValue = 1 stepIncrement = 0.05 } EVENTS { LightsOff { active = True guiActive = True guiActiveEditor = True guiIcon = Lights Off guiName = Lights Off category = Lights Off guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } LightsOn { active = False guiActive = True guiActiveEditor = True guiIcon = Lights On guiName = Lights On category = Lights On guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleLightAction { actionGroup = Light } LightOnAction { actionGroup = None } LightOffAction { actionGroup = None } } } } PART { name = strutCube cid = 4291716358 uid = 3130890509 mid = 613535646 launchID = 6 parent = 44 position = 0.438738703727722,-5.56626033782959,0.0179697647690773 rotation = 0.5000001,0.4999999,0.5000001,-0.4999999 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 1 sym = 52 srfN = srfAttach, 44 attN = None, -1 attN = None, -1 mass = 0.001 temp = 312.718676648553 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = RTShortDish2 cid = 4291721772 uid = 3265803266 mid = 613535646 launchID = 6 parent = 50 position = 0.575167417526245,-5.55342960357666,0.00951575487852097 rotation = 0.579228,0.4055797,0.579228,-0.4055797 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 1 sym = 53 srfN = srfAttach, 50 attN = None, -1 mass = 0.5 temp = 312.96780300606 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 0.976296007119933 RTOmniRange = 0 RTDishRange = 9E+07 RTAntennaTarget = 4b657262-696e-4b65-7262-696e4b657262 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = Kerbin category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True EVENTS { } ACTIONS { } } } PART { name = strutCube cid = 4291716082 uid = 3095280762 mid = 613535646 launchID = 6 parent = 44 position = -0.438730269670486,-5.56626033782959,-0.0179760456085205 rotation = -0.5000001,0.5,0.4999999,0.5000002 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 1 sym = 50 srfN = srfAttach, 44 attN = None, -1 attN = None, -1 mass = 0.001 temp = 312.729486258176 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = RTShortDish2 cid = 4291715444 uid = 2721581054 mid = 613535646 launchID = 6 parent = 52 position = -0.575159311294556,-5.55342960357666,-0.00952193886041641 rotation = -0.5792279,0.4055797,0.5792279,0.4055799 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 1 sym = 51 srfN = srfAttach, 52 attN = None, -1 mass = 0.5 temp = 312.978752660675 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 0.976296007119933 RTOmniRange = 0 RTDishRange = 9E+07 RTAntennaTarget = 4d696e6d-7573-4d69-6e6d-75734d696e6d EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = Minmus category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = RCSBlock cid = 4291765080 uid = 877340862 mid = 613535646 launchID = 6 parent = 41 position = 0.000744823133572936,-4.36032962799072,1.29595720767975 rotation = 2.311731E-07,0.7071068,9.089037E-08,0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 1 sym = 55 sym = 56 sym = 57 srfN = srfAttach, 41 mass = 0.05 temp = 312.812327106496 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = RCSBlock cid = 4291753812 uid = 849921582 mid = 613535646 launchID = 6 parent = 41 position = 1.29596066474915,-4.36033010482788,-0.000744275748729706 rotation = 3.427267E-07,1,1.490113E-08,-1.043081E-07 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 1 sym = 54 sym = 56 sym = 57 srfN = srfAttach, 41 mass = 0.05 temp = 312.898490199195 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = RCSBlock cid = 4291753648 uid = 3326761849 mid = 613535646 launchID = 6 parent = 41 position = -0.000739936018362641,-4.36032962799072,-1.29596078395844 rotation = 2.609754E-07,0.7071067,-6.108807E-08,-0.7071069 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 1 sym = 54 sym = 55 sym = 57 srfN = srfAttach, 41 mass = 0.05 temp = 312.812320727935 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = RCSBlock cid = 4291753484 uid = 289655735 mid = 613535646 launchID = 6 parent = 41 position = -1.29595637321472,-4.36033010482788,0.000740423798561096 rotation = -1.065814E-14,-8.940697E-08,-8.940697E-08,-1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 1 sym = 54 sym = 55 sym = 56 srfN = srfAttach, 41 mass = 0.05 temp = 312.89849024191 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } ACTIONGROUPS { Stage = False, 0 Gear = True, 0 Light = True, 129656.870805711 RCS = True, 129687.350805717 SAS = True, 129680.050805715 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = -0.004546016 yaw = 0.001034716 roll = 0.004578004 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } } VESSEL { pid = 4f9f5b83326a4a6f83aee183da0c1245 name = Ast. WTT-553 type = SpaceObject sit = ORBITING landed = False landedAt = splashed = False met = 129639.670805707 lct = 129639.670805707 root = 0 lat = -1.38226412500379 lon = 74.6637635196476 alt = 13992815112.4032 hgt = -1 nrm = 0,1,0 rot = 0.4841688,0.4543576,0.5216603,0.5357335 CoM = 0,0,0 stg = 0 prst = False ref = 0 ctrl = False ORBIT { SMA = 15632366469.7056 ECC = 0.130160630598843 INC = 1.49115602937485 LPE = 345.163935177547 LAN = 250.660373654963 MNA = 0.217666735687074 EPH = 1842208.10952641 REF = 0 } PART { name = PotatoRoid cid = 0 uid = 21198736 mid = 21198736 launchID = 0 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = 0 sepI = 0 sidx = 0 attm = 0 srfN = None, -1 mass = 150 temp = -1 expt = 0.1 state = 0 connected = True attached = True flag = rTrf = modCost = 0 } ACTIONGROUPS { } DISCOVERY { state = 1 lastObservedTime = 129639.670805707 lifetime = 1460731.14624023 refTime = 1728000 size = 1 } FLIGHTPLAN { } CTRLSTATE { } } VESSEL { pid = 9bae3edcdf494a6799d68f6e68b3d007 name = Ast. IGL-946 type = SpaceObject sit = ORBITING landed = False landedAt = splashed = False met = 129684.710805716 lct = 129684.710805716 root = 0 lat = -0.710353586606978 lon = 89.0414671508962 alt = 15526827999.6577 hgt = -1 nrm = 0,1,0 rot = 0.2043393,-0.7274494,-0.6149871,0.2255071 CoM = 0,0,0 stg = 0 prst = False ref = 0 ctrl = False ORBIT { SMA = 14780352418.5464 ECC = 0.0850057973672773 INC = 2.38957961046932 LPE = 343.468383959219 LAN = 359.827699650182 MNA = 0.256341303564316 EPH = 4623217.05943853 REF = 0 } PART { name = PotatoRoid cid = 0 uid = 861408484 mid = 861408484 launchID = 0 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = 0 sepI = 0 sidx = 0 attm = 0 srfN = None, -1 mass = 150 temp = -1 expt = 0.1 state = 0 connected = True attached = True flag = rTrf = modCost = 0 } ACTIONGROUPS { } DISCOVERY { state = 1 lastObservedTime = 129684.710805716 lifetime = 1091110.39123535 refTime = 1728000 size = 3 } FLIGHTPLAN { } CTRLSTATE { } } VESSEL { pid = 7db55101cc4848c098a10761f36061de name = Ast. IAZ-247 type = SpaceObject sit = ORBITING landed = False landedAt = splashed = False met = 129729.730805725 lct = 129729.730805725 root = 0 lat = 0.129976730034697 lon = 76.9411189524846 alt = 14543056439.5762 hgt = -1 nrm = 0,1,0 rot = 0.5917585,-0.5603974,0.3995846,0.4196532 CoM = 0,0,0 stg = 0 prst = False ref = 0 ctrl = False ORBIT { SMA = 15471358625.5767 ECC = 0.121201441906427 INC = 0.13050451467573 LPE = 160.669551005672 LAN = 100.203898553892 MNA = 0.0400184319700614 EPH = 2145279.73080573 REF = 0 } PART { name = PotatoRoid cid = 0 uid = 2134675811 mid = 2134675811 launchID = 0 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = 0 sepI = 0 sidx = 0 attm = 0 srfN = None, -1 mass = 150 temp = -1 expt = 0.1 state = 0 connected = True attached = True flag = rTrf = modCost = 0 } ACTIONGROUPS { } DISCOVERY { state = 1 lastObservedTime = 129729.730805725 lifetime = 809426.10168457 refTime = 1728000 size = 4 } FLIGHTPLAN { } CTRLSTATE { } } VESSEL { pid = 56c1807d37f54806b513af9b89dfaab3 name = Ast. PZI-202 type = SpaceObject sit = ORBITING landed = False landedAt = splashed = False met = 156594.080034207 lct = 156594.080034207 root = 0 lat = 0.010926893708059 lon = -273.927064234242 alt = 17283478895.7079 hgt = -1 nrm = 0,1,0 rot = 0.009573153,0.481893,0.7256058,0.4911046 CoM = 0,0,0 stg = 0 prst = False ref = 0 ctrl = False ORBIT { SMA = 15621776050.1072 ECC = 0.131550295918197 INC = 0.540881796178967 LPE = 163.041414879651 LAN = 215.410470701943 MNA = 0.135868850615082 EPH = 5334078.74800296 REF = 0 } PART { name = PotatoRoid cid = 0 uid = 540335528 mid = 540335528 launchID = 0 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = 0 sepI = 0 sidx = 0 attm = 0 srfN = None, -1 mass = 150 temp = -1 expt = 0.1 state = 0 connected = True attached = True flag = rTrf = modCost = 0 } ACTIONGROUPS { } DISCOVERY { state = 1 lastObservedTime = 156594.080034207 lifetime = 395141.473388672 refTime = 1728000 size = 2 } FLIGHTPLAN { } CTRLSTATE { } } VESSEL { pid = e47e543b0b604fe0a08330bccb11202f name = Ast. KEQ-408 type = SpaceObject sit = ORBITING landed = False landedAt = splashed = False met = 168102.705870727 lct = 168102.705870727 root = 0 lat = -0.00559380994032222 lon = -297.251233810782 alt = 14819052242.5758 hgt = -1 nrm = 0,1,0 rot = 0.691864,-0.6752469,0.0587898,0.2488166 CoM = 0,0,0 stg = 0 prst = False ref = 0 ctrl = False ORBIT { SMA = 14324465862.5814 ECC = 0.0531792610604344 INC = 0.999365716482663 LPE = 186.258479094774 LAN = 203.155028770616 MNA = 5.97377623882515 EPH = 4854507.07598791 REF = 0 } PART { name = PotatoRoid cid = 0 uid = 1990120822 mid = 1990120822 launchID = 0 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = 0 sepI = 0 sidx = 0 attm = 0 srfN = None, -1 mass = 150 temp = -1 expt = 0.1 state = 0 connected = True attached = True flag = rTrf = modCost = 0 } ACTIONGROUPS { } DISCOVERY { state = 1 lastObservedTime = 168102.705870727 lifetime = 565052.865600586 refTime = 1728000 size = 3 } FLIGHTPLAN { } CTRLSTATE { } } VESSEL { pid = 916f079d579e43d5b8b9e6540e34a390 name = Duna Station type = Station sit = ORBITING landed = False landedAt = splashed = False met = 3304.41410141287 lct = 168785.540997348 root = 0 lat = 9.90354110308424E-05 lon = 90.2164044148817 alt = 1500029.80908528 hgt = -1 nrm = 0.9956006,-0.005289848,0.09355179 rot = 0.0007611839,0.674614,-0.003099001,-0.7381639 CoM = -0.0009702257,-1.796806,-0.000500708 stg = 1 prst = False ref = 3046828525 ctrl = True cPch = cHdg = cMod = 0 ORBIT { SMA = 1819974.7490476 ECC = 3.02992777785687E-05 INC = 8.35215824296579E-05 LPE = 213.560460618275 LAN = 15.2329924896817 MNA = 3.08928916552126 EPH = 172089.975098761 REF = 6 } PART { name = probeStackLarge cid = 4290167016 uid = 3240944216 mid = 662739497 launchID = 10 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = bottom, 1 attN = top, 37 mass = 0.5 temp = 207.225961005968 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = probeStackLarge (Untitled Space Craft Sta) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True controlSrcStatusText = Operational EVENTS { MakeReference { active = True guiActive = True guiIcon = Control From Here guiName = Control From Here category = Control From Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } RenameVessel { active = True guiActive = True guiIcon = Rename Vessel guiName = Rename Vessel category = Rename Vessel guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleReactionWheel isEnabled = True stateString = Running WheelState = Active EVENTS { OnToggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle Torque guiName = Toggle Torque category = Toggle Torque guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True standaloneToggle_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = True RTCommandMinCrew = 6 EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 172089.975098761 ExtraDelay = 0 CmdGuid = 5689d120-0fe2-4812-9d04-f49b67fded25 } } Commands { } } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 EVENTS { } ACTIONS { } } MODULE { name = ModuleTripLogger isEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Flyby,Duna 0 = Orbit,Duna } } RESOURCE { name = ElectricCharge amount = 30 maxAmount = 30 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = largeAdapter2 cid = 4292210540 uid = 4250731319 mid = 662739497 launchID = 10 parent = 0 position = -1.04308128356934E-07,-0.379217147827148,1.04308128356934E-07 rotation = -1.24345E-14,-1.776355E-15,1.421085E-14,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 0 attN = bottom, 10 mass = 0.08 temp = 207.256488637841 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = largeAdapter2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = radialRCSTank cid = 4292126868 uid = 2644837524 mid = 662739497 launchID = 10 parent = 1 position = -4.02331352233887E-07,-0.256397008895874,-0.930189192295074 rotation = 0.5302259,5.266425E-09,3.329124E-09,-0.8478565 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 srfN = srfAttach, 1 mass = 0.075 temp = 207.192359103215 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 60 maxAmount = 60 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = radialRCSTank cid = 4292125464 uid = 2484851269 mid = 662739497 launchID = 10 parent = 1 position = -0.657742977142334,-0.256397008895874,-0.657742857933044 rotation = 0.4898648,-0.3244606,-0.2029087,-0.7833172 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 2 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 srfN = srfAttach, 1 mass = 0.075 temp = 207.192361388578 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 60 maxAmount = 60 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = radialRCSTank cid = 4292125436 uid = 688778217 mid = 662739497 launchID = 10 parent = 1 position = -0.930188179016113,-0.256397008895874,-1.04308128356934E-07 rotation = 0.3749264,-0.599525,-0.3749264,-0.599525 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 2 sym = 3 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 srfN = srfAttach, 1 mass = 0.075 temp = 207.191011524422 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 60 maxAmount = 60 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = radialRCSTank cid = 4292125408 uid = 773200110 mid = 662739497 launchID = 10 parent = 1 position = -0.657743215560913,-0.256397008895874,0.657742440700531 rotation = 0.2029087,-0.7833171,-0.4898649,-0.3244606 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 2 sym = 3 sym = 4 sym = 6 sym = 7 sym = 8 sym = 9 srfN = srfAttach, 1 mass = 0.075 temp = 207.192604938259 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 60 maxAmount = 60 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = radialRCSTank cid = 4292125380 uid = 506764380 mid = 662739497 launchID = 10 parent = 1 position = -4.91738319396973E-07,-0.256397008895874,0.930188298225403 rotation = 1.271701E-08,-0.8478565,-0.5302258,1.077972E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 7 sym = 8 sym = 9 srfN = srfAttach, 1 mass = 0.075 temp = 207.192352141556 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 60 maxAmount = 60 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = radialRCSTank cid = 4292125352 uid = 3544176640 mid = 662739497 launchID = 10 parent = 1 position = 0.657742023468018,-0.256397008895874,0.657742500305176 rotation = -0.2029087,-0.7833171,-0.4898649,0.3244607 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 8 sym = 9 srfN = srfAttach, 1 mass = 0.075 temp = 207.192200575053 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 60 maxAmount = 60 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = radialRCSTank cid = 4292125324 uid = 941416380 mid = 662739497 launchID = 10 parent = 1 position = 0.930188775062561,-0.256397008895874,1.04308128356934E-07 rotation = -0.3749264,-0.599525,-0.3749264,0.599525 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 9 srfN = srfAttach, 1 mass = 0.075 temp = 207.191314045918 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 60 maxAmount = 60 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = radialRCSTank cid = 4292125296 uid = 203625408 mid = 662739497 launchID = 10 parent = 1 position = 0.657742023468018,-0.256397008895874,-0.657742857933044 rotation = -0.4898649,-0.3244605,-0.2029086,0.7833173 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 1 mass = 0.075 temp = 207.192651157734 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 60 maxAmount = 60 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = advSasModule cid = 4292139330 uid = 1896183924 mid = 662739497 launchID = 10 parent = 1 position = -8.94069671630859E-07,-0.767469167709351,2.98023223876953E-07 rotation = -1.24345E-14,-1.776355E-15,1.421085E-14,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 1 attN = bottom, 12 mass = 0.1 temp = 207.252871704265 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = advSasModule modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True stateString = Running WheelState = Active EVENTS { OnToggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle Torque guiName = Toggle Torque category = Toggle Torque guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } } } PART { name = RTLongAntenna3 cid = 4291698972 uid = 2818650871 mid = 662739497 launchID = 10 parent = 10 position = -8.04662704467773E-07,-0.772597074508667,-0.604653596878052 rotation = 1.564993E-08,0.7071066,-0.707107,1.564999E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 10 mass = 0.02 temp = 207.187546181338 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongAntenna3 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = advSasModule cid = 4292139650 uid = 2186697486 mid = 662739497 launchID = 10 parent = 10 position = -7.0035457611084E-07,-1.16551899909973,5.0663948059082E-07 rotation = -1.24345E-14,-1.776355E-15,1.421085E-14,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 10 attN = bottom, 15 mass = 0.1 temp = 207.25030726782 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = advSasModule modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True stateString = Running WheelState = Active EVENTS { OnToggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle Torque guiName = Toggle Torque category = Toggle Torque guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } } } PART { name = strutConnector cid = 4291956738 uid = 711458072 mid = 662739497 launchID = 10 parent = 12 position = -0.604070723056793,-1.15278697013855,0.00124159455299377 rotation = -1.24345E-14,-1.776356E-15,1.421086E-14,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 14 srfN = srfAttach, 12 mass = 0.05 temp = 207.192867219341 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutConnector modCost = 0 EVENTS { } ACTIONS { } PARTDATA { tgt = 4292150758 pos = -2.919629,0.6209261,-0.01760652 rot = -2.23517E-08,3.799797E-07,-0.559067,0.8291229 dir = -0.9781074,0.208017,-0.005898376 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { name = strutConnector cid = 4291955564 uid = 2753234770 mid = 662739497 launchID = 10 parent = 12 position = 0.604068040847778,-1.15278697013855,-0.00124050676822662 rotation = -1.421086E-14,1,2.980231E-08,-2.980232E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 13 srfN = srfAttach, 12 mass = 0.05 temp = 207.192867219341 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutConnector modCost = 0 EVENTS { } ACTIONS { } PARTDATA { tgt = 4292150476 pos = -2.919634,0.6209292,-0.01760769 rot = -7.774424E-08,2.591371E-07,-0.559067,0.829123 dir = -0.9781073,0.2080176,-0.005898758 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { name = dockingPort2 cid = 4292351436 uid = 1220936106 mid = 662739497 launchID = 10 parent = 12 position = -8.04662704467773E-07,-1.36454916000366,5.0663948059082E-07 rotation = -1.776355E-15,1.24345E-14,1,-1.421085E-14 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 0 srfN = srfAttach, 17 attN = top, 16 attN = bottom, 12 mass = 0.05 temp = 207.284741898527 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = dockingPort2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDockingNode isEnabled = True state = PreAttached dockUId = 0 dockNodeIdx = 0 EVENTS { Undock { active = False guiActive = True guiIcon = Undock guiName = Undock category = Undock guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } UndockSameVessel { active = False guiActive = True guiIcon = Undock guiName = Undock category = Undock guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } Decouple { active = True guiActive = True guiIcon = Decouple Node guiName = Decouple Node category = Decouple Node guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } SetAsTarget { active = True guiActive = False guiIcon = Set as Target guiName = Set as Target category = Set as Target guiActiveUnfocused = True unfocusedRange = 200 externalToEVAOnly = False } UnsetTarget { active = False guiActive = False guiIcon = Unset Target guiName = Unset Target category = Unset Target guiActiveUnfocused = True unfocusedRange = 200 externalToEVAOnly = False } EnableXFeed { active = False guiActive = True guiIcon = Enable Crossfeed guiName = Enable Crossfeed category = Enable Crossfeed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DisableXFeed { active = False guiActive = True guiIcon = Disable Crossfeed guiName = Disable Crossfeed category = Disable Crossfeed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } MakeReferenceTransform { active = True guiActive = True guiIcon = Control from Here guiName = Control from Here category = Control from Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { UndockAction { actionGroup = None } DecoupleAction { actionGroup = None } } } } PART { name = dockingPort2 cid = 4292352034 uid = 1376946247 mid = 662739497 launchID = 10 parent = 15 position = -1.69873237609863E-06,-1.93030905723572,5.96046447753906E-07 rotation = -1.24345E-14,-1.776355E-15,1.421085E-14,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 0 srfN = srfAttach, 17 attN = top, 15 attN = bottom, 17 mass = 0.05 temp = 207.261347944064 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = dockingPort2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDockingNode isEnabled = True state = PreAttached dockUId = 0 dockNodeIdx = 0 EVENTS { Undock { active = False guiActive = True guiIcon = Undock guiName = Undock category = Undock guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } UndockSameVessel { active = False guiActive = True guiIcon = Undock guiName = Undock category = Undock guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } Decouple { active = True guiActive = True guiIcon = Decouple Node guiName = Decouple Node category = Decouple Node guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } SetAsTarget { active = True guiActive = False guiIcon = Set as Target guiName = Set as Target category = Set as Target guiActiveUnfocused = True unfocusedRange = 200 externalToEVAOnly = False } UnsetTarget { active = False guiActive = False guiIcon = Unset Target guiName = Unset Target category = Unset Target guiActiveUnfocused = True unfocusedRange = 200 externalToEVAOnly = False } EnableXFeed { active = False guiActive = True guiIcon = Enable Crossfeed guiName = Enable Crossfeed category = Enable Crossfeed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DisableXFeed { active = True guiActive = True guiIcon = Disable Crossfeed guiName = Disable Crossfeed category = Disable Crossfeed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } MakeReferenceTransform { active = True guiActive = True guiIcon = Control from Here guiName = Control from Here category = Control from Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { UndockAction { actionGroup = None } DecoupleAction { actionGroup = None } } } } PART { name = Mark1-2Pod cid = 4292407546 uid = 3783196590 mid = 662739497 launchID = 10 parent = 16 position = -2.29477882385254E-06,-3.12349820137024,8.94069671630859E-07 rotation = -1.24345E-14,-1.776355E-15,1.421085E-14,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 0 srfN = None, -1 attN = bottom, 18 attN = top, 16 mass = 4 temp = 207.190739260308 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = Mark1-2Pod modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True controlSrcStatusText = Not Enough Crew (0/1) EVENTS { MakeReference { active = True guiActive = True guiIcon = Control From Here guiName = Control From Here category = Control From Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } RenameVessel { active = True guiActive = True guiIcon = Rename Vessel guiName = Rename Vessel category = Rename Vessel guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleReactionWheel isEnabled = True stateString = Running WheelState = Active EVENTS { OnToggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle Torque guiName = Toggle Torque category = Toggle Torque guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Crew Report category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data category = guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Report category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Discard Crew Report category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Crew Report category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Discard Crew Report category = Reset guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } MODULE { name = ModuleScienceContainer isEnabled = True EVENTS { StoreDataExternalEvent { active = False guiActive = False guiIcon = guiName = Store Experiments (0) category = guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data (0) category = guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Stored Data (0) category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = FlagDecal isEnabled = True flagDisplayed = True EVENTS { ToggleFlag { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle Flag guiName = Toggle Flag category = Toggle Flag guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleTripLogger isEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Flyby,Duna 0 = Orbit,Duna } } RESOURCE { name = ElectricCharge amount = 150 maxAmount = 150 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = MonoPropellant amount = 30 maxAmount = 30 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryBankLarge cid = 4291900512 uid = 69305406 mid = 662739497 launchID = 10 parent = 17 position = -2.99513339996338E-06,-3.71273684501648,1.20699405670166E-06 rotation = -1.24345E-14,-1.776356E-15,1.421086E-14,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 0 srfN = None, -1 attN = top, 17 attN = bottom, 19 mass = 0.2 temp = 207.201491601908 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryBankLarge modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 4000 maxAmount = 4000 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryBankLarge cid = 4291900246 uid = 939849211 mid = 662739497 launchID = 10 parent = 18 position = -3.29315662384033E-06,-3.9477379322052,1.50501728057861E-06 rotation = -1.243449E-14,-1.776356E-15,1.421086E-14,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 0 srfN = None, -1 attN = top, 18 attN = bottom, 20 mass = 0.2 temp = 207.210372755135 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryBankLarge modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 4000 maxAmount = 4000 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryBankLarge cid = 4291898798 uid = 3278060782 mid = 662739497 launchID = 10 parent = 19 position = -3.90410423278809E-06,-4.18273735046387,1.80304050445557E-06 rotation = -1.243449E-14,-1.776356E-15,1.421087E-14,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 0 srfN = None, -1 attN = top, 19 attN = bottom, 21 mass = 0.2 temp = 207.217662202639 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryBankLarge modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 4000 maxAmount = 4000 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryBankLarge cid = 4291898436 uid = 2529920931 mid = 662739497 launchID = 10 parent = 20 position = -4.60445880889893E-06,-4.41773700714111,2.10106372833252E-06 rotation = -1.243449E-14,-1.776357E-15,1.421088E-14,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 0 srfN = None, -1 attN = top, 20 attN = bottom, 22 mass = 0.2 temp = 207.224138096971 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryBankLarge modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 4000 maxAmount = 4000 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = largeAdapter2 cid = 4291781952 uid = 719027971 mid = 662739497 launchID = 10 parent = 21 position = -5.0961971282959E-06,-4.73194694519043,2.39908695220947E-06 rotation = -1.243449E-14,-1.776357E-15,1.421088E-14,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 0 srfN = None, -1 attN = top, 21 attN = bottom, 23 mass = 0.08 temp = 207.232849636191 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = largeAdapter2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = trussAdapter cid = 4291891810 uid = 282457158 mid = 662739497 launchID = 10 parent = 22 position = -5.79655170440674E-06,-5.33199787139893,2.80141830444336E-06 rotation = 1,1.421089E-14,1.776357E-15,1.243448E-14 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 0 srfN = None, -1 attN = bottom, 22 attN = top, 24 mass = 0.25 temp = 207.222811240215 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = trussAdapter modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = trussPiece1x cid = 4291885248 uid = 4228649401 mid = 662739497 launchID = 10 parent = 23 position = -6.60121440887451E-06,-6.5406379699707,3.09944152832031E-06 rotation = -1.243448E-14,-1.776358E-15,1.421089E-14,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 0 srfN = None, -1 attN = None, -1 attN = top, 23 mass = 0.125 temp = 207.206125842344 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = trussPiece1x modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = RTLongDish2 cid = 4291876184 uid = 1039155463 mid = 662739497 launchID = 10 parent = 24 position = -7.39097595214844E-06,-6.93747806549072,-0.416945576667786 rotation = -5.769801E-09,0.7660444,-0.6427878,-9.116897E-09 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 1 sym = 26 srfN = srfAttach, 24 attN = None, -1 mass = 1 temp = 207.208807905578 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 0.999999939076519 RTOmniRange = 0 RTDishRange = 6E+10 RTAntennaTarget = 35b89a0d-664c-43c6-bec8-d0840afc97b2 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = Active Vessel category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = RTLongDish2 cid = 4291875394 uid = 3360861251 mid = 662739497 launchID = 10 parent = 24 position = -7.30156898498535E-06,-6.93747806549072,0.41695237159729 rotation = -0.6427878,-5.383485E-08,4.63698E-08,-0.7660443 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 1 sym = 25 srfN = srfAttach, 24 attN = None, -1 mass = 1 temp = 207.208803819305 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 0.999999939076519 RTOmniRange = 0 RTDishRange = 6E+10 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = Kerbin Outpost category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = spotLight2 cid = 4291869160 uid = 1189732646 mid = 662739497 launchID = 10 parent = 24 position = -0.542640924453735,-7.18309497833252,4.09781932830811E-06 rotation = 0.6830127,0.1830127,0.6830127,-0.1830127 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 1 sym = 28 srfN = srfAttach, 24 mass = 0.015 temp = 207.256501805781 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = spotLight2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLight isEnabled = True isOn = False lightR = 0.35 lightG = 0.35 lightB = 0.45 lightR_UIFlight { controlEnabled = True minValue = 0 maxValue = 1 stepIncrement = 0.05 } lightG_UIFlight { controlEnabled = True minValue = 0 maxValue = 1 stepIncrement = 0.05 } lightB_UIFlight { controlEnabled = True minValue = 0 maxValue = 1 stepIncrement = 0.05 } EVENTS { LightsOff { active = False guiActive = True guiActiveEditor = True guiIcon = Lights Off guiName = Lights Off category = Lights Off guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } LightsOn { active = True guiActive = True guiActiveEditor = True guiIcon = Lights On guiName = Lights On category = Lights On guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleLightAction { actionGroup = Light } LightOnAction { actionGroup = None } LightOffAction { actionGroup = None } } } } PART { name = spotLight2 cid = 4291868024 uid = 2962826948 mid = 662739497 launchID = 10 parent = 24 position = 0.542627096176147,-7.1830940246582,2.50339508056641E-06 rotation = 0.6830127,-0.1830127,-0.6830128,-0.1830127 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 1 sym = 27 srfN = srfAttach, 24 mass = 0.015 temp = 207.25657933556 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = spotLight2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLight isEnabled = True isOn = False lightR = 0.35 lightG = 0.35 lightB = 0.45 lightR_UIFlight { controlEnabled = True minValue = 0 maxValue = 1 stepIncrement = 0.05 } lightG_UIFlight { controlEnabled = True minValue = 0 maxValue = 1 stepIncrement = 0.05 } lightB_UIFlight { controlEnabled = True minValue = 0 maxValue = 1 stepIncrement = 0.05 } EVENTS { LightsOff { active = False guiActive = True guiActiveEditor = True guiIcon = Lights Off guiName = Lights Off category = Lights Off guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } LightsOn { active = True guiActive = True guiActiveEditor = True guiIcon = Lights On guiName = Lights On category = Lights On guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleLightAction { actionGroup = Light } LightOnAction { actionGroup = None } LightOffAction { actionGroup = None } } } } PART { name = strutCube cid = 4291716358 uid = 1793561382 mid = 662739497 launchID = 10 parent = 23 position = -0.438740313053131,-5.40678691864014,-0.0179701000452042 rotation = 0.5,-0.5,-0.5,-0.5 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 1 sym = 31 srfN = srfAttach, 23 attN = None, -1 attN = None, -1 mass = 0.001 temp = 207.34823302781 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = RTShortDish2 cid = 4291721772 uid = 650165889 mid = 662739497 launchID = 10 parent = 29 position = -0.575168609619141,-5.39395713806152,-0.00951610505580902 rotation = 0.579228,-0.4055798,-0.579228,-0.4055798 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 1 sym = 32 srfN = srfAttach, 29 attN = None, -1 mass = 0.5 temp = 207.192271507913 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 0.976296007119933 RTOmniRange = 0 RTDishRange = 9E+07 RTAntennaTarget = 44756e61-4475-6e61-4475-6e6144756e61 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = Duna category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = strutCube cid = 4291716082 uid = 1934565758 mid = 662739497 launchID = 10 parent = 23 position = 0.4387286901474,-5.40678691864014,0.017975702881813 rotation = 0.4999999,0.5000001,0.5000001,-0.4999999 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 1 sym = 29 srfN = srfAttach, 23 attN = None, -1 attN = None, -1 mass = 0.001 temp = 207.348248329597 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = RTShortDish2 cid = 4291715444 uid = 1210664578 mid = 662739497 launchID = 10 parent = 31 position = 0.57515811920166,-5.39395713806152,0.00952158868312836 rotation = 0.579228,0.4055798,0.579228,-0.4055797 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 1 sym = 30 srfN = srfAttach, 31 attN = None, -1 mass = 0.5 temp = 207.192289582684 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 0.976296007119933 RTOmniRange = 0 RTDishRange = 9E+07 RTAntennaTarget = 496b6549-6b65-496b-6549-6b65496b6549 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = Ike category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = RCSBlock cid = 4291765080 uid = 3930405704 mid = 662739497 launchID = 10 parent = 20 position = -0.000746205449104309,-4.20085716247559,-1.29595828056335 rotation = 1.751841E-07,0.7071068,-1.468794E-07,-0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 1 sym = 34 sym = 35 sym = 36 srfN = srfAttach, 20 mass = 0.05 temp = 207.198352757305 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = RCSBlock cid = 4291753812 uid = 1131697815 mid = 662739497 launchID = 10 parent = 20 position = -1.29596197605133,-4.2008581161499,0.00074400007724762 rotation = 1.490115E-08,-1.043081E-07,-2.235174E-07,-1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 1 sym = 33 sym = 35 sym = 36 srfN = srfAttach, 20 mass = 0.05 temp = 207.193240422205 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = RCSBlock cid = 4291753648 uid = 3844512245 mid = 662739497 launchID = 10 parent = 20 position = 0.00073850154876709,-4.20085716247559,1.29595971107483 rotation = -1.453818E-07,-0.7071069,-1.766817E-07,-0.7071067 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 1 sym = 33 sym = 34 sym = 36 srfN = srfAttach, 20 mass = 0.05 temp = 207.198471621806 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = RCSBlock cid = 4291753484 uid = 2383748940 mid = 662739497 launchID = 10 parent = 20 position = 1.29595506191254,-4.2008581161499,-0.000740602612495422 rotation = -2.086163E-07,-1,2.486899E-14,8.940697E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 1 sym = 33 sym = 34 sym = 35 srfN = srfAttach, 20 mass = 0.05 temp = 207.192792131476 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = strutCube cid = 4292205666 uid = 1487654063 mid = 662739497 launchID = 10 parent = 0 position = 0,0.0884180068969727,0 rotation = -1.24345E-14,-1.776357E-15,-1.192093E-07,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 54 attN = bottom, 0 mass = 0.001 temp = 207.414053440938 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = trussPiece1x cid = 4292202516 uid = 2983713478 mid = 662739497 launchID = 10 parent = 37 position = 0.666693031787872,0.262138843536377,-2.98023223876953E-07 rotation = -0.5000001,-0.5000001,0.5000001,-0.4999999 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 37 attN = None, -1 attN = top, 39 mass = 0.125 temp = 207.184190105403 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = trussPiece1x modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = adapterSmallMiniTall cid = 4292179626 uid = 862814259 mid = 662739497 launchID = 10 parent = 38 position = 1.53846681118011,0.262138843536377,-7.45058059692383E-08 rotation = 0.7071069,-0.7071068,1.384224E-08,7.706235E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 38 attN = bottom, 40 mass = 0.05 temp = 207.229739151034 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = adapterSmallMiniTall modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = dockingPortLateral cid = 4292165292 uid = 2432698170 mid = 662739497 launchID = 10 parent = 39 position = 2.48878526687622,0.262140035629272,7.5995922088623E-07 rotation = -0.5000001,0.5000001,-0.4999999,-0.5000001 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 0 srfN = None, -1 attN = top, 39 attN = bottom, 41 mass = 0.3 temp = 207.204071869503 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = dockingPortLateral modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDockingNode isEnabled = True state = Disabled dockUId = 0 dockNodeIdx = 0 EVENTS { Undock { active = False guiActive = True guiIcon = Undock guiName = Undock category = Undock guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } UndockSameVessel { active = False guiActive = True guiIcon = Undock guiName = Undock category = Undock guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } Decouple { active = False guiActive = True guiIcon = Decouple Node guiName = Decouple Node category = Decouple Node guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } SetAsTarget { active = True guiActive = False guiIcon = Set as Target guiName = Set as Target category = Set as Target guiActiveUnfocused = True unfocusedRange = 200 externalToEVAOnly = False } UnsetTarget { active = False guiActive = False guiIcon = Unset Target guiName = Unset Target category = Unset Target guiActiveUnfocused = True unfocusedRange = 200 externalToEVAOnly = False } EnableXFeed { active = False guiActive = True guiIcon = Enable Crossfeed guiName = Enable Crossfeed category = Enable Crossfeed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DisableXFeed { active = False guiActive = True guiIcon = Disable Crossfeed guiName = Disable Crossfeed category = Disable Crossfeed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } MakeReferenceTransform { active = True guiActive = True guiIcon = Control from Here guiName = Control from Here category = Control from Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { UndockAction { actionGroup = None } DecoupleAction { actionGroup = None } } } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = -1 EVENTS { Toggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle guiName = Open category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = largeAdapter cid = 4292150476 uid = 529562443 mid = 662739497 launchID = 10 parent = 40 position = 3.81410837173462,0.262140035629272,1.49011611938477E-06 rotation = -0.5000001,0.5000001,-0.4999999,-0.5000001 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 0 srfN = None, -1 attN = top, 40 attN = bottom, 42 mass = 0.1 temp = 207.188028253973 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = largeAdapter modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = crewCabin cid = 4292150100 uid = 608332642 mid = 662739497 launchID = 10 parent = 41 position = 5.55602359771729,0.262140035629272,2.65240669250488E-06 rotation = -0.5000001,0.5000001,-0.4999999,-0.5000001 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 0 srfN = None, -1 attN = top, 41 attN = bottom, 44 mass = 2.5 temp = 207.150177467531 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = crewCabin modCost = 0 crew = Kimne Kerman crew = Stelmy Kerman crew = Wilanne Kerman crew = Burbal Kerman EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Crew Report category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data category = guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Report category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Discard Crew Report category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Crew Report category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Discard Crew Report category = Reset guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } MODULE { name = ModuleScienceContainer isEnabled = True EVENTS { StoreDataExternalEvent { active = False guiActive = False guiIcon = guiName = Store Experiments (0) category = guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data (0) category = guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Stored Data (0) category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = FlagDecal isEnabled = True flagDisplayed = True EVENTS { ToggleFlag { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle Flag guiName = Toggle Flag category = Toggle Flag guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleTripLogger isEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Flyby,Duna 0 = Orbit,Duna } } } PART { name = largeSolarPanel cid = 4291936346 uid = 2611560475 mid = 662739497 launchID = 10 parent = 42 position = 5.3234281539917,-0.886130332946777,5.05149364471436E-06 rotation = -4.214692E-08,1.05367E-07,-0.7071066,-0.7071072 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 1 srfN = srfAttach, 42 mass = 0.3 temp = 207.355955405198 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = largeSolarPanel modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (-0.05070224, -0.0507022, -0.7052866, 0.7052868) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = largeAdapter2 cid = 4291918596 uid = 2516360101 mid = 662739497 launchID = 10 parent = 42 position = 6.73213577270508,0.262140035629272,3.27825546264648E-06 rotation = 0.5000002,-0.5000001,-0.4999999,-0.5000001 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 0 srfN = None, -1 attN = top, 42 attN = None, -1 mass = 0.08 temp = 207.169928090908 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = largeAdapter2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = RCSBlock cid = 4291765852 uid = 2605571534 mid = 662739497 launchID = 10 parent = 44 position = 6.92725467681885,0.256858825683594,-0.0253609269857407 rotation = 2.384186E-07,-1,1.788139E-07,-2.980232E-07 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 1 srfN = srfAttach, 44 mass = 0.05 temp = 207.182302876246 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = trussPiece1x cid = 4292201706 uid = 240784329 mid = 662739497 launchID = 10 parent = 37 position = -0.666693389415741,0.262140035629272,0 rotation = -0.5,0.5,-0.4999999,-0.5000001 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 37 attN = None, -1 attN = top, 47 mass = 0.125 temp = 207.199056639911 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = trussPiece1x modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = adapterSmallMiniTall cid = 4292180790 uid = 3106637031 mid = 662739497 launchID = 10 parent = 46 position = -1.53846621513367,0.262140035629272,3.27825546264648E-07 rotation = 1.053673E-08,1.053669E-08,0.7071068,-0.7071069 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 46 attN = bottom, 48 mass = 0.05 temp = 207.235134087778 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = adapterSmallMiniTall modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = dockingPortLateral cid = 4292165726 uid = 2163940983 mid = 662739497 launchID = 10 parent = 47 position = -2.48878264427185,0.262140035629272,4.61935997009277E-07 rotation = 0.5000002,0.5,-0.5000002,0.4999999 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 0 srfN = None, -1 attN = top, 47 attN = bottom, 49 mass = 0.3 temp = 207.201613817189 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = dockingPortLateral modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDockingNode isEnabled = True state = Disabled dockUId = 0 dockNodeIdx = 0 EVENTS { Undock { active = False guiActive = True guiIcon = Undock guiName = Undock category = Undock guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } UndockSameVessel { active = False guiActive = True guiIcon = Undock guiName = Undock category = Undock guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } Decouple { active = False guiActive = True guiIcon = Decouple Node guiName = Decouple Node category = Decouple Node guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } SetAsTarget { active = True guiActive = False guiIcon = Set as Target guiName = Set as Target category = Set as Target guiActiveUnfocused = True unfocusedRange = 200 externalToEVAOnly = False } UnsetTarget { active = False guiActive = False guiIcon = Unset Target guiName = Unset Target category = Unset Target guiActiveUnfocused = True unfocusedRange = 200 externalToEVAOnly = False } EnableXFeed { active = False guiActive = True guiIcon = Enable Crossfeed guiName = Enable Crossfeed category = Enable Crossfeed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DisableXFeed { active = False guiActive = True guiIcon = Disable Crossfeed guiName = Disable Crossfeed category = Disable Crossfeed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } MakeReferenceTransform { active = True guiActive = True guiIcon = Control from Here guiName = Control from Here category = Control from Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { UndockAction { actionGroup = None } DecoupleAction { actionGroup = None } } } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = -1 EVENTS { Toggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle guiName = Open category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = largeAdapter cid = 4292150758 uid = 2609253620 mid = 662739497 launchID = 10 parent = 48 position = -3.81409788131714,0.262139797210693,2.83122062683105E-07 rotation = 0.5000001,0.5,-0.5000001,0.5 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 0 srfN = None, -1 attN = top, 48 attN = bottom, 50 mass = 0.1 temp = 207.190367835223 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = largeAdapter modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = crewCabin cid = 4292158756 uid = 2485833405 mid = 662739497 launchID = 10 parent = 49 position = -5.55600643157959,0.262138605117798,5.51342964172363E-07 rotation = 0.5000002,0.4999999,-0.5000001,0.5 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 0 srfN = None, -1 attN = top, 49 attN = bottom, 52 mass = 2.5 temp = 207.150438169856 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = crewCabin modCost = 0 crew = Matwin Kerman EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Crew Report category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data category = guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Report category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Discard Crew Report category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Crew Report category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Discard Crew Report category = Reset guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } MODULE { name = ModuleScienceContainer isEnabled = True EVENTS { StoreDataExternalEvent { active = False guiActive = False guiIcon = guiName = Store Experiments (0) category = guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data (0) category = guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Stored Data (0) category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = FlagDecal isEnabled = True flagDisplayed = True EVENTS { ToggleFlag { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle Flag guiName = Toggle Flag category = Toggle Flag guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleTripLogger isEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Flyby,Duna 0 = Orbit,Duna } } } PART { name = largeSolarPanel cid = 4291939154 uid = 3839114387 mid = 662739497 launchID = 10 parent = 50 position = -5.3969030380249,-0.891386747360229,-2.33948230743408E-06 rotation = -0.7071069,-0.7071069,-7.194917E-08,-3.341796E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 1 srfN = srfAttach, 50 mass = 0.3 temp = 207.352037365988 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = largeSolarPanel modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0.7052867, 0.7052862, -0.05070503, 0.05070498) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = largeAdapter2 cid = 4291919060 uid = 733630092 mid = 662739497 launchID = 10 parent = 50 position = -6.73212432861328,0.262138605117798,2.83122062683105E-07 rotation = -0.5000001,-0.5000001,0.5000001,-0.5000001 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 0 srfN = None, -1 attN = top, 50 attN = None, -1 mass = 0.08 temp = 207.172868214778 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = largeAdapter2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = RCSBlock cid = 4291766360 uid = 3912022823 mid = 662739497 launchID = 10 parent = 52 position = -6.92724323272705,0.230138540267944,0.019981786608696 rotation = 3.576278E-07,-7.450581E-07,8.940698E-08,-1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 1 srfN = srfAttach, 52 mass = 0.05 temp = 207.178524113853 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = cupola cid = 4292198984 uid = 3046828525 mid = 662739497 launchID = 10 parent = 46 position = -8.94069671630859E-08,0.465020895004272,-3.12924385070801E-07 rotation = -1.192093E-07,-1,1.24345E-14,-1.776357E-15 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = bottom, 46 attN = None, -1 mass = 1.76 temp = 207.192382157168 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = cupola modCost = 0 crew = Eliicca Kerman EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True controlSrcStatusText = Operational EVENTS { MakeReference { active = True guiActive = True guiIcon = Control From Here guiName = Control From Here category = Control From Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } RenameVessel { active = True guiActive = True guiIcon = Rename Vessel guiName = Rename Vessel category = Rename Vessel guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleReactionWheel isEnabled = True stateString = Running WheelState = Active EVENTS { OnToggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle Torque guiName = Toggle Torque category = Toggle Torque guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Crew Report category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data category = guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Report category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Discard Crew Report category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Crew Report category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Discard Crew Report category = Reset guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } MODULE { name = ModuleScienceContainer isEnabled = True EVENTS { StoreDataExternalEvent { active = False guiActive = False guiIcon = guiName = Store Experiments (0) category = guiActiveUnfocused = True unfocusedRange = 1.6 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data (0) category = guiActiveUnfocused = True unfocusedRange = 1.6 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Stored Data (0) category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = FlagDecal isEnabled = True flagDisplayed = True EVENTS { ToggleFlag { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle Flag guiName = Toggle Flag category = Toggle Flag guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleTripLogger isEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Flyby,Duna 0 = Orbit,Duna } } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = MonoPropellant amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = RCSBlock cid = 4291752676 uid = 2107472572 mid = 662739497 launchID = 10 parent = 54 position = 0.971450090408325,0.454691171646118,-0.972500145435333 rotation = 2.237531E-09,-0.9238796,-7.085361E-08,0.3826835 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 56 sym = 57 sym = 58 srfN = srfAttach, 54 mass = 0.05 temp = 207.200083285136 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = RCSBlock cid = 4291738016 uid = 922002055 mid = 662739497 launchID = 10 parent = 54 position = -0.972499370574951,0.454689979553223,-0.971451222896576 rotation = 5.920744E-09,-0.3826835,-2.09875E-07,0.9238796 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 55 sym = 57 sym = 58 srfN = srfAttach, 54 mass = 0.05 temp = 207.198178142162 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = RCSBlock cid = 4291737772 uid = 1740972456 mid = 662739497 launchID = 10 parent = 54 position = -0.971449613571167,0.454689860343933,0.972498953342438 rotation = 2.61501E-08,0.3826835,-2.212799E-07,0.9238796 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 55 sym = 56 sym = 58 srfN = srfAttach, 54 mass = 0.05 temp = 207.200375733175 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = RCSBlock cid = 4291737528 uid = 2851692404 mid = 662739497 launchID = 10 parent = 54 position = 0.972498655319214,0.454690098762512,0.971449136734009 rotation = -1.36424E-08,0.9238796,-9.838735E-08,0.3826834 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 55 sym = 56 sym = 57 srfN = srfAttach, 54 mass = 0.05 temp = 207.19801191306 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } ACTIONGROUPS { Stage = False, 0 Gear = True, 0 Light = False, 0 RCS = True, 168826.240997327 SAS = True, 168826.820997327 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = -0.0005476528 yaw = -0.002996056 roll = 0.001121809 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } } VESSEL { pid = 32f884da323e4c3589fddb662caf41a3 name = Ion-Powered Space Probe type = Probe sit = ORBITING landed = False landedAt = splashed = False met = 373123.327167142 lct = 168967.620997253 root = 0 lat = -3.53256004572919E-05 lon = -77.1903786035093 alt = 199999.021791028 hgt = -1 nrm = -9.505834E-06,1,-8.135914E-06 rot = 0.6199818,-0.1941052,0.3400342,-0.679943 CoM = 0.0001419478,-0.2806645,3.261752E-05 stg = 1 prst = False ref = 3773147493 ctrl = True cPch = cHdg = cMod = 0 ORBIT { SMA = 520006.120025447 ECC = 1.50065970767985E-05 INC = 3.54084542890265E-05 LPE = 247.420595000828 LAN = 205.025544079846 MNA = 0.331326450090285 EPH = 542090.948164395 REF = 6 } PART { name = probeCoreOcto cid = 4294262242 uid = 3773147493 mid = 1911417161 launchID = 11 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = bottom, 1 attN = top, 11 mass = 0.1 temp = 286.230770908062 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = probeCoreOcto (Ion-Powered Space Probe) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True controlSrcStatusText = Operational EVENTS { MakeReference { active = True guiActive = True guiIcon = Control From Here guiName = Control From Here category = Control From Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } RenameVessel { active = True guiActive = True guiIcon = Rename Vessel guiName = Rename Vessel category = Rename Vessel guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleReactionWheel isEnabled = True stateString = Running WheelState = Active EVENTS { OnToggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle Torque guiName = Toggle Torque category = Toggle Torque guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True standaloneToggle_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = RadialPlus Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 542090.948164395 ExtraDelay = 0 CmdGuid = 2a33c668-37ae-4434-aca4-3131363366f8 } } Commands { } } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 EVENTS { } ACTIONS { } } MODULE { name = ModuleTripLogger isEnabled = False EVENTS { } ACTIONS { } Log { flight = 0 0 = Flyby,Duna 0 = Orbit,Duna } } RESOURCE { name = ElectricCharge amount = 9.99913333340859 maxAmount = 10 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = xenonTank cid = 4294262210 uid = 1886556706 mid = 1911417161 launchID = 11 parent = 0 position = 0,-0.327548265457153,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 0 attN = bottom, 2 mass = 0.055 temp = 286.4884138204 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = xenonTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = XenonGas amount = 700 maxAmount = 700 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = ionEngine cid = 4294262132 uid = 4010471153 mid = 1911417161 launchID = 11 parent = 1 position = 0,-0.68156909942627,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 1 attN = None, -1 mass = 0.25 temp = 286.735355180511 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = ionEngine modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate guiName = Activate category = Activate guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown guiName = Shutdown category = Shutdown guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = None } } } MODULE { name = FXModuleAnimateThrottle isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } } PART { name = rtg cid = 4294262184 uid = 3787786986 mid = 1911417161 launchID = 11 parent = 0 position = 0.670524120330811,0.045231819152832,-8.94069671630859E-08 rotation = -0.4999999,-0.5000001,0.5000001,-0.4999999 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 4 srfN = srfAttach, 0 attN = None, -1 attN = None, -1 mass = 0.08 temp = 286.794129883082 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = rtg modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleGenerator isEnabled = True generatorIsActive = True throttle = 0 EVENTS { Activate { active = False guiActive = True guiIcon = Activate guiName = Activate Generator category = Activate guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown guiName = Shutdown Generator category = Shutdown guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } ActivateAction { actionGroup = None } ShutdownAction { actionGroup = None } } } } PART { name = rtg cid = 4294262158 uid = 1145211220 mid = 1911417161 launchID = 11 parent = 0 position = -0.670524179935455,0.045231819152832,1.86264514923096E-08 rotation = -0.5,0.5,-0.5,-0.5 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 3 srfN = srfAttach, 0 attN = None, -1 attN = None, -1 mass = 0.08 temp = 286.794919302449 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = rtg modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleGenerator isEnabled = True generatorIsActive = True throttle = 0 EVENTS { Activate { active = False guiActive = True guiIcon = Activate guiName = Activate Generator category = Activate guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown guiName = Shutdown Generator category = Shutdown guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } ActivateAction { actionGroup = None } ShutdownAction { actionGroup = None } } } } PART { name = sensorAccelerometer cid = 4294261948 uid = 240367318 mid = 1911417161 launchID = 11 parent = 0 position = -0.236604601144791,0.0214266777038574,-0.248983815312386 rotation = 9.895462E-08,-0.3826834,-4.098834E-08,-0.9238796 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 0 mass = 0.005 temp = 285.335939182471 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = sensorAccelerometer modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False EVENTS { Toggle { active = True guiActive = True guiIcon = Toggle guiName = Toggle category = Toggle guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = Custom10 } } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Log Seismic Data category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data category = guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Data category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Log Seismic Data category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } } PART { name = sensorThermometer cid = 4294261926 uid = 2736203356 mid = 1911417161 launchID = 11 parent = 0 position = 0.244405120611191,-0.00693416595458984,0.241182789206505 rotation = 4.098834E-08,-0.9238794,9.895451E-08,0.3826838 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 0 mass = 0.005 temp = 286.231269150244 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = sensorThermometer modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False EVENTS { Toggle { active = True guiActive = True guiIcon = Toggle guiName = Toggle category = Toggle guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = Custom10 } } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = True Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Log Temperature category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = True guiActive = False guiIcon = guiName = Take Data category = guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } ReviewDataEvent { active = True guiActive = True guiIcon = Review Data guiName = Review Data category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Log Temperature category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } ScienceData { data = 8 subjectID = temperatureScan@DunaInSpaceHigh xmit = 0.5 labBoost = 1 title = Temperature Scan while in space high over Duna } } } PART { name = batteryPack cid = 4294261904 uid = 1777776863 mid = 1911417161 launchID = 11 parent = 0 position = -2.98023223876953E-08,0.00665283203125,-0.343556791543961 rotation = 0,-4.371139E-08,0,-1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 8 srfN = srfAttach, 0 mass = 0.005 temp = 284.836291501512 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 99.9991333334086 maxAmount = 100 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryPack cid = 4294261870 uid = 1579665958 mid = 1911417161 launchID = 11 parent = 0 position = 0,0.00665283203125,0.343556791543961 rotation = 0,1,0,0 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 7 srfN = srfAttach, 0 mass = 0.005 temp = 284.728701507734 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 99.9991333334086 maxAmount = 100 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = solarPanels4 cid = 4289805326 uid = 1368647046 mid = 1911417161 launchID = 11 parent = 0 position = 0.24299892783165,0.027012825012207,-0.242998912930489 rotation = 0,0.9238794,0,-0.3826837 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 10 srfN = srfAttach, 0 mass = 0.0175 temp = 283.238823316568 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0.6199061, 0.6199059, 0.3401711, -0.3401716) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = False guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels4 cid = 4289804994 uid = 1383575597 mid = 1911417161 launchID = 11 parent = 0 position = -0.242998987436295,0.027012825012207,0.242998987436295 rotation = 0,-0.3826838,0,-0.9238794 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 9 srfN = srfAttach, 0 mass = 0.0175 temp = 283.243762921944 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0.3401715, 0.3401709, 0.6199062, -0.6199061) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = False guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = longAntenna cid = 4289789982 uid = 2144228706 mid = 1911417161 launchID = 11 parent = 0 position = 0,0.187081813812256,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = bottom, 0 mass = 0.005 temp = 286.294973251788 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = longAntenna modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0.9905649 animSpeed = 1 EVENTS { Toggle { active = False guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 2500000 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } ACTIONGROUPS { Stage = False, 0 Gear = True, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0.000803558 yaw = -0.002203857 roll = -0.0006039869 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } } VESSEL { pid = fa853ad7edc84cafa0a84e954ed60aa5 name = Minmus Sat 2 type = Probe sit = ORBITING landed = False landedAt = splashed = False met = 608.093281010661 lct = 173518.647832715 root = 0 lat = 1.11574197738678E-06 lon = -262.698078868399 alt = 76000.4285293003 hgt = -1 nrm = -6.173659E-05,0.9999998,-0.0006834413 rot = 0.4932108,0.4402831,0.5067015,0.553306 CoM = 0.0001429761,-0.3285973,0.001315568 stg = 1 prst = False ref = 1831877541 ctrl = True cPch = cHdg = cMod = 0 ORBIT { SMA = 136012.437782502 ECC = 9.10124549422156E-05 INC = 1.25187790695521E-05 LPE = 0.476804970570079 LAN = 73.7883294358958 MNA = 5.96866569115798 EPH = 174126.761113726 REF = 3 } PART { name = probeCoreOcto cid = 4292954960 uid = 1831877541 mid = 1300566789 launchID = 16 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = bottom, 1 attN = top, 23 mass = 0.1 temp = 288.155572744883 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = probeCoreOcto (Minmus Sat 2) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True controlSrcStatusText = Operational EVENTS { MakeReference { active = True guiActive = True guiIcon = Control From Here guiName = Control From Here category = Control From Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } RenameVessel { active = True guiActive = True guiIcon = Rename Vessel guiName = Rename Vessel category = Rename Vessel guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleReactionWheel isEnabled = True stateString = Running WheelState = Active EVENTS { OnToggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle Torque guiName = Toggle Torque category = Toggle Torque guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True standaloneToggle_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = RadialPlus Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 174126.761113726 ExtraDelay = -0.00214668698065523 CmdGuid = 337096cc-5c99-481c-8fc6-767d1407df10 } } Commands { } } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 EVENTS { } ACTIONS { } } MODULE { name = ModuleTripLogger isEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Flyby,Minmus 0 = Orbit,Minmus } } RESOURCE { name = ElectricCharge amount = 0.00122386096820898 maxAmount = 10 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = toroidalFuelTank cid = 4292997758 uid = 431133059 mid = 1300566789 launchID = 16 parent = 0 position = 0,-0.236940383911133,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 0 attN = bottom, 2 mass = 0.0375 temp = 287.945148951892 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = toroidalFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 27 maxAmount = 27 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 33 maxAmount = 33 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = miniFuelTank cid = 4292966554 uid = 2619989824 mid = 1300566789 launchID = 16 parent = 1 position = 0,-0.461079597473145,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 1 attN = None, -1 mass = 0.025 temp = 287.935887859502 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = strutCube cid = 4292988880 uid = 815004420 mid = 1300566789 launchID = 16 parent = 2 position = -0.322761207818985,-0.501720428466797,2.36872192971305E-08 rotation = -0.3799282,0.5963678,-0.3799282,-0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 7 sym = 11 sym = 15 srfN = srfAttach, 2 attN = top, 4 attN = None, -1 mass = 0.001 temp = 291.804424769864 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = miniFuelTank cid = 4292981632 uid = 4074017152 mid = 1300566789 launchID = 16 parent = 3 position = -0.509626984596252,-0.414580345153809,1.21527151009104E-07 rotation = -0.3799282,0.5963678,-0.3799282,-0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 8 sym = 12 sym = 16 srfN = None, -1 attN = top, 5 attN = bottom, 3 mass = 0.025 temp = 287.970199642308 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = RTShortDish2 cid = 4292938924 uid = 3103005663 mid = 1300566789 launchID = 16 parent = 4 position = -0.667572617530823,-0.340929985046387,1.60908101065615E-07 rotation = 0.3799282,-0.5963678,0.3799282,0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 9 sym = 13 sym = 17 srfN = None, -1 attN = bottom, 4 mass = 0.5 temp = 287.95551450599 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 0.976296007119933 RTOmniRange = 0 RTDishRange = 9E+07 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = Kerbin category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = strutConnector cid = 4292934616 uid = 2857051713 mid = 1300566789 launchID = 16 parent = 4 position = -0.501181423664093,-0.411379814147949,-0.301624417304993 rotation = -0.3799281,0.596368,-0.3799284,-0.5963677 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 10 sym = 14 sym = 18 srfN = srfAttach, 4 mass = 0.05 temp = 287.625820475096 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutConnector modCost = 0 EVENTS { } ACTIONS { } PARTDATA { tgt = 4292949498 pos = -0.211275,-0.1778487,-0.09079259 rot = 2.065939E-16,-0.2988362,0.6408563,0.7071071 dir = -0.7267627,-0.6117797,-0.3123165 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { name = strutCube cid = 4292949644 uid = 641396984 mid = 1300566789 launchID = 16 parent = 2 position = 7.11419829713122E-08,-0.501720428466797,0.322761297225952 rotation = -0.5372996,-3.686581E-08,2.348611E-08,-0.8433915 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 3 sym = 11 sym = 15 srfN = srfAttach, 2 attN = top, 8 attN = None, -1 mass = 0.001 temp = 291.483253892447 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = miniFuelTank cid = 4292949618 uid = 3412833021 mid = 1300566789 launchID = 16 parent = 7 position = 1.74179803025254E-07,-0.414580345153809,0.509626984596252 rotation = -0.5372996,-3.686581E-08,2.348611E-08,-0.8433915 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 4 sym = 12 sym = 16 srfN = None, -1 attN = top, 9 attN = bottom, 7 mass = 0.025 temp = 287.957092508487 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = RTShortDish2 cid = 4292939956 uid = 1113086356 mid = 1300566789 launchID = 16 parent = 8 position = 1.87987794220135E-07,-0.340929985046387,0.667572617530823 rotation = 0.5372996,2.869286E-08,-2.869286E-08,0.8433915 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 5 sym = 13 sym = 17 srfN = None, -1 attN = bottom, 8 mass = 0.5 temp = 287.961667235684 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 0.976296007119933 RTOmniRange = 0 RTDishRange = 9E+07 RTAntennaTarget = 2d6a2008-6b5c-48b1-ab50-7567ad27dfb5 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = Kerbin Outpost category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True EVENTS { } ACTIONS { } } } PART { name = strutConnector cid = 4292933968 uid = 3031129224 mid = 1300566789 launchID = 16 parent = 8 position = -0.301624298095703,-0.411379814147949,0.501181483268738 rotation = -0.5372997,2.160153E-07,-1.661747E-07,-0.8433914 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 6 sym = 14 sym = 18 srfN = srfAttach, 8 mass = 0.05 temp = 287.624687704444 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutConnector modCost = 0 EVENTS { } ACTIONS { } PARTDATA { tgt = 4292981632 pos = -0.2112749,-0.1778492,-0.09079282 rot = -7.616486E-16,-0.2988361,0.6408566,0.7071068 dir = -0.7267615,-0.6117809,-0.3123169 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { name = strutCube cid = 4292949584 uid = 3833120029 mid = 1300566789 launchID = 16 parent = 2 position = 0.322761207818985,-0.501720428466797,-6.21633589048542E-08 rotation = -0.3799282,-0.5963678,0.3799282,-0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 3 sym = 7 sym = 15 srfN = srfAttach, 2 attN = top, 12 attN = None, -1 mass = 0.001 temp = 290.759749559805 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = miniFuelTank cid = 4292949558 uid = 2540084759 mid = 1300566789 launchID = 16 parent = 11 position = 0.509627044200897,-0.414580345153809,-1.14955746255418E-07 rotation = -0.3799282,-0.5963678,0.3799282,-0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 4 sym = 8 sym = 16 srfN = None, -1 attN = top, 13 attN = bottom, 11 mass = 0.025 temp = 287.927890778612 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = RTShortDish2 cid = 4292938884 uid = 1075168339 mid = 1300566789 launchID = 16 parent = 12 position = 0.667572677135468,-0.340929985046387,-7.55748388314714E-08 rotation = 0.3799282,0.5963678,-0.3799282,0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 5 sym = 9 sym = 17 srfN = None, -1 attN = bottom, 12 mass = 0.5 temp = 287.917349715723 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 0.976296007119933 RTOmniRange = 0 RTDishRange = 0 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = strutConnector cid = 4292933902 uid = 310559917 mid = 1300566789 launchID = 16 parent = 12 position = 0.501181483268738,-0.411379814147949,0.301624476909637 rotation = -0.3799284,-0.5963677,0.3799281,-0.596368 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 6 sym = 10 sym = 18 srfN = srfAttach, 12 mass = 0.05 temp = 287.62209299316 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutConnector modCost = 0 EVENTS { } ACTIONS { } PARTDATA { tgt = 4292949618 pos = -0.2112752,-0.1778487,-0.09079367 rot = 5.692113E-16,-0.2988362,0.6408563,0.7071072 dir = -0.7267621,-0.6117787,-0.3123197 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { name = strutCube cid = 4292949524 uid = 892471597 mid = 1300566789 launchID = 16 parent = 2 position = -4.29252899891708E-08,-0.501720428466797,-0.322761297225952 rotation = 0,0.8433915,-0.5372996,0 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 3 sym = 7 sym = 11 srfN = srfAttach, 2 attN = top, 16 attN = None, -1 mass = 0.001 temp = 291.822791425368 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = miniFuelTank cid = 4292949498 uid = 1221680339 mid = 1300566789 launchID = 16 parent = 15 position = -1.29626812395145E-07,-0.414580345153809,-0.509626984596252 rotation = 0,0.8433915,-0.5372996,0 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 4 sym = 8 sym = 12 srfN = None, -1 attN = top, 17 attN = bottom, 15 mass = 0.025 temp = 287.961583845918 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = RTShortDish2 cid = 4292938844 uid = 3873411592 mid = 1300566789 launchID = 16 parent = 16 position = -1.29626911871128E-07,-0.340929985046387,-0.667572617530823 rotation = 5.206745E-09,-0.8433915,0.5372996,-8.17295E-09 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 5 sym = 9 sym = 13 srfN = None, -1 attN = bottom, 16 mass = 0.5 temp = 287.954195120921 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 0.976296007119933 RTOmniRange = 0 RTDishRange = 0 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = strutConnector cid = 4292933836 uid = 3569843171 mid = 1300566789 launchID = 16 parent = 16 position = 0.301624566316605,-0.411379814147949,-0.501181423664093 rotation = 1.896608E-07,0.8433914,-0.5372997,2.528811E-07 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 6 sym = 10 sym = 14 srfN = srfAttach, 16 mass = 0.05 temp = 287.624681279751 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutConnector modCost = 0 EVENTS { } ACTIONS { } PARTDATA { tgt = 4292949558 pos = -0.2112758,-0.177849,-0.09079277 rot = -2.626155E-15,-0.298836,0.6408562,0.7071073 dir = -0.7267632,-0.6117792,-0.3123161 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { name = solarPanels5 cid = 4292923810 uid = 2332996324 mid = 1300566789 launchID = 16 parent = 0 position = 0.243000000715256,0.123909950256348,-0.243000000715256 rotation = 0.6272115,0.6743798,0.3265054,0.2126309 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 20 sym = 21 sym = 22 srfN = srfAttach, 0 mass = 0.005 temp = 288.549750967393 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292922298 uid = 1621348693 mid = 1300566789 launchID = 16 parent = 0 position = -0.242999896407127,0.123909950256348,-0.243000000715256 rotation = 0.6743797,0.6272113,-0.2126313,-0.3265058 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 19 sym = 21 sym = 22 srfN = srfAttach, 0 mass = 0.005 temp = 288.647456258797 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292922266 uid = 2529865389 mid = 1300566789 launchID = 16 parent = 0 position = -0.243000000715256,0.123909950256348,0.243000000715256 rotation = 0.3265054,0.2126309,-0.6272115,-0.6743798 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 19 sym = 20 sym = 22 srfN = srfAttach, 0 mass = 0.005 temp = 288.628797278836 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292922234 uid = 3855163198 mid = 1300566789 launchID = 16 parent = 0 position = 0.243000000715256,0.123909950256348,0.243000000715256 rotation = -0.2126313,-0.3265058,-0.6743797,-0.6272113 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 19 sym = 20 sym = 21 srfN = srfAttach, 0 mass = 0.005 temp = 288.656325856745 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = batteryBankMini cid = 4292913722 uid = 4208717495 mid = 1300566789 launchID = 16 parent = 0 position = 0,0.287079811096191,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 32 attN = bottom, 0 mass = 0.01 temp = 290.10047183645 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 162.989401624472 maxAmount = 200 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryPack cid = 4292910914 uid = 667212658 mid = 1300566789 launchID = 16 parent = 23 position = -1.22532601419019E-15,0.128359794616699,0.311303108930588 rotation = 3.387644E-15,1,-2.277331E-07,1.48755E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 25 sym = 26 sym = 27 srfN = srfAttach, 23 mass = 0.005 temp = 291.531531986141 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 62.9894016245383 maxAmount = 100 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryPack cid = 4292910132 uid = 1373006948 mid = 1300566789 launchID = 16 parent = 23 position = 0.311303108930588,0.128359794616699,1.85551094489256E-08 rotation = -1.610317E-07,0.7071068,-1.610317E-07,-0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 24 sym = 26 sym = 27 srfN = srfAttach, 23 mass = 0.005 temp = 291.535622295837 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 62.9894016245383 maxAmount = 100 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryPack cid = 4292910092 uid = 758800380 mid = 1300566789 launchID = 16 parent = 23 position = -2.72149804914079E-08,0.128359794616699,-0.311303108930588 rotation = -2.277331E-07,-2.883589E-08,6.566887E-15,-1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 24 sym = 25 sym = 27 srfN = srfAttach, 23 mass = 0.005 temp = 291.473917633243 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 62.9894016245383 maxAmount = 100 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryPack cid = 4292910052 uid = 1106539589 mid = 1300566789 launchID = 16 parent = 23 position = -0.311303108930588,0.128359794616699,1.85551094489256E-08 rotation = -1.610317E-07,-0.7071068,1.610317E-07,-0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 24 sym = 25 sym = 26 srfN = srfAttach, 23 mass = 0.005 temp = 291.539555897796 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 62.9894016245383 maxAmount = 100 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = solarPanels5 cid = 4292842198 uid = 4208805052 mid = 1300566789 launchID = 16 parent = 23 position = -0.233706101775169,0.380829811096191,0.172279193997383 rotation = -0.707107,0,0,0.7071066 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 29 sym = 30 sym = 31 srfN = srfAttach, 23 mass = 0.005 temp = 291.00065916875 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292841952 uid = 1191860643 mid = 1300566789 launchID = 16 parent = 23 position = 0.172279104590416,0.380829811096191,0.233706101775169 rotation = -0.5000002,0.4999999,0.5000002,0.4999999 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 28 sym = 30 sym = 31 srfN = srfAttach, 23 mass = 0.005 temp = 290.921985482796 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292841920 uid = 1833171422 mid = 1300566789 launchID = 16 parent = 23 position = 0.233705997467041,0.380829811096191,-0.172279193997383 rotation = 3.090863E-08,0.7071066,0.707107,-3.090861E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 28 sym = 29 sym = 31 srfN = srfAttach, 23 mass = 0.005 temp = 290.916974919928 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292841888 uid = 1511452802 mid = 1300566789 launchID = 16 parent = 23 position = -0.172279193997383,0.380829811096191,-0.233705997467041 rotation = 0.5000002,0.4999999,0.5000002,-0.4999999 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 28 sym = 29 sym = 30 srfN = srfAttach, 23 mass = 0.005 temp = 290.956542004756 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = longAntenna cid = 4292805876 uid = 4291975841 mid = 1300566789 launchID = 16 parent = 23 position = 0,0.387080192565918,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = bottom, 23 mass = 0.005 temp = 291.255787481797 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = longAntenna modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = RTLongAntenna2 cid = 4292803458 uid = 2737309045 mid = 1300566789 launchID = 16 parent = 23 position = 0.213477805256844,0.339059829711914,0.213477805256844 rotation = 0.6532814,0.2705981,-0.270598,0.6532816 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 34 sym = 35 sym = 36 srfN = srfAttach, 23 attN = None, -1 mass = 0.01 temp = 289.163708073837 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = RTLongAntenna2 cid = 4292800282 uid = 2476179403 mid = 1300566789 launchID = 16 parent = 23 position = 0.213477805256844,0.339059829711914,-0.213477805256844 rotation = 0.270598,0.6532816,-0.6532815,0.2705981 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 33 sym = 35 sym = 36 srfN = srfAttach, 23 attN = None, -1 mass = 0.01 temp = 289.171051123094 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = RTLongAntenna2 cid = 4292800208 uid = 4172887268 mid = 1300566789 launchID = 16 parent = 23 position = -0.213477894663811,0.339059829711914,-0.213477805256844 rotation = -0.2705981,0.6532816,-0.6532814,-0.2705981 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 33 sym = 34 sym = 36 srfN = srfAttach, 23 attN = None, -1 mass = 0.01 temp = 289.050452078951 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = RTLongAntenna2 cid = 4292800134 uid = 255755450 mid = 1300566789 launchID = 16 parent = 23 position = -0.213477805256844,0.339059829711914,0.213477805256844 rotation = -0.6532815,0.2705981,-0.270598,-0.6532816 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 33 sym = 34 sym = 35 srfN = srfAttach, 23 attN = None, -1 mass = 0.01 temp = 288.941453039162 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0.9912625 animSpeed = 1 EVENTS { Toggle { active = False guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } ACTIONGROUPS { Stage = False, 0 Gear = True, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0.02167079 yaw = -0.001982189 roll = 0.001222467 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } } VESSEL { pid = 917d3948d8ec4a14a3059e63cecd3d2a name = Minmus Sat 1 type = Probe sit = ORBITING landed = False landedAt = splashed = False met = 5460.13380827525 lct = 173632.367832655 root = 0 lat = 8.07742411343883E-08 lon = 27.1355062827118 alt = 75000.463129428 hgt = -1 nrm = -4.646053E-05,1,0.0001496513 rot = 0.05038934,0.3664488,0.7053533,-0.6046926 CoM = -0.001558416,-0.4307055,-0.002195171 stg = 1 prst = False ref = 4105766234 ctrl = True cPch = cHdg = cMod = 0 ORBIT { SMA = 135033.31280883 ECC = 0.00024993352622984 INC = 3.61520467496315E-05 LPE = 350.59263072508 LAN = 52.8435875155722 MNA = 5.26221772890188 EPH = 179092.50164093 REF = 3 } PART { name = probeCoreOcto cid = 4292954960 uid = 4105766234 mid = 968748057 launchID = 17 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = bottom, 1 attN = top, 29 mass = 0.1 temp = 288.060145605638 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = probeCoreOcto (Minmus Sat 1) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True controlSrcStatusText = Operational EVENTS { MakeReference { active = True guiActive = True guiIcon = Control From Here guiName = Control From Here category = Control From Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } RenameVessel { active = True guiActive = True guiIcon = Rename Vessel guiName = Rename Vessel category = Rename Vessel guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleReactionWheel isEnabled = True stateString = Running WheelState = Active EVENTS { OnToggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle Torque guiName = Toggle Torque category = Toggle Torque guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True standaloneToggle_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = RadialPlus Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 179092.50164093 ExtraDelay = -0.000311392155159851 CmdGuid = 249422b0-330b-4a0c-8e5d-1cf5a2d84191 } } Commands { } } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 EVENTS { } ACTIONS { } } MODULE { name = ModuleTripLogger isEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Flyby,Minmus 0 = Orbit,Minmus } } RESOURCE { name = ElectricCharge amount = 9.99799999998262 maxAmount = 10 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = toroidalFuelTank cid = 4292997758 uid = 2746328768 mid = 968748057 launchID = 17 parent = 0 position = 0,-0.236940383911133,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 0 attN = bottom, 2 mass = 0.0375 temp = 288.006354709602 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = toroidalFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 27 maxAmount = 27 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 33 maxAmount = 33 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = miniFuelTank cid = 4292966554 uid = 1443591394 mid = 968748057 launchID = 17 parent = 1 position = 0,-0.461079597473145,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 1 attN = bottom, 15 mass = 0.025 temp = 288.00316547209 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = strutCube cid = 4292988880 uid = 3920826803 mid = 968748057 launchID = 17 parent = 2 position = -0.322761207818985,-0.501720428466797,2.36872192971305E-08 rotation = -0.3799282,0.5963678,-0.3799282,-0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 7 sym = 11 sym = 21 srfN = srfAttach, 2 attN = top, 4 attN = None, -1 mass = 0.001 temp = 290.010061173181 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = miniFuelTank cid = 4292981632 uid = 3829954052 mid = 968748057 launchID = 17 parent = 3 position = -0.509626984596252,-0.414580345153809,1.21527151009104E-07 rotation = -0.3799282,0.5963678,-0.3799282,-0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 8 sym = 12 sym = 22 srfN = None, -1 attN = top, 5 attN = bottom, 3 mass = 0.025 temp = 287.8477233461 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = RTShortDish2 cid = 4292938924 uid = 1462618942 mid = 968748057 launchID = 17 parent = 4 position = -0.667572617530823,-0.340929985046387,1.60908101065615E-07 rotation = 0.3799282,-0.5963678,0.3799282,0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 9 sym = 13 sym = 23 srfN = None, -1 attN = bottom, 4 mass = 0.5 temp = 287.850471883919 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 0.976296007119933 RTOmniRange = 0 RTDishRange = 9E+07 RTAntennaTarget = 2d6a2008-6b5c-48b1-ab50-7567ad27dfb5 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = Kerbin Outpost category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True EVENTS { } ACTIONS { } } } PART { name = strutConnector cid = 4292934616 uid = 2123660201 mid = 968748057 launchID = 17 parent = 4 position = -0.501181423664093,-0.411379814147949,-0.301624417304993 rotation = -0.3799281,0.596368,-0.3799284,-0.5963677 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 10 sym = 14 sym = 24 srfN = srfAttach, 4 mass = 0.05 temp = 287.665156810835 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutConnector modCost = 0 EVENTS { } ACTIONS { } PARTDATA { tgt = 4292949498 pos = -0.211275,-0.1778487,-0.09079259 rot = 2.065939E-16,-0.2988362,0.6408563,0.7071071 dir = -0.7267627,-0.6117797,-0.3123165 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { name = strutCube cid = 4292949644 uid = 2419249609 mid = 968748057 launchID = 17 parent = 2 position = 7.11419829713122E-08,-0.501720428466797,0.322761297225952 rotation = -0.5372996,-3.686581E-08,2.348611E-08,-0.8433915 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 3 sym = 11 sym = 21 srfN = srfAttach, 2 attN = top, 8 attN = None, -1 mass = 0.001 temp = 287.933870035212 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = miniFuelTank cid = 4292949618 uid = 3647132615 mid = 968748057 launchID = 17 parent = 7 position = 1.74179803025254E-07,-0.414580345153809,0.509626984596252 rotation = -0.5372996,-3.686581E-08,2.348611E-08,-0.8433915 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 4 sym = 12 sym = 22 srfN = None, -1 attN = top, 9 attN = bottom, 7 mass = 0.025 temp = 287.981207930863 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = RTShortDish2 cid = 4292939956 uid = 4247071855 mid = 968748057 launchID = 17 parent = 8 position = 1.87987794220135E-07,-0.340929985046387,0.667572617530823 rotation = 0.5372996,2.869286E-08,-2.869286E-08,0.8433915 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 5 sym = 13 sym = 23 srfN = None, -1 attN = bottom, 8 mass = 0.5 temp = 287.973005096323 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 0.976296007119933 RTOmniRange = 0 RTDishRange = 0 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = strutConnector cid = 4292933968 uid = 3417822959 mid = 968748057 launchID = 17 parent = 8 position = -0.301624298095703,-0.411379814147949,0.501181483268738 rotation = -0.5372997,2.160153E-07,-1.661747E-07,-0.8433914 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 6 sym = 14 sym = 24 srfN = srfAttach, 8 mass = 0.05 temp = 287.679383294786 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutConnector modCost = 0 EVENTS { } ACTIONS { } PARTDATA { tgt = 4292981632 pos = -0.2112749,-0.1778492,-0.09079282 rot = -7.616486E-16,-0.2988361,0.6408566,0.7071068 dir = -0.7267615,-0.6117809,-0.3123169 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { name = strutCube cid = 4292949584 uid = 320618005 mid = 968748057 launchID = 17 parent = 2 position = 0.322761207818985,-0.501720428466797,-6.21633589048542E-08 rotation = -0.3799282,-0.5963678,0.3799282,-0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 3 sym = 7 sym = 21 srfN = srfAttach, 2 attN = top, 12 attN = None, -1 mass = 0.001 temp = 288.169035824835 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = miniFuelTank cid = 4292949558 uid = 3612001812 mid = 968748057 launchID = 17 parent = 11 position = 0.509627044200897,-0.414580345153809,-1.14955746255418E-07 rotation = -0.3799282,-0.5963678,0.3799282,-0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 4 sym = 8 sym = 22 srfN = None, -1 attN = top, 13 attN = bottom, 11 mass = 0.025 temp = 287.88385316144 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = RTShortDish2 cid = 4292938884 uid = 1955104590 mid = 968748057 launchID = 17 parent = 12 position = 0.667572677135468,-0.340929985046387,-7.55748388314714E-08 rotation = 0.3799282,0.5963678,-0.3799282,0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 5 sym = 9 sym = 23 srfN = None, -1 attN = bottom, 12 mass = 0.5 temp = 287.872693043798 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 0.976296007119933 RTOmniRange = 0 RTDishRange = 0 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = strutConnector cid = 4292933902 uid = 3788978268 mid = 968748057 launchID = 17 parent = 12 position = 0.501181483268738,-0.411379814147949,0.301624476909637 rotation = -0.3799284,-0.5963677,0.3799281,-0.596368 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 6 sym = 10 sym = 24 srfN = srfAttach, 12 mass = 0.05 temp = 287.655143675053 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutConnector modCost = 0 EVENTS { } ACTIONS { } PARTDATA { tgt = 4292949618 pos = -0.2112752,-0.1778487,-0.09079367 rot = 5.692113E-16,-0.2988362,0.6408563,0.7071072 dir = -0.7267621,-0.6117787,-0.3123197 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { name = fuelTankSmallFlat cid = 4292880082 uid = 2708219975 mid = 968748057 launchID = 17 parent = 11 position = -5.96046447753906E-08,-0.947850227355957,-1.05623485069373E-07 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 11 attN = bottom, 16 mass = 0.0625 temp = 288.424001292282 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = fuelTankSmallFlat modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 45 maxAmount = 45 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 55 maxAmount = 55 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = liquidEngineMini cid = 4292971228 uid = 2952592197 mid = 968748057 launchID = 17 parent = 15 position = 1.19209289550781E-07,-1.26035022735596,-2.5900061473294E-07 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 15 attN = None, -1 mass = 0.1 temp = 288.409249577029 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = liquidEngineMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnginesFX isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = None } } } MODULE { name = ModuleJettison isEnabled = True isJettisoned = True EVENTS { Jettison { active = False guiActive = True guiIcon = Jettison guiName = Jettison category = Jettison guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { JettisonAction { actionGroup = None } } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 gimbalLock_UIFlight { controlEnabled = True } gimbalLimiter_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 1 } EVENTS { } ACTIONS { ToggleAction { actionGroup = None } LockAction { actionGroup = None } FreeAction { actionGroup = None } } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } } PART { name = solarPanels2 cid = 4292845444 uid = 3052458624 mid = 968748057 launchID = 17 parent = 15 position = -0.427597016096115,-0.918729782104492,0.427596807479858 rotation = -1.514694E-07,0.3826835,-4.011894E-07,0.9238796 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 18 sym = 19 sym = 20 srfN = srfAttach, 15 mass = 0.025 temp = 288.634970447995 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (-0.652434, -0.2726427, 0.2726399, 0.6524289) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 1 EVENTS { Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels2 cid = 4292844164 uid = 3889470421 mid = 968748057 launchID = 17 parent = 15 position = 0.427597045898438,-0.918729782104492,0.42759707570076 rotation = -3.640522E-07,0.9238797,-1.677273E-07,0.3826835 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 17 sym = 19 sym = 20 srfN = srfAttach, 15 mass = 0.025 temp = 288.486997954264 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (-0.7045047, 0.06053504, -0.06053903, 0.7045166) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels2 cid = 4292844048 uid = 745795569 mid = 968748057 launchID = 17 parent = 15 position = 0.42759695649147,-0.918729782104492,-0.42759707570076 rotation = -3.673464E-07,0.9238796,1.612769E-07,-0.3826835 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 17 sym = 18 sym = 20 srfN = srfAttach, 15 mass = 0.025 temp = 288.545346986388 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (-0.6524343, 0.2726418, -0.2726411, 0.6524283) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels2 cid = 4292843932 uid = 1783742434 mid = 968748057 launchID = 17 parent = 15 position = -0.427597135305405,-0.918729782104492,-0.427597224712372 rotation = -1.725368E-07,0.3826834,3.867105E-07,-0.9238797 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 17 sym = 18 sym = 19 srfN = srfAttach, 15 mass = 0.025 temp = 288.489048606729 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (-0.7045076, -0.06053924, 0.06052003, 0.704515) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = strutCube cid = 4292949524 uid = 2200045530 mid = 968748057 launchID = 17 parent = 2 position = -4.29252899891708E-08,-0.501720428466797,-0.322761297225952 rotation = 0,0.8433915,-0.5372996,0 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 3 sym = 7 sym = 11 srfN = srfAttach, 2 attN = top, 22 attN = None, -1 mass = 0.001 temp = 289.874486411746 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = miniFuelTank cid = 4292949498 uid = 2053149016 mid = 968748057 launchID = 17 parent = 21 position = -1.29626812395145E-07,-0.414580345153809,-0.509626984596252 rotation = 0,0.8433915,-0.5372996,0 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 4 sym = 8 sym = 12 srfN = None, -1 attN = top, 23 attN = bottom, 21 mass = 0.025 temp = 287.919744184993 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = RTShortDish2 cid = 4292938844 uid = 1068770500 mid = 968748057 launchID = 17 parent = 22 position = -1.29626911871128E-07,-0.340929985046387,-0.667572617530823 rotation = 5.206745E-09,-0.8433915,0.5372996,-8.17295E-09 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 5 sym = 9 sym = 13 srfN = None, -1 attN = bottom, 22 mass = 0.5 temp = 287.924101193444 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 0.976296007119933 RTOmniRange = 0 RTDishRange = 9E+07 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = Kerbin category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = strutConnector cid = 4292933836 uid = 1680922846 mid = 968748057 launchID = 17 parent = 22 position = 0.301624566316605,-0.411379814147949,-0.501181423664093 rotation = 1.896608E-07,0.8433914,-0.5372997,2.528811E-07 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 6 sym = 10 sym = 14 srfN = srfAttach, 22 mass = 0.05 temp = 287.673421756875 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutConnector modCost = 0 EVENTS { } ACTIONS { } PARTDATA { tgt = 4292949558 pos = -0.2112758,-0.177849,-0.09079277 rot = -2.626155E-15,-0.298836,0.6408562,0.7071073 dir = -0.7267632,-0.6117792,-0.3123161 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { name = solarPanels5 cid = 4292923810 uid = 3945420324 mid = 968748057 launchID = 17 parent = 0 position = 0.243000000715256,0.123909950256348,-0.243000000715256 rotation = 0.6272115,0.6743798,0.3265054,0.2126309 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 26 sym = 27 sym = 28 srfN = srfAttach, 0 mass = 0.005 temp = 287.37037722532 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292922298 uid = 1810205654 mid = 968748057 launchID = 17 parent = 0 position = -0.242999896407127,0.123909950256348,-0.243000000715256 rotation = 0.6743797,0.6272113,-0.2126313,-0.3265058 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 25 sym = 27 sym = 28 srfN = srfAttach, 0 mass = 0.005 temp = 288.381039635338 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292922266 uid = 930012762 mid = 968748057 launchID = 17 parent = 0 position = -0.243000000715256,0.123909950256348,0.243000000715256 rotation = 0.3265054,0.2126309,-0.6272115,-0.6743798 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 25 sym = 26 sym = 28 srfN = srfAttach, 0 mass = 0.005 temp = 287.468599193076 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292922234 uid = 3153083946 mid = 968748057 launchID = 17 parent = 0 position = 0.243000000715256,0.123909950256348,0.243000000715256 rotation = -0.2126313,-0.3265058,-0.6743797,-0.6272113 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 25 sym = 26 sym = 27 srfN = srfAttach, 0 mass = 0.005 temp = 288.465077958254 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = batteryBankMini cid = 4292913722 uid = 3963845252 mid = 968748057 launchID = 17 parent = 0 position = 0,0.287079811096191,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 38 attN = bottom, 0 mass = 0.01 temp = 288.909916293037 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 199.997999999983 maxAmount = 200 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryPack cid = 4292910914 uid = 2834507481 mid = 968748057 launchID = 17 parent = 29 position = -1.22532601419019E-15,0.128359794616699,0.311303108930588 rotation = 3.387644E-15,1,-2.277331E-07,1.48755E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 31 sym = 32 sym = 33 srfN = srfAttach, 29 mass = 0.005 temp = 289.146387261914 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 99.9979999999826 maxAmount = 100 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryPack cid = 4292910132 uid = 135236027 mid = 968748057 launchID = 17 parent = 29 position = 0.311303108930588,0.128359794616699,1.85551094489256E-08 rotation = -1.610317E-07,0.7071068,-1.610317E-07,-0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 30 sym = 32 sym = 33 srfN = srfAttach, 29 mass = 0.005 temp = 289.14349861206 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 99.9979999999826 maxAmount = 100 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryPack cid = 4292910092 uid = 31235207 mid = 968748057 launchID = 17 parent = 29 position = -2.72149804914079E-08,0.128359794616699,-0.311303108930588 rotation = -2.277331E-07,-2.883589E-08,6.566887E-15,-1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 30 sym = 31 sym = 33 srfN = srfAttach, 29 mass = 0.005 temp = 289.143127869711 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 99.9979999999826 maxAmount = 100 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryPack cid = 4292910052 uid = 2703857274 mid = 968748057 launchID = 17 parent = 29 position = -0.311303108930588,0.128359794616699,1.85551094489256E-08 rotation = -1.610317E-07,-0.7071068,1.610317E-07,-0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 30 sym = 31 sym = 32 srfN = srfAttach, 29 mass = 0.005 temp = 289.162233174477 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 99.9979999999826 maxAmount = 100 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = solarPanels5 cid = 4292842198 uid = 3123941856 mid = 968748057 launchID = 17 parent = 29 position = -0.233706101775169,0.380829811096191,0.172279193997383 rotation = -0.707107,0,0,0.7071066 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 35 sym = 36 sym = 37 srfN = srfAttach, 29 mass = 0.005 temp = 289.221624693588 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292841952 uid = 1367943564 mid = 968748057 launchID = 17 parent = 29 position = 0.172279104590416,0.380829811096191,0.233706101775169 rotation = -0.5000002,0.4999999,0.5000002,0.4999999 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 34 sym = 36 sym = 37 srfN = srfAttach, 29 mass = 0.005 temp = 289.234511582604 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292841920 uid = 2875405110 mid = 968748057 launchID = 17 parent = 29 position = 0.233705997467041,0.380829811096191,-0.172279193997383 rotation = 3.090863E-08,0.7071066,0.707107,-3.090861E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 34 sym = 35 sym = 37 srfN = srfAttach, 29 mass = 0.005 temp = 289.220787569674 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292841888 uid = 1550562898 mid = 968748057 launchID = 17 parent = 29 position = -0.172279193997383,0.380829811096191,-0.233705997467041 rotation = 0.5000002,0.4999999,0.5000002,-0.4999999 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 34 sym = 35 sym = 36 srfN = srfAttach, 29 mass = 0.005 temp = 289.23535799176 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = longAntenna cid = 4292805876 uid = 186934467 mid = 968748057 launchID = 17 parent = 29 position = 0,0.387080192565918,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = bottom, 29 mass = 0.005 temp = 290.282249633514 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = longAntenna modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = RTLongAntenna2 cid = 4292803458 uid = 3747660488 mid = 968748057 launchID = 17 parent = 29 position = 0.213477805256844,0.339059829711914,0.213477805256844 rotation = 0.6532814,0.2705981,-0.270598,0.6532816 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 40 sym = 41 sym = 42 srfN = srfAttach, 29 attN = None, -1 mass = 0.01 temp = 288.532485531069 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0.991856 animSpeed = 1 EVENTS { Toggle { active = False guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = RTLongAntenna2 cid = 4292800282 uid = 2301169564 mid = 968748057 launchID = 17 parent = 29 position = 0.213477805256844,0.339059829711914,-0.213477805256844 rotation = 0.270598,0.6532816,-0.6532815,0.2705981 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 39 sym = 41 sym = 42 srfN = srfAttach, 29 attN = None, -1 mass = 0.01 temp = 289.38265190532 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = RTLongAntenna2 cid = 4292800208 uid = 2807898841 mid = 968748057 launchID = 17 parent = 29 position = -0.213477894663811,0.339059829711914,-0.213477805256844 rotation = -0.2705981,0.6532816,-0.6532814,-0.2705981 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 39 sym = 40 sym = 42 srfN = srfAttach, 29 attN = None, -1 mass = 0.01 temp = 288.803698744423 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = RTLongAntenna2 cid = 4292800134 uid = 2412146842 mid = 968748057 launchID = 17 parent = 29 position = -0.213477805256844,0.339059829711914,0.213477805256844 rotation = -0.6532815,0.2705981,-0.270598,-0.6532816 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 39 sym = 40 sym = 41 srfN = srfAttach, 29 attN = None, -1 mass = 0.01 temp = 289.356841745496 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } ACTIONGROUPS { Stage = False, 0 Gear = True, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = -0.00649191 yaw = -0.005008759 roll = 0.01317819 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } } VESSEL { pid = cfe68b0a17244056b2b7eb4ca9837af8 name = Minmus Sat 3 type = Probe sit = ORBITING landed = False landedAt = splashed = False met = 641.463574129884 lct = 178501.118066774 root = 0 lat = -1.30494390132525E-06 lon = -215.116009809468 alt = 75001.9651930384 hgt = -1 nrm = -3.207967E-05,1,-7.495435E-05 rot = -0.5884183,0.7068905,0.3921194,-0.01767194 CoM = -0.0002781905,-0.4303676,-0.0004386431 stg = 1 prst = False ref = 3854085371 ctrl = True cPch = cHdg = cMod = 0 ORBIT { SMA = 135015.072799474 ECC = 0.000102647560495605 INC = 1.606365529442E-05 LPE = 197.018720587285 LAN = -13.4571908723043 MNA = 0.681213163742595 EPH = 179142.601640904 REF = 3 } PART { name = probeCoreOcto cid = 4292954960 uid = 3854085371 mid = 134276674 launchID = 18 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = bottom, 1 attN = top, 29 mass = 0.1 temp = 288.224072026264 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = probeCoreOcto (Minmus Sat 3) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True controlSrcStatusText = Operational EVENTS { MakeReference { active = True guiActive = True guiIcon = Control From Here guiName = Control From Here category = Control From Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } RenameVessel { active = True guiActive = True guiIcon = Rename Vessel guiName = Rename Vessel category = Rename Vessel guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleReactionWheel isEnabled = True stateString = Running WheelState = Active EVENTS { OnToggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle Torque guiName = Toggle Torque category = Toggle Torque guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True standaloneToggle_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = RadialPlus Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 179142.601640904 ExtraDelay = 0 CmdGuid = 95a77777-0b25-41bd-8099-506adcdbd1a7 } } Commands { } } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 EVENTS { } ACTIONS { } } MODULE { name = ModuleTripLogger isEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Flyby,Minmus 0 = Orbit,Minmus } } RESOURCE { name = ElectricCharge amount = 0 maxAmount = 10 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = toroidalFuelTank cid = 4292997758 uid = 3766735834 mid = 134276674 launchID = 18 parent = 0 position = 0,-0.236940383911133,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 0 attN = bottom, 2 mass = 0.0375 temp = 288.012799751994 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = toroidalFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 27 maxAmount = 27 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 33 maxAmount = 33 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = miniFuelTank cid = 4292966554 uid = 3434393702 mid = 134276674 launchID = 18 parent = 1 position = 0,-0.461079597473145,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 1 attN = bottom, 15 mass = 0.025 temp = 288.004304685034 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = strutCube cid = 4292988880 uid = 912156113 mid = 134276674 launchID = 18 parent = 2 position = -0.322761207818985,-0.501720428466797,2.36872192971305E-08 rotation = -0.3799282,0.5963678,-0.3799282,-0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 7 sym = 11 sym = 21 srfN = srfAttach, 2 attN = top, 4 attN = None, -1 mass = 0.001 temp = 291.899317803944 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = miniFuelTank cid = 4292981632 uid = 3557024904 mid = 134276674 launchID = 18 parent = 3 position = -0.509626984596252,-0.414580345153809,1.21527151009104E-07 rotation = -0.3799282,0.5963678,-0.3799282,-0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 8 sym = 12 sym = 22 srfN = None, -1 attN = top, 5 attN = bottom, 3 mass = 0.025 temp = 288.036151258295 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = RTShortDish2 cid = 4292938924 uid = 251738636 mid = 134276674 launchID = 18 parent = 4 position = -0.667572617530823,-0.340929985046387,1.60908101065615E-07 rotation = 0.3799282,-0.5963678,0.3799282,0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 9 sym = 13 sym = 23 srfN = None, -1 attN = bottom, 4 mass = 0.5 temp = 288.022273229422 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 0.976296007119933 RTOmniRange = 0 RTDishRange = 9E+07 RTAntennaTarget = 2d6a2008-6b5c-48b1-ab50-7567ad27dfb5 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = Kerbin Outpost category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True EVENTS { } ACTIONS { } } } PART { name = strutConnector cid = 4292934616 uid = 852517660 mid = 134276674 launchID = 18 parent = 4 position = -0.501181423664093,-0.411379814147949,-0.301624417304993 rotation = -0.3799281,0.596368,-0.3799284,-0.5963677 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 10 sym = 14 sym = 24 srfN = srfAttach, 4 mass = 0.05 temp = 287.63887784158 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutConnector modCost = 0 EVENTS { } ACTIONS { } PARTDATA { tgt = 4292949498 pos = -0.211275,-0.1778487,-0.09079259 rot = 2.065939E-16,-0.2988362,0.6408563,0.7071071 dir = -0.7267627,-0.6117797,-0.3123165 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { name = strutCube cid = 4292949644 uid = 3097193913 mid = 134276674 launchID = 18 parent = 2 position = 7.11419829713122E-08,-0.501720428466797,0.322761297225952 rotation = -0.5372996,-3.686581E-08,2.348611E-08,-0.8433915 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 3 sym = 11 sym = 21 srfN = srfAttach, 2 attN = top, 8 attN = None, -1 mass = 0.001 temp = 292.176528067739 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = miniFuelTank cid = 4292949618 uid = 2892209328 mid = 134276674 launchID = 18 parent = 7 position = 1.74179803025254E-07,-0.414580345153809,0.509626984596252 rotation = -0.5372996,-3.686581E-08,2.348611E-08,-0.8433915 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 4 sym = 12 sym = 22 srfN = None, -1 attN = top, 9 attN = bottom, 7 mass = 0.025 temp = 288.016671839917 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = RTShortDish2 cid = 4292939956 uid = 297478033 mid = 134276674 launchID = 18 parent = 8 position = 1.87987794220135E-07,-0.340929985046387,0.667572617530823 rotation = 0.5372996,2.869286E-08,-2.869286E-08,0.8433915 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 5 sym = 13 sym = 23 srfN = None, -1 attN = bottom, 8 mass = 0.5 temp = 288.002406341438 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 0.976296007119933 RTOmniRange = 0 RTDishRange = 0 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = strutConnector cid = 4292933968 uid = 3219131633 mid = 134276674 launchID = 18 parent = 8 position = -0.301624298095703,-0.411379814147949,0.501181483268738 rotation = -0.5372997,2.160153E-07,-1.661747E-07,-0.8433914 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 6 sym = 14 sym = 24 srfN = srfAttach, 8 mass = 0.05 temp = 287.637193407909 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutConnector modCost = 0 EVENTS { } ACTIONS { } PARTDATA { tgt = 4292981632 pos = -0.2112749,-0.1778492,-0.09079282 rot = -7.616486E-16,-0.2988361,0.6408566,0.7071068 dir = -0.7267615,-0.6117809,-0.3123169 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { name = strutCube cid = 4292949584 uid = 2558909283 mid = 134276674 launchID = 18 parent = 2 position = 0.322761207818985,-0.501720428466797,-6.21633589048542E-08 rotation = -0.3799282,-0.5963678,0.3799282,-0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 3 sym = 7 sym = 21 srfN = srfAttach, 2 attN = top, 12 attN = None, -1 mass = 0.001 temp = 290.805203749402 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = miniFuelTank cid = 4292949558 uid = 2802935090 mid = 134276674 launchID = 18 parent = 11 position = 0.509627044200897,-0.414580345153809,-1.14955746255418E-07 rotation = -0.3799282,-0.5963678,0.3799282,-0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 4 sym = 8 sym = 22 srfN = None, -1 attN = top, 13 attN = bottom, 11 mass = 0.025 temp = 287.993388051856 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = RTShortDish2 cid = 4292938884 uid = 1425868183 mid = 134276674 launchID = 18 parent = 12 position = 0.667572677135468,-0.340929985046387,-7.55748388314714E-08 rotation = 0.3799282,0.5963678,-0.3799282,0.5963678 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 5 sym = 9 sym = 23 srfN = None, -1 attN = bottom, 12 mass = 0.5 temp = 287.977686687106 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 0.976296007119933 RTOmniRange = 0 RTDishRange = 0 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = strutConnector cid = 4292933902 uid = 1031143299 mid = 134276674 launchID = 18 parent = 12 position = 0.501181483268738,-0.411379814147949,0.301624476909637 rotation = -0.3799284,-0.5963677,0.3799281,-0.596368 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 6 sym = 10 sym = 24 srfN = srfAttach, 12 mass = 0.05 temp = 287.636028751199 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutConnector modCost = 0 EVENTS { } ACTIONS { } PARTDATA { tgt = 4292949618 pos = -0.2112752,-0.1778487,-0.09079367 rot = 5.692113E-16,-0.2988362,0.6408563,0.7071072 dir = -0.7267621,-0.6117787,-0.3123197 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { name = fuelTankSmallFlat cid = 4292880082 uid = 1066216764 mid = 134276674 launchID = 18 parent = 11 position = -5.96046447753906E-08,-0.947850227355957,-1.05623485069373E-07 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 11 attN = bottom, 16 mass = 0.0625 temp = 288.498243477363 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = fuelTankSmallFlat modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 45 maxAmount = 45 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 55 maxAmount = 55 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = liquidEngineMini cid = 4292971228 uid = 1367838561 mid = 134276674 launchID = 18 parent = 15 position = 1.19209289550781E-07,-1.26035022735596,-2.5900061473294E-07 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 15 attN = None, -1 mass = 0.1 temp = 288.475289876787 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = liquidEngineMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnginesFX isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = None } } } MODULE { name = ModuleJettison isEnabled = True isJettisoned = True EVENTS { Jettison { active = False guiActive = True guiIcon = Jettison guiName = Jettison category = Jettison guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { JettisonAction { actionGroup = None } } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 gimbalLock_UIFlight { controlEnabled = True } gimbalLimiter_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 1 } EVENTS { } ACTIONS { ToggleAction { actionGroup = None } LockAction { actionGroup = None } FreeAction { actionGroup = None } } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } } PART { name = solarPanels2 cid = 4292845444 uid = 1366364617 mid = 134276674 launchID = 18 parent = 15 position = -0.427597016096115,-0.918729782104492,0.427596807479858 rotation = -1.514694E-07,0.3826835,-4.011894E-07,0.9238796 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 18 sym = 19 sym = 20 srfN = srfAttach, 15 mass = 0.025 temp = 288.266231935813 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (-0.6103898, -0.3569517, 0.3569495, 0.6104072) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels2 cid = 4292844164 uid = 2280608159 mid = 134276674 launchID = 18 parent = 15 position = 0.427597045898438,-0.918729782104492,0.42759707570076 rotation = -3.640522E-07,0.9238797,-1.677273E-07,0.3826835 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 17 sym = 19 sym = 20 srfN = srfAttach, 15 mass = 0.025 temp = 288.161687892566 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (-0.6156029, -0.347904, 0.3478651, 0.6156183) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels2 cid = 4292844048 uid = 949638625 mid = 134276674 launchID = 18 parent = 15 position = 0.42759695649147,-0.918729782104492,-0.42759707570076 rotation = -3.673464E-07,0.9238796,1.612769E-07,-0.3826835 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 17 sym = 18 sym = 20 srfN = srfAttach, 15 mass = 0.025 temp = 288.245343469226 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (-0.6103671, 0.356977, -0.3569311, 0.6104259) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels2 cid = 4292843932 uid = 1109682772 mid = 134276674 launchID = 18 parent = 15 position = -0.427597135305405,-0.918729782104492,-0.427597224712372 rotation = -1.725368E-07,0.3826834,3.867105E-07,-0.9238797 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 17 sym = 18 sym = 19 srfN = srfAttach, 15 mass = 0.025 temp = 288.240916515357 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (-0.6156114, 0.3478705, -0.3478897, 0.6156148) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = strutCube cid = 4292949524 uid = 283073466 mid = 134276674 launchID = 18 parent = 2 position = -4.29252899891708E-08,-0.501720428466797,-0.322761297225952 rotation = 0,0.8433915,-0.5372996,0 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 3 sym = 7 sym = 11 srfN = srfAttach, 2 attN = top, 22 attN = None, -1 mass = 0.001 temp = 292.16481356498 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = miniFuelTank cid = 4292949498 uid = 3458423886 mid = 134276674 launchID = 18 parent = 21 position = -1.29626812395145E-07,-0.414580345153809,-0.509626984596252 rotation = 0,0.8433915,-0.5372996,0 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 4 sym = 8 sym = 12 srfN = None, -1 attN = top, 23 attN = bottom, 21 mass = 0.025 temp = 288.017558556507 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = RTShortDish2 cid = 4292938844 uid = 2562432860 mid = 134276674 launchID = 18 parent = 22 position = -1.29626911871128E-07,-0.340929985046387,-0.667572617530823 rotation = 5.206745E-09,-0.8433915,0.5372996,-8.17295E-09 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 5 sym = 9 sym = 13 srfN = None, -1 attN = bottom, 22 mass = 0.5 temp = 288.00318355592 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 0.976296007119933 RTOmniRange = 0 RTDishRange = 0 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = strutConnector cid = 4292933836 uid = 1530341767 mid = 134276674 launchID = 18 parent = 22 position = 0.301624566316605,-0.411379814147949,-0.501181423664093 rotation = 1.896608E-07,0.8433914,-0.5372997,2.528811E-07 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 6 sym = 10 sym = 14 srfN = srfAttach, 22 mass = 0.05 temp = 287.637227207585 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutConnector modCost = 0 EVENTS { } ACTIONS { } PARTDATA { tgt = 4292949558 pos = -0.2112758,-0.177849,-0.09079277 rot = -2.626155E-15,-0.298836,0.6408562,0.7071073 dir = -0.7267632,-0.6117792,-0.3123161 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { name = solarPanels5 cid = 4292923810 uid = 2663347393 mid = 134276674 launchID = 18 parent = 0 position = 0.243000000715256,0.123909950256348,-0.243000000715256 rotation = 0.6272115,0.6743798,0.3265054,0.2126309 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 26 sym = 27 sym = 28 srfN = srfAttach, 0 mass = 0.005 temp = 288.508018519856 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292922298 uid = 1596272678 mid = 134276674 launchID = 18 parent = 0 position = -0.242999896407127,0.123909950256348,-0.243000000715256 rotation = 0.6743797,0.6272113,-0.2126313,-0.3265058 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 25 sym = 27 sym = 28 srfN = srfAttach, 0 mass = 0.005 temp = 288.656248406214 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292922266 uid = 1593570499 mid = 134276674 launchID = 18 parent = 0 position = -0.243000000715256,0.123909950256348,0.243000000715256 rotation = 0.3265054,0.2126309,-0.6272115,-0.6743798 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 25 sym = 26 sym = 28 srfN = srfAttach, 0 mass = 0.005 temp = 288.651422414927 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292922234 uid = 2450837212 mid = 134276674 launchID = 18 parent = 0 position = 0.243000000715256,0.123909950256348,0.243000000715256 rotation = -0.2126313,-0.3265058,-0.6743797,-0.6272113 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 25 sym = 26 sym = 27 srfN = srfAttach, 0 mass = 0.005 temp = 288.52824742926 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = batteryBankMini cid = 4292913722 uid = 782488533 mid = 134276674 launchID = 18 parent = 0 position = 0,0.287079811096191,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 38 attN = bottom, 0 mass = 0.01 temp = 290.208654743215 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 188.089805859575 maxAmount = 200 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryPack cid = 4292910914 uid = 2867169132 mid = 134276674 launchID = 18 parent = 29 position = -1.22532601419019E-15,0.128359794616699,0.311303108930588 rotation = 3.387644E-15,1,-2.277331E-07,1.48755E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 31 sym = 32 sym = 33 srfN = srfAttach, 29 mass = 0.005 temp = 291.715302922195 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 88.0898058595477 maxAmount = 100 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryPack cid = 4292910132 uid = 1560051708 mid = 134276674 launchID = 18 parent = 29 position = 0.311303108930588,0.128359794616699,1.85551094489256E-08 rotation = -1.610317E-07,0.7071068,-1.610317E-07,-0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 30 sym = 32 sym = 33 srfN = srfAttach, 29 mass = 0.005 temp = 291.677242322716 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 88.0898058595477 maxAmount = 100 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryPack cid = 4292910092 uid = 711049783 mid = 134276674 launchID = 18 parent = 29 position = -2.72149804914079E-08,0.128359794616699,-0.311303108930588 rotation = -2.277331E-07,-2.883589E-08,6.566887E-15,-1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 30 sym = 31 sym = 33 srfN = srfAttach, 29 mass = 0.005 temp = 291.707331310382 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 88.0898058595477 maxAmount = 100 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryPack cid = 4292910052 uid = 773301581 mid = 134276674 launchID = 18 parent = 29 position = -0.311303108930588,0.128359794616699,1.85551094489256E-08 rotation = -1.610317E-07,-0.7071068,1.610317E-07,-0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 30 sym = 31 sym = 32 srfN = srfAttach, 29 mass = 0.005 temp = 291.672835282673 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 88.0898058595477 maxAmount = 100 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = solarPanels5 cid = 4292842198 uid = 1416747410 mid = 134276674 launchID = 18 parent = 29 position = -0.233706101775169,0.380829811096191,0.172279193997383 rotation = -0.707107,0,0,0.7071066 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 35 sym = 36 sym = 37 srfN = srfAttach, 29 mass = 0.005 temp = 291.26876888151 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292841952 uid = 983914820 mid = 134276674 launchID = 18 parent = 29 position = 0.172279104590416,0.380829811096191,0.233706101775169 rotation = -0.5000002,0.4999999,0.5000002,0.4999999 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 34 sym = 36 sym = 37 srfN = srfAttach, 29 mass = 0.005 temp = 291.255540472344 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292841920 uid = 769598153 mid = 134276674 launchID = 18 parent = 29 position = 0.233705997467041,0.380829811096191,-0.172279193997383 rotation = 3.090863E-08,0.7071066,0.707107,-3.090861E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 34 sym = 35 sym = 37 srfN = srfAttach, 29 mass = 0.005 temp = 291.260129126048 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292841888 uid = 60252420 mid = 134276674 launchID = 18 parent = 29 position = -0.172279193997383,0.380829811096191,-0.233705997467041 rotation = 0.5000002,0.4999999,0.5000002,-0.4999999 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 34 sym = 35 sym = 36 srfN = srfAttach, 29 mass = 0.005 temp = 291.26702529017 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = longAntenna cid = 4292805876 uid = 1824813633 mid = 134276674 launchID = 18 parent = 29 position = 0,0.387080192565918,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = bottom, 29 mass = 0.005 temp = 291.256254099227 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = longAntenna modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = RTLongAntenna2 cid = 4292803458 uid = 2298673046 mid = 134276674 launchID = 18 parent = 29 position = 0.213477805256844,0.339059829711914,0.213477805256844 rotation = 0.6532814,0.2705981,-0.270598,0.6532816 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 40 sym = 41 sym = 42 srfN = srfAttach, 29 attN = None, -1 mass = 0.01 temp = 289.283793861569 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = RTLongAntenna2 cid = 4292800282 uid = 694374465 mid = 134276674 launchID = 18 parent = 29 position = 0.213477805256844,0.339059829711914,-0.213477805256844 rotation = 0.270598,0.6532816,-0.6532815,0.2705981 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 39 sym = 41 sym = 42 srfN = srfAttach, 29 attN = None, -1 mass = 0.01 temp = 289.289083753667 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = RTLongAntenna2 cid = 4292800208 uid = 3776617112 mid = 134276674 launchID = 18 parent = 29 position = -0.213477894663811,0.339059829711914,-0.213477805256844 rotation = -0.2705981,0.6532816,-0.6532814,-0.2705981 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 39 sym = 40 sym = 42 srfN = srfAttach, 29 attN = None, -1 mass = 0.01 temp = 289.324426039952 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = RTLongAntenna2 cid = 4292800134 uid = 1267196401 mid = 134276674 launchID = 18 parent = 29 position = -0.213477805256844,0.339059829711914,0.213477805256844 rotation = -0.6532815,0.2705981,-0.270598,-0.6532816 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 39 sym = 40 sym = 41 srfN = srfAttach, 29 attN = None, -1 mass = 0.01 temp = 289.208320004007 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0.9906712 animSpeed = 1 EVENTS { Toggle { active = False guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } ACTIONGROUPS { Stage = False, 0 Gear = True, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = -0.00650321 yaw = 0.004348672 roll = -0.001391706 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } } VESSEL { pid = 83d48899209941f69d94c00251239d40 name = Kerbin Scanner type = Probe sit = ORBITING landed = False landedAt = splashed = False met = 111.620000103954 lct = 542143.688164444 root = 0 lat = -87.9222027835763 lon = 125.835512825544 alt = 99985.4690538624 hgt = -1 nrm = -1.630124E-05,-1,0.0001586516 rot = 0.006456858,0.9654496,-0.01702785,0.259953 CoM = -7.788255E-05,-0.3334999,-0.0007632174 stg = 1 prst = False ref = 1726885069 ctrl = True cPch = cHdg = cMod = 0 ORBIT { SMA = 699997.436455587 ECC = 3.70315268733647E-05 INC = 89.6999836152745 LPE = 204.61265198588 LAN = 65.1623418343713 MNA = 1.10533794683811 EPH = 542255.308164548 REF = 1 } PART { name = probeCoreOcto cid = 4294730030 uid = 1726885069 mid = 4027454808 launchID = 19 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = bottom, 7 attN = top, 1 mass = 0.1 temp = 287.832126294699 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = probeCoreOcto modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True controlSrcStatusText = Operational EVENTS { MakeReference { active = True guiActive = True guiIcon = Control From Here guiName = Control From Here category = Control From Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } RenameVessel { active = True guiActive = True guiIcon = Rename Vessel guiName = Rename Vessel category = Rename Vessel guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleReactionWheel isEnabled = True stateString = Running WheelState = Active EVENTS { OnToggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle Torque guiName = Toggle Torque category = Toggle Torque guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True standaloneToggle_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = RadialMinus Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 542255.308164548 ExtraDelay = 0 CmdGuid = aca22d7e-9076-4af6-91fc-44a3748866e1 } } Commands { } } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 EVENTS { } ACTIONS { } } MODULE { name = ModuleTripLogger isEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryBankMini cid = 4294715626 uid = 1726090535 mid = 4027454808 launchID = 19 parent = 0 position = 0,0.239040374755859,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 2 attN = bottom, 0 mass = 0.01 temp = 290.630652566798 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = SurveyScanner cid = 4294708634 uid = 650608082 mid = 4027454808 launchID = 19 parent = 1 position = 0,0.286930084228516,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = srfAttach, 1 attN = bottom, 1 mass = 0.2 temp = 291.577292914371 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = SurveyScanner modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleOrbitalSurveyor isEnabled = True EVENTS { PerformSurvey { active = True guiActive = True guiIcon = Perform orbital survey guiName = Perform orbital survey category = Perform orbital survey guiActiveUnfocused = True unfocusedRange = 3 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleOrbitalScanner isEnabled = True EVENTS { SwitchResource { active = False guiActive = True guiIcon = Resource guiName = Ore (3.70% avg.) category = Resource guiActiveUnfocused = True unfocusedRange = 3 externalToEVAOnly = True } ToggleOverlay { active = False guiActive = True guiIcon = Toggle Overlay guiName = Toggle Overlay category = Toggle Overlay guiActiveUnfocused = True unfocusedRange = 3 externalToEVAOnly = True } SetColor { active = False guiActive = True guiIcon = Color: Monochrome guiName = Color: Monochrome [0%] category = Color: Monochrome guiActiveUnfocused = True unfocusedRange = 3 externalToEVAOnly = True } IncreaseCutoff { active = False guiActive = True guiIcon = Cutoff + guiName = Cutoff + category = Cutoff + guiActiveUnfocused = True unfocusedRange = 3 externalToEVAOnly = True } DecreaseCutoff { active = False guiActive = True guiIcon = Cutoff - guiName = Cutoff - category = Cutoff - guiActiveUnfocused = True unfocusedRange = 3 externalToEVAOnly = True } ActivateScanner { active = False guiActive = True guiIcon = Activate guiName = Activate category = Activate guiActiveUnfocused = True unfocusedRange = 3 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleAnimationGroup isEnabled = True _isActive = False isDeployed = True EVENTS { RetractModule { active = True guiActive = True guiActiveEditor = True guiIcon = Retract guiName = Retract Scanner category = Retract guiActiveUnfocused = True unfocusedRange = 3 externalToEVAOnly = True } DeployModule { active = False guiActive = True guiActiveEditor = True guiIcon = Deploy guiName = Deploy Scanner category = Deploy guiActiveUnfocused = True unfocusedRange = 3 externalToEVAOnly = True } } ACTIONS { DeployModuleAction { actionGroup = None } RetractModuleAction { actionGroup = None } ToggleModuleAction { actionGroup = None } } } } PART { name = RCSBlock cid = 4294675582 uid = 4100487114 mid = 4027454808 launchID = 19 parent = 1 position = -0.402579486370087,0.198160171508789,0.000742302974686027 rotation = -2.512148E-15,8.42937E-08,-6.102154E-08,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 4 srfN = srfAttach, 1 mass = 0.05 temp = 288.71614349343 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = RCSBlock cid = 4294648350 uid = 3702538500 mid = 4027454808 launchID = 19 parent = 1 position = 0.402579486370087,0.198160171508789,-0.000742338190320879 rotation = -6.102154E-08,1,5.179484E-15,-1.280051E-07 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 3 srfN = srfAttach, 1 mass = 0.05 temp = 288.691941946039 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = RTLongAntenna3 cid = 4294698800 uid = 3483691203 mid = 4027454808 launchID = 19 parent = 0 position = 3.00177909196009E-08,0.0152902603149414,-0.343363612890244 rotation = 1.111274E-07,0.7071068,-0.7071068,1.111274E-07 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 0 mass = 0.02 temp = 288.111114044989 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongAntenna3 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0.9909298 animSpeed = 1 EVENTS { Toggle { active = False guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Retract category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000000 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True EVENTS { } ACTIONS { } } } PART { name = ksp.r.largeBatteryPack cid = 4294690738 uid = 1832998747 mid = 4027454808 launchID = 19 parent = 0 position = 0,0.0268402099609375,0.275989711284637 rotation = 0,1,0,1.047713E-07 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 0 mass = 0.02 temp = 287.785334217829 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = ksp.r.largeBatteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 400 maxAmount = 400 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = toroidalFuelTank cid = 4294681514 uid = 2861646666 mid = 4027454808 launchID = 19 parent = 0 position = 0,-0.236940383911133,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 0 attN = bottom, 8 mass = 0.0375 temp = 287.842891196398 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = toroidalFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 27 maxAmount = 27 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 33 maxAmount = 33 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = miniFuelTank cid = 4294667748 uid = 4202350520 mid = 4027454808 launchID = 19 parent = 7 position = 0,-0.461079597473145,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 7 attN = bottom, 9 mass = 0.025 temp = 287.842039275754 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = liquidEngineMini cid = 4294651068 uid = 309447069 mid = 4027454808 launchID = 19 parent = 8 position = 0,-0.635350227355957,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 8 attN = None, -1 mass = 0.1 temp = 287.799626736083 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = liquidEngineMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnginesFX isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = None } } } MODULE { name = ModuleJettison isEnabled = True isJettisoned = True EVENTS { Jettison { active = False guiActive = True guiIcon = Jettison guiName = Jettison category = Jettison guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { JettisonAction { actionGroup = None } } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 gimbalLock_UIFlight { controlEnabled = True } gimbalLimiter_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 1 } EVENTS { } ACTIONS { ToggleAction { actionGroup = None } LockAction { actionGroup = None } FreeAction { actionGroup = None } } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } } PART { name = RCSBlock cid = 4294647574 uid = 749586476 mid = 4027454808 launchID = 19 parent = 8 position = -0.000742241914849728,-0.538900375366211,-0.429125010967255 rotation = -7.595229E-07,0.7071068,7.595229E-07,-0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 11 srfN = srfAttach, 8 mass = 0.05 temp = 287.961655047015 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = RCSBlock cid = 4294646732 uid = 3203353890 mid = 4027454808 launchID = 19 parent = 8 position = 0.000742279400583357,-0.538900375366211,0.429125010967255 rotation = 7.595229E-07,-0.7071068,7.595228E-07,-0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 10 srfN = srfAttach, 8 mass = 0.05 temp = 287.981100585506 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = strutCube cid = 4294638052 uid = 1801738046 mid = 4027454808 launchID = 19 parent = 0 position = 0.472676903009415,-0.0496301651000977,5.11932505276036E-08 rotation = 0.5000001,0.4999999,-0.4999999,0.5000001 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 16 srfN = srfAttach, 0 attN = top, 13 attN = None, -1 mass = 0.001 temp = 292.991117733133 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = strutCube cid = 4294636486 uid = 514663182 mid = 4027454808 launchID = 19 parent = 12 position = 0.730145692825317,-0.0496301651000977,9.72322453662855E-08 rotation = 0.7071068,0.7071068,-1.151368E-14,-1.151368E-14 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 17 srfN = srfAttach, 0 attN = None, -1 attN = bottom, 12 mass = 0.001 temp = 290.192653285549 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = solarPanels2 cid = 4294609092 uid = 3576978242 mid = 4027454808 launchID = 19 parent = 13 position = 0.776923596858978,-0.0496301651000977,-0.106973819434643 rotation = 0.4999999,0.5000001,0.5000003,-0.5 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 18 srfN = srfAttach, 13 mass = 0.025 temp = 289.122857935324 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (-0.7069403, 0.01533906, -0.01533567, 0.7069407) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 1 EVENTS { Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels2 cid = 4294607218 uid = 2525907511 mid = 4027454808 launchID = 19 parent = 13 position = 0.77639627456665,-0.0496301651000977,0.107375651597977 rotation = 0.5000003,0.5,-0.4999999,0.5000001 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 19 srfN = srfAttach, 13 mass = 0.025 temp = 289.10266445861 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (-0.7069389, -0.0153357, 0.01533409, 0.706942) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 1 EVENTS { Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = strutCube cid = 4294637702 uid = 3826146122 mid = 4027454808 launchID = 19 parent = 0 position = -0.472676903009415,-0.0496301651000977,-9.87051684830931E-09 rotation = -0.4999999,0.5000001,-0.5000001,-0.4999999 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 12 srfN = srfAttach, 0 attN = top, 17 attN = None, -1 mass = 0.001 temp = 292.948988692666 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = strutCube cid = 4294635064 uid = 1593543762 mid = 4027454808 launchID = 19 parent = 16 position = -0.730145812034607,-0.0496301651000977,-9.87051684830931E-09 rotation = -2.107343E-08,-2.107343E-08,-0.7071068,-0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 13 srfN = srfAttach, 0 attN = None, -1 attN = bottom, 16 mass = 0.001 temp = 289.702061803729 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = solarPanels2 cid = 4294608512 uid = 2000871517 mid = 4027454808 launchID = 19 parent = 17 position = -0.776923716068268,-0.0496301651000977,0.106973916292191 rotation = 0.5000002,-0.4999999,-0.5,-0.5000001 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 14 srfN = srfAttach, 17 mass = 0.025 temp = 289.427434312437 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (-0.0508834, 0.7052733, -0.7052739, 0.05088581) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 1 EVENTS { Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels2 cid = 4294606374 uid = 3789474079 mid = 4027454808 launchID = 19 parent = 17 position = -0.77639627456665,-0.0496301651000977,-0.107375517487526 rotation = -0.5,0.5000001,-0.5000002,-0.4999999 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 15 srfN = srfAttach, 17 mass = 0.025 temp = 288.311657170882 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (-0.05088537, -0.7052742, 0.705273, 0.05088364) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 1 EVENTS { Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = radialRCSTank cid = 4294590054 uid = 2665953327 mid = 4027454808 launchID = 19 parent = 0 position = -0.132599398493767,-0.554909706115723,-0.132599100470543 rotation = -0.6532817,0.2705976,0.2705976,0.6532817 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 21 sym = 22 sym = 23 srfN = srfAttach, 0 mass = 0.075 temp = 287.754358502865 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 60 maxAmount = 60 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = radialRCSTank cid = 4294588140 uid = 3883587458 mid = 4027454808 launchID = 19 parent = 0 position = -0.132599100470543,-0.554909706115723,0.132599398493767 rotation = -0.2705985,0.6532813,0.6532813,0.2705985 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 20 sym = 22 sym = 23 srfN = srfAttach, 0 mass = 0.075 temp = 287.755456506929 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 60 maxAmount = 60 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = radialRCSTank cid = 4294588112 uid = 434065386 mid = 4027454808 launchID = 19 parent = 0 position = 0.132599398493767,-0.554909706115723,0.132599100470543 rotation = 0.2705976,0.6532817,0.6532817,-0.2705976 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 20 sym = 21 sym = 23 srfN = srfAttach, 0 mass = 0.075 temp = 287.764014758974 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 60 maxAmount = 60 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = radialRCSTank cid = 4294588084 uid = 45506211 mid = 4027454808 launchID = 19 parent = 0 position = 0.132599100470543,-0.554909706115723,-0.132599398493767 rotation = 0.6532813,0.2705985,0.2705985,-0.6532813 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 20 sym = 21 sym = 22 srfN = srfAttach, 0 mass = 0.075 temp = 287.754261329362 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 60 maxAmount = 60 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = sensorGravimeter cid = 4294563016 uid = 390244405 mid = 4027454808 launchID = 19 parent = 0 position = -0.243179306387901,0.0141201019287109,-0.243179306387901 rotation = 0,-0.3826828,0,-0.9238798 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 0 mass = 0.005 temp = 289.546920671068 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = sensorGravimeter modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False EVENTS { Toggle { active = True guiActive = True guiIcon = Toggle Display guiName = Toggle Display category = Toggle Display guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Log Gravity Data category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data category = guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Data category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Log Gravity Data category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } } PART { name = sensorAccelerometer cid = 4294558964 uid = 3554356242 mid = 4027454808 launchID = 19 parent = 0 position = 0.242815002799034,0.0250396728515625,-0.242815002799034 rotation = 0,0.3826832,0,-0.9238797 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 0 mass = 0.005 temp = 289.37346960126 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = sensorAccelerometer modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False EVENTS { Toggle { active = True guiActive = True guiIcon = Toggle Display guiName = Toggle Display category = Toggle Display guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Log Seismic Data category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data category = guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Data category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Log Seismic Data category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } } PART { name = sensorThermometer cid = 4294556668 uid = 1345068700 mid = 4027454808 launchID = 19 parent = 0 position = 0.244036704301834,0.0139999389648438,0.244036704301834 rotation = 0,0.9238796,0,-0.3826833 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 0 mass = 0.005 temp = 288.421877303771 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = sensorThermometer modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False EVENTS { Toggle { active = True guiActive = True guiIcon = Toggle Display guiName = Toggle Display category = Toggle Display guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Log Temperature category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data category = guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Data category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Log Temperature category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } } PART { name = sensorGravimeter cid = 4294553312 uid = 1585378827 mid = 4027454808 launchID = 19 parent = 0 position = -0.244226098060608,0.0272598266601563,0.244226098060608 rotation = 0,0.9238795,0,0.3826836 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 0 mass = 0.005 temp = 289.55184187499 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = sensorGravimeter modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False EVENTS { Toggle { active = True guiActive = True guiIcon = Toggle Display guiName = Toggle Display category = Toggle Display guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Log Gravity Data category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data category = guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Data category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Log Gravity Data category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } } ACTIONGROUPS { Stage = False, 0 Gear = True, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = -0.0004142433 yaw = -0.001470905 roll = 0.001522062 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } } VESSEL { pid = ebd9c157552947889280fa55738ff11f name = Duna Scanner type = Probe sit = ORBITING landed = False landedAt = splashed = False met = 131.320000122301 lct = 542292.368164583 root = 0 lat = 10.329469358136 lon = -87.58843969859 alt = 59994.1235282823 hgt = -1 nrm = 6.900014E-06,-1,-2.950402E-05 rot = -0.7671072,-0.001781204,-0.03443918,-0.6405914 CoM = 1.421757E-06,-0.3331603,-0.0005717976 stg = 1 prst = False ref = 3318151234 ctrl = True cPch = cHdg = cMod = 0 ORBIT { SMA = 380021.770280524 ECC = 7.30581260606089E-05 INC = 91.188055638242 LPE = 0.00533036405783337 LAN = 104.542331623955 MNA = 0.180250082343235 EPH = 542423.688164705 REF = 6 } PART { name = probeCoreOcto cid = 4294730030 uid = 3318151234 mid = 1506351969 launchID = 20 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = bottom, 7 attN = top, 1 mass = 0.1 temp = 287.709104241368 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = probeCoreOcto modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True controlSrcStatusText = Operational EVENTS { MakeReference { active = True guiActive = True guiIcon = Control From Here guiName = Control From Here category = Control From Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } RenameVessel { active = True guiActive = True guiIcon = Rename Vessel guiName = Rename Vessel category = Rename Vessel guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleReactionWheel isEnabled = True stateString = Running WheelState = Active EVENTS { OnToggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle Torque guiName = Toggle Torque category = Toggle Torque guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True standaloneToggle_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = RadialMinus Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 542423.688164705 ExtraDelay = -0.00453081940527866 CmdGuid = 54d4df43-8632-4615-af21-772ac0c152a8 } } Commands { } } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 EVENTS { } ACTIONS { } } MODULE { name = ModuleTripLogger isEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Flyby,Duna 0 = Orbit,Duna } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryBankMini cid = 4294715626 uid = 3523749322 mid = 1506351969 launchID = 20 parent = 0 position = 0,0.239040374755859,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 2 attN = bottom, 0 mass = 0.01 temp = 289.235539268808 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = SurveyScanner cid = 4294708634 uid = 2572229582 mid = 1506351969 launchID = 20 parent = 1 position = 0,0.286930084228516,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = srfAttach, 1 attN = bottom, 1 mass = 0.2 temp = 289.822813791069 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = SurveyScanner modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleOrbitalSurveyor isEnabled = True EVENTS { PerformSurvey { active = True guiActive = True guiIcon = Perform orbital survey guiName = Perform orbital survey category = Perform orbital survey guiActiveUnfocused = True unfocusedRange = 3 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleOrbitalScanner isEnabled = True EVENTS { SwitchResource { active = False guiActive = True guiIcon = Resource guiName = Ore (3.70% avg.) category = Resource guiActiveUnfocused = True unfocusedRange = 3 externalToEVAOnly = True } ToggleOverlay { active = False guiActive = True guiIcon = Toggle Overlay guiName = Toggle Overlay category = Toggle Overlay guiActiveUnfocused = True unfocusedRange = 3 externalToEVAOnly = True } SetColor { active = False guiActive = True guiIcon = Color: Monochrome guiName = Color: Monochrome [0%] category = Color: Monochrome guiActiveUnfocused = True unfocusedRange = 3 externalToEVAOnly = True } IncreaseCutoff { active = False guiActive = True guiIcon = Cutoff + guiName = Cutoff + category = Cutoff + guiActiveUnfocused = True unfocusedRange = 3 externalToEVAOnly = True } DecreaseCutoff { active = False guiActive = True guiIcon = Cutoff - guiName = Cutoff - category = Cutoff - guiActiveUnfocused = True unfocusedRange = 3 externalToEVAOnly = True } ActivateScanner { active = False guiActive = True guiIcon = Activate guiName = Activate category = Activate guiActiveUnfocused = True unfocusedRange = 3 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleAnimationGroup isEnabled = True _isActive = False isDeployed = True EVENTS { RetractModule { active = True guiActive = True guiActiveEditor = True guiIcon = Retract guiName = Retract Scanner category = Retract guiActiveUnfocused = True unfocusedRange = 3 externalToEVAOnly = True } DeployModule { active = False guiActive = True guiActiveEditor = True guiIcon = Deploy guiName = Deploy Scanner category = Deploy guiActiveUnfocused = True unfocusedRange = 3 externalToEVAOnly = True } } ACTIONS { DeployModuleAction { actionGroup = None } RetractModuleAction { actionGroup = None } ToggleModuleAction { actionGroup = None } } } } PART { name = RCSBlock cid = 4294675582 uid = 2874012081 mid = 1506351969 launchID = 20 parent = 1 position = -0.402579486370087,0.198160171508789,0.000742302974686027 rotation = -2.512148E-15,8.42937E-08,-6.102154E-08,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 4 srfN = srfAttach, 1 mass = 0.05 temp = 288.251088118793 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = RCSBlock cid = 4294648350 uid = 3331345926 mid = 1506351969 launchID = 20 parent = 1 position = 0.402579486370087,0.198160171508789,-0.000742338190320879 rotation = -6.102154E-08,1,5.179484E-15,-1.280051E-07 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 3 srfN = srfAttach, 1 mass = 0.05 temp = 288.22846717105 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = RTLongAntenna3 cid = 4294698800 uid = 160396684 mid = 1506351969 launchID = 20 parent = 0 position = 3.00177909196009E-08,0.0152902603149414,-0.343363612890244 rotation = 1.111274E-07,0.7071068,-0.7071068,1.111274E-07 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 0 mass = 0.02 temp = 287.880003905938 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongAntenna3 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0.99171 animSpeed = 1 EVENTS { Toggle { active = False guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Retract category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000000 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = ksp.r.largeBatteryPack cid = 4294690738 uid = 2756197846 mid = 1506351969 launchID = 20 parent = 0 position = 0,0.0268402099609375,0.275989711284637 rotation = 0,1,0,1.047713E-07 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 0 mass = 0.02 temp = 287.420014776845 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = ksp.r.largeBatteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 400 maxAmount = 400 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = toroidalFuelTank cid = 4294681514 uid = 228179091 mid = 1506351969 launchID = 20 parent = 0 position = 0,-0.236940383911133,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 0 attN = bottom, 8 mass = 0.0375 temp = 287.72398138591 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = toroidalFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 27 maxAmount = 27 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 33 maxAmount = 33 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = miniFuelTank cid = 4294667748 uid = 4061549693 mid = 1506351969 launchID = 20 parent = 7 position = 0,-0.461079597473145,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 7 attN = bottom, 9 mass = 0.025 temp = 287.730389700793 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = liquidEngineMini cid = 4294651068 uid = 1742751415 mid = 1506351969 launchID = 20 parent = 8 position = 0,-0.635350227355957,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 8 attN = None, -1 mass = 0.1 temp = 287.679907998895 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = liquidEngineMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnginesFX isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = None } } } MODULE { name = ModuleJettison isEnabled = True isJettisoned = True EVENTS { Jettison { active = False guiActive = True guiIcon = Jettison guiName = Jettison category = Jettison guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { JettisonAction { actionGroup = None } } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 gimbalLock_UIFlight { controlEnabled = True } gimbalLimiter_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 1 } EVENTS { } ACTIONS { ToggleAction { actionGroup = None } LockAction { actionGroup = None } FreeAction { actionGroup = None } } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } } PART { name = RCSBlock cid = 4294647574 uid = 1227468130 mid = 1506351969 launchID = 20 parent = 8 position = -0.000742241914849728,-0.538900375366211,-0.429125010967255 rotation = -7.595229E-07,0.7071068,7.595229E-07,-0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 11 srfN = srfAttach, 8 mass = 0.05 temp = 287.780995878626 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = RCSBlock cid = 4294646732 uid = 374071458 mid = 1506351969 launchID = 20 parent = 8 position = 0.000742279400583357,-0.538900375366211,0.429125010967255 rotation = 7.595229E-07,-0.7071068,7.595228E-07,-0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 10 srfN = srfAttach, 8 mass = 0.05 temp = 287.783218151942 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = strutCube cid = 4294638052 uid = 719921957 mid = 1506351969 launchID = 20 parent = 0 position = 0.472676903009415,-0.0496301651000977,5.11932505276036E-08 rotation = 0.5000001,0.4999999,-0.4999999,0.5000001 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 16 srfN = srfAttach, 0 attN = top, 13 attN = None, -1 mass = 0.001 temp = 290.335344783639 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = strutCube cid = 4294636486 uid = 543955314 mid = 1506351969 launchID = 20 parent = 12 position = 0.730145692825317,-0.0496301651000977,9.72322453662855E-08 rotation = 0.7071068,0.7071068,-1.151368E-14,-1.151368E-14 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 17 srfN = srfAttach, 0 attN = None, -1 attN = bottom, 12 mass = 0.001 temp = 287.667031780098 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = solarPanels2 cid = 4294609092 uid = 3409973528 mid = 1506351969 launchID = 20 parent = 13 position = 0.776923596858978,-0.0496301651000977,-0.106973819434643 rotation = 0.4999999,0.5000001,0.5000003,-0.5 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 18 srfN = srfAttach, 13 mass = 0.025 temp = 286.725466496284 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (-0.6482755, -0.2823939, 0.282371, 0.6482741) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 1 EVENTS { Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels2 cid = 4294607218 uid = 1776214392 mid = 1506351969 launchID = 20 parent = 13 position = 0.77639627456665,-0.0496301651000977,0.107375651597977 rotation = 0.5000003,0.5,-0.4999999,0.5000001 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 19 srfN = srfAttach, 13 mass = 0.025 temp = 286.742016752575 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (-0.6482772, 0.2823691, -0.2823972, 0.6482719) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 1 EVENTS { Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = strutCube cid = 4294637702 uid = 282981197 mid = 1506351969 launchID = 20 parent = 0 position = -0.472676903009415,-0.0496301651000977,-9.87051684830931E-09 rotation = -0.4999999,0.5000001,-0.5000001,-0.4999999 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 12 srfN = srfAttach, 0 attN = top, 17 attN = None, -1 mass = 0.001 temp = 290.325910133664 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = strutCube cid = 4294635064 uid = 1372243788 mid = 1506351969 launchID = 20 parent = 16 position = -0.730145812034607,-0.0496301651000977,-9.87051684830931E-09 rotation = -2.107343E-08,-2.107343E-08,-0.7071068,-0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 13 srfN = srfAttach, 0 attN = None, -1 attN = bottom, 16 mass = 0.001 temp = 287.393014718064 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = solarPanels2 cid = 4294608512 uid = 2520018576 mid = 1506351969 launchID = 20 parent = 17 position = -0.776923716068268,-0.0496301651000977,0.106973916292191 rotation = 0.5000002,-0.4999999,-0.5,-0.5000001 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 14 srfN = srfAttach, 17 mass = 0.025 temp = 286.815185255806 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (-0.2823676, -0.648279, 0.6482693, 0.2824003) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 1 EVENTS { Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels2 cid = 4294606374 uid = 4186074731 mid = 1506351969 launchID = 20 parent = 17 position = -0.77639627456665,-0.0496301651000977,-0.107375517487526 rotation = -0.5,0.5000001,-0.5000002,-0.4999999 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 15 srfN = srfAttach, 17 mass = 0.025 temp = 286.730192353961 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (-0.2823954, 0.6482772, -0.6482721, 0.2823704) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 1 EVENTS { Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = radialRCSTank cid = 4294590054 uid = 2904754746 mid = 1506351969 launchID = 20 parent = 0 position = -0.132599398493767,-0.554909706115723,-0.132599100470543 rotation = -0.6532817,0.2705976,0.2705976,0.6532817 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 21 sym = 22 sym = 23 srfN = srfAttach, 0 mass = 0.075 temp = 287.688339001264 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 59.6831194487215 maxAmount = 60 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = radialRCSTank cid = 4294588140 uid = 482984575 mid = 1506351969 launchID = 20 parent = 0 position = -0.132599100470543,-0.554909706115723,0.132599398493767 rotation = -0.2705985,0.6532813,0.6532813,0.2705985 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 20 sym = 22 sym = 23 srfN = srfAttach, 0 mass = 0.075 temp = 287.682228604613 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 59.6831194487215 maxAmount = 60 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = radialRCSTank cid = 4294588112 uid = 4184759975 mid = 1506351969 launchID = 20 parent = 0 position = 0.132599398493767,-0.554909706115723,0.132599100470543 rotation = 0.2705976,0.6532817,0.6532817,-0.2705976 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 20 sym = 21 sym = 23 srfN = srfAttach, 0 mass = 0.075 temp = 287.688220038049 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 59.6831194487215 maxAmount = 60 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = radialRCSTank cid = 4294588084 uid = 2917023015 mid = 1506351969 launchID = 20 parent = 0 position = 0.132599100470543,-0.554909706115723,-0.132599398493767 rotation = 0.6532813,0.2705985,0.2705985,-0.6532813 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 20 sym = 21 sym = 22 srfN = srfAttach, 0 mass = 0.075 temp = 287.68485353316 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 59.6831194487215 maxAmount = 60 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = sensorGravimeter cid = 4294563016 uid = 3943849820 mid = 1506351969 launchID = 20 parent = 0 position = -0.243179306387901,0.0141201019287109,-0.243179306387901 rotation = 0,-0.3826828,0,-0.9238798 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 0 mass = 0.005 temp = 288.607284997955 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = sensorGravimeter modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False EVENTS { Toggle { active = True guiActive = True guiIcon = Toggle Display guiName = Toggle Display category = Toggle Display guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Log Gravity Data category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data category = guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Data category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Log Gravity Data category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } } PART { name = sensorAccelerometer cid = 4294558964 uid = 120314393 mid = 1506351969 launchID = 20 parent = 0 position = 0.242815002799034,0.0250396728515625,-0.242815002799034 rotation = 0,0.3826832,0,-0.9238797 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 0 mass = 0.005 temp = 288.641774639016 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = sensorAccelerometer modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False EVENTS { Toggle { active = True guiActive = True guiIcon = Toggle Display guiName = Toggle Display category = Toggle Display guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Log Seismic Data category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data category = guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Data category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Log Seismic Data category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } } PART { name = sensorThermometer cid = 4294556668 uid = 1789342815 mid = 1506351969 launchID = 20 parent = 0 position = 0.244036704301834,0.0139999389648438,0.244036704301834 rotation = 0,0.9238796,0,-0.3826833 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 0 mass = 0.005 temp = 288.037442108596 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = sensorThermometer modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False EVENTS { Toggle { active = True guiActive = True guiIcon = Toggle Display guiName = Toggle Display category = Toggle Display guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Log Temperature category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data category = guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Data category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Log Temperature category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } } PART { name = sensorGravimeter cid = 4294553312 uid = 1241981532 mid = 1506351969 launchID = 20 parent = 0 position = -0.244226098060608,0.0272598266601563,0.244226098060608 rotation = 0,0.9238795,0,0.3826836 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 0 mass = 0.005 temp = 288.574035328035 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = sensorGravimeter modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False EVENTS { Toggle { active = True guiActive = True guiIcon = Toggle Display guiName = Toggle Display category = Toggle Display guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Log Gravity Data category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data category = guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Data category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Log Gravity Data category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } } ACTIONGROUPS { Stage = False, 0 Gear = True, 0 Light = False, 542393.428164677 RCS = True, 542367.808164653 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = -0.0003744461 yaw = -0.000118803 roll = -1.575674E-05 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } } VESSEL { pid = d38773e0128b4d0bb5eef56af5339737 name = Minmus Scanner type = Probe sit = ORBITING landed = False landedAt = splashed = False met = 162.120000150986 lct = 542469.108164747 root = 0 lat = 15.7215698709743 lon = 345.425988743855 alt = 19997.170945349 hgt = -1 nrm = -2.052957E-05,-1,3.30432E-05 rot = -0.6420335,0.5606816,0.4724994,0.2239945 CoM = 0.0001129201,-0.3334574,-0.000704686 stg = 1 prst = False ref = 1267246183 ctrl = True cPch = cHdg = cMod = 0 ORBIT { SMA = 79995.4010720231 ECC = 3.0246700832578E-05 INC = 91.1955963029344 LPE = 225.353551103383 LAN = 12.3475892098143 MNA = 2.62448554208326 EPH = 542631.228164898 REF = 3 } PART { name = probeCoreOcto cid = 4294730030 uid = 1267246183 mid = 4267992446 launchID = 21 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = bottom, 7 attN = top, 1 mass = 0.1 temp = 287.752447768646 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = probeCoreOcto modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True controlSrcStatusText = Operational EVENTS { MakeReference { active = True guiActive = True guiIcon = Control From Here guiName = Control From Here category = Control From Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } RenameVessel { active = True guiActive = True guiIcon = Rename Vessel guiName = Rename Vessel category = Rename Vessel guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleReactionWheel isEnabled = True stateString = Running WheelState = Active EVENTS { OnToggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle Torque guiName = Toggle Torque category = Toggle Torque guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True standaloneToggle_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = RadialMinus Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 542631.228164898 ExtraDelay = -0.00349241058970406 CmdGuid = 55fd915c-886f-417c-869d-eaec4a494233 } } Commands { } } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 EVENTS { } ACTIONS { } } MODULE { name = ModuleTripLogger isEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Flyby,Minmus 0 = Orbit,Minmus } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryBankMini cid = 4294715626 uid = 3838762055 mid = 4267992446 launchID = 21 parent = 0 position = 0,0.239040374755859,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 2 attN = bottom, 0 mass = 0.01 temp = 289.850613101454 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = SurveyScanner cid = 4294708634 uid = 2238752924 mid = 4267992446 launchID = 21 parent = 1 position = 0,0.286930084228516,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = srfAttach, 1 attN = bottom, 1 mass = 0.2 temp = 290.620811920416 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = SurveyScanner modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleOrbitalSurveyor isEnabled = True EVENTS { PerformSurvey { active = True guiActive = True guiIcon = Perform orbital survey guiName = Perform orbital survey category = Perform orbital survey guiActiveUnfocused = True unfocusedRange = 3 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleOrbitalScanner isEnabled = True EVENTS { SwitchResource { active = False guiActive = True guiIcon = Resource guiName = Ore (3.70% avg.) category = Resource guiActiveUnfocused = True unfocusedRange = 3 externalToEVAOnly = True } ToggleOverlay { active = False guiActive = True guiIcon = Toggle Overlay guiName = Toggle Overlay category = Toggle Overlay guiActiveUnfocused = True unfocusedRange = 3 externalToEVAOnly = True } SetColor { active = False guiActive = True guiIcon = Color: Monochrome guiName = Color: Monochrome [0%] category = Color: Monochrome guiActiveUnfocused = True unfocusedRange = 3 externalToEVAOnly = True } IncreaseCutoff { active = False guiActive = True guiIcon = Cutoff + guiName = Cutoff + category = Cutoff + guiActiveUnfocused = True unfocusedRange = 3 externalToEVAOnly = True } DecreaseCutoff { active = False guiActive = True guiIcon = Cutoff - guiName = Cutoff - category = Cutoff - guiActiveUnfocused = True unfocusedRange = 3 externalToEVAOnly = True } ActivateScanner { active = False guiActive = True guiIcon = Activate guiName = Activate category = Activate guiActiveUnfocused = True unfocusedRange = 3 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleAnimationGroup isEnabled = True _isActive = False isDeployed = True EVENTS { RetractModule { active = True guiActive = True guiActiveEditor = True guiIcon = Retract guiName = Retract Scanner category = Retract guiActiveUnfocused = True unfocusedRange = 3 externalToEVAOnly = True } DeployModule { active = False guiActive = True guiActiveEditor = True guiIcon = Deploy guiName = Deploy Scanner category = Deploy guiActiveUnfocused = True unfocusedRange = 3 externalToEVAOnly = True } } ACTIONS { DeployModuleAction { actionGroup = None } RetractModuleAction { actionGroup = None } ToggleModuleAction { actionGroup = None } } } } PART { name = RCSBlock cid = 4294675582 uid = 261041614 mid = 4267992446 launchID = 21 parent = 1 position = -0.402579486370087,0.198160171508789,0.000742302974686027 rotation = -2.512148E-15,8.42937E-08,-6.102154E-08,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 4 srfN = srfAttach, 1 mass = 0.05 temp = 288.540419820449 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = RCSBlock cid = 4294648350 uid = 220575091 mid = 4267992446 launchID = 21 parent = 1 position = 0.402579486370087,0.198160171508789,-0.000742338190320879 rotation = -6.102154E-08,1,5.179484E-15,-1.280051E-07 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 3 srfN = srfAttach, 1 mass = 0.05 temp = 288.501974060606 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = RTLongAntenna3 cid = 4294698800 uid = 1559195967 mid = 4267992446 launchID = 21 parent = 0 position = 3.00177909196009E-08,0.0152902603149414,-0.343363612890244 rotation = 1.111274E-07,0.7071068,-0.7071068,1.111274E-07 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 0 mass = 0.02 temp = 287.940310211328 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongAntenna3 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0.991402 animSpeed = 1 EVENTS { Toggle { active = False guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Retract category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000000 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True EVENTS { } ACTIONS { } } } PART { name = ksp.r.largeBatteryPack cid = 4294690738 uid = 794399780 mid = 4267992446 launchID = 21 parent = 0 position = 0,0.0268402099609375,0.275989711284637 rotation = 0,1,0,1.047713E-07 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 0 mass = 0.02 temp = 287.323418710837 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = ksp.r.largeBatteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 400 maxAmount = 400 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = toroidalFuelTank cid = 4294681514 uid = 2182944731 mid = 4267992446 launchID = 21 parent = 0 position = 0,-0.236940383911133,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 0 attN = bottom, 8 mass = 0.0375 temp = 287.772139576973 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = toroidalFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 27 maxAmount = 27 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 33 maxAmount = 33 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = miniFuelTank cid = 4294667748 uid = 3567856015 mid = 4267992446 launchID = 21 parent = 7 position = 0,-0.461079597473145,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 7 attN = bottom, 9 mass = 0.025 temp = 287.788410985323 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = liquidEngineMini cid = 4294651068 uid = 3640094715 mid = 4267992446 launchID = 21 parent = 8 position = 0,-0.635350227355957,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 8 attN = None, -1 mass = 0.1 temp = 287.852667632056 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = liquidEngineMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnginesFX isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = None } } } MODULE { name = ModuleJettison isEnabled = True isJettisoned = True EVENTS { Jettison { active = False guiActive = True guiIcon = Jettison guiName = Jettison category = Jettison guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { JettisonAction { actionGroup = None } } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 gimbalLock_UIFlight { controlEnabled = True } gimbalLimiter_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 1 } EVENTS { } ACTIONS { ToggleAction { actionGroup = None } LockAction { actionGroup = None } FreeAction { actionGroup = None } } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } } PART { name = RCSBlock cid = 4294647574 uid = 2712227044 mid = 4267992446 launchID = 21 parent = 8 position = -0.000742241914849728,-0.538900375366211,-0.429125010967255 rotation = -7.595229E-07,0.7071068,7.595229E-07,-0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 11 srfN = srfAttach, 8 mass = 0.05 temp = 287.816309021148 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = RCSBlock cid = 4294646732 uid = 2082441370 mid = 4267992446 launchID = 21 parent = 8 position = 0.000742279400583357,-0.538900375366211,0.429125010967255 rotation = 7.595229E-07,-0.7071068,7.595228E-07,-0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 10 srfN = srfAttach, 8 mass = 0.05 temp = 287.835387453907 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = strutCube cid = 4294638052 uid = 3897563276 mid = 4267992446 launchID = 21 parent = 0 position = 0.472676903009415,-0.0496301651000977,5.11932505276036E-08 rotation = 0.5000001,0.4999999,-0.4999999,0.5000001 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 16 srfN = srfAttach, 0 attN = top, 13 attN = None, -1 mass = 0.001 temp = 291.469227291047 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = strutCube cid = 4294636486 uid = 131561254 mid = 4267992446 launchID = 21 parent = 12 position = 0.730145692825317,-0.0496301651000977,9.72322453662855E-08 rotation = 0.7071068,0.7071068,-1.151368E-14,-1.151368E-14 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 17 srfN = srfAttach, 0 attN = None, -1 attN = bottom, 12 mass = 0.001 temp = 289.585762646712 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = solarPanels2 cid = 4294609092 uid = 2348260398 mid = 4267992446 launchID = 21 parent = 13 position = 0.776923596858978,-0.0496301651000977,-0.106973819434643 rotation = 0.4999999,0.5000001,0.5000003,-0.5 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 18 srfN = srfAttach, 13 mass = 0.025 temp = 289.631246203789 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (-0.496881, -0.5030978, 0.5030913, 0.4968914) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 1 EVENTS { Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels2 cid = 4294607218 uid = 1402914930 mid = 4267992446 launchID = 21 parent = 13 position = 0.77639627456665,-0.0496301651000977,0.107375651597977 rotation = 0.5000003,0.5,-0.4999999,0.5000001 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 19 srfN = srfAttach, 13 mass = 0.025 temp = 289.652583172687 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (-0.4968875, 0.5030934, -0.5030971, 0.4968836) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 1 EVENTS { Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = strutCube cid = 4294637702 uid = 1421445385 mid = 4267992446 launchID = 21 parent = 0 position = -0.472676903009415,-0.0496301651000977,-9.87051684830931E-09 rotation = -0.4999999,0.5000001,-0.5000001,-0.4999999 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 12 srfN = srfAttach, 0 attN = top, 17 attN = None, -1 mass = 0.001 temp = 290.853785901917 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = strutCube cid = 4294635064 uid = 91780232 mid = 4267992446 launchID = 21 parent = 16 position = -0.730145812034607,-0.0496301651000977,-9.87051684830931E-09 rotation = -2.107343E-08,-2.107343E-08,-0.7071068,-0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 13 srfN = srfAttach, 0 attN = None, -1 attN = bottom, 16 mass = 0.001 temp = 289.608394147914 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = solarPanels2 cid = 4294608512 uid = 1109815722 mid = 4267992446 launchID = 21 parent = 17 position = -0.776923716068268,-0.0496301651000977,0.106973916292191 rotation = 0.5000002,-0.4999999,-0.5,-0.5000001 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 14 srfN = srfAttach, 17 mass = 0.025 temp = 289.803706928354 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0.5030952, 0.4968861, -0.4968833, -0.5030968) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 1 EVENTS { Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels2 cid = 4294606374 uid = 1902709387 mid = 4267992446 launchID = 21 parent = 17 position = -0.77639627456665,-0.0496301651000977,-0.107375517487526 rotation = -0.5,0.5000001,-0.5000002,-0.4999999 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 15 srfN = srfAttach, 17 mass = 0.025 temp = 289.753279930819 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0.503099, -0.4968812, 0.4968916, -0.5030897) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 1 EVENTS { Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = radialRCSTank cid = 4294590054 uid = 1419502218 mid = 4267992446 launchID = 21 parent = 0 position = -0.132599398493767,-0.554909706115723,-0.132599100470543 rotation = -0.6532817,0.2705976,0.2705976,0.6532817 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 21 sym = 22 sym = 23 srfN = srfAttach, 0 mass = 0.075 temp = 287.72481558434 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 59.9138140587493 maxAmount = 60 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = radialRCSTank cid = 4294588140 uid = 461774117 mid = 4267992446 launchID = 21 parent = 0 position = -0.132599100470543,-0.554909706115723,0.132599398493767 rotation = -0.2705985,0.6532813,0.6532813,0.2705985 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 20 sym = 22 sym = 23 srfN = srfAttach, 0 mass = 0.075 temp = 287.712447174144 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 59.9138140587493 maxAmount = 60 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = radialRCSTank cid = 4294588112 uid = 83911943 mid = 4267992446 launchID = 21 parent = 0 position = 0.132599398493767,-0.554909706115723,0.132599100470543 rotation = 0.2705976,0.6532817,0.6532817,-0.2705976 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 20 sym = 21 sym = 23 srfN = srfAttach, 0 mass = 0.075 temp = 287.7190743849 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 59.9138140587493 maxAmount = 60 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = radialRCSTank cid = 4294588084 uid = 1684746040 mid = 4267992446 launchID = 21 parent = 0 position = 0.132599100470543,-0.554909706115723,-0.132599398493767 rotation = 0.6532813,0.2705985,0.2705985,-0.6532813 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 20 sym = 21 sym = 22 srfN = srfAttach, 0 mass = 0.075 temp = 287.713305243831 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 59.9138140587493 maxAmount = 60 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = sensorGravimeter cid = 4294563016 uid = 4253843554 mid = 4267992446 launchID = 21 parent = 0 position = -0.243179306387901,0.0141201019287109,-0.243179306387901 rotation = 0,-0.3826828,0,-0.9238798 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 0 mass = 0.005 temp = 288.839453408362 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = sensorGravimeter modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False EVENTS { Toggle { active = True guiActive = True guiIcon = Toggle Display guiName = Toggle Display category = Toggle Display guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Log Gravity Data category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data category = guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Data category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Log Gravity Data category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } } PART { name = sensorAccelerometer cid = 4294558964 uid = 3064217430 mid = 4267992446 launchID = 21 parent = 0 position = 0.242815002799034,0.0250396728515625,-0.242815002799034 rotation = 0,0.3826832,0,-0.9238797 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 0 mass = 0.005 temp = 288.852043723808 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = sensorAccelerometer modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False EVENTS { Toggle { active = True guiActive = True guiIcon = Toggle Display guiName = Toggle Display category = Toggle Display guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Log Seismic Data category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data category = guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Data category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Log Seismic Data category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } } PART { name = sensorThermometer cid = 4294556668 uid = 3299919675 mid = 4267992446 launchID = 21 parent = 0 position = 0.244036704301834,0.0139999389648438,0.244036704301834 rotation = 0,0.9238796,0,-0.3826833 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 0 mass = 0.005 temp = 288.090737543154 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = sensorThermometer modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False EVENTS { Toggle { active = True guiActive = True guiIcon = Toggle Display guiName = Toggle Display category = Toggle Display guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Log Temperature category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data category = guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Data category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Log Temperature category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } } PART { name = sensorGravimeter cid = 4294553312 uid = 2332559185 mid = 4267992446 launchID = 21 parent = 0 position = -0.244226098060608,0.0272598266601563,0.244226098060608 rotation = 0,0.9238795,0,0.3826836 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 0 mass = 0.005 temp = 288.697430826888 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = sensorGravimeter modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False EVENTS { Toggle { active = True guiActive = True guiIcon = Toggle Display guiName = Toggle Display category = Toggle Display guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Log Gravity Data category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data category = guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Data category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Log Gravity Data category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } } ACTIONGROUPS { Stage = False, 0 Gear = True, 0 Light = False, 0 RCS = True, 542564.568164836 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0.000588163 yaw = 0.000383462 roll = -0.0001812824 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } } VESSEL { pid = 278cea96ddff4c6eaa87e79569d2e293 name = Ast. COU-444 type = SpaceObject sit = ORBITING landed = False landedAt = splashed = False met = 542484.888164762 lct = 542484.888164762 root = 0 lat = -0.30981803609062 lon = 114.106057085807 alt = 13688225531.7306 hgt = -1 nrm = 0,1,0 rot = 0.4107817,0.2975897,0.7306818,0.4569496 CoM = 0,0,0 stg = 0 prst = False ref = 0 ctrl = False ORBIT { SMA = 13776040053.8427 ECC = 0.0139166490318039 INC = 0.375623469515684 LPE = 80.212552902081 LAN = 330.607937413384 MNA = 5.82798871586151 EPH = 5214001.35544992 REF = 0 } PART { name = PotatoRoid cid = 0 uid = 272889880 mid = 272889880 launchID = 0 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = 0 sepI = 0 sidx = 0 attm = 0 srfN = None, -1 mass = 150 temp = -1 expt = 0.1 state = 0 connected = True attached = True flag = rTrf = modCost = 0 } ACTIONGROUPS { } DISCOVERY { state = 1 lastObservedTime = 542484.888164762 lifetime = 432228.405761719 refTime = 1728000 size = 4 } FLIGHTPLAN { } CTRLSTATE { } } VESSEL { pid = 215b7ad13c9a4ce9b279aff6232d5716 name = Wauncher Base type = Base sit = LANDED landed = True landedAt = splashed = False met = 491.540000457666 lct = 542698.00816496 root = 0 lat = 0.17347265986718 lon = 200.511998889303 alt = 3186.73772077926 hgt = 2.949724 nrm = 0.000226488,1,0.0002914441 rot = -0.4583052,0.1348845,0.6094524,0.6327167 CoM = -3.50582E-05,-0.7635653,5.356223E-05 stg = 1 prst = False ref = 26096621 ctrl = True cPch = cHdg = cMod = 0 ORBIT { SMA = 101579.589188639 ECC = 1 INC = NaN LPE = 82.313109541355 LAN = 310.878134749444 MNA = 3.14159265358979 EPH = 547458.665668757 REF = 2 } PART { name = probeStackLarge cid = 4293986124 uid = 26096621 mid = 1333919993 launchID = 23 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = bottom, 1 attN = top, 49 mass = 0.5 temp = 296.606719337434 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = probeStackLarge (Untitled Space Craft) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True controlSrcStatusText = Operational EVENTS { MakeReference { active = True guiActive = True guiIcon = Control From Here guiName = Control From Here category = Control From Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } RenameVessel { active = True guiActive = True guiIcon = Rename Vessel guiName = Rename Vessel category = Rename Vessel guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleReactionWheel isEnabled = True stateString = Running WheelState = Active EVENTS { OnToggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle Torque guiName = Toggle Torque category = Toggle Torque guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True standaloneToggle_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = True RTCommandMinCrew = 6 EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 543189.568165418 ExtraDelay = 0 CmdGuid = c05021fb-28d1-42bf-ae6c-6f1c6e320298 } } Commands { } } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 EVENTS { } ACTIONS { } } MODULE { name = ModuleTripLogger isEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Flyby,Mun 0 = Orbit,Mun 0 = Suborbit,Mun 0 = Land,Mun } } RESOURCE { name = ElectricCharge amount = 30 maxAmount = 30 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = trussAdapter cid = 4293974008 uid = 1767031658 mid = 1333919993 launchID = 23 parent = 0 position = 0,-0.600830078125,0 rotation = 0,0,1,0 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = bottom, 0 attN = top, 28 mass = 0.25 temp = 297.834659429261 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = trussAdapter modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = trussPiece1x cid = 4293972430 uid = 1232400879 mid = 1333919993 launchID = 23 parent = 1 position = -0.503660798072815,-1.34420967102051,1.84870803110471E-08 rotation = 0.5,-0.5,-0.5,-0.5 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 15 srfN = srfAttach, 1 attN = None, -1 attN = top, 3 mass = 0.125 temp = 305.561149945854 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = trussPiece1x modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = crewCabin cid = 4293956304 uid = 3388634301 mid = 1333919993 launchID = 23 parent = 2 position = -1.6223349571228,-1.34420967102051,1.84870803110471E-08 rotation = 0.5,0.5,-0.5,0.5 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 16 srfN = None, -1 attN = top, 2 attN = bottom, 4 mass = 2.5 temp = 305.828912910379 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = crewCabin modCost = 0 crew = Lodfield Kerman crew = Nedbart Kerman crew = Lubro Kerman EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Crew Report category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data category = guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Report category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Discard Crew Report category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Crew Report category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Discard Crew Report category = Reset guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } MODULE { name = ModuleScienceContainer isEnabled = True EVENTS { StoreDataExternalEvent { active = False guiActive = False guiIcon = guiName = Store Experiments (0) category = guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data (0) category = guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Stored Data (0) category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = FlagDecal isEnabled = True flagDisplayed = True EVENTS { ToggleFlag { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle Flag guiName = Toggle Flag category = Toggle Flag guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleTripLogger isEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Flyby,Mun 0 = Orbit,Mun 0 = Suborbit,Mun 0 = Land,Mun } } } PART { name = largeAdapter2 cid = 4293880932 uid = 1297438889 mid = 1333919993 launchID = 23 parent = 3 position = -2.79844999313354,-1.34420967102051,1.84870803110471E-08 rotation = 0.5,0.5,-0.5,0.5 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 17 srfN = None, -1 attN = top, 3 attN = None, -1 mass = 0.08 temp = 306.161518823081 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = largeAdapter2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = smallRadialEngine cid = 4293839534 uid = 2841610850 mid = 1333919993 launchID = 23 parent = 4 position = -3.10612201690674,-1.39603996276855,-0.0138888098299503 rotation = 3.416677E-08,-0.7071068,-3.416677E-08,0.7071068 mirror = 1,1,1 symMethod = Radial istg = 1 dstg = 0 sqor = 1 sepI = 0 sidx = 4 attm = 1 sym = 18 srfN = srfAttach, 4 mass = 0.09 temp = 342.781063017105 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = smallRadialEngine modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnginesFX isEnabled = True staged = True flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = None } } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 gimbalLock_UIFlight { controlEnabled = True } gimbalLimiter_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 1 } EVENTS { } ACTIONS { ToggleAction { actionGroup = None } LockAction { actionGroup = None } FreeAction { actionGroup = None } } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } } PART { name = RCSBlock cid = 4293626524 uid = 4114845726 mid = 1333919993 launchID = 23 parent = 4 position = -2.99356985092163,-0.966360092163086,0.000742260774131864 rotation = 1.192093E-07,0,1.192093E-07,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 19 srfN = srfAttach, 4 mass = 0.05 temp = 301.886403879102 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = RTShortDish2 cid = 4293121376 uid = 4231455256 mid = 1333919993 launchID = 23 parent = 4 position = -2.69877099990845,-0.183779716491699,1.17182800352111E-07 rotation = 0.3749264,-0.5995251,0.3749264,0.599525 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 20 srfN = srfAttach, 4 attN = None, -1 mass = 0.5 temp = 304.929042721324 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 0.976296007119933 RTOmniRange = 0 RTDishRange = 9E+07 RTAntennaTarget = 2d6a2008-6b5c-48b1-ab50-7567ad27dfb5 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = Kerbin Outpost category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True EVENTS { } ACTIONS { } } } PART { name = landingLeg1 cid = 4293858616 uid = 2764152635 mid = 1333919993 launchID = 23 parent = 3 position = -2.30508804321289,-1.34420967102051,1.29052305221558 rotation = 5.779684E-08,0.7071067,-1.210171E-07,0.7071069 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 21 srfN = srfAttach, 3 mass = 0.05 temp = 305.136800539465 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = landingLeg1 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLandingLeg isEnabled = True StartDeployed = True savedAnimationTime = 1 savedAnimationSpeed = 0 savedLegState = 3 savedLocalPosition = (2.367987E-05, -0.1199891, -0.771823) suspensionLocked = True StartDeployed_UIFlight { controlEnabled = True } EVENTS { LowerLeg { active = False guiActive = True guiIcon = Lower Legs guiName = Lower Legs category = Lower Legs guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } RaiseLeg { active = True guiActive = True guiIcon = Raise Legs guiName = Raise Legs category = Raise Legs guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } RepairLeg { active = False guiActive = False guiIcon = Repair Leg guiName = Repair Leg category = Repair Leg guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } LockSuspension { active = False guiActive = True guiActiveEditor = True guiIcon = Lock Suspension guiName = Lock Suspension category = Lock Suspension guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } UnLockSuspension { active = True guiActive = True guiActiveEditor = True guiIcon = UnLock Suspension guiName = UnLock Suspension category = UnLock Suspension guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = Gear } ToggleSuspensionLockAction { actionGroup = None } RaiseAction { actionGroup = None } LowerAction { actionGroup = None } } } } PART { name = landingLeg1 cid = 4293862004 uid = 1362857332 mid = 1333919993 launchID = 23 parent = 3 position = -2.3152289390564,-1.34420967102051,-1.28606498241425 rotation = 0,0.7071068,0,-0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 22 srfN = srfAttach, 3 mass = 0.05 temp = 305.136300885997 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = landingLeg1 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLandingLeg isEnabled = True StartDeployed = True savedAnimationTime = 1 savedAnimationSpeed = 0 savedLegState = 3 savedLocalPosition = (-9.628441E-06, -0.1200249, -0.7718232) suspensionLocked = True StartDeployed_UIFlight { controlEnabled = True } EVENTS { LowerLeg { active = False guiActive = True guiIcon = Lower Legs guiName = Lower Legs category = Lower Legs guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } RaiseLeg { active = True guiActive = True guiIcon = Raise Legs guiName = Raise Legs category = Raise Legs guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } RepairLeg { active = False guiActive = False guiIcon = Repair Leg guiName = Repair Leg category = Repair Leg guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } LockSuspension { active = False guiActive = True guiActiveEditor = True guiIcon = Lock Suspension guiName = Lock Suspension category = Lock Suspension guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } UnLockSuspension { active = True guiActive = True guiActiveEditor = True guiIcon = UnLock Suspension guiName = UnLock Suspension category = UnLock Suspension guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = Gear } ToggleSuspensionLockAction { actionGroup = None } RaiseAction { actionGroup = None } LowerAction { actionGroup = None } } } } PART { name = smallRadialEngine cid = 4293844132 uid = 3803123407 mid = 1333919993 launchID = 23 parent = 3 position = -0.993040680885315,-1.34420967102051,-1.32062101364136 rotation = 0,1,0,-1.192093E-07 mirror = 1,1,1 symMethod = Radial istg = 1 dstg = 0 sqor = 1 sepI = 0 sidx = 0 attm = 1 sym = 23 srfN = srfAttach, 3 mass = 0.09 temp = 333.984421858127 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = smallRadialEngine modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnginesFX isEnabled = True staged = True flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = None } } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 gimbalLock_UIFlight { controlEnabled = True } gimbalLimiter_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 1 } EVENTS { } ACTIONS { ToggleAction { actionGroup = None } LockAction { actionGroup = None } FreeAction { actionGroup = None } } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } } PART { name = smallRadialEngine cid = 4293841486 uid = 2091280909 mid = 1333919993 launchID = 23 parent = 3 position = -1.03829598426819,-1.34420967102051,1.32043504714966 rotation = 5.960464E-08,-2.384186E-07,-5.960464E-08,1 mirror = 1,1,1 symMethod = Radial istg = 1 dstg = 0 sqor = 1 sepI = 0 sidx = 3 attm = 1 sym = 24 srfN = srfAttach, 3 mass = 0.09 temp = 334.014957401369 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = smallRadialEngine modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnginesFX isEnabled = True staged = True flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = None } } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 gimbalLock_UIFlight { controlEnabled = True } gimbalLimiter_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 1 } EVENTS { } ACTIONS { ToggleAction { actionGroup = None } LockAction { actionGroup = None } FreeAction { actionGroup = None } } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } } PART { name = strutConnector cid = 4293788990 uid = 2153131325 mid = 1333919993 launchID = 23 parent = 3 position = -0.733520686626434,-2.49242973327637,-0.0122211696580052 rotation = 0.7071068,0.7071068,3.853122E-08,-8.067807E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 25 srfN = srfAttach, 3 mass = 0.05 temp = 290.488114021598 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutConnector modCost = 0 EVENTS { } ACTIONS { } PARTDATA { tgt = 4293893836 pos = 0.151187,0.6500069,-0.01312227 rot = -5.007396E-22,1,0,0 dir = 0.2265018,0.9738124,-0.01965922 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { name = RCSBlock cid = 4293623946 uid = 151323684 mid = 1333919993 launchID = 23 parent = 3 position = -1.97015702724457,-1.34346961975098,-1.20592904090881 rotation = 0.5,0.5,0.5,-0.5 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 26 srfN = srfAttach, 3 mass = 0.05 temp = 301.231105720524 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = RCSBlock cid = 4293621810 uid = 3485780414 mid = 1333919993 launchID = 23 parent = 3 position = -2.0591139793396,-1.34494972229004,1.20587801933289 rotation = -0.5,-0.5,0.5,-0.5 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 27 srfN = srfAttach, 3 mass = 0.05 temp = 301.232853105103 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = trussPiece1x cid = 4293971876 uid = 3130089434 mid = 1333919993 launchID = 23 parent = 1 position = 0.503660798072815,-1.34420967102051,2.55443506347319E-08 rotation = 0.4999999,0.5000001,0.5000001,-0.4999999 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 2 srfN = srfAttach, 1 attN = None, -1 attN = top, 16 mass = 0.125 temp = 320.22065987524 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = trussPiece1x modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = crewCabin cid = 4293955608 uid = 226222773 mid = 1333919993 launchID = 23 parent = 15 position = 1.6223349571228,-1.34420967102051,1.1590732356126E-06 rotation = 0.4999999,-0.5000001,0.5000001,0.4999999 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 3 srfN = None, -1 attN = top, 15 attN = bottom, 17 mass = 2.5 temp = 308.116784553935 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = crewCabin modCost = 0 crew = Neildo Kerman crew = Camlie Kerman crew = Carti Kerman EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Crew Report category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data category = guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Report category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Discard Crew Report category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Crew Report category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Discard Crew Report category = Reset guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } MODULE { name = ModuleScienceContainer isEnabled = True EVENTS { StoreDataExternalEvent { active = False guiActive = False guiIcon = guiName = Store Experiments (0) category = guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data (0) category = guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Stored Data (0) category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = FlagDecal isEnabled = True flagDisplayed = True EVENTS { ToggleFlag { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle Flag guiName = Toggle Flag category = Toggle Flag guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleTripLogger isEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Flyby,Mun 0 = Orbit,Mun 0 = Suborbit,Mun 0 = Land,Mun } } } PART { name = largeAdapter2 cid = 4293880036 uid = 3395573096 mid = 1333919993 launchID = 23 parent = 16 position = 2.79845094680786,-1.34420967102051,2.48416336035007E-06 rotation = 0.4999999,-0.5000001,0.5000001,0.4999999 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 sym = 4 srfN = None, -1 attN = None, -1 attN = None, -1 mass = 0.08 temp = 308.215809870586 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = largeAdapter2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = smallRadialEngine cid = 4293839108 uid = 3636800345 mid = 1333919993 launchID = 23 parent = 17 position = 3.10612297058105,-1.39603996276855,0.0138919483870268 rotation = 4.364371E-09,-0.7071068,6.396903E-08,-0.7071068 mirror = 1,1,1 symMethod = Radial istg = 1 dstg = 0 sqor = 1 sepI = 0 sidx = 5 attm = 1 sym = 5 srfN = srfAttach, 17 mass = 0.09 temp = 343.890973540778 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = smallRadialEngine modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnginesFX isEnabled = True staged = True flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = None } } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 gimbalLock_UIFlight { controlEnabled = True } gimbalLimiter_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 1 } EVENTS { } ACTIONS { ToggleAction { actionGroup = None } LockAction { actionGroup = None } FreeAction { actionGroup = None } } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } } PART { name = RCSBlock cid = 4293625752 uid = 3863365974 mid = 1333919993 launchID = 23 parent = 17 position = 2.99357080459595,-0.966360092163086,-0.000739763025194407 rotation = -1.341105E-07,-1,1.341104E-07,-1.341105E-07 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 6 srfN = srfAttach, 17 mass = 0.05 temp = 303.013634935635 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = RTShortDish2 cid = 4293120386 uid = 451658228 mid = 1333919993 launchID = 23 parent = 17 position = 2.69877195358276,-0.183779716491699,2.26127463065495E-06 rotation = -0.3749264,-0.5995249,0.3749263,-0.5995252 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 7 srfN = srfAttach, 17 attN = None, -1 mass = 0.5 temp = 306.446602287724 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 0.976296007119933 RTOmniRange = 0 RTDishRange = 9E+07 RTAntennaTarget = 4b657262-696e-4b65-7262-696e4b657262 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = Kerbin category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = landingLeg1 cid = 4293858838 uid = 27738217 mid = 1333919993 launchID = 23 parent = 16 position = 2.30508804321289,-1.34420967102051,-1.29052186012268 rotation = 1.210171E-07,-0.7071069,5.779685E-08,0.7071067 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 8 srfN = srfAttach, 16 mass = 0.05 temp = 307.100114989564 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = landingLeg1 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLandingLeg isEnabled = True StartDeployed = True savedAnimationTime = 1 savedAnimationSpeed = 0 savedLegState = 3 savedLocalPosition = (9.552579E-06, -0.1200146, -0.7718234) suspensionLocked = True StartDeployed_UIFlight { controlEnabled = True } EVENTS { LowerLeg { active = False guiActive = True guiIcon = Lower Legs guiName = Lower Legs category = Lower Legs guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } RaiseLeg { active = True guiActive = True guiIcon = Raise Legs guiName = Raise Legs category = Raise Legs guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } RepairLeg { active = False guiActive = False guiIcon = Repair Leg guiName = Repair Leg category = Repair Leg guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } LockSuspension { active = False guiActive = True guiActiveEditor = True guiIcon = Lock Suspension guiName = Lock Suspension category = Lock Suspension guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } UnLockSuspension { active = True guiActive = True guiActiveEditor = True guiIcon = UnLock Suspension guiName = UnLock Suspension category = UnLock Suspension guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = Gear } ToggleSuspensionLockAction { actionGroup = None } RaiseAction { actionGroup = None } LowerAction { actionGroup = None } } } } PART { name = landingLeg1 cid = 4293857274 uid = 4193311323 mid = 1333919993 launchID = 23 parent = 16 position = 2.31522989273071,-1.34420967102051,1.28606617450714 rotation = 0,0.7071069,0,0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 9 srfN = srfAttach, 16 mass = 0.05 temp = 307.104356387263 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = landingLeg1 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLandingLeg isEnabled = True StartDeployed = True savedAnimationTime = 1 savedAnimationSpeed = 0 savedLegState = 3 savedLocalPosition = (-1.084298E-06, -0.1199855, -0.7718235) suspensionLocked = True StartDeployed_UIFlight { controlEnabled = True } EVENTS { LowerLeg { active = False guiActive = True guiIcon = Lower Legs guiName = Lower Legs category = Lower Legs guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } RaiseLeg { active = True guiActive = True guiIcon = Raise Legs guiName = Raise Legs category = Raise Legs guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } RepairLeg { active = False guiActive = False guiIcon = Repair Leg guiName = Repair Leg category = Repair Leg guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } LockSuspension { active = False guiActive = True guiActiveEditor = True guiIcon = Lock Suspension guiName = Lock Suspension category = Lock Suspension guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } UnLockSuspension { active = True guiActive = True guiActiveEditor = True guiIcon = UnLock Suspension guiName = UnLock Suspension category = UnLock Suspension guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = Gear } ToggleSuspensionLockAction { actionGroup = None } RaiseAction { actionGroup = None } LowerAction { actionGroup = None } } } } PART { name = smallRadialEngine cid = 4293843434 uid = 3859405681 mid = 1333919993 launchID = 23 parent = 16 position = 0.993041336536407,-1.34420967102051,1.32062208652496 rotation = 0,2.980233E-08,0,1 mirror = 1,1,1 symMethod = Radial istg = 1 dstg = 0 sqor = 1 sepI = 0 sidx = 1 attm = 1 sym = 10 srfN = srfAttach, 16 mass = 0.09 temp = 335.324228926152 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = smallRadialEngine modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnginesFX isEnabled = True staged = True flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = None } } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 gimbalLock_UIFlight { controlEnabled = True } gimbalLimiter_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 1 } EVENTS { } ACTIONS { ToggleAction { actionGroup = None } LockAction { actionGroup = None } FreeAction { actionGroup = None } } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } } PART { name = smallRadialEngine cid = 4293842092 uid = 3926545903 mid = 1333919993 launchID = 23 parent = 16 position = 1.03829598426819,-1.34420967102051,-1.32043504714966 rotation = 5.960463E-08,-1,5.960466E-08,-2.682209E-07 mirror = 1,1,1 symMethod = Radial istg = 1 dstg = 0 sqor = 1 sepI = 0 sidx = 2 attm = 1 sym = 11 srfN = srfAttach, 16 mass = 0.09 temp = 335.322996455558 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = smallRadialEngine modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnginesFX isEnabled = True staged = True flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = None } } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 gimbalLock_UIFlight { controlEnabled = True } gimbalLimiter_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 1 } EVENTS { } ACTIONS { ToggleAction { actionGroup = None } LockAction { actionGroup = None } FreeAction { actionGroup = None } } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } } PART { name = strutConnector cid = 4293788472 uid = 81111069 mid = 1333919993 launchID = 23 parent = 16 position = 0.733520567417145,-2.49242973327637,0.0122224520891905 rotation = -5.087574E-08,8.7289E-09,0.7071068,0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 12 srfN = srfAttach, 16 mass = 0.05 temp = 290.736084198027 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutConnector modCost = 0 EVENTS { } ACTIONS { } PARTDATA { tgt = 4293893836 pos = 0.151187,0.6500076,-0.01312115 rot = 0,1,0,0 dir = 0.2265016,0.9738124,-0.01965752 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { name = RCSBlock cid = 4293623674 uid = 2454336795 mid = 1333919993 launchID = 23 parent = 16 position = 1.97015702724457,-1.34346961975098,1.2059291601181 rotation = -0.5000001,0.4999999,0.4999999,0.5000001 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 13 srfN = srfAttach, 16 mass = 0.05 temp = 302.476636787439 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = RCSBlock cid = 4293623016 uid = 2100930214 mid = 1333919993 launchID = 23 parent = 16 position = 2.0591139793396,-1.34494972229004,-1.20587694644928 rotation = -0.4999999,0.5000001,-0.5000001,-0.4999999 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 14 srfN = srfAttach, 16 mass = 0.05 temp = 302.476915524651 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = batteryBank cid = 4293899408 uid = 3345711865 mid = 1333919993 launchID = 23 parent = 15 position = -1.19209289550781E-07,-1.36106014251709,-4.35242640151046E-07 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 15 attN = bottom, 29 mass = 0.05 temp = 380.16216866096 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryBank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 1000 maxAmount = 1000 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryBank cid = 4293897070 uid = 2829862379 mid = 1333919993 launchID = 23 parent = 28 position = -2.38418579101563E-07,-1.58277034759521,-1.10041241896397E-07 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 28 attN = bottom, 30 mass = 0.05 temp = 393.621488491095 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryBank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 1000 maxAmount = 1000 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryBank cid = 4293895726 uid = 3945602000 mid = 1333919993 launchID = 23 parent = 29 position = -2.98023223876953E-07,-1.80447959899902,2.68018993665464E-07 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 29 attN = bottom, 31 mass = 0.05 temp = 407.15402139169 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryBank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 1000 maxAmount = 1000 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryBank cid = 4293894666 uid = 1198948451 mid = 1333919993 launchID = 23 parent = 30 position = -5.36441802978516E-07,-2.02618980407715,6.98940368693002E-07 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 30 attN = bottom, 32 mass = 0.05 temp = 420.55888184307 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryBank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 1000 maxAmount = 1000 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryBank cid = 4293893836 uid = 325422107 mid = 1333919993 launchID = 23 parent = 31 position = -5.96046447753906E-07,-2.24790000915527,1.18272146210074E-06 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 31 attN = None, -1 mass = 0.05 temp = 420.713938718833 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryBank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 1000 maxAmount = 1000 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = smallRadialEngine cid = 4293592632 uid = 1695519345 mid = 1333919993 launchID = 23 parent = 31 position = -0.490767478942871,-2.12376022338867,0.490768283605576 rotation = -2.980232E-07,-0.3826835,-1.192094E-07,0.9238796 mirror = 1,1,1 symMethod = Radial istg = 1 dstg = 0 sqor = 1 sepI = 0 sidx = 6 attm = 1 sym = 34 sym = 35 sym = 36 srfN = srfAttach, 31 mass = 0.09 temp = 460.769804375812 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = smallRadialEngine modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnginesFX isEnabled = True staged = True flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = None } } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 gimbalLock_UIFlight { controlEnabled = True } gimbalLimiter_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 1 } EVENTS { } ACTIONS { ToggleAction { actionGroup = None } LockAction { actionGroup = None } FreeAction { actionGroup = None } } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } } PART { name = smallRadialEngine cid = 4293591146 uid = 446825850 mid = 1333919993 launchID = 23 parent = 31 position = 0.490766376256943,-2.12376022338867,0.490767329931259 rotation = -2.980233E-07,0.3826834,1.192092E-07,0.9238796 mirror = 1,1,1 symMethod = Radial istg = 1 dstg = 0 sqor = 1 sepI = 0 sidx = 7 attm = 1 sym = 33 sym = 35 sym = 36 srfN = srfAttach, 31 mass = 0.09 temp = 460.752166664038 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = smallRadialEngine modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnginesFX isEnabled = True staged = True flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = None } } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 gimbalLock_UIFlight { controlEnabled = True } gimbalLimiter_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 1 } EVENTS { } ACTIONS { ToggleAction { actionGroup = None } LockAction { actionGroup = None } FreeAction { actionGroup = None } } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } } PART { name = smallRadialEngine cid = 4293591086 uid = 4190145080 mid = 1333919993 launchID = 23 parent = 31 position = 0.490766644477844,-2.12376022338867,-0.490766763687134 rotation = -1.192094E-07,0.9238796,2.980232E-07,0.3826835 mirror = 1,1,1 symMethod = Radial istg = 1 dstg = 0 sqor = 1 sepI = 0 sidx = 8 attm = 1 sym = 33 sym = 34 sym = 36 srfN = srfAttach, 31 mass = 0.09 temp = 460.747055953716 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = smallRadialEngine modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnginesFX isEnabled = True staged = True flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = None } } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 gimbalLock_UIFlight { controlEnabled = True } gimbalLimiter_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 1 } EVENTS { } ACTIONS { ToggleAction { actionGroup = None } LockAction { actionGroup = None } FreeAction { actionGroup = None } } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } } PART { name = smallRadialEngine cid = 4293591026 uid = 2899447778 mid = 1333919993 launchID = 23 parent = 31 position = -0.490767300128937,-2.12376022338867,-0.49076572060585 rotation = 1.192092E-07,0.9238796,2.980233E-07,-0.3826834 mirror = 1,1,1 symMethod = Radial istg = 1 dstg = 0 sqor = 1 sepI = 0 sidx = 9 attm = 1 sym = 33 sym = 34 sym = 35 srfN = srfAttach, 31 mass = 0.09 temp = 460.771791723843 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = smallRadialEngine modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnginesFX isEnabled = True staged = True flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = None } } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 gimbalLock_UIFlight { controlEnabled = True } gimbalLimiter_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 1 } EVENTS { } ACTIONS { ToggleAction { actionGroup = None } LockAction { actionGroup = None } FreeAction { actionGroup = None } } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } } PART { name = SmallTank cid = 4293734330 uid = 821185548 mid = 1333919993 launchID = 23 parent = 28 position = -0.0182633399963379,-1.36244010925293,-1.20370399951935 rotation = -1.490126E-08,-1,4.917383E-07,-1.490116E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 39 srfN = srfAttach, 28 attN = None, -1 attN = None, -1 mass = 0.5 temp = 289.481786810493 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = SmallTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleFuelJettison isEnabled = True EVENTS { FuelJettison { active = True guiActive = True guiIcon = Jettison Tank Contents guiName = Jettison Tank Contents category = Jettison Tank Contents guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { FuelJettisonAction { actionGroup = None } } } RESOURCE { name = Ore amount = 0 maxAmount = 300 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = RadialDrill cid = 4293709144 uid = 1207273622 mid = 1333919993 launchID = 23 parent = 37 position = -0.0182632803916931,-0.532509803771973,-1.47388005256653 rotation = 3.43057E-07,0.7071066,-3.430569E-07,-0.7071071 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 40 srfN = srfAttach, 37 mass = 0.25 temp = 289.459663606045 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = RadialDrill modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleResourceHarvester isEnabled = False HeatThrottle = 1 HeatThrottleSpeed = 0.05 avgHeatThrottle = 1 DirtyFlag = True EfficiencyBonus = 1 IsActivated = False lastUpdateTime = 0 EVENTS { StartResourceConverter { active = False guiActive = True guiIcon = Start Converter guiName = Start Surface Harvester category = Start Converter guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } StopResourceConverter { active = False guiActive = True guiIcon = Stop Converter guiName = Stop Surface Harvester category = Stop Converter guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { StopResourceConverterAction { actionGroup = None } StartResourceConverterAction { actionGroup = None } } } MODULE { name = ModuleAsteroidDrill isEnabled = False DirectAttach = False HeatThrottle = 1 HeatThrottleSpeed = 0.05 avgHeatThrottle = 1 DirtyFlag = True EfficiencyBonus = 1 IsActivated = False lastUpdateTime = 0 EVENTS { StartResourceConverter { active = False guiActive = True guiIcon = Start Converter guiName = Start Asteroid Harvester category = Start Converter guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } StopResourceConverter { active = False guiActive = True guiIcon = Stop Converter guiName = Stop Asteroid Harvester category = Stop Converter guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { StopResourceConverterAction { actionGroup = None } StartResourceConverterAction { actionGroup = None } } } MODULE { name = ModuleAnimationGroup isEnabled = True _isActive = False isDeployed = False EVENTS { DeployModule { active = True guiActive = True guiActiveEditor = True guiIcon = Deploy guiName = Deploy Drill category = Deploy guiActiveUnfocused = True unfocusedRange = 3 externalToEVAOnly = True } RetractModule { active = False guiActive = True guiActiveEditor = True guiIcon = Retract guiName = Retract Drill category = Retract guiActiveUnfocused = True unfocusedRange = 3 externalToEVAOnly = True } } ACTIONS { DeployModuleAction { actionGroup = None } RetractModuleAction { actionGroup = None } ToggleModuleAction { actionGroup = None } } } } PART { name = SmallTank cid = 4293725700 uid = 956979445 mid = 1333919993 launchID = 23 parent = 28 position = 0.0182633996009827,-1.36244010925293,1.20370388031006 rotation = 5.066395E-07,0,2.980243E-08,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 37 srfN = srfAttach, 28 attN = None, -1 attN = None, -1 mass = 0.5 temp = 289.803209320437 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = SmallTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleFuelJettison isEnabled = True EVENTS { FuelJettison { active = True guiActive = True guiIcon = Jettison Tank Contents guiName = Jettison Tank Contents category = Jettison Tank Contents guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { FuelJettisonAction { actionGroup = None } } } RESOURCE { name = Ore amount = 0 maxAmount = 300 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = RadialDrill cid = 4293700462 uid = 4087576623 mid = 1333919993 launchID = 23 parent = 39 position = 0.0182629227638245,-0.532509803771973,1.47387993335724 rotation = -3.237911E-07,-0.7071069,-3.833959E-07,-0.7071069 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 38 srfN = srfAttach, 39 mass = 0.25 temp = 289.781051477521 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = RadialDrill modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleResourceHarvester isEnabled = False HeatThrottle = 1 HeatThrottleSpeed = 0.05 avgHeatThrottle = 1 DirtyFlag = False EfficiencyBonus = 1 IsActivated = False lastUpdateTime = 542955.3281652 EVENTS { StartResourceConverter { active = True guiActive = True guiIcon = Start Converter guiName = Start Surface Harvester category = Start Converter guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } StopResourceConverter { active = False guiActive = True guiIcon = Stop Converter guiName = Stop Surface Harvester category = Stop Converter guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { StopResourceConverterAction { actionGroup = None } StartResourceConverterAction { actionGroup = None } } } MODULE { name = ModuleAsteroidDrill isEnabled = False DirectAttach = False HeatThrottle = 1 HeatThrottleSpeed = 0.05 avgHeatThrottle = 1 DirtyFlag = True EfficiencyBonus = 1 IsActivated = False lastUpdateTime = 0 EVENTS { StartResourceConverter { active = False guiActive = True guiIcon = Start Converter guiName = Start Asteroid Harvester category = Start Converter guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } StopResourceConverter { active = False guiActive = True guiIcon = Stop Converter guiName = Stop Asteroid Harvester category = Stop Converter guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { StopResourceConverterAction { actionGroup = None } StartResourceConverterAction { actionGroup = None } } } MODULE { name = ModuleAnimationGroup isEnabled = True _isActive = False isDeployed = False EVENTS { DeployModule { active = True guiActive = True guiActiveEditor = True guiIcon = Deploy guiName = Deploy Drill category = Deploy guiActiveUnfocused = True unfocusedRange = 3 externalToEVAOnly = True } RetractModule { active = False guiActive = True guiActiveEditor = True guiIcon = Retract guiName = Retract Drill category = Retract guiActiveUnfocused = True unfocusedRange = 3 externalToEVAOnly = True } } ACTIONS { DeployModuleAction { actionGroup = None } RetractModuleAction { actionGroup = None } ToggleModuleAction { actionGroup = None } } } } PART { name = rtg cid = 4293938868 uid = 2829601785 mid = 1333919993 launchID = 23 parent = 1 position = 5.28497992036137E-08,-0.676010131835938,-0.604531228542328 rotation = -1,0,0,-8.42937E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 42 sym = 43 sym = 44 sym = 45 sym = 46 sym = 47 sym = 48 srfN = srfAttach, 1 attN = None, -1 attN = None, -1 mass = 0.08 temp = 289.417808660277 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = rtg modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleGenerator isEnabled = True generatorIsActive = True throttle = 0 EVENTS { Activate { active = False guiActive = True guiIcon = Activate Generator guiName = Activate Generator category = Activate Generator guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Generator guiName = Shutdown Generator category = Shutdown Generator guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } ActivateAction { actionGroup = None } ShutdownAction { actionGroup = None } } } } PART { name = rtg cid = 4293936368 uid = 3533328057 mid = 1333919993 launchID = 23 parent = 1 position = 0.427468210458755,-0.676010131835938,-0.427468001842499 rotation = -0.9238796,3.225781E-08,-0.3826835,-7.787722E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 41 sym = 43 sym = 44 sym = 45 sym = 46 sym = 47 sym = 48 srfN = srfAttach, 1 attN = None, -1 attN = None, -1 mass = 0.08 temp = 289.41393397346 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = rtg modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleGenerator isEnabled = True generatorIsActive = True throttle = 0 EVENTS { Activate { active = False guiActive = True guiIcon = Activate Generator guiName = Activate Generator category = Activate Generator guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Generator guiName = Shutdown Generator category = Shutdown Generator guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } ActivateAction { actionGroup = None } ShutdownAction { actionGroup = None } } } } PART { name = rtg cid = 4293936336 uid = 57459266 mid = 1333919993 launchID = 23 parent = 1 position = 0.604531109333038,-0.676010131835938,1.68169300707177E-08 rotation = -0.7071068,5.960464E-08,-0.7071068,-5.960464E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 41 sym = 42 sym = 44 sym = 45 sym = 46 sym = 47 sym = 48 srfN = srfAttach, 1 attN = None, -1 attN = None, -1 mass = 0.08 temp = 289.42454005959 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = rtg modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleGenerator isEnabled = True generatorIsActive = True throttle = 0 EVENTS { Activate { active = False guiActive = True guiIcon = Activate Generator guiName = Activate Generator category = Activate Generator guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Generator guiName = Shutdown Generator category = Shutdown Generator guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } ActivateAction { actionGroup = None } ShutdownAction { actionGroup = None } } } } PART { name = rtg cid = 4293936304 uid = 3822691380 mid = 1333919993 launchID = 23 parent = 1 position = 0.427468001842499,-0.676010131835938,0.427468091249466 rotation = -0.3826835,7.787722E-08,-0.9238796,-3.225781E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 41 sym = 42 sym = 43 sym = 45 sym = 46 sym = 47 sym = 48 srfN = srfAttach, 1 attN = None, -1 attN = None, -1 mass = 0.08 temp = 289.420977377363 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = rtg modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleGenerator isEnabled = True generatorIsActive = True throttle = 0 EVENTS { Activate { active = False guiActive = True guiIcon = Activate Generator guiName = Activate Generator category = Activate Generator guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Generator guiName = Shutdown Generator category = Shutdown Generator guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } ActivateAction { actionGroup = None } ShutdownAction { actionGroup = None } } } } PART { name = rtg cid = 4293936272 uid = 2136852943 mid = 1333919993 launchID = 23 parent = 1 position = -1.05699598407227E-07,-0.676010131835938,0.604531228542328 rotation = 4.371139E-08,8.42937E-08,-1,3.684595E-15 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 41 sym = 42 sym = 43 sym = 44 sym = 46 sym = 47 sym = 48 srfN = srfAttach, 1 attN = None, -1 attN = None, -1 mass = 0.08 temp = 289.417652821709 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = rtg modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleGenerator isEnabled = True generatorIsActive = True throttle = 0 EVENTS { Activate { active = False guiActive = True guiIcon = Activate Generator guiName = Activate Generator category = Activate Generator guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Generator guiName = Shutdown Generator category = Shutdown Generator guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } ActivateAction { actionGroup = None } ShutdownAction { actionGroup = None } } } } PART { name = rtg cid = 4293936240 uid = 35256654 mid = 1333919993 launchID = 23 parent = 1 position = -0.427468210458755,-0.676010131835938,0.427468001842499 rotation = 0.3826835,7.787722E-08,-0.9238795,3.225781E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 41 sym = 42 sym = 43 sym = 44 sym = 45 sym = 47 sym = 48 srfN = srfAttach, 1 attN = None, -1 attN = None, -1 mass = 0.08 temp = 289.426040227914 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = rtg modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleGenerator isEnabled = True generatorIsActive = True throttle = 0 EVENTS { Activate { active = False guiActive = True guiIcon = Activate Generator guiName = Activate Generator category = Activate Generator guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Generator guiName = Shutdown Generator category = Shutdown Generator guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } ActivateAction { actionGroup = None } ShutdownAction { actionGroup = None } } } } PART { name = rtg cid = 4293936208 uid = 1007525808 mid = 1333919993 launchID = 23 parent = 1 position = -0.604531109333038,-0.676010131835938,-8.88826576783686E-08 rotation = 0.7071068,5.960464E-08,-0.7071068,5.960464E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 41 sym = 42 sym = 43 sym = 44 sym = 45 sym = 46 sym = 48 srfN = srfAttach, 1 attN = None, -1 attN = None, -1 mass = 0.08 temp = 289.444314572477 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = rtg modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleGenerator isEnabled = True generatorIsActive = True throttle = 0 EVENTS { Activate { active = False guiActive = True guiIcon = Activate Generator guiName = Activate Generator category = Activate Generator guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Generator guiName = Shutdown Generator category = Shutdown Generator guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } ActivateAction { actionGroup = None } ShutdownAction { actionGroup = None } } } } PART { name = rtg cid = 4293936176 uid = 2532856233 mid = 1333919993 launchID = 23 parent = 1 position = -0.427467912435532,-0.676010131835938,-0.427468299865723 rotation = 0.9238796,3.225779E-08,-0.3826833,7.787722E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 41 sym = 42 sym = 43 sym = 44 sym = 45 sym = 46 sym = 47 srfN = srfAttach, 1 attN = None, -1 attN = None, -1 mass = 0.08 temp = 289.428518937582 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = rtg modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleGenerator isEnabled = True generatorIsActive = True throttle = 0 EVENTS { Activate { active = False guiActive = True guiIcon = Activate Generator guiName = Activate Generator category = Activate Generator guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Generator guiName = Shutdown Generator category = Shutdown Generator guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } ActivateAction { actionGroup = None } ShutdownAction { actionGroup = None } } } } PART { name = advSasModule cid = 4293686152 uid = 1753172413 mid = 1333919993 launchID = 23 parent = 0 position = 0,0.336799621582031,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 50 attN = bottom, 0 mass = 0.1 temp = 296.319889877252 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = advSasModule modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True stateString = Running WheelState = Active EVENTS { OnToggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle Torque guiName = Toggle Torque category = Toggle Torque guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } } } PART { name = trussPiece1x cid = 4293508578 uid = 3836907729 mid = 1333919993 launchID = 23 parent = 49 position = 0,0.949370384216309,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = bottom, 49 attN = top, 51 mass = 0.125 temp = 295.514656099656 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = trussPiece1x modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = dockingPort2 cid = 4293569924 uid = 577125489 mid = 1333919993 launchID = 23 parent = 50 position = 0,1.5086498260498,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 0 srfN = None, -1 attN = top, 52 attN = bottom, 50 mass = 0.05 temp = 289.167765042105 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = dockingPort2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDockingNode isEnabled = True state = PreAttached dockUId = 0 dockNodeIdx = 0 EVENTS { Undock { active = False guiActive = True guiIcon = Undock guiName = Undock category = Undock guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } UndockSameVessel { active = False guiActive = True guiIcon = Undock guiName = Undock category = Undock guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } Decouple { active = True guiActive = True guiIcon = Decouple Node guiName = Decouple Node category = Decouple Node guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } SetAsTarget { active = True guiActive = False guiIcon = Set as Target guiName = Set as Target category = Set as Target guiActiveUnfocused = True unfocusedRange = 200 externalToEVAOnly = False } UnsetTarget { active = False guiActive = False guiIcon = Unset Target guiName = Unset Target category = Unset Target guiActiveUnfocused = True unfocusedRange = 200 externalToEVAOnly = False } EnableXFeed { active = False guiActive = True guiIcon = Enable Crossfeed guiName = Enable Crossfeed category = Enable Crossfeed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DisableXFeed { active = False guiActive = True guiIcon = Disable Crossfeed guiName = Disable Crossfeed category = Disable Crossfeed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } MakeReferenceTransform { active = True guiActive = True guiIcon = Control from Here guiName = Control from Here category = Control from Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { UndockAction { actionGroup = None } DecoupleAction { actionGroup = None } } } } PART { name = dockingPort2 cid = 4293568390 uid = 433948401 mid = 1333919993 launchID = 23 parent = 51 position = 0,2.07442092895508,0 rotation = 0,0,1,0 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 0 srfN = None, -1 attN = top, 51 attN = bottom, 53 mass = 0.05 temp = 288.659239784502 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = dockingPort2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDockingNode isEnabled = True state = PreAttached dockUId = 0 dockNodeIdx = 0 EVENTS { Undock { active = False guiActive = True guiIcon = Undock guiName = Undock category = Undock guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } UndockSameVessel { active = False guiActive = True guiIcon = Undock guiName = Undock category = Undock guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } Decouple { active = True guiActive = True guiIcon = Decouple Node guiName = Decouple Node category = Decouple Node guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } SetAsTarget { active = True guiActive = False guiIcon = Set as Target guiName = Set as Target category = Set as Target guiActiveUnfocused = True unfocusedRange = 200 externalToEVAOnly = False } UnsetTarget { active = False guiActive = False guiIcon = Unset Target guiName = Unset Target category = Unset Target guiActiveUnfocused = True unfocusedRange = 200 externalToEVAOnly = False } EnableXFeed { active = False guiActive = True guiIcon = Enable Crossfeed guiName = Enable Crossfeed category = Enable Crossfeed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DisableXFeed { active = True guiActive = True guiIcon = Disable Crossfeed guiName = Disable Crossfeed category = Disable Crossfeed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } MakeReferenceTransform { active = True guiActive = True guiIcon = Control from Here guiName = Control from Here category = Control from Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { UndockAction { actionGroup = None } DecoupleAction { actionGroup = Custom10 } } } } PART { name = RCSFuelTank cid = 4293537724 uid = 1786890250 mid = 1333919993 launchID = 23 parent = 52 position = 0,2.35971069335938,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 0 srfN = None, -1 attN = top, 62 attN = bottom, 52 mass = 0.15 temp = 288.274036733723 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 0 maxAmount = 250 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = sepMotor1 cid = 4293531392 uid = 386096936 mid = 1333919993 launchID = 23 parent = 53 position = -0.33915901184082,2.39569091796875,-0.339158803224564 rotation = 2.898329E-08,-0.9238796,6.997184E-08,0.3826835 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = 0 sepI = 2 sidx = 0 attm = 1 sym = 55 sym = 56 sym = 57 sym = 58 sym = 59 sym = 60 sym = 61 srfN = srfAttach, 53 mass = 0.0125 temp = 288.027800451994 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = sepMotor1 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = Custom10 } } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } RESOURCE { name = SolidFuel amount = 8 maxAmount = 8 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = sepMotor1 cid = 4293529500 uid = 834610415 mid = 1333919993 launchID = 23 parent = 53 position = -0.479643106460571,2.39569091796875,1.14616902635589E-07 rotation = 5.355413E-08,-0.7071068,5.355412E-08,0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = 0 sepI = 2 sidx = 1 attm = 1 sym = 54 sym = 56 sym = 57 sym = 58 sym = 59 sym = 60 sym = 61 srfN = srfAttach, 53 mass = 0.0125 temp = 288.033648685799 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = sepMotor1 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = Custom10 } } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } RESOURCE { name = SolidFuel amount = 8 maxAmount = 8 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = sepMotor1 cid = 4293529444 uid = 1204766253 mid = 1333919993 launchID = 23 parent = 53 position = -0.339158803224564,2.39569091796875,0.339158892631531 rotation = 6.997184E-08,-0.3826834,2.898328E-08,0.9238796 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = 0 sepI = 2 sidx = 2 attm = 1 sym = 54 sym = 55 sym = 57 sym = 58 sym = 59 sym = 60 sym = 61 srfN = srfAttach, 53 mass = 0.0125 temp = 288.024201984981 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = sepMotor1 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = Custom10 } } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } RESOURCE { name = SolidFuel amount = 8 maxAmount = 8 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = sepMotor1 cid = 4293529388 uid = 3996874917 mid = 1333919993 launchID = 23 parent = 53 position = 6.40782502614456E-08,2.39569091796875,0.479643106460571 rotation = 7.573697E-08,4.724045E-09,-4.578789E-15,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = 0 sepI = 2 sidx = 3 attm = 1 sym = 54 sym = 55 sym = 56 sym = 58 sym = 59 sym = 60 sym = 61 srfN = srfAttach, 53 mass = 0.0125 temp = 288.036319680572 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = sepMotor1 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = Custom10 } } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } RESOURCE { name = SolidFuel amount = 8 maxAmount = 8 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = sepMotor1 cid = 4293529332 uid = 3619778672 mid = 1333919993 launchID = 23 parent = 53 position = 0.33915901184082,2.39569091796875,0.339158803224564 rotation = 6.997184E-08,0.3826835,-2.898329E-08,0.9238796 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = 0 sepI = 2 sidx = 4 attm = 1 sym = 54 sym = 55 sym = 56 sym = 57 sym = 59 sym = 60 sym = 61 srfN = srfAttach, 53 mass = 0.0125 temp = 288.030301873639 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = sepMotor1 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = Custom10 } } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } RESOURCE { name = SolidFuel amount = 8 maxAmount = 8 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = sepMotor1 cid = 4293529276 uid = 275866840 mid = 1333919993 launchID = 23 parent = 53 position = 0.479643106460571,2.39569091796875,-1.44940003110605E-07 rotation = 5.355411E-08,0.7071068,-5.355413E-08,0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = 0 sepI = 2 sidx = 5 attm = 1 sym = 54 sym = 55 sym = 56 sym = 57 sym = 58 sym = 60 sym = 61 srfN = srfAttach, 53 mass = 0.0125 temp = 288.039236715188 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = sepMotor1 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = Custom10 } } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } RESOURCE { name = SolidFuel amount = 8 maxAmount = 8 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = sepMotor1 cid = 4293529220 uid = 31636375 mid = 1333919993 launchID = 23 parent = 53 position = 0.339158803224564,2.39569091796875,-0.33915901184082 rotation = 2.898328E-08,0.9238796,-6.997184E-08,0.3826834 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = 0 sepI = 2 sidx = 6 attm = 1 sym = 54 sym = 55 sym = 56 sym = 57 sym = 58 sym = 59 sym = 61 srfN = srfAttach, 53 mass = 0.0125 temp = 288.012592250289 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = sepMotor1 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = Custom10 } } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } RESOURCE { name = SolidFuel amount = 8 maxAmount = 8 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = sepMotor1 cid = 4293529164 uid = 2255253995 mid = 1333919993 launchID = 23 parent = 53 position = -2.25801798592329E-07,2.39569091796875,-0.479643106460571 rotation = -1.846048E-14,1,-7.573697E-08,-1.880122E-07 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = 0 sepI = 2 sidx = 7 attm = 1 sym = 54 sym = 55 sym = 56 sym = 57 sym = 58 sym = 59 sym = 60 srfN = srfAttach, 53 mass = 0.0125 temp = 288.023271237298 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = sepMotor1 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = Custom10 } } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } RESOURCE { name = SolidFuel amount = 8 maxAmount = 8 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = probeCoreCube cid = 4293470862 uid = 2543972816 mid = 1333919993 launchID = 23 parent = 53 position = 0,2.92962074279785,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 0 srfN = None, -1 attN = bottom, 53 attN = top, 63 mass = 0.07 temp = 288.216149305607 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = probeCoreCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True controlSrcStatusText = Operational EVENTS { MakeReference { active = True guiActive = True guiIcon = Control From Here guiName = Control From Here category = Control From Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } RenameVessel { active = True guiActive = True guiIcon = Rename Vessel guiName = Rename Vessel category = Rename Vessel guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True standaloneToggle_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 543189.568165418 ExtraDelay = 0 CmdGuid = 18ab1946-4aee-469a-8ecd-3c56e8c73193 } } Commands { } } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 EVENTS { } ACTIONS { } } MODULE { name = ModuleTripLogger isEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Flyby,Mun 0 = Orbit,Mun 0 = Suborbit,Mun 0 = Land,Mun } } RESOURCE { name = ElectricCharge amount = 5 maxAmount = 5 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = longAntenna cid = 4293455304 uid = 1144659272 mid = 1333919993 launchID = 23 parent = 62 position = 0,3.21421051025391,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 0 srfN = srfAttach, 62 attN = bottom, 62 mass = 0.005 temp = 288.221285969029 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = longAntenna modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiActiveEditor = True guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = True guiActive = True guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = False guiActive = False guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = Custom10 } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = solarPanels5 cid = 4293444314 uid = 3894539178 mid = 1333919993 launchID = 23 parent = 62 position = -1.96233003180168E-08,2.91547012329102,-0.224464401602745 rotation = -7.480885E-16,1,-1.711427E-08,-4.371139E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 1 sym = 65 sym = 66 sym = 67 srfN = srfAttach, 62 mass = 0.005 temp = 287.716736864571 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4293443704 uid = 1346415842 mid = 1333919993 launchID = 23 parent = 62 position = -0.224464401602745,2.91547012329102,6.24417983985381E-09 rotation = -1.210162E-08,0.7071068,-1.210162E-08,-0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 1 sym = 64 sym = 66 sym = 67 srfN = srfAttach, 62 mass = 0.005 temp = 287.37749870425 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4293443672 uid = 2682988685 mid = 1333919993 launchID = 23 parent = 62 position = 3.92466112941747E-08,2.91547012329102,0.224464401602745 rotation = -1.711427E-08,-8.742278E-08,1.496177E-15,-1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 1 sym = 64 sym = 65 sym = 67 srfN = srfAttach, 62 mass = 0.005 temp = 287.731042709482 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4293443640 uid = 2996362736 mid = 1333919993 launchID = 23 parent = 62 position = 0.224464401602745,2.91547012329102,-3.30024292338749E-08 rotation = -1.210162E-08,-0.7071068,1.210162E-08,-0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 1 sym = 64 sym = 65 sym = 66 srfN = srfAttach, 62 mass = 0.005 temp = 287.370622505396 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = structuralPanel1 cid = 4293505794 uid = 1858834963 mid = 1333919993 launchID = 23 parent = 51 position = 0.000192730702110566,1.01442909240723,-0.469940096139908 rotation = -0.4999999,0.5,0.4999999,-0.5000002 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 69 sym = 71 sym = 72 srfN = srfAttach, 51 attN = None, -1 attN = None, -1 mass = 0.075 temp = 287.866190887532 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = structuralPanel1 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = structuralPanel1 cid = 4293501962 uid = 2375174640 mid = 1333919993 launchID = 23 parent = 51 position = -0.469940096139908,1.01442909240723,-0.000192758699995466 rotation = 0,-1.264406E-07,0.7071067,-0.7071069 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 68 sym = 71 sym = 72 srfN = srfAttach, 51 attN = None, -1 attN = None, -1 mass = 0.075 temp = 287.668078578199 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = structuralPanel1 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = solarPanels2 cid = 4293206306 uid = 2615856674 mid = 1333919993 launchID = 23 parent = 69 position = -0.486088186502457,0.979519844055176,-0.000192759995115921 rotation = 1.639127E-07,4.214685E-07,1.685874E-07,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 1 srfN = srfAttach, 69 mass = 0.025 temp = 287.844294143819 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (-0.6956784, 0.1267179, -0.1267155, 0.6956418) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = structuralPanel1 cid = 4293501936 uid = 2017432737 mid = 1333919993 launchID = 23 parent = 51 position = -0.000192689592950046,1.01442909240723,0.469940096139908 rotation = 0.4999999,-0.5000002,0.4999999,-0.5 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 68 sym = 69 sym = 72 srfN = srfAttach, 51 attN = None, -1 attN = None, -1 mass = 0.075 temp = 288.055674619625 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = structuralPanel1 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = structuralPanel1 cid = 4293501910 uid = 608910978 mid = 1333919993 launchID = 23 parent = 51 position = 0.469940096139908,1.01442909240723,0.00019270260236226 rotation = 0.7071067,-0.7071069,0,1.264406E-07 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 68 sym = 69 sym = 71 srfN = srfAttach, 51 attN = None, -1 attN = None, -1 mass = 0.075 temp = 287.559248919292 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = structuralPanel1 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = solarPanels2 cid = 4293205120 uid = 1004501186 mid = 1333919993 launchID = 23 parent = 72 position = 0.486088186502457,0.991169929504395,0.000192702500498854 rotation = 1.685874E-07,1,1.788139E-07,8.429372E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 1 srfN = srfAttach, 72 mass = 0.025 temp = 287.72812696188 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (-0.6956387, -0.1267196, 0.1267224, 0.69568) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = strutConnector cid = 4293358274 uid = 3431236704 mid = 1333919993 launchID = 23 parent = 49 position = -0.000307284295558929,0.519680023193359,-0.594264686107636 rotation = -0.5000001,0.4999999,-0.5000001,0.4999999 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 75 srfN = srfAttach, 49 mass = 0.05 temp = 288.465004125611 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutConnector modCost = 0 EVENTS { } ACTIONS { } PARTDATA { tgt = 4293709144 pos = -0.2158912,0.729616,0.01565308 rot = 4.428696E-15,7.58643E-07,-0.7071073,0.7071069 dir = -0.2836763,0.9586995,0.02056781 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { name = strutConnector cid = 4293350308 uid = 774665870 mid = 1333919993 launchID = 23 parent = 49 position = 0.000307336187688634,0.519680023193359,0.594264686107636 rotation = -0.5000001,0.4999999,0.5000001,-0.4999999 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 74 srfN = srfAttach, 49 mass = 0.05 temp = 288.465004125611 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutConnector modCost = 0 EVENTS { } ACTIONS { } PARTDATA { tgt = 4293700462 pos = -0.2158902,0.7296159,0.01565269 rot = -5.960466E-08,2.468912E-08,-0.7071072,0.7071068 dir = -0.2836752,0.9586998,0.0205673 } MODULE { name = CModuleLinkedMesh isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = CModuleStrut isEnabled = True EVENTS { } ACTIONS { } } } PART { name = spotLight2 cid = 4293824962 uid = 539829777 mid = 1333919993 launchID = 23 parent = 0 position = -0.942234218120575,0.182600021362305,-0.97612851858139 rotation = -0.3913192,-0.3466606,0.1620898,-0.8369126 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 77 sym = 78 sym = 79 srfN = srfAttach, 0 mass = 0.015 temp = 293.533696848477 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = spotLight2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLight isEnabled = True isOn = False lightR = 1 lightG = 1 lightB = 0.75 lightR_UIFlight { controlEnabled = True minValue = 0 maxValue = 1 stepIncrement = 0.05 } lightG_UIFlight { controlEnabled = True minValue = 0 maxValue = 1 stepIncrement = 0.05 } lightB_UIFlight { controlEnabled = True minValue = 0 maxValue = 1 stepIncrement = 0.05 } EVENTS { LightsOff { active = False guiActive = True guiActiveEditor = True guiIcon = Lights Off guiName = Lights Off category = Lights Off guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } LightsOn { active = True guiActive = True guiActiveEditor = True guiIcon = Lights On guiName = Lights On category = Lights On guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleLightAction { actionGroup = Light } LightOnAction { actionGroup = None } LightOffAction { actionGroup = None } } } } PART { name = spotLight2 cid = 4293583996 uid = 33345700 mid = 1333919993 launchID = 23 parent = 0 position = -0.97612851858139,0.182600021362305,0.942233979701996 rotation = -0.1620897,-0.8369126,0.3913192,-0.3466606 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 76 sym = 78 sym = 79 srfN = srfAttach, 0 mass = 0.015 temp = 293.501277471865 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = spotLight2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLight isEnabled = True isOn = False lightR = 1 lightG = 1 lightB = 0.75 lightR_UIFlight { controlEnabled = True minValue = 0 maxValue = 1 stepIncrement = 0.05 } lightG_UIFlight { controlEnabled = True minValue = 0 maxValue = 1 stepIncrement = 0.05 } lightB_UIFlight { controlEnabled = True minValue = 0 maxValue = 1 stepIncrement = 0.05 } EVENTS { LightsOff { active = False guiActive = True guiActiveEditor = True guiIcon = Lights Off guiName = Lights Off category = Lights Off guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } LightsOn { active = True guiActive = True guiActiveEditor = True guiIcon = Lights On guiName = Lights On category = Lights On guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleLightAction { actionGroup = Light } LightOnAction { actionGroup = None } LightOffAction { actionGroup = None } } } } PART { name = spotLight2 cid = 4293583960 uid = 3069185268 mid = 1333919993 launchID = 23 parent = 0 position = 0.942234218120575,0.182600021362305,0.976128399372101 rotation = 0.1620898,-0.8369126,0.3913192,0.3466606 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 76 sym = 77 sym = 79 srfN = srfAttach, 0 mass = 0.015 temp = 293.668897234254 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = spotLight2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLight isEnabled = True isOn = False lightR = 1 lightG = 1 lightB = 0.75 lightR_UIFlight { controlEnabled = True minValue = 0 maxValue = 1 stepIncrement = 0.05 } lightG_UIFlight { controlEnabled = True minValue = 0 maxValue = 1 stepIncrement = 0.05 } lightB_UIFlight { controlEnabled = True minValue = 0 maxValue = 1 stepIncrement = 0.05 } EVENTS { LightsOff { active = False guiActive = True guiActiveEditor = True guiIcon = Lights Off guiName = Lights Off category = Lights Off guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } LightsOn { active = True guiActive = True guiActiveEditor = True guiIcon = Lights On guiName = Lights On category = Lights On guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleLightAction { actionGroup = Light } LightOnAction { actionGroup = None } LightOffAction { actionGroup = None } } } } PART { name = spotLight2 cid = 4293583924 uid = 2842849304 mid = 1333919993 launchID = 23 parent = 0 position = 0.976128280162811,0.182600021362305,-0.942234218120575 rotation = 0.3913192,-0.3466606,0.1620897,0.8369126 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 76 sym = 77 sym = 78 srfN = srfAttach, 0 mass = 0.015 temp = 293.508321845252 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = spotLight2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLight isEnabled = True isOn = False lightR = 1 lightG = 1 lightB = 0.75 lightR_UIFlight { controlEnabled = True minValue = 0 maxValue = 1 stepIncrement = 0.05 } lightG_UIFlight { controlEnabled = True minValue = 0 maxValue = 1 stepIncrement = 0.05 } lightB_UIFlight { controlEnabled = True minValue = 0 maxValue = 1 stepIncrement = 0.05 } EVENTS { LightsOff { active = False guiActive = True guiActiveEditor = True guiIcon = Lights Off guiName = Lights Off category = Lights Off guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } LightsOn { active = True guiActive = True guiActiveEditor = True guiIcon = Lights On guiName = Lights On category = Lights On guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleLightAction { actionGroup = Light } LightOnAction { actionGroup = None } LightOffAction { actionGroup = None } } } } ACTIONGROUPS { Stage = True, 542711.488164973 Gear = True, 0 Light = False, 0 RCS = False, 542889.948165139 SAS = True, 542721.808164982 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = -0.006247776 yaw = 0.001876991 roll = -0.0003512296 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } } VESSEL { pid = 512e50f416fc4b0e855a7078732acfb3 name = Kerbal 2 type = Ship sit = ORBITING landed = False landedAt = splashed = False met = 144.120000134222 lct = 543248.588165473 root = 0 lat = 0.643800848598616 lon = 124.925715394879 alt = 6996580.44074647 hgt = -1 nrm = 0.887782,0.01272224,-0.4600884 rot = 0.001541829,-0.9709638,0.0006317457,0.2392205 CoM = -0.0004009656,-1.590427,-0.04249624 stg = 2 prst = False ref = 299683886 ctrl = True cPch = cHdg = cMod = 0 ORBIT { SMA = 4362030.03978254 ECC = 0.74232596100981 INC = 47.4875096207289 LPE = 0.151004427312973 LAN = 92.0982929394239 MNA = 3.06061840383539 EPH = 543392.728165607 REF = 1 } PART { name = Mark1-2Pod cid = 4293084140 uid = 299683886 mid = 1068405238 launchID = 24 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = bottom, 2 attN = top, 1 mass = 4 temp = 293.294617283509 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = Mark1-2Pod modCost = 0 crew = Dudford Kerman crew = Helsy Kerman EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True controlSrcStatusText = Operational EVENTS { MakeReference { active = True guiActive = True guiIcon = Control From Here guiName = Control From Here category = Control From Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } RenameVessel { active = True guiActive = True guiIcon = Rename Vessel guiName = Rename Vessel category = Rename Vessel guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleReactionWheel isEnabled = True stateString = Running WheelState = Active EVENTS { OnToggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle Torque guiName = Toggle Torque category = Toggle Torque guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Crew Report category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data category = guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Report category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Discard Crew Report category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Crew Report category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Discard Crew Report category = Reset guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } MODULE { name = ModuleScienceContainer isEnabled = True EVENTS { StoreDataExternalEvent { active = False guiActive = False guiIcon = guiName = Store Experiments (0) category = guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data (0) category = guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Stored Data (0) category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = FlagDecal isEnabled = True flagDisplayed = True EVENTS { ToggleFlag { active = True guiActive = False guiActiveEditor = True guiIcon = ToggleFlag guiName = ToggleFlag category = ToggleFlag guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleTripLogger isEnabled = False EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } } RESOURCE { name = ElectricCharge amount = 150 maxAmount = 150 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = MonoPropellant amount = 30 maxAmount = 30 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = parachuteLarge cid = 4293084050 uid = 51528663 mid = 1068405238 launchID = 24 parent = 0 position = 0,1.1952543258667,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = 0 sepI = 0 sidx = 0 attm = 0 srfN = None, -1 attN = bottom, 0 mass = 0.3 temp = 293.161846641566 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = parachuteLarge modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleParachute isEnabled = True persistentState = STOWED minAirPressureToOpen = 0.01 deployAltitude = 500 minAirPressureToOpen_UIFlight { controlEnabled = True minValue = 0.01 maxValue = 0.5 stepIncrement = 0.01 } deployAltitude_UIFlight { controlEnabled = True minValue = 50 maxValue = 5000 stepIncrement = 50 } EVENTS { Deploy { active = True guiActive = True guiIcon = Deploy Chute guiName = Deploy Chute category = Deploy Chute guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } CutParachute { active = False guiActive = True guiIcon = Cut Parachute guiName = Cut Parachute category = Cut Parachute guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Repack { active = False guiActive = False guiIcon = Repack Chute guiName = Repack Chute category = Repack Chute guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } CutAction { actionGroup = None } } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleDragModifier isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = ModuleDragModifier isEnabled = True EVENTS { } ACTIONS { } } } PART { name = decoupler1-2 cid = 4293084002 uid = 101667569 mid = 1068405238 launchID = 24 parent = 0 position = 0,-0.808926105499268,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 1 dstg = 1 sqor = 1 sepI = 1 sidx = 0 attm = 0 srfN = None, -1 attN = bottom, 5 attN = top, 0 mass = 0.4 temp = 295.898149164268 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = decoupler1-2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDecouple isEnabled = True ejectionForcePercent = 100 isDecoupled = False ejectionForcePercent_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 1 } EVENTS { Decouple { active = True guiActive = True guiIcon = Decouple guiName = Decouple category = Decouple guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { DecoupleAction { actionGroup = None } } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } } PART { name = RTShortDish2 cid = 4292756012 uid = 2941167727 mid = 1068405238 launchID = 24 parent = 2 position = 1.0291114449501E-07,-0.828278064727783,-1.32862794399261 rotation = -1.313109E-07,0.7071068,-0.7071068,-1.313109E-07 mirror = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 1 srfN = srfAttach, 2 attN = None, -1 mass = 0.5 temp = 295.700945556626 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 0.976296007119933 RTOmniRange = 0 RTDishRange = 9E+07 RTAntennaTarget = 4b657262-696e-4b65-7262-696e4b657262 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = True guiActive = True guiIcon = Target guiName = Kerbin category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = RTLongAntenna3 cid = 4292753826 uid = 3619079292 mid = 1068405238 launchID = 24 parent = 2 position = 0,-0.84465217590332,1.30020499229431 rotation = 0.7071068,-1.313109E-07,1.313109E-07,0.7071068 mirror = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 1 srfN = srfAttach, 2 mass = 0.02 temp = 288.881437754948 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongAntenna3 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0.9902264 animSpeed = 1 EVENTS { Toggle { active = False guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Retract category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000000 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } PART { name = RCSTank1-2 cid = 4293083910 uid = 2005320308 mid = 1068405238 launchID = 24 parent = 2 position = 0,-1.67439603805542,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 0 srfN = None, -1 attN = top, 2 attN = bottom, 6 mass = 0.4 temp = 297.390378113473 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = RCSTank1-2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 750 maxAmount = 750 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = fuelTank4-2 cid = 4293083884 uid = 4122811251 mid = 1068405238 launchID = 24 parent = 5 position = 0,-2.64314603805542,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 0 srfN = None, -1 attN = top, 5 attN = bottom, 7 mass = 0.5 temp = 297.433973721503 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = fuelTank4-2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 208.364940383589 maxAmount = 360 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 254.668251542257 maxAmount = 440 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = engineLargeSkipper cid = 4292743698 uid = 3063067194 mid = 1068405238 launchID = 24 parent = 6 position = 0,-3.11189603805542,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sqor = 2 sepI = 1 sidx = 0 attm = 0 srfN = None, -1 attN = top, 6 attN = None, -1 mass = 3 temp = 297.464787634853 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = engineLargeSkipper modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True staged = True flameout = False EngineIgnited = True engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = False guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = True guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = None } } } MODULE { name = ModuleJettison isEnabled = True isJettisoned = True EVENTS { Jettison { active = False guiActive = True guiIcon = Jettison guiName = Jettison category = Jettison guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { JettisonAction { actionGroup = None } } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 gimbalLock_UIFlight { controlEnabled = True } gimbalLimiter_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 1 } EVENTS { } ACTIONS { ToggleAction { actionGroup = None } LockAction { actionGroup = None } FreeAction { actionGroup = None } } } MODULE { name = ModuleAnimateHeat isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = ModuleAlternator isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleSurfaceFX isEnabled = True EVENTS { } ACTIONS { } } RESOURCE { name = ElectricCharge amount = 0.0384564990520246 maxAmount = 0.199999995529652 flowState = True isTweakable = False hideFlow = True flowMode = Both } } PART { name = solarPanels5 cid = 4292660120 uid = 2127140147 mid = 1068405238 launchID = 24 parent = 6 position = -1.19409322738647,-2.62713289260864,0.319956332445145 rotation = 0,-0.6087614,0,0.7933534 mirror = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 9 sym = 10 srfN = srfAttach, 6 mass = 0.005 temp = 293.72914593819 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292658510 uid = 2975287939 mid = 1068405238 launchID = 24 parent = 6 position = 0.874137222766876,-2.62713289260864,0.874136984348297 rotation = 0,0.3826835,0,0.9238795 mirror = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 8 sym = 10 srfN = srfAttach, 6 mass = 0.005 temp = 293.710174770882 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292658478 uid = 1734165749 mid = 1068405238 launchID = 24 parent = 6 position = 0.319956332445145,-2.62713289260864,-1.19409394264221 rotation = 0,0.9914449,0,0.1305261 mirror = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 8 sym = 9 srfN = srfAttach, 6 mass = 0.005 temp = 293.65169229504 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292658044 uid = 3260497699 mid = 1068405238 launchID = 24 parent = 6 position = -1.20783722400665,-2.63616991043091,6.89178705215454E-08 rotation = 0,-0.7071068,0,0.7071068 mirror = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 12 sym = 13 srfN = srfAttach, 6 mass = 0.005 temp = 293.895008269916 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292657996 uid = 1124306659 mid = 1068405238 launchID = 24 parent = 6 position = 0.603918731212616,-2.63616991043091,1.04601800441742 rotation = 0,0.2588191,0,0.9659259 mirror = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 11 sym = 13 srfN = srfAttach, 6 mass = 0.005 temp = 293.71910994775 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292657964 uid = 3458089933 mid = 1068405238 launchID = 24 parent = 6 position = 0.603918433189392,-2.63616991043091,-1.04601800441742 rotation = 0,0.9659259,0,0.258819 mirror = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 11 sym = 12 srfN = srfAttach, 6 mass = 0.005 temp = 293.699483118616 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292657558 uid = 2382406880 mid = 1068405238 launchID = 24 parent = 6 position = -1.19352519512177,-2.62293004989624,-0.319804459810257 rotation = 0,-0.7933534,0,0.6087614 mirror = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 15 sym = 16 srfN = srfAttach, 6 mass = 0.005 temp = 293.85945549263 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292657508 uid = 3500108218 mid = 1068405238 launchID = 24 parent = 6 position = 0.319804131984711,-2.62293004989624,1.19352602958679 rotation = 0,0.1305261,0,0.9914449 mirror = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 14 sym = 16 srfN = srfAttach, 6 mass = 0.005 temp = 293.677996283929 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292657476 uid = 2071858947 mid = 1068405238 launchID = 24 parent = 6 position = 0.873721539974213,-2.62293004989624,-0.873721361160278 rotation = 0,0.9238795,0,0.3826835 mirror = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 14 sym = 15 srfN = srfAttach, 6 mass = 0.005 temp = 293.6393499261 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292656808 uid = 978683540 mid = 1068405238 launchID = 24 parent = 6 position = -1.04641628265381,-2.63544082641602,-0.60414856672287 rotation = -3.786838E-08,0.8660262,-6.559019E-08,-0.4999987 mirror = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 18 sym = 19 srfN = srfAttach, 6 mass = 0.005 temp = 293.816596445636 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292656752 uid = 3994105562 mid = 1068405238 launchID = 24 parent = 6 position = 3.00351530313492E-08,-2.63544082641602,1.20829701423645 rotation = -7.573696E-08,1.41582E-06,-1.082482E-13,-1 mirror = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 17 sym = 19 srfN = srfAttach, 6 mass = 0.005 temp = 293.657124949791 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292656720 uid = 2670590445 mid = 1068405238 launchID = 24 parent = 6 position = 1.04641580581665,-2.63544082641602,-0.604148507118225 rotation = -3.786857E-08,-0.8660247,6.559008E-08,-0.5000013 mirror = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 17 sym = 18 srfN = srfAttach, 6 mass = 0.005 temp = 293.635627357156 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292656218 uid = 860997511 mid = 1068405238 launchID = 24 parent = 6 position = -0.87454217672348,-2.62601518630981,-0.874542057514191 rotation = -2.898328E-08,0.9238796,-6.997183E-08,-0.3826835 mirror = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 21 sym = 22 srfN = srfAttach, 6 mass = 0.005 temp = 293.843113154469 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292656160 uid = 660213207 mid = 1068405238 launchID = 24 parent = 6 position = -0.320104479789734,-2.62601518630981,1.19464695453644 rotation = -7.508902E-08,0.1305261,-9.88565E-09,-0.9914449 mirror = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 20 sym = 22 srfN = srfAttach, 6 mass = 0.005 temp = 293.746565681448 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292656128 uid = 3116298905 mid = 1068405238 launchID = 24 parent = 6 position = 1.19464671611786,-2.62601518630981,-0.320104748010635 rotation = -4.610573E-08,-0.7933534,6.008618E-08,-0.6087614 mirror = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 20 sym = 21 srfN = srfAttach, 6 mass = 0.005 temp = 293.636058809469 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292655516 uid = 1052299829 mid = 1068405238 launchID = 24 parent = 6 position = -0.603710651397705,-2.63656997680664,-1.04565703868866 rotation = -3.395184E-08,0.9659257,-1.267096E-07,-0.2588197 mirror = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 24 sym = 25 srfN = srfAttach, 6 mass = 0.005 temp = 293.767387057793 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292655462 uid = 1163123623 mid = 1068405238 launchID = 24 parent = 6 position = -0.603710353374481,-2.63656997680664,1.04565799236298 rotation = -1.267097E-07,0.2588184,-3.395166E-08,-0.9659261 mirror = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 23 sym = 25 srfN = srfAttach, 6 mass = 0.005 temp = 293.854429319399 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292655430 uid = 3655201650 mid = 1068405238 launchID = 24 parent = 6 position = 1.20742070674896,-2.63656997680664,-1.80676579475403E-07 rotation = -9.275784E-08,-0.7071073,9.275798E-08,-0.7071063 mirror = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 23 sym = 24 srfN = srfAttach, 6 mass = 0.005 temp = 293.639141377307 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292655002 uid = 256313842 mid = 1068405238 launchID = 24 parent = 6 position = -0.322620183229446,-2.62415409088135,-1.20403599739075 rotation = -1.712234E-08,0.9914449,-1.300572E-07,-0.1305261 mirror = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 27 sym = 28 srfN = srfAttach, 6 mass = 0.005 temp = 293.687604217353 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292654936 uid = 2514806309 mid = 1068405238 launchID = 24 parent = 6 position = -0.881415367126465,-2.62415409088135,0.881415188312531 rotation = -1.21194E-07,0.3826835,-5.020022E-08,-0.9238796 mirror = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 26 sym = 28 srfN = srfAttach, 6 mass = 0.005 temp = 293.699739097814 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels5 cid = 4292654904 uid = 3816041505 mid = 1068405238 launchID = 24 parent = 6 position = 1.20403575897217,-2.62415409088135,0.322620451450348 rotation = -1.040717E-07,-0.6087614,7.9857E-08,-0.7933534 mirror = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 26 sym = 27 srfN = srfAttach, 6 mass = 0.005 temp = 293.686782957752 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = basicFin cid = 4292641928 uid = 905346005 mid = 1068405238 launchID = 24 parent = 6 position = -1.04781126976013,-3.00038385391235,0.604953825473785 rotation = -1.960201E-08,0.2588187,-7.315581E-08,0.965926 mirror = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 30 sym = 31 srfN = srfAttach, 6 mass = 0.01 temp = 288.668931842067 expt = 0.1 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = basicFin modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { name = basicFin cid = 4292641590 uid = 576338632 mid = 1068405238 launchID = 24 parent = 6 position = 1.04781079292297,-3.00038385391235,0.604953825473785 rotation = -7.31558E-08,0.9659258,-1.960206E-08,0.2588194 mirror = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 29 sym = 31 srfN = srfAttach, 6 mass = 0.01 temp = 287.294060212688 expt = 0.1 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = basicFin modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { name = basicFin cid = 4292641556 uid = 2155786843 mid = 1068405238 launchID = 24 parent = 6 position = -4.70317900180817E-08,-3.00038385391235,-1.20990800857544 rotation = -5.355377E-08,0.7071071,5.355374E-08,-0.7071065 mirror = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 29 sym = 30 srfN = srfAttach, 6 mass = 0.01 temp = 287.539042230625 expt = 0.1 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = basicFin modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLiftingSurface isEnabled = True EVENTS { } ACTIONS { } } } PART { name = RCSBlock cid = 4293083758 uid = 2383353891 mid = 1068405238 launchID = 24 parent = 5 position = -0.914996922016144,-1.6850118637085,-0.913947463035584 rotation = 6.615544E-08,0.3826834,-1.14585E-07,-0.9238796 mirror = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 33 sym = 34 sym = 35 srfN = srfAttach, 5 mass = 0.05 temp = 291.897109372173 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = RCSBlock cid = 4293083720 uid = 26094802 mid = 1068405238 launchID = 24 parent = 5 position = -0.913947463035584,-1.6850118637085,0.914997100830078 rotation = -3.424489E-08,-0.3826835,-1.278028E-07,-0.9238796 mirror = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 32 sym = 34 sym = 35 srfN = srfAttach, 5 mass = 0.05 temp = 291.84442461485 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = RCSBlock cid = 4293083682 uid = 1180713725 mid = 1068405238 launchID = 24 parent = 5 position = 0.914997041225433,-1.6850118637085,0.913947284221649 rotation = -1.14585E-07,-0.9238796,-6.615544E-08,-0.3826834 mirror = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 32 sym = 33 sym = 35 srfN = srfAttach, 5 mass = 0.05 temp = 291.846016537647 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = RCSBlock cid = 4293083644 uid = 1480805081 mid = 1068405238 launchID = 24 parent = 5 position = 0.913947463035584,-1.6850118637085,-0.914997100830078 rotation = 1.278028E-07,0.9238796,-3.424488E-08,-0.3826835 mirror = 1,1,1 symMethod = Radial istg = 2 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 32 sym = 33 sym = 34 srfN = srfAttach, 5 mass = 0.05 temp = 291.826350443882 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } ACTIONGROUPS { Stage = True, 543293.048165514 Gear = True, 0 Light = False, 0 RCS = False, 0 SAS = True, 543277.7281655 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = -0.003637878 yaw = 0.004493215 roll = 4.944478E-05 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } } VESSEL { pid = 39515494ae2c4478bfcd458d72b725a5 name = Narrow Scanner Kerbin type = Probe sit = ORBITING landed = False landedAt = splashed = False met = 162.800000152318 lct = 543491.348165697 root = 0 lat = -33.4357114696857 lon = 236.633252955862 alt = 71981.6585399703 hgt = -1 nrm = -3.671293E-06,-1,1.3805E-05 rot = -0.4404894,-0.7212364,-0.1745608,-0.5052878 CoM = 0.00167083,-0.3315859,-0.002423667 stg = 1 prst = False ref = 11584384 ctrl = True cPch = cHdg = cMod = 0 ORBIT { SMA = 671999.195887321 ECC = 4.63908468527242E-05 INC = 91.1952301457727 LPE = 156.944097610217 LAN = 208.362281040114 MNA = 0.98609920920067 EPH = 543654.168165849 REF = 1 } PART { name = probeCoreOcto cid = 4294721148 uid = 11584384 mid = 337419889 launchID = 25 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = bottom, 3 attN = top, 13 mass = 0.1 temp = 288.418161570086 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = probeCoreOcto (Narrow Scanner Kerbin) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True controlSrcStatusText = Operational EVENTS { MakeReference { active = True guiActive = True guiIcon = Control From Here guiName = Control From Here category = Control From Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } RenameVessel { active = True guiActive = True guiIcon = Rename Vessel guiName = Rename Vessel category = Rename Vessel guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleReactionWheel isEnabled = True stateString = Running WheelState = Active EVENTS { OnToggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle Torque guiName = Toggle Torque category = Toggle Torque guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True standaloneToggle_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = RadialMinus Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 543654.168165849 ExtraDelay = 0 CmdGuid = 82b4a3ef-4572-46ef-a273-0e7f0dbd0ce7 } } Commands { } } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 EVENTS { } ACTIONS { } } MODULE { name = ModuleTripLogger isEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } } RESOURCE { name = ElectricCharge amount = 9.999933333335 maxAmount = 10 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = ksp.r.largeBatteryPack cid = 4294701064 uid = 4266102887 mid = 337419889 launchID = 25 parent = 0 position = -0.256530493497849,-0.11670970916748,8.32620372648307E-08 rotation = 0,-0.7071068,0,-0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 2 srfN = srfAttach, 0 mass = 0.02 temp = 288.506245018089 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = ksp.r.largeBatteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 399.999933333335 maxAmount = 400 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = ksp.r.largeBatteryPack cid = 4294700654 uid = 3282101441 mid = 337419889 launchID = 25 parent = 0 position = 0.256530493497849,-0.11670970916748,-6.08354326914196E-08 rotation = 0,0.7071068,0,-0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 1 srfN = srfAttach, 0 mass = 0.02 temp = 288.49203505195 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = ksp.r.largeBatteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 399.999933333335 maxAmount = 400 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = sasModule cid = 4294696762 uid = 4218978625 mid = 337419889 launchID = 25 parent = 0 position = 0,-0.278189659118652,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = bottom, 4 attN = top, 0 mass = 0.05 temp = 288.148402387687 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = sasModule modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True stateString = Running WheelState = Active EVENTS { OnToggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle Torque guiName = Toggle Torque category = Toggle Torque guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } } } PART { name = rcsTankMini cid = 4294713878 uid = 501212518 mid = 337419889 launchID = 25 parent = 3 position = 0,-0.55679988861084,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 3 attN = None, -1 mass = 0.05 temp = 287.77222179696 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = rcsTankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 80 maxAmount = 80 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = RCSBlock cid = 4294657678 uid = 3890193594 mid = 337419889 launchID = 25 parent = 4 position = 0.366466999053955,-0.612739562988281,-0.000742256874218583 rotation = -6.102155E-08,1,-2.512148E-15,0 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 6 srfN = srfAttach, 4 mass = 0.05 temp = 287.872268574845 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = RCSBlock cid = 4294657334 uid = 3505732421 mid = 337419889 launchID = 25 parent = 4 position = -0.366466999053955,-0.612739562988281,0.000742288888432086 rotation = 1.551889E-16,-4.371139E-08,6.102155E-08,-1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 5 srfN = srfAttach, 4 mass = 0.05 temp = 287.859894311924 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = RTLongAntenna3 cid = 4294646554 uid = 2620680317 mid = 337419889 launchID = 25 parent = 4 position = 0.213445901870728,-0.578869819641113,-0.213445797562599 rotation = 0.2705981,0.6532814,-0.6532816,0.270598 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 4 mass = 0.02 temp = 287.970670711827 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongAntenna3 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0.9927171 animSpeed = 1 EVENTS { Toggle { active = False guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000000 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True EVENTS { } ACTIONS { } } } PART { name = omsEngine cid = 4294632020 uid = 1298597048 mid = 337419889 launchID = 25 parent = 4 position = -0.213495194911957,-0.493720054626465,-0.213495194911957 rotation = -6.379805E-08,0.9238796,-1.540221E-07,-0.3826835 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 9 srfN = srfAttach, 4 mass = 0.09 temp = 287.731253264107 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = omsEngine modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = None } } } } PART { name = omsEngine cid = 4294631406 uid = 4187346521 mid = 337419889 launchID = 25 parent = 4 position = 0.213495194911957,-0.493720054626465,0.213495194911957 rotation = -1.540221E-07,-0.3826835,6.379806E-08,-0.9238796 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 8 srfN = srfAttach, 4 mass = 0.09 temp = 287.710408857967 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = omsEngine modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = None } } } } PART { name = solarPanels4 cid = 4294599156 uid = 2528810480 mid = 337419889 launchID = 25 parent = 4 position = 2.66314508223786E-08,-0.557299613952637,-0.304628312587738 rotation = -0.7071068,-1.610317E-07,-0.7071068,-1.610317E-07 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 11 srfN = srfAttach, 4 mass = 0.0175 temp = 288.385814109344 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (-0.3501133, -0.3501032, -0.6143414, 0.6143558) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = False guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = solarPanels4 cid = 4294598914 uid = 2026831147 mid = 337419889 launchID = 25 parent = 4 position = 4.2884431086538E-16,-0.557299613952637,0.304628312587738 rotation = -0.7071068,-1.610317E-07,0.7071068,1.610317E-07 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 10 srfN = srfAttach, 4 mass = 0.0175 temp = 288.256748217521 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (-0.6143547, -0.6143423, -0.3501019, 0.350115) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = False guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = sensorGravimeter cid = 4294527682 uid = 3776953403 mid = 337419889 launchID = 25 parent = 4 position = -0.213706195354462,-0.579669952392578,0.213706105947495 rotation = 6.379805E-08,0.9238796,-1.540221E-07,0.3826835 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 4 mass = 0.005 temp = 289.033959952614 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = sensorGravimeter modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False EVENTS { Toggle { active = True guiActive = True guiIcon = Toggle Display guiName = Toggle Display category = Toggle Display guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Log Gravity Data category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data category = guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Data category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Log Gravity Data category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } } PART { name = OrbitalScanner cid = 4294685688 uid = 70528359 mid = 337419889 launchID = 25 parent = 0 position = 0,-0.044520378112793,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = bottom, 0 mass = 0.1 temp = 288.46468031659 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = OrbitalScanner modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleGPS isEnabled = False EVENTS { } ACTIONS { } } MODULE { name = ModuleResourceScanner isEnabled = False EVENTS { } ACTIONS { } } MODULE { name = ModuleHighDefCamera isEnabled = False EVENTS { ToggleGui { active = True guiActive = True guiIcon = Toggle scanner GUI guiName = Toggle scanner GUI category = Toggle scanner GUI guiActiveUnfocused = True unfocusedRange = 3 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleAnimationGroup isEnabled = True _isActive = False isDeployed = False EVENTS { DeployModule { active = True guiActive = True guiActiveEditor = True guiIcon = Deploy guiName = Activate Scanner category = Deploy guiActiveUnfocused = True unfocusedRange = 3 externalToEVAOnly = True } RetractModule { active = False guiActive = True guiActiveEditor = True guiIcon = Retract guiName = Deactivate Scanner category = Retract guiActiveUnfocused = True unfocusedRange = 3 externalToEVAOnly = True } } ACTIONS { DeployModuleAction { actionGroup = None } RetractModuleAction { actionGroup = None } ToggleModuleAction { actionGroup = None } } } } PART { name = rtg cid = 4294670552 uid = 3581868530 mid = 337419889 launchID = 25 parent = 0 position = -0.287154704332352,-0.136190414428711,-0.328793495893478 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 15 sym = 16 sym = 17 srfN = srfAttach, 0 attN = None, -1 attN = None, -1 mass = 0.08 temp = 288.331285641424 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = rtg modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleGenerator isEnabled = True generatorIsActive = True throttle = 0 EVENTS { Activate { active = False guiActive = True guiIcon = Activate Generator guiName = Activate Generator category = Activate Generator guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Generator guiName = Shutdown Generator category = Shutdown Generator guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } ActivateAction { actionGroup = None } ShutdownAction { actionGroup = None } } } } PART { name = rtg cid = 4294669722 uid = 1434293708 mid = 337419889 launchID = 25 parent = 0 position = -0.328793495893478,-0.136190414428711,0.287154585123062 rotation = 0,0.7071068,0,0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 14 sym = 16 sym = 17 srfN = srfAttach, 0 attN = None, -1 attN = None, -1 mass = 0.08 temp = 288.288873465399 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = rtg modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleGenerator isEnabled = True generatorIsActive = True throttle = 0 EVENTS { Activate { active = False guiActive = True guiIcon = Activate Generator guiName = Activate Generator category = Activate Generator guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Generator guiName = Shutdown Generator category = Shutdown Generator guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } ActivateAction { actionGroup = None } ShutdownAction { actionGroup = None } } } } PART { name = rtg cid = 4294669690 uid = 1566503645 mid = 337419889 launchID = 25 parent = 0 position = 0.287154704332352,-0.136190414428711,0.328793495893478 rotation = 0,1,0,-4.371139E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 14 sym = 15 sym = 17 srfN = srfAttach, 0 attN = None, -1 attN = None, -1 mass = 0.08 temp = 288.279423480383 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = rtg modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleGenerator isEnabled = True generatorIsActive = True throttle = 0 EVENTS { Activate { active = False guiActive = True guiIcon = Activate Generator guiName = Activate Generator category = Activate Generator guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Generator guiName = Shutdown Generator category = Shutdown Generator guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } ActivateAction { actionGroup = None } ShutdownAction { actionGroup = None } } } } PART { name = rtg cid = 4294669658 uid = 4191802866 mid = 337419889 launchID = 25 parent = 0 position = 0.328793495893478,-0.136190414428711,-0.287154704332352 rotation = 0,0.7071068,0,-0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 14 sym = 15 sym = 16 srfN = srfAttach, 0 attN = None, -1 attN = None, -1 mass = 0.08 temp = 288.307065935918 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = rtg modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleGenerator isEnabled = True generatorIsActive = True throttle = 0 EVENTS { Activate { active = False guiActive = True guiIcon = Activate Generator guiName = Activate Generator category = Activate Generator guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Generator guiName = Shutdown Generator category = Shutdown Generator guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } ActivateAction { actionGroup = None } ShutdownAction { actionGroup = None } } } } PART { name = RCSBlock cid = 4294661412 uid = 3954634406 mid = 337419889 launchID = 25 parent = 0 position = -0.000742218107916415,0.0172500610351563,-0.399995714426041 rotation = 0,0.7071069,0,-0.7071067 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 19 srfN = srfAttach, 0 mass = 0.05 temp = 288.453033119765 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = RCSBlock cid = 4294658746 uid = 2919140280 mid = 337419889 launchID = 25 parent = 0 position = 0.000742253090720624,0.0172500610351563,0.399995714426041 rotation = 0,-0.7071068,0,-0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 18 srfN = srfAttach, 0 mass = 0.05 temp = 288.454955095639 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCS isEnabled = True rcsEnabled = True EVENTS { Disable { active = True guiActive = True guiIcon = Disable RCS Port guiName = Disable RCS Port category = Disable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Enable { active = False guiActive = True guiIcon = Enable RCS Port guiName = Enable RCS Port category = Enable RCS Port guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = RTShortAntenna1 cid = 4294583376 uid = 1786892302 mid = 337419889 launchID = 25 parent = 0 position = -4.07379907585437E-08,0.118000030517578,-0.270776808261871 rotation = 0,0,-0.7071068,0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 0 mass = 0.005 temp = 289.252025168227 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTShortAntenna1 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 500000 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } } ACTIONGROUPS { Stage = False, 0 Gear = True, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0.0001519381 yaw = -8.439755E-05 roll = 0.0001381878 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } } VESSEL { pid = 38c7a2297ed34f63aba190c285a2946a name = Fun Rover type = Rover sit = LANDED landed = True landedAt = KSC splashed = False met = 3647.71750276187 lct = 543659.028165853 root = 0 lat = -0.078954872679006 lon = 285.432085230201 alt = 65.2454262287356 hgt = 0.5735611 nrm = -0.0003547103,0.9999744,-0.007146107 rot = -0.7043817,-0.1616017,-0.02701477,0.690653 CoM = 0.0110461,-0.05467229,0.02487764 stg = 1 prst = False ref = 2391258724 ctrl = True cPch = 0 cHdg = 0 cMod = 0 ORBIT { SMA = 0 ECC = 1 INC = NaN LPE = 8.90255995847204 LAN = 310.878134749444 MNA = -8.40714670366796 EPH = 547458.665668757 REF = 1 } PART { name = probeCoreOcto2 cid = 4294222436 uid = 2391258724 mid = 1186405287 launchID = 26 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = bottom, 17 attN = None, -1 mass = 0.04 temp = 298.00002770024 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = probeCoreOcto2 (Fun Rover) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True controlSrcStatusText = Operational EVENTS { MakeReference { active = True guiActive = True guiIcon = Control From Here guiName = Control From Here category = Control From Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } RenameVessel { active = True guiActive = True guiIcon = Rename Vessel guiName = Rename Vessel category = Rename Vessel guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True standaloneToggle_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 547306.745668615 ExtraDelay = 0 CmdGuid = d7ea77b0-0f32-4120-a720-d028c61bab73 } } Commands { } } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 EVENTS { } ACTIONS { } } MODULE { name = ModuleTripLogger isEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Land,Kerbin } } MODULE { name = ModuleRTDataTransmitter isEnabled = True EVENTS { } ACTIONS { } } RESOURCE { name = ElectricCharge amount = 0 maxAmount = 5 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = strutCube cid = 4294215750 uid = 438159944 mid = 1186405287 launchID = 26 parent = 0 position = -0.106169901788235,-0.0112800598144531,0.407902210950851 rotation = 0.7071068,-9.112319E-08,9.112319E-08,0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 4 srfN = srfAttach, 0 attN = None, -1 attN = None, -1 mass = 0.001 temp = 301.601461011443 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = roverWheel2 cid = 4294182356 uid = 1036667963 mid = 1186405287 launchID = 26 parent = 1 position = -0.324593901634216,-0.439539909362793,0.36187818646431 rotation = 8.429374E-08,0,-2.980233E-07,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 5 srfN = srfAttach, 1 mass = 0.05 temp = 296.51952379007 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = roverWheel2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleWheel isEnabled = True brakeTorque = 180 brakesEngaged = True steeringLocked = False isDamaged = False invertSteering = False motorEnabled = True brakeTorque_UIFlight { controlEnabled = True minValue = 0 maxValue = 30 stepIncrement = 1 } EVENTS { UnLockSteering { active = False guiActive = True guiActiveEditor = True guiIcon = Unlock Steering guiName = Unlock Steering category = Unlock Steering guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } LockSteering { active = True guiActive = True guiActiveEditor = True guiIcon = Lock Steering guiName = Lock Steering category = Lock Steering guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EnableMotor { active = False guiActive = True guiActiveEditor = True guiIcon = Enable Motor guiName = Enable Motor category = Enable Motor guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DisableMotor { active = True guiActive = True guiActiveEditor = True guiIcon = Disable Motor guiName = Disable Motor category = Disable Motor guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } InvertSteering { active = True guiActive = True guiActiveEditor = True guiIcon = Invert Steering guiName = Invert Steering category = Invert Steering guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } RepairWheel { active = False guiActive = False guiIcon = Repair Wheel guiName = Repair Wheel category = Repair Wheel guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { InvertSteeringAction { actionGroup = None } LockSteeringAction { actionGroup = None } UnlockSteeringAction { actionGroup = None } ToggleSteeringAction { actionGroup = None } ToggleMotorAction { actionGroup = None } BrakesAction { actionGroup = Brakes } } } MODULE { name = FXModuleLookAtConstraint isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = FXModuleConstrainPosition isEnabled = True EVENTS { } ACTIONS { } } } PART { name = spotLight1 cid = 4294089916 uid = 760033193 mid = 1186405287 launchID = 26 parent = 1 position = 0.00350818037986755,-0.000479698181152344,0.50599992275238 rotation = 0.04502949,0.7995686,-0.5981899,-0.02883278 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 1 mass = 0.015 temp = 303.745843473714 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = spotLight1 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLight isEnabled = True isOn = True lightR = 1 lightG = 0.8 lightB = 0.8 lightR_UIFlight { controlEnabled = True minValue = 0 maxValue = 1 stepIncrement = 0.05 } lightG_UIFlight { controlEnabled = True minValue = 0 maxValue = 1 stepIncrement = 0.05 } lightB_UIFlight { controlEnabled = True minValue = 0 maxValue = 1 stepIncrement = 0.05 } EVENTS { LightsOff { active = True guiActive = True guiActiveEditor = True guiIcon = Lights Off guiName = Lights Off category = Lights Off guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } LightsOn { active = False guiActive = True guiActiveEditor = True guiIcon = Lights On guiName = Lights On category = Lights On guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleLightAction { actionGroup = Light } LightOnAction { actionGroup = None } LightOffAction { actionGroup = None } } } } PART { name = strutCube cid = 4294215222 uid = 1476348172 mid = 1186405287 launchID = 26 parent = 0 position = 0.106169797480106,-0.0112800598144531,-0.407902210950851 rotation = 6.021457E-08,0.7071068,-0.7071068,6.021457E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 1 srfN = srfAttach, 0 attN = None, -1 attN = None, -1 mass = 0.001 temp = 302.209680848136 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = roverWheel2 cid = 4294182008 uid = 896944166 mid = 1186405287 launchID = 26 parent = 4 position = 0.324594110250473,-0.439539909362793,-0.361878484487534 rotation = -2.980234E-07,1,-8.429373E-08,-4.371139E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 2 srfN = srfAttach, 4 mass = 0.05 temp = 297.905149630286 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = roverWheel2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleWheel isEnabled = True brakeTorque = 180 brakesEngaged = True steeringLocked = False isDamaged = False invertSteering = False motorEnabled = True brakeTorque_UIFlight { controlEnabled = True minValue = 0 maxValue = 30 stepIncrement = 1 } EVENTS { UnLockSteering { active = False guiActive = True guiActiveEditor = True guiIcon = Unlock Steering guiName = Unlock Steering category = Unlock Steering guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } LockSteering { active = True guiActive = True guiActiveEditor = True guiIcon = Lock Steering guiName = Lock Steering category = Lock Steering guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EnableMotor { active = False guiActive = True guiActiveEditor = True guiIcon = Enable Motor guiName = Enable Motor category = Enable Motor guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DisableMotor { active = True guiActive = True guiActiveEditor = True guiIcon = Disable Motor guiName = Disable Motor category = Disable Motor guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } InvertSteering { active = True guiActive = True guiActiveEditor = True guiIcon = Invert Steering guiName = Invert Steering category = Invert Steering guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } RepairWheel { active = False guiActive = False guiIcon = Repair Wheel guiName = Repair Wheel category = Repair Wheel guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { InvertSteeringAction { actionGroup = None } LockSteeringAction { actionGroup = None } UnlockSteeringAction { actionGroup = None } ToggleSteeringAction { actionGroup = None } ToggleMotorAction { actionGroup = None } BrakesAction { actionGroup = Brakes } } } MODULE { name = FXModuleLookAtConstraint isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = FXModuleConstrainPosition isEnabled = True EVENTS { } ACTIONS { } } } PART { name = solarPanels5 cid = 4294116980 uid = 1221872632 mid = 1186405287 launchID = 26 parent = 5 position = 0.176280856132507,0.127699851989746,-0.47390428185463 rotation = 0.6086387,0.01224342,-0.01594182,-0.793193 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 5 mass = 0.005 temp = 300.061575184222 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = longAntenna cid = 4294071396 uid = 2865626401 mid = 1186405287 launchID = 26 parent = 4 position = -0.000511161983013153,0.076359748840332,-0.517902195453644 rotation = 0.4226183,6.148333E-16,2.130889E-15,-0.9063079 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 4 attN = None, -1 mass = 0.005 temp = 302.031396722835 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = longAntenna modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0.9913011 animSpeed = 1 EVENTS { Toggle { active = False guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Extend category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 2500000 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True EVENTS { } ACTIONS { } } } PART { name = sensorAccelerometer cid = 4294064518 uid = 750631103 mid = 1186405287 launchID = 26 parent = 4 position = 0.0160740241408348,-0.0290298461914063,-0.499457120895386 rotation = 0.5,0.5000001,-0.5000002,-0.4999999 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 4 mass = 0.005 temp = 302.049561600646 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = sensorAccelerometer modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False EVENTS { Toggle { active = True guiActive = True guiIcon = Toggle Display guiName = Toggle Display category = Toggle Display guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Log Seismic Data category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data category = guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Data category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Log Seismic Data category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } } PART { name = batteryPack cid = 4293949602 uid = 887620126 mid = 1186405287 launchID = 26 parent = 4 position = 0.00196588039398193,0.0035400390625,-0.316460281610489 rotation = 0.6689014,1.646216E-07,-5.563655E-08,-0.7433513 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 4 mass = 0.005 temp = 304.975969627812 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 71.8230797123268 maxAmount = 100 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = strutCube cid = 4294213444 uid = 3994260417 mid = 1186405287 launchID = 26 parent = 0 position = 0.0950885266065598,-0.00981998443603516,0.407893687486649 rotation = 0.7071068,-9.112319E-08,9.112319E-08,0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 13 srfN = srfAttach, 0 attN = None, -1 attN = None, -1 mass = 0.001 temp = 299.163936493699 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = roverWheel2 cid = 4294178422 uid = 100586968 mid = 1186405287 launchID = 26 parent = 10 position = 0.313583612442017,-0.444979667663574,0.37961021065712 rotation = 2.533198E-07,1,8.429374E-08,-9.920975E-10 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 14 srfN = srfAttach, 10 mass = 0.05 temp = 296.332083007551 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = roverWheel2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleWheel isEnabled = True brakeTorque = 180 brakesEngaged = True steeringLocked = False isDamaged = False invertSteering = False motorEnabled = True brakeTorque_UIFlight { controlEnabled = True minValue = 0 maxValue = 30 stepIncrement = 1 } EVENTS { UnLockSteering { active = False guiActive = True guiActiveEditor = True guiIcon = Unlock Steering guiName = Unlock Steering category = Unlock Steering guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } LockSteering { active = True guiActive = True guiActiveEditor = True guiIcon = Lock Steering guiName = Lock Steering category = Lock Steering guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EnableMotor { active = False guiActive = True guiActiveEditor = True guiIcon = Enable Motor guiName = Enable Motor category = Enable Motor guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DisableMotor { active = True guiActive = True guiActiveEditor = True guiIcon = Disable Motor guiName = Disable Motor category = Disable Motor guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } InvertSteering { active = True guiActive = True guiActiveEditor = True guiIcon = Invert Steering guiName = Invert Steering category = Invert Steering guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } RepairWheel { active = False guiActive = False guiIcon = Repair Wheel guiName = Repair Wheel category = Repair Wheel guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { InvertSteeringAction { actionGroup = None } LockSteeringAction { actionGroup = None } UnlockSteeringAction { actionGroup = None } ToggleSteeringAction { actionGroup = None } ToggleMotorAction { actionGroup = None } BrakesAction { actionGroup = Brakes } } } MODULE { name = FXModuleLookAtConstraint isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = FXModuleConstrainPosition isEnabled = True EVENTS { } ACTIONS { } } } PART { name = FuelCell cid = 4294099450 uid = 3572803135 mid = 1186405287 launchID = 26 parent = 10 position = 0.0265405476093292,0.0584602355957031,0.341664373874664 rotation = 0.5000004,-0.4999999,-0.4999999,0.5000001 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 10 mass = 0.05 temp = 296.850246214835 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = FuelCell modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleResourceConverter isEnabled = True HeatThrottle = 1 HeatThrottleSpeed = 0.05 avgHeatThrottle = 1 DirtyFlag = False EfficiencyBonus = 1 IsActivated = False lastUpdateTime = 547306.745668615 EVENTS { StartResourceConverter { active = True guiActive = True guiIcon = Start Converter guiName = Start Fuel Cell category = Start Converter guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } StopResourceConverter { active = False guiActive = True guiIcon = Stop Converter guiName = Stop Fuel Cell category = Stop Converter guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { StopResourceConverterAction { actionGroup = None } StartResourceConverterAction { actionGroup = None } } } RESOURCE { name = ElectricCharge amount = 21.8230797123056 maxAmount = 50 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = strutCube cid = 4294212306 uid = 3935551661 mid = 1186405287 launchID = 26 parent = 0 position = -0.0950885564088821,-0.00981998443603516,-0.407893687486649 rotation = 6.021457E-08,0.7071068,-0.7071068,6.021457E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 10 srfN = srfAttach, 0 attN = None, -1 attN = None, -1 mass = 0.001 temp = 301.428588999103 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = roverWheel2 cid = 4294179410 uid = 423234701 mid = 1186405287 launchID = 26 parent = 13 position = -0.313583731651306,-0.444979667663574,-0.379610300064087 rotation = 8.429372E-08,-4.470349E-08,-2.533198E-07,-1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 11 srfN = srfAttach, 13 mass = 0.05 temp = 297.902361306141 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = roverWheel2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleWheel isEnabled = True brakeTorque = 180 brakesEngaged = True steeringLocked = False isDamaged = False invertSteering = False motorEnabled = True brakeTorque_UIFlight { controlEnabled = True minValue = 0 maxValue = 30 stepIncrement = 1 } EVENTS { UnLockSteering { active = False guiActive = True guiActiveEditor = True guiIcon = Unlock Steering guiName = Unlock Steering category = Unlock Steering guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } LockSteering { active = True guiActive = True guiActiveEditor = True guiIcon = Lock Steering guiName = Lock Steering category = Lock Steering guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EnableMotor { active = False guiActive = True guiActiveEditor = True guiIcon = Enable Motor guiName = Enable Motor category = Enable Motor guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DisableMotor { active = True guiActive = True guiActiveEditor = True guiIcon = Disable Motor guiName = Disable Motor category = Disable Motor guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } InvertSteering { active = True guiActive = True guiActiveEditor = True guiIcon = Invert Steering guiName = Invert Steering category = Invert Steering guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } RepairWheel { active = False guiActive = False guiIcon = Repair Wheel guiName = Repair Wheel category = Repair Wheel guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { InvertSteeringAction { actionGroup = None } LockSteeringAction { actionGroup = None } UnlockSteeringAction { actionGroup = None } ToggleSteeringAction { actionGroup = None } ToggleMotorAction { actionGroup = None } BrakesAction { actionGroup = Brakes } } } MODULE { name = FXModuleLookAtConstraint isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = FXModuleConstrainPosition isEnabled = True EVENTS { } ACTIONS { } } } PART { name = solarPanels5 cid = 4294119296 uid = 211186332 mid = 1186405287 launchID = 26 parent = 14 position = -0.170847624540329,0.122480392456055,-0.479458808898926 rotation = -0.6086389,0.01224018,-0.01594354,0.7931929 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 14 mass = 0.005 temp = 300.051602352194 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0, 0, 0, 1) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 0 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = False guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = sensorAccelerometer cid = 4294066770 uid = 871346768 mid = 1186405287 launchID = 26 parent = 13 position = -0.0119163766503334,-0.026860237121582,-0.512402296066284 rotation = -0.5000002,0.4999999,-0.5,0.5000001 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 13 mass = 0.005 temp = 301.98331145906 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = sensorAccelerometer modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False EVENTS { Toggle { active = True guiActive = True guiIcon = Toggle Display guiName = Toggle Display category = Toggle Display guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Log Seismic Data category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data category = guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Data category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Log Seismic Data category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } } PART { name = batteryBankMini cid = 4294155078 uid = 2226296327 mid = 1186405287 launchID = 26 parent = 0 position = 0,-0.121199607849121,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 0 attN = None, -1 mass = 0.01 temp = 299.547683472161 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 171.82307971255 maxAmount = 200 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = seatExternalCmd cid = 4294110810 uid = 3839644598 mid = 1186405287 launchID = 26 parent = 0 position = -0.0078778462484479,0.250699996948242,-0.0185090005397797 rotation = -0.7071068,0,0,-0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 0 mass = 0.05 temp = 296.589792756503 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = seatExternalCmd modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = KerbalSeat isEnabled = True EVENTS { BoardSeat { active = True guiActive = False guiIcon = Board guiName = Board category = Board guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleTripLogger isEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Land,Kerbin } } } ACTIONGROUPS { Stage = False, 0 Gear = True, 543682.588165875 Light = True, 543679.748165873 RCS = False, 0 SAS = False, 0 Brakes = True, 543688.268165881 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } } VESSEL { pid = 1bff32f00f1d4b2284e42f03b1b583bd name = Mitcan Kerman type = EVA sit = LANDED landed = True landedAt = KSC splashed = False met = 3594.6975027119 lct = 543712.048165903 root = 0 lat = -0.0788014966998966 lon = 285.432249457091 alt = 64.8981536545325 hgt = 0.2268816 nrm = -0.0004432719,0.9999999,-0.0003430044 rot = 0.6480588,0.4451105,-0.2831413,-0.5492973 CoM = -0.007229209,0.2081625,0.02258709 stg = 0 prst = False ref = 0 ctrl = True cPch = 0 cHdg = 0 cMod = 0 ORBIT { SMA = 300032.553152827 ECC = 1 INC = NaN LPE = 8.90272002180713 LAN = 310.878134749444 MNA = 3.14159265358979 EPH = 547458.665668757 REF = 1 } PART { name = kerbalEVA cid = 4293822534 uid = 3703128715 mid = 1892272770 launchID = 27 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 mass = 0.09375 temp = 300.266777144574 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = referenceTransform modCost = 0 crew = Mitcan Kerman EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = KerbalEVA isEnabled = True state = Idle (Grounded) step = 1.208333 packExt = False lightOn = False flags = 1 EVENTS { PlantFlag { active = False guiActive = True guiIcon = Plant Flag [1] guiName = Plant Flag [1] category = Plant Flag [1] guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } MakeReference { active = False guiActive = True guiIcon = Control From Here guiName = Control From Here category = Control From Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OnDeboardSeat { active = False guiActive = True guiIcon = Leave Seat guiName = Leave Seat category = Leave Seat guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } RenameVessel { active = False guiActive = True guiIcon = Rename Vessel guiName = Rename Vessel category = Rename Vessel guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } vInfo { vesselName = Mitcan Kerman vesselType = 9 rootUId = 3703128715 } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Take Surface Sample category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data category = guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Sample category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Discard Sample category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Take Surface Sample category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Discard Sample category = Reset guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None active = False } ResetAction { actionGroup = None active = False } } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = EVA Report category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data category = guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Report category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Discard Report category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = EVA Report category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Discard Report category = Reset guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None active = False } ResetAction { actionGroup = None active = False } } } MODULE { name = ModuleScienceContainer isEnabled = True EVENTS { StoreDataExternalEvent { active = False guiActive = False guiIcon = guiName = Give Data (0) category = guiActiveUnfocused = True unfocusedRange = 1 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data (0) category = guiActiveUnfocused = True unfocusedRange = 1 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Stored Data (0) category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = FlagDecal isEnabled = True flagDisplayed = True EVENTS { ToggleFlag { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle Flag guiName = Toggle Flag category = Toggle Flag guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleTripLogger isEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Flight,Kerbin 0 = Land,Kerbin } } RESOURCE { name = EVA Propellant amount = 5 maxAmount = 5 flowState = True isTweakable = False hideFlow = False flowMode = Both } } ACTIONGROUPS { Stage = False, 0 Gear = True, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } } VESSEL { pid = 26cd8cf4ff9e4a6fbe38a41eed60c710 name = Science Probe type = Probe sit = ORBITING landed = False landedAt = splashed = False met = 2438.5476800988 lct = 544817.057988469 root = 0 lat = -1.34251225273108E-06 lon = 104.157223949676 alt = 1000011.53291469 hgt = -1 nrm = 0.08423676,1.269151E-05,-0.9964458 rot = -0.6974189,0.704769,-0.1166368,0.05747428 CoM = 7.685058E-09,-0.2915043,8.269456E-09 stg = 1 prst = False ref = 3020944148 ctrl = True cPch = cHdg = cMod = 0 ORBIT { SMA = 1600000.04781794 ECC = 8.15794799184827E-06 INC = 1.70754729250319E-06 LPE = 145.996216358815 LAN = 17.4971863070955 MNA = 2.64641967891268 EPH = 547255.625668568 REF = 1 } PART { name = probeCoreOcto cid = 4294714758 uid = 3020944148 mid = 3534564635 launchID = 30 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = bottom, 6 attN = top, 1 mass = 0.1 temp = 280.759537657825 expt = 0 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = probeCoreOcto modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True controlSrcStatusText = Operational EVENTS { MakeReference { active = True guiActive = True guiIcon = Control From Here guiName = Control From Here category = Control From Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } RenameVessel { active = True guiActive = True guiIcon = Rename Vessel guiName = Rename Vessel category = Rename Vessel guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleReactionWheel isEnabled = True stateString = Running WheelState = Active EVENTS { OnToggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle Torque guiName = Toggle Torque category = Toggle Torque guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True standaloneToggle_UIFlight { controlEnabled = True } EVENTS { } ACTIONS { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 20 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = Prograde Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 547255.625668568 ExtraDelay = -0.00014384211149121 CmdGuid = a546bd72-cd8d-4873-b402-5992e77e8aa8 } } Commands { } } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 EVENTS { } ACTIONS { } } MODULE { name = ModuleTripLogger isEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = longAntenna cid = 4294707010 uid = 3561755821 mid = 3534564635 launchID = 30 parent = 0 position = 0,0.187080383300781,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = bottom, 0 mass = 0.005 temp = 280.983141676816 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = longAntenna modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0.9922943 animSpeed = 1 EVENTS { Toggle { active = False guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Retract category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 2500000 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True EVENTS { } ACTIONS { } } } PART { name = ksp.r.largeBatteryPack cid = 4294695798 uid = 4061321487 mid = 3534564635 launchID = 30 parent = 0 position = -0.343487590551376,-0.0523300170898438,2.04734593722833E-08 rotation = 0,0.7071068,0,0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 srfN = srfAttach, 0 mass = 0.02 temp = 280.507400077695 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = ksp.r.largeBatteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 400 maxAmount = 400 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = ksp.r.largeBatteryPack cid = 4294695212 uid = 2199946670 mid = 3534564635 launchID = 30 parent = 0 position = 5.56043725010591E-16,-0.0523300170898438,0.343487590551376 rotation = 0,1,0,8.42937E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 2 sym = 4 sym = 5 srfN = srfAttach, 0 mass = 0.02 temp = 280.457677375709 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = ksp.r.largeBatteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 400 maxAmount = 400 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = ksp.r.largeBatteryPack cid = 4294695184 uid = 3506617752 mid = 3534564635 launchID = 30 parent = 0 position = 0.343487590551376,-0.0523300170898438,-5.0502091397675E-08 rotation = 0,0.7071068,0,-0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 2 sym = 3 sym = 5 srfN = srfAttach, 0 mass = 0.02 temp = 280.500760653545 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = ksp.r.largeBatteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 400 maxAmount = 400 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = ksp.r.largeBatteryPack cid = 4294695156 uid = 1782647309 mid = 3534564635 launchID = 30 parent = 0 position = -4.09469116391392E-08,-0.0523300170898438,-0.343487590551376 rotation = 0,8.42937E-08,0,-1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 2 sym = 3 sym = 4 srfN = srfAttach, 0 mass = 0.02 temp = 280.436487194937 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = ksp.r.largeBatteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 400 maxAmount = 400 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = sasModule cid = 4294681306 uid = 4027941423 mid = 3534564635 launchID = 30 parent = 0 position = 0,-0.278189659118652,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = bottom, 7 attN = top, 0 mass = 0.05 temp = 281.928784097105 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = sasModule modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True stateString = Running WheelState = Active EVENTS { OnToggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle Torque guiName = Toggle Torque category = Toggle Torque guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } } } PART { name = fuelTankSmallFlat cid = 4294671446 uid = 2282349081 mid = 3534564635 launchID = 30 parent = 6 position = 0,-0.494709968566895,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 6 attN = bottom, 8 mass = 0.0625 temp = 282.262366232801 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = fuelTankSmallFlat modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 45 maxAmount = 45 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = Oxidizer amount = 55 maxAmount = 55 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = microEngine cid = 4294607800 uid = 300846022 mid = 3534564635 launchID = 30 parent = 7 position = 0,-0.807209968566895,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 7 attN = None, -1 mass = 0.02 temp = 282.223488883205 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = microEngine modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False thrustPercentage_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 0.5 } EVENTS { Activate { active = True guiActive = True guiIcon = Activate Engine guiName = Activate Engine category = Activate Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } Shutdown { active = False guiActive = True guiIcon = Shutdown Engine guiName = Shutdown Engine category = Shutdown Engine guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = None } } } MODULE { name = ModuleTestSubject isEnabled = True EVENTS { RunTestEvent { active = False guiActive = True guiIcon = Run Test guiName = Run Test category = Run Test guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } } PART { name = strutCube cid = 4294655816 uid = 2833910334 mid = 3534564635 launchID = 30 parent = 0 position = -0.227985203266144,-0.13955020904541,-0.227985098958015 rotation = -0.2705976,0.6532817,-0.6532817,-0.2705976 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 11 srfN = srfAttach, 0 attN = None, -1 attN = None, -1 mass = 0.001 temp = 278.184359407446 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = solarPanels4 cid = 4294635628 uid = 1360495175 mid = 3534564635 launchID = 30 parent = 9 position = -0.317418336868286,-0.151309967041016,-0.294115513563156 rotation = -0.9238794,3.340437E-09,-0.382684,-4.700306E-08 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 12 srfN = srfAttach, 9 mass = 0.0175 temp = 285.950959108341 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (-0.4168071, -0.4168093, 0.5712023, -0.5712004) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 1 EVENTS { Retract { active = True guiActive = False guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = strutCube cid = 4294654868 uid = 2806702363 mid = 3534564635 launchID = 30 parent = 0 position = 0.227985203266144,-0.13955020904541,0.227985098958015 rotation = -0.6532817,-0.2705976,0.2705976,-0.6532817 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 9 srfN = srfAttach, 0 attN = None, -1 attN = None, -1 mass = 0.001 temp = 277.895758948066 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = solarPanels4 cid = 4294633328 uid = 2624572878 mid = 3534564635 launchID = 30 parent = 11 position = 0.317418307065964,-0.151309967041016,0.294115543365479 rotation = -0.382684,-4.700306E-08,0.9238794,-3.340437E-09 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 10 srfN = srfAttach, 11 mass = 0.0175 temp = 285.950942553068 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (0.5712014, 0.5712014, -0.41681, 0.416806) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 1 EVENTS { Retract { active = True guiActive = False guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = GooExperiment cid = 4294624802 uid = 3161010133 mid = 3534564635 launchID = 30 parent = 0 position = 0.18347130715847,-0.0922298431396484,-0.174837395548821 rotation = 0,0.3826832,0,-0.9238797 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 14 srfN = srfAttach, 0 mass = 0.05 temp = 280.685080759287 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = GooExperiment modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Deploy category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Observe Mystery Goo category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Collect Data category = guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Data category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Reset Goo Canister category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Observe Mystery Goo category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Reset Goo Canister category = Reset guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } } PART { name = GooExperiment cid = 4294624588 uid = 2315981017 mid = 3534564635 launchID = 30 parent = 0 position = -0.183471202850342,-0.0922298431396484,0.174837395548821 rotation = 0,-0.9238797,0,-0.3826831 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 13 srfN = srfAttach, 0 mass = 0.05 temp = 280.671601066057 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = GooExperiment modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Deploy category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Observe Mystery Goo category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Collect Data category = guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Data category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Reset Goo Canister category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Observe Mystery Goo category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Reset Goo Canister category = Reset guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } } PART { name = sensorBarometer cid = 4294623642 uid = 501993912 mid = 3534564635 launchID = 30 parent = 0 position = -0.00348311709240079,0.174909591674805,-0.215409994125366 rotation = 0,0.7071068,-0.7071068,0 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 16 srfN = srfAttach, 0 mass = 0.005 temp = 279.844960472882 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = sensorBarometer modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False EVENTS { Toggle { active = True guiActive = True guiIcon = Toggle Display guiName = Toggle Display category = Toggle Display guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Log Pressure Data category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data category = guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Data category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Log Pressure Data category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } } PART { name = sensorBarometer cid = 4294623488 uid = 3179979512 mid = 3534564635 launchID = 30 parent = 0 position = 0.00348313502036035,0.174909591674805,0.215409994125366 rotation = -0.7071068,-3.090862E-08,3.090862E-08,-0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 15 srfN = srfAttach, 0 mass = 0.005 temp = 280.302993115641 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = sensorBarometer modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False EVENTS { Toggle { active = True guiActive = True guiIcon = Toggle Display guiName = Toggle Display category = Toggle Display guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Log Pressure Data category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data category = guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Data category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Log Pressure Data category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } } PART { name = sensorAccelerometer cid = 4294621326 uid = 1898577160 mid = 3534564635 launchID = 30 parent = 0 position = -0.196619004011154,0.174909591674805,-0.134135693311691 rotation = 0,0.7071068,-0.7071068,0 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 18 srfN = srfAttach, 0 mass = 0.005 temp = 279.892295115838 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = sensorAccelerometer modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False EVENTS { Toggle { active = True guiActive = True guiIcon = Toggle Display guiName = Toggle Display category = Toggle Display guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Log Seismic Data category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data category = guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Data category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Log Seismic Data category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } } PART { name = sensorAccelerometer cid = 4294621120 uid = 3164355662 mid = 3534564635 launchID = 30 parent = 0 position = 0.196619004011154,0.174909591674805,0.134135693311691 rotation = -0.7071068,-3.090862E-08,3.090862E-08,-0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 17 srfN = srfAttach, 0 mass = 0.005 temp = 280.79687060938 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = sensorAccelerometer modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False EVENTS { Toggle { active = True guiActive = True guiIcon = Toggle Display guiName = Toggle Display category = Toggle Display guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Log Seismic Data category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data category = guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Data category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Log Seismic Data category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } } PART { name = sensorThermometer cid = 4294620252 uid = 950702369 mid = 3534564635 launchID = 30 parent = 0 position = 0.208282500505447,0.174909591674805,-0.113747701048851 rotation = 0,0.7071068,-0.7071068,0 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 20 srfN = srfAttach, 0 mass = 0.005 temp = 281.09119233935 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = sensorThermometer modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False EVENTS { Toggle { active = True guiActive = True guiIcon = Toggle Display guiName = Toggle Display category = Toggle Display guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Log Temperature category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data category = guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Data category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Log Temperature category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } } PART { name = sensorThermometer cid = 4294620068 uid = 2513327896 mid = 3534564635 launchID = 30 parent = 0 position = -0.208282500505447,0.174909591674805,0.113747701048851 rotation = -0.7071068,-3.090862E-08,3.090862E-08,-0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 19 srfN = srfAttach, 0 mass = 0.005 temp = 281.479714193601 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = sensorThermometer modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False EVENTS { Toggle { active = True guiActive = True guiIcon = Toggle Display guiName = Toggle Display category = Toggle Display guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Log Temperature category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data category = guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Data category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Log Temperature category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Delete Data category = Reset guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } } ACTIONGROUPS { Stage = False, 0 Gear = True, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = -2.416234E-05 yaw = 1.693363E-05 roll = 6.150856E-08 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } } VESSEL { pid = 699044bb32314c4fb400b1c23b70b02d name = Science Station type = Station sit = ORBITING landed = False landedAt = splashed = False met = 136.080000126734 lct = 547306.725668615 root = 0 lat = -3.02222286821521E-05 lon = 201.677554428705 alt = 2299996.71600375 hgt = -1 nrm = 0.6321284,-0.7137736,-0.3015646 rot = 0.1176888,0.1759187,-0.8580869,0.4678556 CoM = 0.001822669,-3.05827,0.0005172052 stg = 1 prst = False ref = 1240134752 ctrl = True cPch = cHdg = cMod = 0 ORBIT { SMA = 2899992.97731213 ECC = 3.81939705451546E-06 INC = 4.75361048152307E-06 LPE = 57.9506229104211 LAN = 235.487053356431 MNA = 2.13495959214121 EPH = 547442.825668742 REF = 1 } PART { name = Mark1-2Pod cid = 4294443518 uid = 1240134752 mid = 1440206743 launchID = 31 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = bottom, 1 attN = top, 27 mass = 4 temp = 287.670357954063 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = Mark1-2Pod modCost = 0 crew = Leacine Kerman EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True controlSrcStatusText = Operational EVENTS { MakeReference { active = True guiActive = True guiIcon = Control From Here guiName = Control From Here category = Control From Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } RenameVessel { active = True guiActive = True guiIcon = Rename Vessel guiName = Rename Vessel category = Rename Vessel guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleReactionWheel isEnabled = True stateString = Running WheelState = Active EVENTS { OnToggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle Torque guiName = Toggle Torque category = Toggle Torque guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Crew Report category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data category = guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Report category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Discard Crew Report category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Crew Report category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Discard Crew Report category = Reset guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } MODULE { name = ModuleScienceContainer isEnabled = True EVENTS { StoreDataExternalEvent { active = False guiActive = False guiIcon = guiName = Store Experiments (0) category = guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data (0) category = guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Stored Data (0) category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = FlagDecal isEnabled = True flagDisplayed = True EVENTS { ToggleFlag { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle Flag guiName = Toggle Flag category = Toggle Flag guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleTripLogger isEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } } RESOURCE { name = ElectricCharge amount = 150 maxAmount = 150 flowState = True isTweakable = True hideFlow = False flowMode = Both } RESOURCE { name = MonoPropellant amount = 30 maxAmount = 30 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = Large.Crewed.Lab cid = 4294431962 uid = 401588587 mid = 1440206743 launchID = 31 parent = 0 position = 0,-2.14173030853271,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 0 attN = bottom, 2 mass = 3.5 temp = 287.667447407825 expt = 0.5 state = 1 connected = True attached = True flag = Squad/Flags/default rTrf = Large.Crewed.Lab modCost = 0 crew = Hanlock Kerman crew = Tomdred Kerman EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleScienceContainer isEnabled = True EVENTS { StoreDataExternalEvent { active = False guiActive = False guiIcon = guiName = Store Experiments (0) category = guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Take Data (0) category = guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Data (0) category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleScienceLab isEnabled = True dataStored = 0 storedScience = 0 EVENTS { TransmitScience { active = True guiActive = True guiIcon = Transmit Science guiName = Transmit Science category = Transmit Science guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CleanModulesEvent { active = False guiActive = True guiIcon = Clean Experiments guiName = Clean Experiments [0] category = Clean Experiments guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { } EXPERIMENT_DATA { } } MODULE { name = ModuleScienceConverter isEnabled = True HeatThrottle = 1 HeatThrottleSpeed = 0.05 avgHeatThrottle = 1 DirtyFlag = False EfficiencyBonus = 1 IsActivated = False lastUpdateTime = 547442.825668742 EVENTS { StartResourceConverter { active = True guiActive = True guiIcon = Start Converter guiName = Start Research category = Start Converter guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } StopResourceConverter { active = False guiActive = True guiIcon = Stop Converter guiName = Stop Research category = Stop Converter guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { StopResourceConverterAction { actionGroup = None } StartResourceConverterAction { actionGroup = None } } } MODULE { name = FlagDecal isEnabled = True flagDisplayed = True EVENTS { ToggleFlag { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle Flag guiName = Toggle Flag category = Toggle Flag guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleTripLogger isEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } } } PART { name = ServiceBay.250 cid = 4294404716 uid = 492629225 mid = 1440206743 launchID = 31 parent = 1 position = 0,-4.62273025512695,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = None, -1 attN = bottom2, 3 attN = top, 1 attN = bottom, 6 mass = 0.3 temp = 287.648366507321 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = ServiceBay.250 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = False animTime = 1 animSpeed = 1 EVENTS { Toggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle guiName = Close category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } MODULE { name = ModuleCargoBay isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = ModuleSeeThroughObject isEnabled = True EVENTS { } ACTIONS { } } MODULE { name = ModuleConductionMultiplier isEnabled = True EVENTS { } ACTIONS { } } } PART { name = science.module cid = 4294286948 uid = 3030990683 mid = 1440206743 launchID = 31 parent = 2 position = 0,-4.66022968292236,0 rotation = 0,0.7071068,0,0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = None, -1 attN = bottom, 2 mass = 0.2 temp = 287.60686673433 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = science.module modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Deploy category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Observe Materials Bay category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Collect Data category = guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Data category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Reset Materials Bay category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Observe Materials Bay category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Reset Materials Bay category = Reset guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } } PART { name = GooExperiment cid = 4294282234 uid = 3452190979 mid = 1440206743 launchID = 31 parent = 2 position = 0.0575965605676174,-5.26272773742676,-0.846850574016571 rotation = -0.4999999,-0.4999999,0.5000001,-0.5000001 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 5 srfN = srfAttach, 2 mass = 0.05 temp = 287.452656095727 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = GooExperiment modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Deploy category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Observe Mystery Goo category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Collect Data category = guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Data category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Reset Goo Canister category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Observe Mystery Goo category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Reset Goo Canister category = Reset guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } } PART { name = GooExperiment cid = 4294278256 uid = 2149505121 mid = 1440206743 launchID = 31 parent = 2 position = -0.0575964897871017,-5.26272773742676,0.846850574016571 rotation = 0.5000001,-0.5000001,0.4999999,0.5 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 4 srfN = srfAttach, 2 mass = 0.05 temp = 287.452656095678 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = GooExperiment modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = 1 EVENTS { Toggle { active = True guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Deploy category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False EVENTS { DeployExperiment { active = True guiActive = True guiIcon = Deploy guiName = Observe Mystery Goo category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiIcon = guiName = Collect Data category = guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiIcon = Review Data guiName = Review Data category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = False guiActive = True guiIcon = Reset guiName = Reset Goo Canister category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiIcon = Deploy guiName = Observe Mystery Goo category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = False guiActive = False guiIcon = Reset guiName = Reset Goo Canister category = Reset guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } CleanUpExperimentExternal { active = False guiActive = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 1.2 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } } PART { name = batteryBankLarge cid = 4294250096 uid = 1632403397 mid = 1440206743 launchID = 31 parent = 2 position = 0,-5.38272666931152,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 2 attN = bottom, 7 mass = 0.2 temp = 287.671173399676 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryBankLarge modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 4000 maxAmount = 4000 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryBankLarge cid = 4294249326 uid = 2443718668 mid = 1440206743 launchID = 31 parent = 6 position = 0,-5.61772632598877,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 6 attN = bottom, 8 mass = 0.2 temp = 287.681177483339 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryBankLarge modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 4000 maxAmount = 4000 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = batteryBankLarge cid = 4294248914 uid = 1874783165 mid = 1440206743 launchID = 31 parent = 7 position = 0,-5.85272598266602,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 7 attN = bottom, 9 mass = 0.2 temp = 287.693536033481 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = batteryBankLarge modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 4000 maxAmount = 4000 flowState = True isTweakable = True hideFlow = False flowMode = Both } } PART { name = largeAdapter2 cid = 4294386242 uid = 1100980269 mid = 1440206743 launchID = 31 parent = 8 position = 0,-6.16694259643555,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 8 attN = bottom, 10 mass = 0.08 temp = 287.72949080428 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = largeAdapter2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = stationHub cid = 4294335050 uid = 694043079 mid = 1440206743 launchID = 31 parent = 9 position = 0,-7.26831197738647,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = right, 15 attN = left, 11 attN = back, 21 attN = front, 19 attN = top, 9 attN = bottom, 23 mass = 1.5 temp = 287.832920555143 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = stationHub modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = Mk1FuselageStructural cid = 4294339462 uid = 1474639633 mid = 1440206743 launchID = 31 parent = 10 position = -1.84965300559998,-7.26831197738647,0 rotation = 0.5,0.5,-0.5,0.5 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 10 attN = bottom, 12 mass = 0.1 temp = 287.823061280319 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = Mk1FuselageStructural modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = dockingPortLateral cid = 4294331050 uid = 292361420 mid = 1440206743 launchID = 31 parent = 11 position = -3.36246609687805,-7.26831197738647,0 rotation = 0,0,0.7071068,-0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 0 srfN = None, -1 attN = top, 11 attN = bottom, 13 mass = 0.3 temp = 287.79642972039 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = dockingPortLateral modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDockingNode isEnabled = True state = Ready dockUId = 0 dockNodeIdx = 0 EVENTS { Undock { active = False guiActive = True guiIcon = Undock guiName = Undock category = Undock guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } UndockSameVessel { active = False guiActive = True guiIcon = Undock guiName = Undock category = Undock guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } Decouple { active = False guiActive = True guiIcon = Decouple Node guiName = Decouple Node category = Decouple Node guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } SetAsTarget { active = True guiActive = False guiIcon = Set as Target guiName = Set as Target category = Set as Target guiActiveUnfocused = True unfocusedRange = 200 externalToEVAOnly = False } UnsetTarget { active = False guiActive = False guiIcon = Unset Target guiName = Unset Target category = Unset Target guiActiveUnfocused = True unfocusedRange = 200 externalToEVAOnly = False } EnableXFeed { active = False guiActive = True guiIcon = Enable Crossfeed guiName = Enable Crossfeed category = Enable Crossfeed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DisableXFeed { active = False guiActive = True guiIcon = Disable Crossfeed guiName = Disable Crossfeed category = Disable Crossfeed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } MakeReferenceTransform { active = True guiActive = True guiIcon = Control from Here guiName = Control from Here category = Control from Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { UndockAction { actionGroup = None } DecoupleAction { actionGroup = None } } } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = False animTime = 1 animSpeed = 1 EVENTS { Toggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle guiName = Close category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = adapterSmallMiniTall cid = 4294329216 uid = 3896331686 mid = 1440206743 launchID = 31 parent = 12 position = -4.31277942657471,-7.26831197738647,0 rotation = -0.5000001,0.5000001,-0.5000001,-0.5000001 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 0 srfN = None, -1 attN = top, 14 attN = bottom, 12 mass = 0.05 temp = 287.713396815293 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = adapterSmallMiniTall modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = dockingPort3 cid = 4294309874 uid = 2788651356 mid = 1440206743 launchID = 31 parent = 13 position = -4.62527942657471,-7.26831197738647,0 rotation = -0.5000001,0.5000001,-0.5000001,-0.5000001 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 0 srfN = None, -1 attN = None, -1 attN = bottom, 13 mass = 0.02 temp = 287.634711924522 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = dockingPort3 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDockingNode isEnabled = True state = Ready dockUId = 0 dockNodeIdx = 0 EVENTS { Undock { active = False guiActive = True guiIcon = Undock guiName = Undock category = Undock guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } UndockSameVessel { active = False guiActive = True guiIcon = Undock guiName = Undock category = Undock guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } Decouple { active = False guiActive = True guiIcon = Decouple Node guiName = Decouple Node category = Decouple Node guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } SetAsTarget { active = True guiActive = False guiIcon = Set as Target guiName = Set as Target category = Set as Target guiActiveUnfocused = True unfocusedRange = 200 externalToEVAOnly = False } UnsetTarget { active = False guiActive = False guiIcon = Unset Target guiName = Unset Target category = Unset Target guiActiveUnfocused = True unfocusedRange = 200 externalToEVAOnly = False } EnableXFeed { active = False guiActive = True guiIcon = Enable Crossfeed guiName = Enable Crossfeed category = Enable Crossfeed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DisableXFeed { active = False guiActive = True guiIcon = Disable Crossfeed guiName = Disable Crossfeed category = Disable Crossfeed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } MakeReferenceTransform { active = True guiActive = True guiIcon = Control from Here guiName = Control from Here category = Control from Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { UndockAction { actionGroup = None } DecoupleAction { actionGroup = None } } } } PART { name = Mk1FuselageStructural cid = 4294333660 uid = 3517613035 mid = 1440206743 launchID = 31 parent = 10 position = 1.84965300559998,-7.26831197738647,0 rotation = 0.5,0.5,-0.5,0.5 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = top, 16 attN = bottom, 10 mass = 0.1 temp = 287.854802191057 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = Mk1FuselageStructural modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = dockingPortLateral cid = 4294361338 uid = 3308936081 mid = 1440206743 launchID = 31 parent = 15 position = 3.36246609687805,-7.26831197738647,0 rotation = 0,0,0.7071068,-0.7071068 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 0 srfN = None, -1 attN = top, 17 attN = bottom, 15 mass = 0.3 temp = 287.865186395286 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = dockingPortLateral modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDockingNode isEnabled = True state = Ready dockUId = 0 dockNodeIdx = 0 EVENTS { Undock { active = False guiActive = True guiIcon = Undock guiName = Undock category = Undock guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } UndockSameVessel { active = False guiActive = True guiIcon = Undock guiName = Undock category = Undock guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } Decouple { active = False guiActive = True guiIcon = Decouple Node guiName = Decouple Node category = Decouple Node guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } SetAsTarget { active = True guiActive = False guiIcon = Set as Target guiName = Set as Target category = Set as Target guiActiveUnfocused = True unfocusedRange = 200 externalToEVAOnly = False } UnsetTarget { active = False guiActive = False guiIcon = Unset Target guiName = Unset Target category = Unset Target guiActiveUnfocused = True unfocusedRange = 200 externalToEVAOnly = False } EnableXFeed { active = False guiActive = True guiIcon = Enable Crossfeed guiName = Enable Crossfeed category = Enable Crossfeed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DisableXFeed { active = False guiActive = True guiIcon = Disable Crossfeed guiName = Disable Crossfeed category = Disable Crossfeed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } MakeReferenceTransform { active = True guiActive = True guiIcon = Control from Here guiName = Control from Here category = Control from Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { UndockAction { actionGroup = None } DecoupleAction { actionGroup = None } } } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = False animTime = 1 animSpeed = 1 EVENTS { Toggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle guiName = Close category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } PART { name = adapterSmallMiniTall cid = 4294328514 uid = 2234045340 mid = 1440206743 launchID = 31 parent = 16 position = 4.31277942657471,-7.26831197738647,0 rotation = -0.5000001,-0.5000001,-0.5000001,0.5000001 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 0 srfN = None, -1 attN = top, 18 attN = bottom, 16 mass = 0.05 temp = 287.847814185822 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = adapterSmallMiniTall modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = dockingPort3 cid = 4294309158 uid = 995978884 mid = 1440206743 launchID = 31 parent = 17 position = 4.62527942657471,-7.26831197738647,0 rotation = -0.5000001,-0.5000001,0.5000001,-0.5000001 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 2 sidx = -1 attm = 0 srfN = None, -1 attN = None, -1 attN = bottom, 17 mass = 0.02 temp = 287.785100406427 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = dockingPort3 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDockingNode isEnabled = True state = Ready dockUId = 0 dockNodeIdx = 0 EVENTS { Undock { active = False guiActive = True guiIcon = Undock guiName = Undock category = Undock guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } UndockSameVessel { active = False guiActive = True guiIcon = Undock guiName = Undock category = Undock guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } Decouple { active = False guiActive = True guiIcon = Decouple Node guiName = Decouple Node category = Decouple Node guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } SetAsTarget { active = True guiActive = False guiIcon = Set as Target guiName = Set as Target category = Set as Target guiActiveUnfocused = True unfocusedRange = 200 externalToEVAOnly = False } UnsetTarget { active = False guiActive = False guiIcon = Unset Target guiName = Unset Target category = Unset Target guiActiveUnfocused = True unfocusedRange = 200 externalToEVAOnly = False } EnableXFeed { active = False guiActive = True guiIcon = Enable Crossfeed guiName = Enable Crossfeed category = Enable Crossfeed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DisableXFeed { active = False guiActive = True guiIcon = Disable Crossfeed guiName = Disable Crossfeed category = Disable Crossfeed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } MakeReferenceTransform { active = True guiActive = True guiIcon = Control from Here guiName = Control from Here category = Control from Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { UndockAction { actionGroup = None } DecoupleAction { actionGroup = None } } } } PART { name = adapterSmallMiniTall cid = 4294326378 uid = 1584992726 mid = 1440206743 launchID = 31 parent = 10 position = 0,-7.26831197738647,-1.28715300559998 rotation = 0.5,-0.5,0.5,-0.5 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = None, -1 attN = bottom, 10 mass = 0.05 temp = 287.820442632191 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = adapterSmallMiniTall modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = largeSolarPanel cid = 4294318366 uid = 1812760977 mid = 1440206743 launchID = 31 parent = 19 position = 0.00441160518676043,-7.28471612930298,-1.58715295791626 rotation = 0.5,0.5,0.5,-0.5 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 19 mass = 0.3 temp = 287.819314982932 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = largeSolarPanel modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (-0.6876401, -0.6876329, -0.1647901, 0.1647916) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 1 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = adapterSmallMiniTall cid = 4294325648 uid = 1765930175 mid = 1440206743 launchID = 31 parent = 10 position = 0,-7.26831197738647,1.28715300559998 rotation = -0.5,-0.5,-0.5,-0.5 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = None, -1 attN = None, -1 attN = bottom, 10 mass = 0.05 temp = 287.831290175606 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = adapterSmallMiniTall modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = largeSolarPanel cid = 4294317244 uid = 1259676539 mid = 1440206743 launchID = 31 parent = 21 position = -0.00623810989782214,-7.30081701278687,1.58715295791626 rotation = 0.5,0.5,-0.5,0.5 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 21 mass = 0.3 temp = 287.791807073311 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = largeSolarPanel modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True currentRotation = (-0.1647948, -0.1647878, -0.6876312, 0.6876417) stateString = EXTENDED storedAnimationTime = 0 storedAnimationSpeed = 1 EVENTS { Extend { active = False guiActive = True guiIcon = Extend Panels guiName = Extend Panels category = Extend Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } Retract { active = True guiActive = True guiIcon = Retract Panels guiName = Retract Panels category = Retract Panels guiActiveUnfocused = True unfocusedRange = 4 externalToEVAOnly = True } } ACTIONS { ExtendPanelsAction { actionGroup = None } ExtendAction { actionGroup = None } RetractAction { actionGroup = None } } } } PART { name = dockingPort2 cid = 4294311392 uid = 3437192356 mid = 1440206743 launchID = 31 parent = 10 position = 0,-8.18046569824219,0 rotation = 1,0,0,0 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 0 srfN = None, -1 attN = None, -1 attN = bottom, 10 mass = 0.05 temp = 287.920902876882 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = dockingPort2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDockingNode isEnabled = True state = Ready dockUId = 0 dockNodeIdx = 0 EVENTS { Undock { active = False guiActive = True guiIcon = Undock guiName = Undock category = Undock guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } UndockSameVessel { active = False guiActive = True guiIcon = Undock guiName = Undock category = Undock guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } Decouple { active = False guiActive = True guiIcon = Decouple Node guiName = Decouple Node category = Decouple Node guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } SetAsTarget { active = True guiActive = False guiIcon = Set as Target guiName = Set as Target category = Set as Target guiActiveUnfocused = True unfocusedRange = 200 externalToEVAOnly = False } UnsetTarget { active = False guiActive = False guiIcon = Unset Target guiName = Unset Target category = Unset Target guiActiveUnfocused = True unfocusedRange = 200 externalToEVAOnly = False } EnableXFeed { active = False guiActive = True guiIcon = Enable Crossfeed guiName = Enable Crossfeed category = Enable Crossfeed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DisableXFeed { active = False guiActive = True guiIcon = Disable Crossfeed guiName = Disable Crossfeed category = Disable Crossfeed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } MakeReferenceTransform { active = True guiActive = True guiIcon = Control from Here guiName = Control from Here category = Control from Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { UndockAction { actionGroup = None } DecoupleAction { actionGroup = None } } } } PART { name = spotLight2 cid = 4294306280 uid = 1618959625 mid = 1440206743 launchID = 31 parent = 1 position = 1.41223800182343,-3.70333957672119,1.7712820010729E-07 rotation = -0.2243676,0.6705664,-0.2243677,-0.6705663 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 25 srfN = srfAttach, 1 mass = 0.015 temp = 287.550955698131 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = spotLight2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLight isEnabled = True isOn = True lightR = 1 lightG = 0.6 lightB = 0.45 lightR_UIFlight { controlEnabled = True minValue = 0 maxValue = 1 stepIncrement = 0.05 } lightG_UIFlight { controlEnabled = True minValue = 0 maxValue = 1 stepIncrement = 0.05 } lightB_UIFlight { controlEnabled = True minValue = 0 maxValue = 1 stepIncrement = 0.05 } EVENTS { LightsOff { active = True guiActive = True guiActiveEditor = True guiIcon = Lights Off guiName = Lights Off category = Lights Off guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } LightsOn { active = False guiActive = True guiActiveEditor = True guiIcon = Lights On guiName = Lights On category = Lights On guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleLightAction { actionGroup = Light } LightOnAction { actionGroup = None } LightOffAction { actionGroup = None } } } } PART { name = spotLight2 cid = 4294304068 uid = 323835656 mid = 1440206743 launchID = 31 parent = 1 position = -1.41223800182343,-3.70333957672119,-5.36664188643954E-08 rotation = -0.2243677,-0.6705663,0.2243677,-0.6705663 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 24 srfN = srfAttach, 1 mass = 0.015 temp = 287.415929599618 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = spotLight2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleLight isEnabled = True isOn = True lightR = 1 lightG = 0.6 lightB = 0.45 lightR_UIFlight { controlEnabled = True minValue = 0 maxValue = 1 stepIncrement = 0.05 } lightG_UIFlight { controlEnabled = True minValue = 0 maxValue = 1 stepIncrement = 0.05 } lightB_UIFlight { controlEnabled = True minValue = 0 maxValue = 1 stepIncrement = 0.05 } EVENTS { LightsOff { active = True guiActive = True guiActiveEditor = True guiIcon = Lights Off guiName = Lights Off category = Lights Off guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } LightsOn { active = False guiActive = True guiActiveEditor = True guiIcon = Lights On guiName = Lights On category = Lights On guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleLightAction { actionGroup = Light } LightOnAction { actionGroup = None } LightOffAction { actionGroup = None } } } } PART { name = RTLongAntenna3 cid = 4294266192 uid = 3002986334 mid = 1440206743 launchID = 31 parent = 1 position = 1.21963405609131,-0.769889831542969,7.2695868880146E-08 rotation = 0.4999754,0.5000246,-0.4999754,0.5000246 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 1 mass = 0.02 temp = 287.663676004117 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = RTLongAntenna3 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0.9908162 animSpeed = 1 EVENTS { Toggle { active = False guiActive = False guiActiveEditor = True guiIcon = Toggle guiName = Retract category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None active = False } } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000000 RTDishRange = -1 RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { EventToggle { active = True guiActive = False guiIcon = guiName = Toggle category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventTarget { active = False guiActive = False guiIcon = Target guiName = No Target category = Target guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorOpen { active = True guiActive = False guiIcon = Start deployed guiName = Start deployed category = Start deployed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventEditorClose { active = True guiActive = False guiActiveEditor = True guiIcon = Start retracted guiName = Start retracted category = Start retracted guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventOpen { active = False guiActive = False guiIcon = guiName = Activate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } EventClose { active = True guiActive = True guiIcon = guiName = Deactivate category = guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } OverrideTarget { active = True guiActive = False guiIcon = [EVA] Set Target guiName = [EVA] Set Target category = [EVA] Set Target guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } OverrideOpen { active = True guiActive = False guiIcon = [EVA] Force Open guiName = [EVA] Force Open category = [EVA] Force Open guiActiveUnfocused = False unfocusedRange = 5 externalToEVAOnly = True } OverrideClose { active = True guiActive = False guiIcon = [EVA] Force Close guiName = [EVA] Force Close category = [EVA] Force Close guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False EVENTS { } ACTIONS { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True EVENTS { } ACTIONS { } } } PART { name = dockingPort1 cid = 4294222102 uid = 1822021027 mid = 1440206743 launchID = 31 parent = 0 position = 0,1.19849967956543,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 0 srfN = , 0 attN = bottom, 0 mass = 0.1 temp = 287.616652096932 expt = 0.5 state = 0 connected = True attached = True flag = Squad/Flags/default rTrf = dockingPort1 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDockingNode isEnabled = True state = Disabled dockUId = 0 dockNodeIdx = 0 EVENTS { Undock { active = False guiActive = True guiIcon = Undock guiName = Undock category = Undock guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } UndockSameVessel { active = False guiActive = True guiIcon = Undock guiName = Undock category = Undock guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } Decouple { active = False guiActive = True guiIcon = Decouple Node guiName = Decouple Node category = Decouple Node guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } SetAsTarget { active = True guiActive = False guiIcon = Set as Target guiName = Set as Target category = Set as Target guiActiveUnfocused = True unfocusedRange = 200 externalToEVAOnly = False } UnsetTarget { active = False guiActive = False guiIcon = Unset Target guiName = Unset Target category = Unset Target guiActiveUnfocused = True unfocusedRange = 200 externalToEVAOnly = False } EnableXFeed { active = False guiActive = True guiIcon = Enable Crossfeed guiName = Enable Crossfeed category = Enable Crossfeed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DisableXFeed { active = False guiActive = True guiIcon = Disable Crossfeed guiName = Disable Crossfeed category = Disable Crossfeed guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } MakeReferenceTransform { active = True guiActive = True guiIcon = Control from Here guiName = Control from Here category = Control from Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { UndockAction { actionGroup = None } DecoupleAction { actionGroup = None } } } MODULE { name = ModuleAnimateGeneric isEnabled = True status = Locked animSwitch = True animTime = 0 animSpeed = -1 EVENTS { Toggle { active = True guiActive = True guiActiveEditor = True guiIcon = Toggle guiName = Open Shield category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } } ACTIONGROUPS { Stage = False, 0 Gear = True, 0 Light = True, 547355.805668661 RCS = False, 547327.365668634 SAS = True, 547403.665668705 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = -0.0005715447 yaw = -0.0004468094 roll = 0.0002090918 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } } } ROSTER { KERBAL { name = Jebediah Kerman gender = Male type = Crew brave = 0.5 dumb = 0.5 badS = True tour = False state = Assigned ToD = 0 idx = 0 CAREER_LOG { flight = 1 0 = Recover } FLIGHT_LOG { flight = 1 1 = Orbit,Kerbin } } KERBAL { name = Bill Kerman gender = Male type = Crew brave = 0.5 dumb = 0.8 badS = False tour = False state = Assigned ToD = 0 idx = 0 CAREER_LOG { flight = 1 0 = Recover } FLIGHT_LOG { flight = 1 1 = Orbit,Kerbin } } KERBAL { name = Bob Kerman gender = Male type = Crew brave = 0.3 dumb = 0.1 badS = False tour = False state = Assigned ToD = 0 idx = 1 CAREER_LOG { flight = 1 0 = Recover } FLIGHT_LOG { flight = 1 1 = Orbit,Kerbin } } KERBAL { name = Valentina Kerman gender = Female type = Crew brave = 0.55 dumb = 0.4 badS = True tour = False state = Assigned ToD = 0 idx = 0 CAREER_LOG { flight = 1 0 = Recover } FLIGHT_LOG { flight = 1 1 = Orbit,Kerbin } } KERBAL { name = Kimne Kerman gender = Female type = Crew brave = 0.1636343 dumb = 0.2590614 badS = False tour = False state = Assigned ToD = 312912.532389954 idx = 0 CAREER_LOG { flight = 3 0 = Land,Kerbin 0 = Recover 1 = Land,Kerbin 1 = Flyby,Moho 1 = Orbit,Moho 1 = Suborbit,Moho 1 = Land,Moho 1 = Flyby,Kerbin 1 = Flight,Kerbin 1 = ExitVessel,Kerbin 1 = BoardVessel,Kerbin 1 = Recover 2 = Land,Kerbin 2 = Recover } FLIGHT_LOG { flight = 3 3 = Flyby,Duna 3 = Orbit,Duna } } KERBAL { name = Nedbart Kerman gender = Male type = Crew brave = 0.7151377 dumb = 0.5840977 badS = False tour = False state = Assigned ToD = 307009.928477601 idx = 2 CAREER_LOG { flight = 3 0 = Flight,Kerbin 0 = Land,Kerbin 0 = Recover 1 = Recover 2 = Recover } FLIGHT_LOG { flight = 3 3 = Flyby,Mun 3 = Orbit,Mun 3 = Suborbit,Mun 3 = Land,Mun } } KERBAL { name = Stelmy Kerman gender = Female type = Crew brave = 0.9815883 dumb = 0.08250616 badS = False tour = False state = Assigned ToD = 371123.1971391 idx = 1 CAREER_LOG { flight = 0 } FLIGHT_LOG { flight = 0 0 = Flyby,Duna 0 = Orbit,Duna } } KERBAL { name = Wilanne Kerman gender = Female type = Crew brave = 0.04314119 dumb = 0.4143925 badS = False tour = False state = Assigned ToD = 259525.971186951 idx = 2 CAREER_LOG { flight = 0 } FLIGHT_LOG { flight = 0 0 = Flyby,Duna 0 = Orbit,Duna } } KERBAL { name = Lodfield Kerman gender = Male type = Crew brave = 0.5562639 dumb = 0.1268668 badS = False tour = False state = Assigned ToD = 265014.033473328 idx = 0 CAREER_LOG { flight = 1 0 = Recover } FLIGHT_LOG { flight = 1 1 = Flyby,Mun 1 = Orbit,Mun 1 = Suborbit,Mun 1 = Land,Mun } } KERBAL { name = Matwin Kerman gender = Male type = Crew brave = 0.2611026 dumb = 0.1735593 badS = False tour = False state = Assigned ToD = 397975.685084656 idx = 0 CAREER_LOG { flight = 0 } FLIGHT_LOG { flight = 0 0 = Flyby,Duna 0 = Orbit,Duna } } KERBAL { name = Burbal Kerman gender = Male type = Crew brave = 0.9663355 dumb = 0.8609807 badS = False tour = False state = Assigned ToD = 333885.116923646 idx = 3 CAREER_LOG { flight = 0 } FLIGHT_LOG { flight = 0 0 = Flyby,Duna 0 = Orbit,Duna } } KERBAL { name = Eliicca Kerman gender = Female type = Crew brave = 0.02904538 dumb = 0.1985099 badS = False tour = False state = Assigned ToD = 261196.250117615 idx = 0 CAREER_LOG { flight = 0 } FLIGHT_LOG { flight = 0 0 = Flyby,Duna 0 = Orbit,Duna } } KERBAL { name = Dudford Kerman gender = Male type = Crew brave = 0.9926447 dumb = 0.4967238 badS = False tour = False state = Assigned ToD = 284167.405665711 idx = 0 CAREER_LOG { flight = 1 0 = Flight,Kerbin 0 = Suborbit,Kerbin 0 = Land,Kerbin 0 = Recover } FLIGHT_LOG { flight = 1 1 = Orbit,Kerbin } } KERBAL { name = Jenke Kerman gender = Male type = Unowned brave = 0.0238593 dumb = 0.9069661 badS = True tour = False state = Assigned ToD = 0 idx = -1 CAREER_LOG { flight = 0 } FLIGHT_LOG { flight = 0 } } KERBAL { name = Ludmal Kerman gender = Male type = Unowned brave = 0.6373001 dumb = 0.5117956 badS = False tour = False state = Assigned ToD = 0 idx = -1 CAREER_LOG { flight = 0 } FLIGHT_LOG { flight = 0 } } KERBAL { name = Aldden Kerman gender = Male type = Unowned brave = 0.6582812 dumb = 0.7917677 badS = False tour = False state = Assigned ToD = 0 idx = -1 CAREER_LOG { flight = 0 } FLIGHT_LOG { flight = 0 } } KERBAL { name = Carol Kerman gender = Female type = Unowned brave = 0.4611367 dumb = 0.3778885 badS = False tour = False state = Assigned ToD = 0 idx = -1 CAREER_LOG { flight = 0 } FLIGHT_LOG { flight = 0 } } KERBAL { name = Siethy Kerman gender = Female type = Unowned brave = 0.3891088 dumb = 0.8513316 badS = False tour = False state = Assigned ToD = 0 idx = -1 CAREER_LOG { flight = 0 } FLIGHT_LOG { flight = 0 } } KERBAL { name = Shepski Kerman gender = Male type = Unowned brave = 0.7529707 dumb = 0.3430206 badS = False tour = False state = Assigned ToD = 0 idx = -1 CAREER_LOG { flight = 0 } FLIGHT_LOG { flight = 0 } } KERBAL { name = Corely Kerman gender = Male type = Unowned brave = 0.2264295 dumb = 0.4501896 badS = False tour = False state = Assigned ToD = 0 idx = -1 CAREER_LOG { flight = 0 } FLIGHT_LOG { flight = 0 } } KERBAL { name = Mitcan Kerman gender = Male type = Crew brave = 0.7832715 dumb = 0.3912154 badS = False tour = False state = Assigned ToD = 761920.660042341 idx = -1 CAREER_LOG { flight = 0 } FLIGHT_LOG { flight = 0 0 = ExitVessel,Kerbin 0 = Flight,Kerbin 0 = Land,Kerbin } } KERBAL { name = Tomdred Kerman gender = Male type = Crew brave = 0.9599689 dumb = 0.8771119 badS = False tour = False state = Assigned ToD = 773114.499306257 idx = 1 CAREER_LOG { flight = 0 } FLIGHT_LOG { flight = 0 0 = Orbit,Kerbin } } KERBAL { name = Lubro Kerman gender = Male type = Crew brave = 0.05083607 dumb = 0.07834046 badS = False tour = False state = Assigned ToD = 766319.077705915 idx = 3 CAREER_LOG { flight = 1 0 = Recover } FLIGHT_LOG { flight = 1 1 = Flyby,Mun 1 = Orbit,Mun 1 = Suborbit,Mun 1 = Land,Mun } } KERBAL { name = Neildo Kerman gender = Male type = Crew brave = 0.9284773 dumb = 0.5411035 badS = False tour = False state = Assigned ToD = 777046.506142194 idx = 0 CAREER_LOG { flight = 1 0 = Recover } FLIGHT_LOG { flight = 1 1 = Flyby,Mun 1 = Orbit,Mun 1 = Suborbit,Mun 1 = Land,Mun } } KERBAL { name = Camlie Kerman gender = Male type = Crew brave = 0.7242132 dumb = 0.8792629 badS = False tour = False state = Assigned ToD = 669385.818886335 idx = 1 CAREER_LOG { flight = 1 0 = Recover } FLIGHT_LOG { flight = 1 1 = Flyby,Mun 1 = Orbit,Mun 1 = Suborbit,Mun 1 = Land,Mun } } KERBAL { name = Helsy Kerman gender = Female type = Crew brave = 0.804206 dumb = 0.1748732 badS = False tour = False state = Assigned ToD = 716922.541451032 idx = 1 CAREER_LOG { flight = 0 } FLIGHT_LOG { flight = 0 0 = Orbit,Kerbin } } KERBAL { name = Carti Kerman gender = Female type = Crew brave = 0.1396438 dumb = 0.2420982 badS = False tour = False state = Assigned ToD = 764518.837379987 idx = 3 CAREER_LOG { flight = 1 0 = Recover } FLIGHT_LOG { flight = 1 1 = Flyby,Mun 1 = Orbit,Mun 1 = Suborbit,Mun 1 = Land,Mun } } KERBAL { name = Hanlock Kerman gender = Male type = Crew brave = 0.8312222 dumb = 0.8790181 badS = False tour = False state = Assigned ToD = 776419.770454938 idx = 0 CAREER_LOG { flight = 0 } FLIGHT_LOG { flight = 0 0 = Orbit,Kerbin } } KERBAL { name = Shepsen Kerman gender = Male type = Applicant brave = 0.3068537 dumb = 0.947722 badS = False tour = False state = Available ToD = 738846.239876325 idx = -1 CAREER_LOG { flight = 0 } FLIGHT_LOG { flight = 0 } } KERBAL { name = Leacine Kerman gender = Female type = Crew brave = 0.6726016 dumb = 0.9704735 badS = True tour = False state = Assigned ToD = 664470.295357282 idx = 0 CAREER_LOG { flight = 1 0 = Land,Kerbin 0 = Flight,Kerbin 0 = Recover } FLIGHT_LOG { flight = 1 1 = Orbit,Kerbin } } } MESSAGESYSTEM { flash = False } } ================================================ FILE: saves/RemoteTech KSP1_3 Testbed/Ships/VAB/Dish One.craft ================================================ ship = Dish One version = 1.2.2 description = type = VAB size = 6.14611626,1.82454109,5.73017168 PART { part = probeCoreOcto_4294734974 partName = Part pos = 0,15,0 attPos = 0,0,0 attPos0 = 0,15,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = RTLongDish2_4294726444 link = batteryBankMini_4294715328 link = sensorThermometer_4294699424 link = RTLongAntenna2_4294516218 attN = bottom,batteryBankMini_4294715328 attN = top,RTLongDish2_4294726444 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { HibernateToggle { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None } Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = RTLongDish2_4294726444 partName = Part pos = 0,15.212081,0 attPos = 0,0,0 attPos0 = 0,0.212080956,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = bottom,probeCoreOcto_4294734974 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 0.99999993907651941 RTOmniRange = 0 RTDishRange = 0 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = batteryBankMini_4294715328 partName = Part pos = 0,14.7129183,0 attPos = 0,0,0 attPos0 = 0,-0.287081718,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = batteryBankMini_4294714146 link = solarPanels4_4294711204 link = solarPanels4_4294708608 link = solarPanels4_4294708504 link = solarPanels4_4294708400 link = solarPanels4_4294708296 link = solarPanels4_4294708192 link = solarPanels4_4294708088 link = solarPanels4_4294707984 attN = top,probeCoreOcto_4294734974 attN = bottom,batteryBankMini_4294714146 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = batteryBankMini_4294714146 partName = Part pos = 0,14.5129175,0 attPos = 0,0,0 attPos0 = 0,-0.200000763,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = top,batteryBankMini_4294715328 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = solarPanels4_4294711204 partName = Part pos = -0.310056776,14.6542311,1.84808258E-08 attPos = 0,0,0 attPos0 = -0.310056776,-0.0586872101,1.84808258E-08 rot = 0,0,6.17078513E-08,1 attRot = 0,0,0,1 attRot0 = 0,0,6.17078513E-08,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4294708608 sym = solarPanels4_4294708504 sym = solarPanels4_4294708400 sym = solarPanels4_4294708296 sym = solarPanels4_4294708192 sym = solarPanels4_4294708088 sym = solarPanels4_4294707984 srfN = srfAttach,batteryBankMini_4294715328 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4294708608 partName = Part pos = -0.219243228,14.6542311,0.219243273 attPos = 0,0,0 attPos0 = -0.219243228,-0.0586872101,0.219243273 rot = 2.36145734E-08,0.382683456,5.70106202E-08,0.923879504 attRot = 0,0,0,1 attRot0 = 2.36145734E-08,0.382683456,5.70106202E-08,0.923879504 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4294711204 sym = solarPanels4_4294708504 sym = solarPanels4_4294708400 sym = solarPanels4_4294708296 sym = solarPanels4_4294708192 sym = solarPanels4_4294708088 sym = solarPanels4_4294707984 srfN = srfAttach,batteryBankMini_4294715328 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4294708504 partName = Part pos = 6.74813785E-16,14.6542311,0.310056746 attPos = 0,0,0 attPos0 = 6.74813785E-16,-0.0586872101,0.310056746 rot = 4.36340422E-08,0.707106829,4.36340422E-08,0.707106829 attRot = 0,0,0,1 attRot0 = 4.36340422E-08,0.707106829,4.36340422E-08,0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4294711204 sym = solarPanels4_4294708608 sym = solarPanels4_4294708400 sym = solarPanels4_4294708296 sym = solarPanels4_4294708192 sym = solarPanels4_4294708088 sym = solarPanels4_4294707984 srfN = srfAttach,batteryBankMini_4294715328 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4294708400 partName = Part pos = 0.219243243,14.6542311,0.219243228 attPos = 0,0,0 attPos0 = 0.219243243,-0.0586872101,0.219243228 rot = 5.70106238E-08,0.923879564,2.36145734E-08,0.382683456 attRot = 0,0,0,1 attRot0 = 5.70106238E-08,0.923879564,2.36145734E-08,0.382683456 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4294711204 sym = solarPanels4_4294708608 sym = solarPanels4_4294708504 sym = solarPanels4_4294708296 sym = solarPanels4_4294708192 sym = solarPanels4_4294708088 sym = solarPanels4_4294707984 srfN = srfAttach,batteryBankMini_4294715328 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4294708296 partName = Part pos = 0.310056776,14.6542311,-4.55868516E-08 attPos = 0,0,0 attPos0 = 0.310056776,-0.0586872101,-4.55868516E-08 rot = 6.17078513E-08,1,-2.69733576E-15,-4.37113883E-08 attRot = 0,0,0,1 attRot0 = 6.17078513E-08,1,-2.69733576E-15,-4.37113883E-08 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4294711204 sym = solarPanels4_4294708608 sym = solarPanels4_4294708504 sym = solarPanels4_4294708400 sym = solarPanels4_4294708192 sym = solarPanels4_4294708088 sym = solarPanels4_4294707984 srfN = srfAttach,batteryBankMini_4294715328 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4294708192 partName = Part pos = 0.219243214,14.6542311,-0.219243288 attPos = 0,0,0 attPos0 = 0.219243214,-0.0586872101,-0.219243288 rot = 5.70106202E-08,0.923879504,-2.3614577E-08,-0.382683516 attRot = 0,0,0,1 attRot0 = 5.70106202E-08,0.923879504,-2.3614577E-08,-0.382683516 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4294711204 sym = solarPanels4_4294708608 sym = solarPanels4_4294708504 sym = solarPanels4_4294708400 sym = solarPanels4_4294708296 sym = solarPanels4_4294708088 sym = solarPanels4_4294707984 srfN = srfAttach,batteryBankMini_4294715328 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4294708088 partName = Part pos = -3.6961648E-08,14.6542311,-0.310056746 attPos = 0,0,0 attPos0 = -3.6961648E-08,-0.0586872101,-0.310056746 rot = 4.36340422E-08,0.707106829,-4.36340422E-08,-0.707106829 attRot = 0,0,0,1 attRot0 = 4.36340422E-08,0.707106829,-4.36340422E-08,-0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4294711204 sym = solarPanels4_4294708608 sym = solarPanels4_4294708504 sym = solarPanels4_4294708400 sym = solarPanels4_4294708296 sym = solarPanels4_4294708192 sym = solarPanels4_4294707984 srfN = srfAttach,batteryBankMini_4294715328 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4294707984 partName = Part pos = -0.219243333,14.6542311,-0.219243184 attPos = 0,0,0 attPos0 = -0.219243333,-0.0586872101,-0.219243184 rot = 2.36145627E-08,0.382683277,-5.70106273E-08,-0.923879623 attRot = 0,0,0,1 attRot0 = 2.36145627E-08,0.382683277,-5.70106273E-08,-0.923879623 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4294711204 sym = solarPanels4_4294708608 sym = solarPanels4_4294708504 sym = solarPanels4_4294708400 sym = solarPanels4_4294708296 sym = solarPanels4_4294708192 sym = solarPanels4_4294708088 srfN = srfAttach,batteryBankMini_4294715328 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { part = sensorThermometer_4294699424 partName = Part pos = 0.34361279,14.985034,2.04809201E-08 attPos = 0,0,0 attPos0 = 0.34361279,-0.014966011,2.04809201E-08 rot = 0,0.707106829,0,-0.707106709 attRot = 0,0,0,1 attRot0 = 0,0.707106829,0,-0.707106709 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,probeCoreOcto_4294734974 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } UPGRADESAPPLIED { } } } PART { part = RTLongAntenna2_4294516218 partName = Part pos = -0.343932658,14.9892864,2.04999857E-08 attPos = 0,0,0 attPos0 = -0.343932658,-0.0107135773,2.04999857E-08 rot = 0.50000006,-0.5,0.500000119,0.499999911 attRot = 0,0,0,1 attRot0 = 0.50000006,-0.5,0.500000119,0.499999911 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,probeCoreOcto_4294734974 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.993763864 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ================================================ FILE: saves/RemoteTech KSP1_3 Testbed/Ships/VAB/Dumb Relay.craft ================================================ ship = Dumb Relay version = 1.2.2 description = type = VAB size = 0.824559093,3.51741028,0.824559093 PART { part = probeCoreOcto_4294610596 partName = Part pos = 0,15,0 attPos = 0,0,0 attPos0 = 0,15,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = RTLongAntenna2_4294743174 link = batteryBankMini_4294603734 link = solarPanels5_4294603052 link = solarPanels5_4294741642 link = solarPanels5_4294741610 link = solarPanels5_4294741578 link = solarPanels5_4294741546 link = solarPanels5_4294741514 link = solarPanels5_4294741482 link = solarPanels5_4294741450 attN = bottom,batteryBankMini_4294603734 attN = top,RTLongAntenna2_4294743174 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { HibernateToggle { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None } Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = RTLongAntenna2_4294743174 partName = Part pos = 0,15.1870813,0 attPos = 0,0,0 attPos0 = 0,0.187081337,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = bottom,probeCoreOcto_4294610596 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.993293703 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = batteryBankMini_4294603734 partName = Part pos = 0,14.7129183,0 attPos = 0,0,0 attPos0 = 0,-0.287081718,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = top,probeCoreOcto_4294610596 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = solarPanels5_4294603052 partName = Part pos = -0.343446553,14.8893318,2.04710116E-08 attPos = 0,0,0 attPos0 = -0.343446553,-0.110668182,2.04710116E-08 rot = 0,-0.707106829,0,0.707106709 attRot = 0,0,0,1 attRot0 = 0,-0.707106829,0,0.707106709 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294741642 sym = solarPanels5_4294741610 sym = solarPanels5_4294741578 sym = solarPanels5_4294741546 sym = solarPanels5_4294741514 sym = solarPanels5_4294741482 sym = solarPanels5_4294741450 srfN = srfAttach,probeCoreOcto_4294610596 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294741642 partName = Part pos = -0.242853358,14.8893318,0.242853418 attPos = 0,0,0 attPos0 = -0.242853358,-0.110668182,0.242853418 rot = 0,-0.382683456,0,0.923879504 attRot = 0,0,0,1 attRot0 = 0,-0.382683456,0,0.923879504 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294603052 sym = solarPanels5_4294741610 sym = solarPanels5_4294741578 sym = solarPanels5_4294741546 sym = solarPanels5_4294741514 sym = solarPanels5_4294741482 sym = solarPanels5_4294741450 srfN = srfAttach,probeCoreOcto_4294610596 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294741610 partName = Part pos = 5.56189468E-16,14.8893318,0.343446523 attPos = 0,0,0 attPos0 = 5.56189468E-16,-0.110668182,0.343446523 rot = 0,-8.42937027E-08,0,1 attRot = 0,0,0,1 attRot0 = 0,-8.42937027E-08,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294603052 sym = solarPanels5_4294741642 sym = solarPanels5_4294741578 sym = solarPanels5_4294741546 sym = solarPanels5_4294741514 sym = solarPanels5_4294741482 sym = solarPanels5_4294741450 srfN = srfAttach,probeCoreOcto_4294610596 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294741578 partName = Part pos = 0.242853373,14.8893318,0.242853373 attPos = 0,0,0 attPos0 = 0.242853373,-0.110668182,0.242853373 rot = 0,0.382683367,0,0.923879564 attRot = 0,0,0,1 attRot0 = 0,0.382683367,0,0.923879564 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294603052 sym = solarPanels5_4294741642 sym = solarPanels5_4294741610 sym = solarPanels5_4294741546 sym = solarPanels5_4294741514 sym = solarPanels5_4294741482 sym = solarPanels5_4294741450 srfN = srfAttach,probeCoreOcto_4294610596 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294741546 partName = Part pos = 0.343446553,14.8893318,-5.04960624E-08 attPos = 0,0,0 attPos0 = 0.343446553,-0.110668182,-5.04960624E-08 rot = 0,0.707106829,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0,0.707106829,0,0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294603052 sym = solarPanels5_4294741642 sym = solarPanels5_4294741610 sym = solarPanels5_4294741578 sym = solarPanels5_4294741514 sym = solarPanels5_4294741482 sym = solarPanels5_4294741450 srfN = srfAttach,probeCoreOcto_4294610596 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294741514 partName = Part pos = 0.242853343,14.8893318,-0.242853433 attPos = 0,0,0 attPos0 = 0.242853343,-0.110668182,-0.242853433 rot = 0,0.923879564,0,0.382683456 attRot = 0,0,0,1 attRot0 = 0,0.923879564,0,0.382683456 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294603052 sym = solarPanels5_4294741642 sym = solarPanels5_4294741610 sym = solarPanels5_4294741578 sym = solarPanels5_4294741546 sym = solarPanels5_4294741482 sym = solarPanels5_4294741450 srfN = srfAttach,probeCoreOcto_4294610596 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294741482 partName = Part pos = -4.09420196E-08,14.8893318,-0.343446523 attPos = 0,0,0 attPos0 = -4.09420196E-08,-0.110668182,-0.343446523 rot = 0,1,0,8.42937027E-08 attRot = 0,0,0,1 attRot0 = 0,1,0,8.42937027E-08 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294603052 sym = solarPanels5_4294741642 sym = solarPanels5_4294741610 sym = solarPanels5_4294741578 sym = solarPanels5_4294741546 sym = solarPanels5_4294741514 sym = solarPanels5_4294741450 srfN = srfAttach,probeCoreOcto_4294610596 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294741450 partName = Part pos = -0.242853478,14.8893318,-0.242853314 attPos = 0,0,0 attPos0 = -0.242853478,-0.110668182,-0.242853314 rot = 0,0.923879504,0,-0.382683516 attRot = 0,0,0,1 attRot0 = 0,0.923879504,0,-0.382683516 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294603052 sym = solarPanels5_4294741642 sym = solarPanels5_4294741610 sym = solarPanels5_4294741578 sym = solarPanels5_4294741546 sym = solarPanels5_4294741514 sym = solarPanels5_4294741482 srfN = srfAttach,probeCoreOcto_4294610596 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } ================================================ FILE: saves/RemoteTech KSP1_3 Testbed/Ships/VAB/GO.craft ================================================ ship = GO version = 1.2.2 description = type = VAB size = 1.4769963,3.03346252,1.30201006 PART { part = mk1pod_4294700320 partName = Part pos = 0,15,0 attPos = 0,0,0 attPos0 = 0,15,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = solidBooster.sm_4294699180 link = GooExperiment_4294697786 link = parachuteSingle_4294696914 attN = bottom,solidBooster.sm_4294699180 attN = top,parachuteSingle_4294696914 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { HibernateToggle { actionGroup = None active = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None } Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleColorChanger isEnabled = True animState = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = Light } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceContainer isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { CollectAllAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = FlagDecal isEnabled = True flagDisplayed = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleConductionMultiplier isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleLiftingSurface isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 50 maxAmount = 50 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = MonoPropellant amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = solidBooster.sm_4294699180 partName = Part pos = 0,13.9074621,0 attPos = 0,0,0 attPos0 = 0,-1.09253788,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 1 resPri = 0 dstg = 0 sidx = 0 sqor = 1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = top,mk1pod_4294700320 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleSurfaceFX isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } RESOURCE { name = SolidFuel amount = 140 maxAmount = 140 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = GooExperiment_4294697786 partName = Part pos = -0.373676807,15.085969,0.100126401 attPos = 0,0,0 attPos0 = -0.373676807,0.0859689713,0.100126401 rot = 0.110807858,0.780099988,-0.144407615,0.598591745 attRot = 0,0,0,1 attRot0 = 0.110807858,0.780099988,-0.144407615,0.598591745 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,mk1pod_4294700320 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = True animTime = 0 animSpeed = 1 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } UPGRADESAPPLIED { } } } PART { part = parachuteSingle_4294696914 partName = Part pos = 0,15.6574574,0 attPos = 0,0,0 attPos0 = 0,0.657457352,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 0 resPri = 0 dstg = 0 sidx = 0 sqor = 0 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = bottom,mk1pod_4294700320 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleParachute isEnabled = True persistentState = STOWED animTime = 0 minAirPressureToOpen = 0.0399999991 deployAltitude = 1000 spreadAngle = 7 automateSafeDeploy = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None } CutAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleDragModifier isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleDragModifier isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ================================================ FILE: saves/RemoteTech KSP1_3 Testbed/Ships/VAB/RC Rocket.craft ================================================ ship = RC Rocket version = 1.2.2 description = type = VAB size = 1.36550879,5.75492287,1.36550879 PART { part = probeCoreOcto2_4294193826 partName = Part pos = 0,15,0 attPos = 0,0,0 attPos0 = 0,15,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = sasModule_4294181342 link = batteryBankMini_4294162520 attN = bottom,sasModule_4294181342 attN = top,batteryBankMini_4294162520 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { HibernateToggle { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 5 maxAmount = 5 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = sasModule_4294181342 partName = Part pos = 0,14.847827,0 attPos = 0,0,0 attPos0 = 0,-0.152173042,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = fuelTankSmallFlat_4294179194 attN = bottom,fuelTankSmallFlat_4294179194 attN = top,probeCoreOcto2_4294193826 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None } Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } UPGRADESAPPLIED { } } } PART { part = fuelTankSmallFlat_4294179194 partName = Part pos = 0,14.4442158,0 attPos = 0,0,0 attPos0 = 0,-0.403611183,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = liquidEngine2_4294172694 link = solarPanels5_4294168150 link = solarPanels5_4294167242 link = solarPanels5_4294167210 link = solarPanels5_4294167178 link = solarPanels5_4294167146 link = solarPanels5_4294167114 link = solarPanels5_4294167082 link = solarPanels5_4294167050 attN = top,sasModule_4294181342 attN = bottom,liquidEngine2_4294172694 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 45 maxAmount = 45 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 55 maxAmount = 55 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = liquidEngine2_4294172694 partName = Part pos = 0,13.2298899,0 attPos = 0,0,0 attPos0 = 0,-1.2143259,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 0 resPri = 0 dstg = 0 sidx = 0 sqor = 0 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = top,fuelTankSmallFlat_4294179194 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 9 manuallyOverridden = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleJettison isEnabled = True isJettisoned = True shroudHideOverride = False stagingEnabled = True EVENTS { } ACTIONS { JettisonAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True gimbalActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None } LockAction { actionGroup = None } FreeAction { actionGroup = None } TogglePitchAction { actionGroup = None } ToggleYawAction { actionGroup = None } ToggleRollAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateThrottle isEnabled = True animState = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleAlternator isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleSurfaceFX isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294168150 partName = Part pos = -0.616444767,14.4074259,3.67429749E-08 attPos = 0,0,0 attPos0 = -0.616444767,-0.0367898941,3.67429749E-08 rot = 4.36334169E-08,-0.707106709,4.36334133E-08,0.707106829 attRot = 0,0,0,1 attRot0 = 4.36334169E-08,-0.707106709,4.36334133E-08,0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294167242 sym = solarPanels5_4294167210 sym = solarPanels5_4294167178 sym = solarPanels5_4294167146 sym = solarPanels5_4294167114 sym = solarPanels5_4294167082 sym = solarPanels5_4294167050 srfN = srfAttach,fuelTankSmallFlat_4294179194 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294167242 partName = Part pos = -0.435892224,14.4074259,0.435892344 attPos = 0,0,0 attPos0 = -0.435892224,-0.0367898941,0.435892344 rot = 5.70098067E-08,-0.382683307,2.36142288E-08,0.923879564 attRot = 0,0,0,1 attRot0 = 5.70098067E-08,-0.382683307,2.36142288E-08,0.923879564 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294168150 sym = solarPanels5_4294167210 sym = solarPanels5_4294167178 sym = solarPanels5_4294167146 sym = solarPanels5_4294167114 sym = solarPanels5_4294167082 sym = solarPanels5_4294167050 srfN = srfAttach,fuelTankSmallFlat_4294179194 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294167210 partName = Part pos = 1.36266171E-15,14.4074259,0.616444707 attPos = 0,0,0 attPos0 = 1.36266171E-15,-0.0367898941,0.616444707 rot = 6.17069702E-08,8.42937027E-08,-2.5121481E-15,1 attRot = 0,0,0,1 attRot0 = 6.17069702E-08,8.42937027E-08,-2.5121481E-15,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294168150 sym = solarPanels5_4294167242 sym = solarPanels5_4294167178 sym = solarPanels5_4294167146 sym = solarPanels5_4294167114 sym = solarPanels5_4294167082 sym = solarPanels5_4294167050 srfN = srfAttach,fuelTankSmallFlat_4294179194 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294167178 partName = Part pos = 0.435892254,14.4074259,0.435892254 attPos = 0,0,0 attPos0 = 0.435892254,-0.0367898941,0.435892254 rot = 5.70098067E-08,0.382683516,-2.36142377E-08,0.923879504 attRot = 0,0,0,1 attRot0 = 5.70098067E-08,0.382683516,-2.36142377E-08,0.923879504 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294168150 sym = solarPanels5_4294167242 sym = solarPanels5_4294167210 sym = solarPanels5_4294167146 sym = solarPanels5_4294167114 sym = solarPanels5_4294167082 sym = solarPanels5_4294167050 srfN = srfAttach,fuelTankSmallFlat_4294179194 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294167146 partName = Part pos = 0.616444767,14.4074259,-9.06342876E-08 attPos = 0,0,0 attPos0 = 0.616444767,-0.0367898941,-9.06342876E-08 rot = 4.36334098E-08,0.707106888,-4.36334204E-08,0.70710665 attRot = 0,0,0,1 attRot0 = 4.36334098E-08,0.707106888,-4.36334204E-08,0.70710665 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294168150 sym = solarPanels5_4294167242 sym = solarPanels5_4294167210 sym = solarPanels5_4294167178 sym = solarPanels5_4294167114 sym = solarPanels5_4294167082 sym = solarPanels5_4294167050 srfN = srfAttach,fuelTankSmallFlat_4294179194 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294167114 partName = Part pos = 0.435892195,14.4074259,-0.435892373 attPos = 0,0,0 attPos0 = 0.435892195,-0.0367898941,-0.435892373 rot = 2.3614227E-08,0.923879564,-5.70098067E-08,0.382683277 attRot = 0,0,0,1 attRot0 = 2.3614227E-08,0.923879564,-5.70098067E-08,0.382683277 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294168150 sym = solarPanels5_4294167242 sym = solarPanels5_4294167210 sym = solarPanels5_4294167178 sym = solarPanels5_4294167146 sym = solarPanels5_4294167082 sym = solarPanels5_4294167050 srfN = srfAttach,fuelTankSmallFlat_4294179194 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294167082 partName = Part pos = -7.34859427E-08,14.4074259,-0.616444707 attPos = 0,0,0 attPos0 = -7.34859427E-08,-0.0367898941,-0.616444707 rot = -2.5121481E-15,1,-6.17069702E-08,-8.42937027E-08 attRot = 0,0,0,1 attRot0 = -2.5121481E-15,1,-6.17069702E-08,-8.42937027E-08 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294168150 sym = solarPanels5_4294167242 sym = solarPanels5_4294167210 sym = solarPanels5_4294167178 sym = solarPanels5_4294167146 sym = solarPanels5_4294167114 sym = solarPanels5_4294167050 srfN = srfAttach,fuelTankSmallFlat_4294179194 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294167050 partName = Part pos = -0.435892433,14.4074259,-0.435892135 attPos = 0,0,0 attPos0 = -0.435892433,-0.0367898941,-0.435892135 rot = -2.36142466E-08,0.923879445,-5.70097995E-08,-0.382683665 attRot = 0,0,0,1 attRot0 = -2.36142466E-08,0.923879445,-5.70097995E-08,-0.382683665 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294168150 sym = solarPanels5_4294167242 sym = solarPanels5_4294167210 sym = solarPanels5_4294167178 sym = solarPanels5_4294167146 sym = solarPanels5_4294167114 sym = solarPanels5_4294167082 srfN = srfAttach,fuelTankSmallFlat_4294179194 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { part = batteryBankMini_4294162520 partName = Part pos = 0,15.1610622,0 attPos = 0,0,0 attPos0 = 0,0.161062241,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = RTLongAntenna2_4294159580 attN = top,RTLongAntenna2_4294159580 attN = bottom,probeCoreOcto2_4294193826 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = RTLongAntenna2_4294159580 partName = Part pos = 0,15.2610626,0 attPos = 0,0,0 attPos0 = 0,0.100000381,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = bottom,batteryBankMini_4294162520 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.993033767 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ================================================ FILE: saves/RemoteTech KSP1_3 Testbed/Ships/VAB/Smart SAS.craft ================================================ ship = Smart SAS version = 1.2.2 description = type = VAB size = 0.758448601,3.44754791,0.758448601 PART { part = probeCoreOcto2_4294355974 partName = Part pos = 0,15,0 attPos = 0,0,0 attPos0 = 0,15,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = sasModule_4294351696 link = RTLongAntenna2_4294347338 attN = bottom,sasModule_4294351696 attN = top,RTLongAntenna2_4294347338 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { HibernateToggle { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 5 maxAmount = 5 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = sasModule_4294351696 partName = Part pos = 0,14.847827,0 attPos = 0,0,0 attPos0 = 0,-0.152173042,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = batteryBankMini_4294344458 link = solarPanels5_4294342658 link = solarPanels5_4294341730 link = solarPanels5_4294341698 link = solarPanels5_4294341666 link = solarPanels5_4294341634 link = solarPanels5_4294341602 link = solarPanels5_4294341570 link = solarPanels5_4294341538 attN = bottom,batteryBankMini_4294344458 attN = top,probeCoreOcto2_4294355974 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None } Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } UPGRADESAPPLIED { } } } PART { part = RTLongAntenna2_4294347338 partName = Part pos = 0,15.0610619,0 attPos = 0,0,0 attPos0 = 0,0.0610618591,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = bottom,probeCoreOcto2_4294355974 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.993103266 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = batteryBankMini_4294344458 partName = Part pos = 0,14.6567154,0 attPos = 0,0,0 attPos0 = 0,-0.191111565,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = top,sasModule_4294351696 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = solarPanels5_4294342658 partName = Part pos = -0.296699166,14.7907696,1.76846502E-08 attPos = 0,0,0 attPos0 = -0.296699166,-0.0570573807,1.76846502E-08 rot = 0,-0.707106829,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0,-0.707106829,0,0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294341730 sym = solarPanels5_4294341698 sym = solarPanels5_4294341666 sym = solarPanels5_4294341634 sym = solarPanels5_4294341602 sym = solarPanels5_4294341570 sym = solarPanels5_4294341538 srfN = srfAttach,sasModule_4294351696 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294341730 partName = Part pos = -0.209797964,14.7907696,0.209798023 attPos = 0,0,0 attPos0 = -0.209797964,-0.0570573807,0.209798023 rot = 0,-0.382683426,0,0.923879564 attRot = 0,0,0,1 attRot0 = 0,-0.382683426,0,0.923879564 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294342658 sym = solarPanels5_4294341698 sym = solarPanels5_4294341666 sym = solarPanels5_4294341634 sym = solarPanels5_4294341602 sym = solarPanels5_4294341570 sym = solarPanels5_4294341538 srfN = srfAttach,sasModule_4294351696 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294341698 partName = Part pos = 7.22269547E-16,14.7907696,0.296699136 attPos = 0,0,0 attPos0 = 7.22269547E-16,-0.0570573807,0.296699136 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294342658 sym = solarPanels5_4294341730 sym = solarPanels5_4294341666 sym = solarPanels5_4294341634 sym = solarPanels5_4294341602 sym = solarPanels5_4294341570 sym = solarPanels5_4294341538 srfN = srfAttach,sasModule_4294351696 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294341666 partName = Part pos = 0.209797978,14.7907696,0.209797978 attPos = 0,0,0 attPos0 = 0.209797978,-0.0570573807,0.209797978 rot = 0,0.382683456,0,0.923879564 attRot = 0,0,0,1 attRot0 = 0,0.382683456,0,0.923879564 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294342658 sym = solarPanels5_4294341730 sym = solarPanels5_4294341698 sym = solarPanels5_4294341634 sym = solarPanels5_4294341602 sym = solarPanels5_4294341570 sym = solarPanels5_4294341538 srfN = srfAttach,sasModule_4294351696 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294341634 partName = Part pos = 0.296699166,14.7907696,-4.36229151E-08 attPos = 0,0,0 attPos0 = 0.296699166,-0.0570573807,-4.36229151E-08 rot = 0,0.707106888,0,0.707106769 attRot = 0,0,0,1 attRot0 = 0,0.707106888,0,0.707106769 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294342658 sym = solarPanels5_4294341730 sym = solarPanels5_4294341698 sym = solarPanels5_4294341666 sym = solarPanels5_4294341602 sym = solarPanels5_4294341570 sym = solarPanels5_4294341538 srfN = srfAttach,sasModule_4294351696 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294341602 partName = Part pos = 0.209797964,14.7907696,-0.209798038 attPos = 0,0,0 attPos0 = 0.209797964,-0.0570573807,-0.209798038 rot = 0,0.923879623,0,0.382683367 attRot = 0,0,0,1 attRot0 = 0,0.923879623,0,0.382683367 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294342658 sym = solarPanels5_4294341730 sym = solarPanels5_4294341698 sym = solarPanels5_4294341666 sym = solarPanels5_4294341634 sym = solarPanels5_4294341570 sym = solarPanels5_4294341538 srfN = srfAttach,sasModule_4294351696 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294341570 partName = Part pos = -3.53692968E-08,14.7907696,-0.296699136 attPos = 0,0,0 attPos0 = -3.53692968E-08,-0.0570573807,-0.296699136 rot = 0,1,0,0 attRot = 0,0,0,1 attRot0 = 0,1,0,0 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294342658 sym = solarPanels5_4294341730 sym = solarPanels5_4294341698 sym = solarPanels5_4294341666 sym = solarPanels5_4294341634 sym = solarPanels5_4294341602 sym = solarPanels5_4294341538 srfN = srfAttach,sasModule_4294351696 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294341538 partName = Part pos = -0.209798068,14.7907696,-0.209797919 attPos = 0,0,0 attPos0 = -0.209798068,-0.0570573807,-0.209797919 rot = 0,0.923879504,0,-0.382683605 attRot = 0,0,0,1 attRot0 = 0,0.923879504,0,-0.382683605 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294342658 sym = solarPanels5_4294341730 sym = solarPanels5_4294341698 sym = solarPanels5_4294341666 sym = solarPanels5_4294341634 sym = solarPanels5_4294341602 sym = solarPanels5_4294341570 srfN = srfAttach,sasModule_4294351696 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } ================================================ FILE: saves/RemoteTech KSP1_3 Testbed/Ships/VAB/Wide Dish.craft ================================================ ship = Wide Dish version = 1.2.2 description = type = VAB size = 5.79796839,0.860549927,5.797966 PART { part = probeCoreOcto_4294712396 partName = Part pos = 0,15,0 attPos = 0,0,0 attPos0 = 0,15,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = batteryBankMini_4294701698 link = solarPanels4_4294698834 link = solarPanels4_4294698418 link = solarPanels4_4294698314 link = solarPanels4_4294698210 link = HighGainAntenna5_4294674510 link = RTLongAntenna2_4294757490 attN = bottom,batteryBankMini_4294701698 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { HibernateToggle { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None } Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = batteryBankMini_4294701698 partName = Part pos = 0,14.7129183,0 attPos = 0,0,0 attPos0 = 0,-0.287081718,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = sasModule_4294706662 attN = top,probeCoreOcto_4294712396 attN = bottom,sasModule_4294706662 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = solarPanels4_4294698834 partName = Part pos = -0.343956262,14.9757891,2.05013926E-08 attPos = 0,0,0 attPos0 = -0.343956262,-0.0242109299,2.05013926E-08 rot = 0,-8.42937027E-08,0,1 attRot = 0,0,0,1 attRot0 = 0,-8.42937027E-08,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4294698418 sym = solarPanels4_4294698314 sym = solarPanels4_4294698210 srfN = srfAttach,probeCoreOcto_4294712396 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4294698418 partName = Part pos = 5.54378617E-16,14.9757891,0.343956232 attPos = 0,0,0 attPos0 = 5.54378617E-16,-0.0242109299,0.343956232 rot = 0,0.707106709,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0,0.707106709,0,0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4294698834 sym = solarPanels4_4294698314 sym = solarPanels4_4294698210 srfN = srfAttach,probeCoreOcto_4294712396 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4294698314 partName = Part pos = 0.343956262,14.9757891,-5.05710034E-08 attPos = 0,0,0 attPos0 = 0.343956262,-0.0242109299,-5.05710034E-08 rot = 0,1,0,4.05823144E-08 attRot = 0,0,0,1 attRot0 = 0,1,0,4.05823144E-08 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4294698834 sym = solarPanels4_4294698418 sym = solarPanels4_4294698210 srfN = srfAttach,probeCoreOcto_4294712396 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4294698210 partName = Part pos = -4.10027816E-08,14.9757891,-0.343956232 attPos = 0,0,0 attPos0 = -4.10027816E-08,-0.0242109299,-0.343956232 rot = 0,0.707106829,0,-0.707106709 attRot = 0,0,0,1 attRot0 = 0,0.707106829,0,-0.707106709 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4294698834 sym = solarPanels4_4294698418 sym = solarPanels4_4294698314 srfN = srfAttach,probeCoreOcto_4294712396 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { part = sasModule_4294706662 partName = Part pos = 0,14.5218067,0 attPos = 0,0,0 attPos0 = 0,-0.191111565,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = top,batteryBankMini_4294701698 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None } Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } UPGRADESAPPLIED { } } } PART { part = HighGainAntenna5_4294674510 partName = Part pos = -0.242788196,14.9518023,-0.242788181 attPos = 0,0,0 attPos0 = -0.242788196,-0.0481977463,-0.242788181 rot = -0.653281331,0.653281331,-0.270598501,0.270598501 attRot = 0,-0.707106709,0,0.707106709 attRot0 = -0.653281331,0.653281331,-0.270598501,0.270598501 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,probeCoreOcto_4294712396 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.995814621 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 0.70710678118654757 RTOmniRange = 0 RTDishRange = 20000000 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = RTLongAntenna2_4294757490 partName = Part pos = 0.243542507,14.9851122,0.243542463 attPos = 0,0,0 attPos0 = 0.243542507,-0.0148878098,0.243542463 rot = 0.65328145,0.270598024,-0.270597965,0.653281569 attRot = 0,0,0,1 attRot0 = 0.65328145,0.270598024,-0.270597965,0.653281569 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,probeCoreOcto_4294712396 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = MOVING animSwitch = False animTime = 0.654466629 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ================================================ FILE: saves/RemoteTech KSP1_3 Testbed/persistent.sfs ================================================ GAME { version = 1.3.1 Title = RT1_8Career (CAREER) Description = No description available. linkURL = linkCaption = Mode = CAREER Status = 1 Seed = 1652725474 scene = 5 editor = None flag = Squad/Flags/default launchID = 20 modded = True envInfo = - Environment Info - Win32NT 7FFFFFFFFFFFFFFF Args: KSP_x64_Dbg.exe - versionFull = 1.3.1.1891 (WindowsPlayer x64) versionCreated = 1.2.2.1622 (WindowsPlayer x64) PARAMETERS { preset = Normal FLIGHT { CanQuickSave = True CanQuickLoad = True CanAutoSave = True CanUseMap = True CanSwitchVesselsNear = True CanSwitchVesselsFar = True CanTimeWarpHigh = True CanTimeWarpLow = True CanEVA = True CanIVA = True CanBoard = True CanRestart = True CanLeaveToEditor = True CanLeaveToTrackingStation = True CanLeaveToSpaceCenter = True CanLeaveToMainMenu = True } EDITOR { CanSave = True CanLoad = True CanStartNew = True CanLaunch = True CanLeaveToSpaceCenter = True CanLeaveToMainMenu = False startUpMode = 0 craftFileToLoad = } TRACKINGSTATION { CanFlyVessel = True CanAbortVessel = True CanLeaveToSpaceCenter = True CanLeaveToMainMenu = False } SPACECENTER { CanGoInVAB = True CanGoInSPH = True CanGoInTrackingStation = True CanLaunchAtPad = True CanLaunchAtRunway = True CanGoToAdmin = True CanGoToAstronautC = True CanGoToMissionControl = True CanGoToRnD = True CanSelectFlag = True CanLeaveToMainMenu = True } DIFFICULTY { AutoHireCrews = False MissingCrewsRespawn = True RespawnTimer = 7200 BypassEntryPurchaseAfterResearch = True AllowStockVessels = False IndestructibleFacilities = False ResourceAbundance = 1 ReentryHeatScale = 1 EnableCommNet = False } CAREER { TechTreeUrl = GameData\ModuleManager.TechTree StartingFunds = 25000 StartingScience = 0 StartingReputation = 0 FundsGainMultiplier = 1 RepGainMultiplier = 1 ScienceGainMultiplier = 1 FundsLossMultiplier = 1 RepLossMultiplier = 1 RepLossDeclined = 1 } CommNetParams { requireSignalForControl = False plasmaBlackout = False rangeModifier = 1 DSNModifier = 1 occlusionMultiplierVac = 0.9 occlusionMultiplierAtm = 0.75 enableGroundStations = True } AdvancedParams { EnableKerbalExperience = True ImmediateLevelUp = False AllowNegativeCurrency = False PressurePartLimits = False GPartLimits = False GKerbalLimits = False KerbalGToleranceMult = 1 ResourceTransferObeyCrossfeed = False ActionGroupsAlways = False BuildingImpactDamageMult = 0.05 PartUpgradesInSandbox = False PartUpgradesInCareer = True } } SCENARIO { name = CommNetScenario scene = 7, 8, 5, 6 } SCENARIO { name = PartUpgradeManager scene = 6, 5, 7 UPGRADES { Unlocks { } Enableds { } } } SCENARIO { name = ResourceScenario scene = 7, 8, 5, 6 RESOURCE_SETTINGS { GameSeed = 1356462431 MaxDeltaTime = 21600 } } SCENARIO { name = ContractSystem scene = 7, 8, 5, 6 update = 61627.38805138864 version = 1.3.1 WEIGHTS { TourismContract = 30 SurveyContract = 30 StationContract = 30 SentinelContract = 30 SatelliteContract = 30 ISRUContract = 30 ExplorationContract = 30 BaseContract = 30 ARMContract = 30 RecoverAsset = 30 PlantFlag = 30 PartTest = 30 GrandTour = 30 CollectScience = 30 Eeloo = 30 Dres = 30 Pol = 30 Gilly = 30 Tylo = 30 Bop = 30 Vall = 30 Laythe = 30 Jool = 30 Ike = 30 Duna = 30 Eve = 30 Moho = 30 Minmus = 30 Mun = 30 Kerbin = 30 Sun = 30 } CONTRACTS { CONTRACT { guid = e36fbd83-53fb-43b8-aee7-b856f4fb5ca3 type = SurveyContract prestige = 0 seed = 575553607 state = Offered viewed = Seen agent = Experimental Engineering Group deadlineType = Floating expiryType = Floating values = 85544.5547103882,45552475.3832817,7574.99992847443,14051.6242291927,7874.99964237213,0,1.904762,2,85647.6947103882,0,0,0 targetBody = 1 centerLatitude = 3.7933423770836048 centerLongitude = -71.991899667115845 dataName = observational anomalyName = inconsistencies reportName = reports locationName = Kerbin focusedSurvey = True targetBand = HIGH contextual = False PARAM { name = SurveyWaypointParameter state = Incomplete values = 0,0,0,0,0 targetBody = 1 actionDescription = Take a crew report experiment = crewReport flightThreshold = 16900 band = 3 clusterState = MIXED verified = True contextual = False wpSeed = 1347940612 wpIndex = 0 wpTexture = report wpLatitude = 3.7932988499501388 wpLongitude = -71.991945811434746 wpLandlocked = False wpNavigationId = 3fff7da4-ee67-42ab-ba98-d55bc5dac8e3 } } CONTRACT { guid = 3bc887cf-a2b6-4e52-aaa1-2acbbf694f42 type = SurveyContract prestige = 0 seed = 575553578 state = Offered viewed = Seen agent = Integrated Integrals deadlineType = Floating expiryType = Floating values = 106930.693387985,45552475.3832817,7426.47052696523,13776.1022019055,7874.99964237213,0,1.942857,2,107033.833387985,0,0,0 targetBody = 1 centerLatitude = 0.40961187938746269 centerLongitude = -73.5586829769682 dataName = observational anomalyName = inconsistencies reportName = reports locationName = Kerbin focusedSurvey = True targetBand = LOW contextual = False PARAM { name = SurveyWaypointParameter state = Incomplete values = 0,0,0,0,0 targetBody = 1 actionDescription = Take a crew report experiment = crewReport flightThreshold = 18200 band = 2 clusterState = MIXED verified = True contextual = False wpSeed = 1295540455 wpIndex = 0 wpTexture = report wpLatitude = 0.40962410214801842 wpLongitude = -73.558669149111267 wpLandlocked = False wpNavigationId = 791ef86b-5443-4007-afc5-05c4e514c234 } } CONTRACT { guid = 6d6dbe37-b72a-48de-ba4b-5cb51a87963b type = SurveyContract prestige = 0 seed = 102380385 state = Offered viewed = Seen agent = Moving Parts Experts Group deadlineType = Floating expiryType = Floating values = 83052.969698515,44225706.3644592,30905.999130249,57330.6257830525,32129.9979400635,0,8.322561,8.653847,112114.283888278,0,0,0 targetBody = 1 centerLatitude = 0.17083387846429088 centerLongitude = 127.06083580249026 dataName = atmospheric anomalyName = abnormalities reportName = readings locationName = Kerbin focusedSurvey = False targetBand = HIGH contextual = False PARAM { name = SurveyWaypointParameter state = Incomplete values = 8800,0,3,3,0 targetBody = 1 actionDescription = Take pressure readings experiment = barometerScan flightThreshold = 17500 band = 3 clusterState = MIXED verified = True contextual = False wpSeed = 1062461362 wpIndex = 0 wpTexture = pressure wpLatitude = 3.4105330530820765 wpLongitude = 126.14028334819335 wpLandlocked = False wpNavigationId = 15ee0a48-ef7f-43c4-a118-317267fe10d6 } PARAM { name = SurveyWaypointParameter state = Incomplete values = 8800,0,3,3,0 targetBody = 1 actionDescription = Take pressure readings experiment = barometerScan flightThreshold = 16400 band = 3 clusterState = MIXED verified = True contextual = False wpSeed = 1062461362 wpIndex = 1 wpTexture = pressure wpLatitude = 6.7217896571373981 wpLongitude = 120.22674850159095 wpLandlocked = False wpNavigationId = 0a86c03a-9c1c-46e6-8692-43d1c95b3e12 } PARAM { name = SurveyWaypointParameter state = Incomplete values = 8800,0,3,3,0 targetBody = 1 actionDescription = Take pressure readings experiment = barometerScan flightThreshold = 16900 band = 3 clusterState = MIXED verified = True contextual = False wpSeed = 1062461362 wpIndex = 2 wpTexture = pressure wpLatitude = 1.6007057153893687 wpLongitude = 121.23988170905525 wpLandlocked = False wpNavigationId = 96f670c2-2147-40f1-a276-554ecd7f3783 } } CONTRACT { guid = 299c9a17-0422-4b85-b728-4f0ce9d9851f type = SurveyContract prestige = 0 seed = 590864053 state = Offered viewed = Seen agent = Moving Parts Experts Group deadlineType = Floating expiryType = Floating values = 124579.454547772,44225706.3644592,30905.999130249,57330.6257830525,32129.9979400635,0,8.322561,8.653847,167963.378681383,0,0,0 targetBody = 1 centerLatitude = -5.3321086277643719 centerLongitude = -76.350190889116561 dataName = observational anomalyName = inconsistencies reportName = reports locationName = Kerbin focusedSurvey = False targetBand = LOW contextual = False PARAM { name = SurveyWaypointParameter state = Incomplete values = 8800,0,3,3,0 targetBody = 1 actionDescription = Take a crew report experiment = crewReport flightThreshold = 17500 band = 2 clusterState = MIXED verified = True contextual = False wpSeed = 1359562693 wpIndex = 0 wpTexture = report wpLatitude = -6.9526195657689538 wpLongitude = -76.353423862155665 wpLandlocked = False wpNavigationId = b459c417-e545-4e51-b556-754af09519f2 } PARAM { name = SurveyWaypointParameter state = Incomplete values = 8800,0,3,3,0 targetBody = 1 actionDescription = Take a crew report experiment = crewReport flightThreshold = 19400 band = 2 clusterState = MIXED verified = True contextual = False wpSeed = 1359562693 wpIndex = 1 wpTexture = report wpLatitude = -3.4195174844534857 wpLongitude = -72.811856138664524 wpLandlocked = False wpNavigationId = 5ebc4e0f-6243-466d-b16e-b6163a3caff6 } PARAM { name = SurveyWaypointParameter state = Incomplete values = 8800,0,3,3,0 targetBody = 1 actionDescription = Take a crew report experiment = crewReport flightThreshold = 17300 band = 2 clusterState = MIXED verified = True contextual = False wpSeed = 1359562693 wpIndex = 2 wpTexture = report wpLatitude = -6.7981922193888762 wpLongitude = -78.241252184127589 wpLandlocked = False wpNavigationId = 09d5679d-189e-45a8-8ded-7d1b70797fb4 } } CONTRACT { guid = b9a29814-5ac1-40f0-a38d-884ee4e25c68 type = PartTest prestige = 0 seed = 1589575551 state = Offered viewed = Seen agent = Research & Development Department deadlineType = Floating expiryType = Floating values = 43200,9201600,6750,16875,6750,2,4,3,86634.8924758921,0,0,0 part = parachuteRadial haul = True dest = 1 sit = FLYING exp = False PARAM { name = PartTest state = Incomplete values = 0,0,0,0,0 part = parachuteRadial body = Kerbin situation = FLYING uniqueID = 0.23833453293812207 haul = True repeatability = ALWAYS } PARAM { name = ReachDestination state = Incomplete disableOnStateChange = False values = 0,0,0,0,0 dest = 1 title = } PARAM { name = ReachSituation state = Incomplete disableOnStateChange = False values = 0,0,0,0,0 sit = FLYING title = } PARAM { name = ReachAltitudeEnvelope state = Incomplete disableOnStateChange = False values = 0,0,0,0,0 minAlt = 1000 maxAlt = 8000 } PARAM { name = ReachSpeedEnvelope state = Incomplete disableOnStateChange = False values = 0,0,0,0,0 minSpd = 80 maxSpd = 280 } } CONTRACT { guid = 29af5fc0-c5e7-4a26-8240-679f8284e8cd type = SatelliteContract prestige = 0 seed = 320115205 state = Offered viewed = Read agent = Periapsis Rocket Supplies Co deadlineType = Floating expiryType = Floating values = 86400,46008000,6400,16400,6400,0,2,1,108908.131607362,0,0,0 targetBody = 1 deviation = 7 orbitType = 6 placementMode = 1 PARAM { name = SpecificVesselParameter state = Incomplete values = 0,0,0,0,0 TargetBody = 1 targetVesselID = 8092919e86dd40a497abb8982baaece2 targetVesselPartCount = 11 targetVesselName = Dumb Relay targetVesselSituation = ORBITING partIDs = 345379695|859741756|3224831984|427943987|1419352047|1750970165|1882697949|948473231|477921199|863478666|1557039225 } PARAM { name = VesselSystemsParameter state = Incomplete values = 0,0,0,0,0 typeString = probe mannedStatus = 1 requireNew = False checkModuleTypes = Antenna|Generator checkModuleDescriptions = has an antenna|can generate power } PARAM { name = SpecificOrbitParameter state = Incomplete values = 0,0,0,0,0 TargetBody = 1 deviationWindow = 7 orbitType = 6 inclination = 0 eccentricity = 0.054086061470482213 sma = 3263246.130369301 lan = 0.14168498613025804 argumentOfPeriapsis = 116.32769151023325 meanAnomalyAtEpoch = 0.076449246810395943 epoch = 7331.342328795592 } PARAM { name = StabilityParameter state = Incomplete values = 0,0,0,0,0 holdSeconds = 10 } } CONTRACT { guid = 86a2e916-5fc5-4526-862a-0303baff9f94 type = SatelliteContract prestige = 0 seed = 320115201 state = Offered viewed = Read agent = C7 Aerospace Division deadlineType = Floating expiryType = Floating values = 43200,46008000,6400,16400,6400,0,2,1,65708.1316073622,0,0,0 targetBody = 1 deviation = 7 orbitType = 6 placementMode = 1 PARAM { name = SpecificVesselParameter state = Incomplete values = 0,0,0,0,0 TargetBody = 1 targetVesselID = 8092919e86dd40a497abb8982baaece2 targetVesselPartCount = 11 targetVesselName = Dumb Relay targetVesselSituation = ORBITING partIDs = 345379695|859741756|3224831984|427943987|1419352047|1750970165|1882697949|948473231|477921199|863478666|1557039225 } PARAM { name = VesselSystemsParameter state = Incomplete values = 0,0,0,0,0 typeString = probe mannedStatus = 1 requireNew = False checkModuleTypes = Antenna|Generator checkModuleDescriptions = has an antenna|can generate power } PARAM { name = SpecificOrbitParameter state = Incomplete values = 0,0,0,0,0 TargetBody = 1 deviationWindow = 7 orbitType = 6 inclination = 0 eccentricity = 0.055712994597347049 sma = 2923853.3724273536 lan = 0.14168498613025804 argumentOfPeriapsis = 116.32769151023325 meanAnomalyAtEpoch = 0.076449246810395943 epoch = 7331.342328795592 } PARAM { name = StabilityParameter state = Incomplete values = 0,0,0,0,0 holdSeconds = 10 } } CONTRACT { guid = 553ce635-cef9-491c-b2c2-f3984a3e8b1d type = SurveyContract prestige = 1 seed = 1096491846 state = Offered viewed = Seen agent = Jebediah Kerman's Junkyard and Spacecraft Parts Co deadlineType = Floating expiryType = Floating values = 96428.5705089569,41078571.0368156,8081.89585804939,15705.3438199898,10312.5002235174,0,2.271329,1.923077,96743.7732787323,0,0,0 targetBody = 1 centerLatitude = -2.0745760804162661 centerLongitude = -82.175717207541766 dataName = temperature anomalyName = fluctuations reportName = measurements locationName = Kerbin focusedSurvey = True targetBand = LOW contextual = False PARAM { name = SurveyWaypointParameter state = Incomplete values = 0,0,0,0,0 targetBody = 1 actionDescription = Measure the temperature experiment = temperatureScan flightThreshold = 18000 band = 2 clusterState = MIXED verified = True contextual = False wpSeed = 178352661 wpIndex = 0 wpTexture = thermometer wpLatitude = -2.0745819638809357 wpLongitude = -82.175719206712117 wpLandlocked = False wpNavigationId = b3dc9775-399f-496c-a9e6-ca2600f8d426 } } CONTRACT { guid = 7ccc0673-066d-4cb5-b2e3-58caa8d81090 type = ExplorationContract prestige = 1 seed = 222476716 state = Offered viewed = Seen agent = Kerbin World-Firsts Record-Keeping Society deadlineType = None expiryType = Floating ignoresWeight = True values = 64800,0,11200,20800,11200,4,8,0,64800.04,0,0,0 targetBody = 1 bodyRatio = 0 PARAM { name = ProgressTrackingParameter state = Incomplete values = 32000,0,4,8,0 targetBody = 1 targetType = REACHSPACE } } CONTRACT { guid = 9f98943c-b3fc-42bc-bd0d-fcca991bdfb2 type = SatelliteContract prestige = 1 seed = 320115223 state = Offered viewed = Read agent = STEADLER Engineering Corps deadlineType = Floating expiryType = Floating values = 43200,92016000,43235.2941691875,121868.140041601,48510.0010514259,14,15.57818,9.6,65708.1316073622,0,0,0 targetBody = 2 deviation = 5 orbitType = 6 placementMode = 0 PARAM { name = VesselSystemsParameter state = Incomplete values = 0,0,0,0,0 typeString = probe mannedStatus = 1 requireNew = True checkModuleTypes = Antenna|Generator checkModuleDescriptions = has an antenna|can generate power launchID = 0 } PARAM { name = SpecificOrbitParameter state = Incomplete values = 0,0,0,0,0 TargetBody = 2 deviationWindow = 5 orbitType = 6 inclination = 7.7726796458002116 eccentricity = 0.081013726595307839 sma = 659150.96343691251 lan = 20.989040760783951 argumentOfPeriapsis = 198.34194127393022 meanAnomalyAtEpoch = -2.2251798850123383 epoch = 0 } PARAM { name = PartRequestParameter state = Incomplete values = 0,0,0,0,0 article = a partDescription = thermometer vesselDescription = satellite partNames = sensorThermometer } PARAM { name = PartRequestParameter state = Incomplete values = 0,0,0,0,0 article = a partDescription = mystery goo unit vesselDescription = satellite partNames = GooExperiment } PARAM { name = StabilityParameter state = Incomplete values = 0,0,0,0,0 holdSeconds = 10 } } CONTRACT { guid = fe9e1395-6c5e-49a7-94f2-c11c783d2bb6 type = CollectScience prestige = 1 seed = 102044484 state = Offered viewed = Seen agent = Rockomax Conglomerate deadlineType = Floating expiryType = Floating values = 69509.2502357685,185068378.752734,51619.2551278751,138799.896076621,55748.7964685136,3,6.279931,3,98570.5644255315,0,0,0 body = 5 location = Space PARAM { name = CollectScience state = Incomplete values = 0,0,0,0,0 body = 5 location = Space } } } } SCENARIO { name = ScenarioContractEvents scene = 7, 8, 5 id = -2128736158 } SCENARIO { name = Funding scene = 7, 8, 5, 6 funds = 3609310 } SCENARIO { name = ProgressTracking scene = 7, 8, 5 Progress { FirstLaunch { completed = 103.11999999999662 } FirstCrewToSurvive { completed = 233.98276977543412 crew { crews = Jebediah Kerman } } RecordsAltitude { completed = 347.78276977536188 record = 70000 } RecordsSpeed { reached = 1225.6627697745635 record = 1802.689503009557 } RecordsDistance { completed = 347.78276977536188 record = 100000 } Kerbin { reached = 229.98276977543208 Orbit { completedUnmanned = 347.78276977536188 vessel { name = Dumb Relay flag = Squad/Flags/default } } Escape { completedUnmanned = 29061.314189763023 } Landing { completedManned = 229.98276977543208 vessel { name = GO flag = Squad/Flags/default } crew { crews = Jebediah Kerman } } Science { completedManned = 233.98276977543412 vessel { name = GO flag = Squad/Flags/default } crew { crews = Jebediah Kerman } } SurfaceEVA { completed = 59997.891954770043 crew { crews = Jebediah Kerman } } } Minmus { reached = 48417.152704125307 Orbit { completedUnmanned = 48417.1927041253 vessel { name = Dish One flag = Squad/Flags/default } } Flyby { completedUnmanned = 48417.152704125307 } } Eve { reached = 29061.314189763023 Orbit { completedUnmanned = 29061.354189763024 vessel { name = Dish One flag = Squad/Flags/default } } Flyby { completedUnmanned = 29061.314189763023 } } } } SCENARIO { name = ResearchAndDevelopment scene = 7, 8, 5, 6 sci = 223.5 Tech { id = start state = Available cost = 0 part = RTShortAntenna1 part = basicFin part = mk1pod part = solidBooster.sm part = GooExperiment part = trussPiece1x part = parachuteSingle } Tech { id = basicRocketry state = Available cost = 5 part = fuelTankSmallFlat part = solidBooster part = liquidEngine2 } Tech { id = engineering101 state = Available cost = 5 part = SurfAntenna part = stackDecoupler part = longAntenna part = sensorThermometer } Tech { id = stability state = Available cost = 18 part = radialDecoupler part = winglet part = noseCone } Tech { id = survivability state = Available cost = 15 part = ServiceBay.125 part = parachuteRadial part = radialDrogue part = miniLandingLeg part = radPanelSm part = sensorBarometer part = HeatShield1 part = HeatShield0 } Tech { id = basicScience state = Available cost = 45 part = HighGainAntenna5 part = radPanelLg part = radPanelEdge part = ScienceBox part = science.module part = batteryPack part = probeCoreSphere part = RTLongAntenna3 part = RTLongAntenna3 part = RTLongAntenna3 part = RTLongAntenna3 part = RTLongAntenna3 part = RTLongAntenna3 part = RTLongAntenna3 part = RTLongAntenna3 part = RTLongAntenna3 } Tech { id = flightControl state = Available cost = 45 part = sasModule part = winglet3 part = R8winglet } Tech { id = generalRocketry state = Available cost = 20 part = fuelTankSmall part = solidBooster1-1 part = liquidEngine } Tech { id = advFlightControl state = Available cost = 90 part = RCSBlock part = linearRcs part = radialRCSTank part = landerCabinSmall part = advSasModule } Tech { id = electrics state = Available cost = 90 part = spotLight2 part = spotLight1 part = foldingRadSmall part = batteryBankMini part = solarPanels5 part = probeCoreOcto part = RTShortDish2 } Tech { id = advElectrics state = Available cost = 160 part = foldingRadMed part = LgRadialSolarPanel part = ksp.r.largeBatteryPack part = solarPanels3 part = solarPanels1 part = solarPanels4 part = solarPanels2 part = RTShortDish2 part = RTShortDish2 part = RTShortDish2 part = RTShortDish2 part = RTShortDish2 part = RTShortDish2 part = RTShortDish2 part = RTShortDish2 part = RTShortDish2 } Tech { id = precisionEngineering state = Available cost = 160 part = RelayAntenna5 part = stackDecouplerMini part = mediumDishAntenna part = strutOcto part = strutCube part = structuralMiniNode part = probeCoreHex } Tech { id = largeElectrics state = Available cost = 300 part = foldingRadLarge part = FuelCell part = batteryBank part = largeSolarPanel part = RTLongDish2 part = RTLongAntenna2 part = RTLongAntenna2 part = RTLongDish2 part = RTLongAntenna2 part = RTLongDish2 part = RTLongAntenna2 part = RTLongDish2 part = RTLongAntenna2 part = RTLongDish2 part = RTLongAntenna2 part = RTLongDish2 part = RTLongAntenna2 part = RTLongDish2 part = RTLongAntenna2 part = RTLongDish2 part = RTLongAntenna2 part = RTLongDish2 } Tech { id = unmannedTech state = Available cost = 300 part = probeCoreOcto2 part = probeCoreCube part = RTPassiveAntennaTech } Tech { id = generalConstruction state = Available cost = 45 part = launchClamp1 part = largeAdapter part = decoupler1-2 part = Mk1FuselageStructural part = strutConnector part = MK1CrewCabin } Science { id = mysteryGoo@KerbinSrfLandedLaunchPad title = Mystery Goo™ Observation from LaunchPad dsc = 1 scv = 0.230769247 sbv = 0.300000012 sci = 3 cap = 3.9000001 } Science { id = crewReport@KerbinSrfLandedLaunchPad title = Crew Report from LaunchPad dsc = 1 scv = 0 sbv = 0.300000012 sci = 1.5 cap = 1.5 } Science { id = recovery@KerbinFlew title = Recovery of a vessel returned from a flight over Kerbin dsc = 1 scv = 0.166666672 sbv = 5 sci = 5 cap = 6 } } SCENARIO { name = VesselRecovery scene = 5, 7, 8, 6 } SCENARIO { name = Reputation scene = 7, 8, 5, 6 rep = 55.9998589 } SCENARIO { name = StrategySystem scene = 7, 8, 5, 6 STRATEGIES { } } SCENARIO { name = ScenarioAchievements scene = 7, 8, 5, 6 } SCENARIO { name = ScenarioCustomWaypoints scene = 7, 8 } SCENARIO { name = ScenarioDestructibles scene = 5, 7, 6, 8 SpaceCenter/VehicleAssemblyBuilding/Facility/VAB2 { intact = True } SpaceCenter/TrackingStation/Facility/dish_array/dish_south { intact = True } SpaceCenter/TrackingStation/Facility/dish_array/dish_north { intact = True } SpaceCenter/TrackingStation/Facility/dish_array/dish_east { intact = True } SpaceCenter/TrackingStation/Facility/MainBuilding { intact = True } SpaceCenter/SpaceplaneHangar/Facility/Building { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/mainBuilding { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/ForeverAlone { intact = True } SpaceCenter/MissionControl/Facility/mainBuilding { intact = True } SpaceCenter/LaunchPad/Facility/Flag { intact = True } SpaceCenter/FlagPole/Facility { intact = True } SpaceCenter/AstronautComplex/Facility/mainBuilding { intact = True } SpaceCenter/Administration/Facility/Building { intact = True } SpaceCenter/TrackingStation/Facility/building { intact = True } SpaceCenter/TrackingStation/Facility/OuterDish { intact = True } SpaceCenter/TrackingStation/Facility/building/Antenna_South { intact = True } SpaceCenter/TrackingStation/Facility/building/Antenna_North { intact = True } SpaceCenter/TrackingStation/Facility/building/Antenna_East { intact = True } SpaceCenter/TrackingStation/Facility/building/Building { intact = True } SpaceCenter/VehicleAssemblyBuilding/Facility/VAB3 { intact = True } SpaceCenter/VehicleAssemblyBuilding/Facility/SouthComplex { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/ksp_pad_cylTank { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/SmallLab { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/CentralBuilding { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/MainBuilding { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/CornerLab { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/WindTunnel { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/Observatory { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/SideLab { intact = True } SpaceCenter/MissionControl/Facility/Antenna { intact = True } } SCENARIO { name = ScenarioDiscoverableObjects scene = 7, 8, 5 lastSeed = 0 sizeCurve { key = 0 0 1.5 1.5 key = 0.3 0.45 0.875 0.875 key = 0.7 0.55 0.875 0.875 key = 1 1 1.5 1.5 } } SCENARIO { name = ScenarioUpgradeableFacilities scene = 5, 6, 7, 8 SpaceCenter/LaunchPad { lvl = 0 } SpaceCenter/Runway { lvl = 0 } SpaceCenter/VehicleAssemblyBuilding { lvl = 0 } SpaceCenter/SpaceplaneHangar { lvl = 0 } SpaceCenter/TrackingStation { lvl = 0.5 } SpaceCenter/AstronautComplex { lvl = 0 } SpaceCenter/MissionControl { lvl = 0 } SpaceCenter/ResearchAndDevelopment { lvl = 0.5 } SpaceCenter/Administration { lvl = 0 } SpaceCenter/FlagPole { lvl = 0 } } SCENARIO { name = SentinelScenario scene = 7, 8, 5 NextSpawnTime = 77171.531193617295 } SCENARIO { name = CutSceneConfigurator scene = 7 } FLIGHTSTATE { version = 1.3.1 UT = 61634.628051387481 activeVessel = 0 mapViewFiltering = 7166 commNetUIModeTracking = Network commNetUIModeFlight = Path VESSEL { pid = 8092919e86dd40a497abb8982baaece2 name = Dumb Relay type = Probe sit = ORBITING landed = False landedAt = displaylandedAt = splashed = False met = 6086.7995590210458 lct = 1244.5427697745463 lastUT = 7331.342328795592 root = 0 lat = 3.3575328304421313E-07 lon = -91.626211252123809 alt = 2486749.999568345 hgt = -1 nrm = 0.997659266,-7.17187941E-05,-0.0683854818 rot = -0.00038790112,-0.6928038,0.000374039751,-0.72112602 CoM = -1.01044861E-09,-0.0179426111,4.63842298E-11 stg = 0 prst = False ref = 1557039225 ctrl = True cPch = cHdg = cMod = 0 ORBIT { SMA = 3086749.9998417078 ECC = 8.8401703194937035E-11 INC = 0 LPE = 116.32769151023325 LAN = 0.14168498613025804 MNA = 0.076449246810395943 EPH = 7331.342328795592 REF = 1 } PART { name = probeCoreOcto cid = 4294610596 uid = 1557039225 mid = 2689079807 launchID = 3 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 2 attN = top, 1 mass = 0.100000001 shielded = False temp = 203.19020577628538 tempExt = 202.7756346031874 tempExtUnexp = 4 expt = 0 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = probeCoreOcto modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { HibernateToggle { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Running stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None } Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = NormalPlus Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 7331.342328795592 ExtraDelay = 0 CmdGuid = f5c2b7c8-9be6-4944-856b-02029f0d21a7 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongAntenna2 cid = 4294743174 uid = 863478666 mid = 2689079807 launchID = 3 parent = 0 position = 0,0.18708133697509766,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 203.19815700006987 tempExt = 202.97258431883049 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.993293703 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294603734 uid = 477921199 mid = 2689079807 launchID = 3 parent = 0 position = 0,-0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 203.16610630850062 tempExt = 202.73621946502885 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = solarPanels5 cid = 4294603052 uid = 948473231 mid = 2689079807 launchID = 3 parent = 0 position = -0.34344655275344849,-0.11066818237304688,2.0471011552558593E-08 rotation = 0,-0.707106829,0,0.707106709 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 203.17090450421796 tempExt = 202.67243881525607 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 1244.5427697745463 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741642 uid = 1882697949 mid = 2689079807 launchID = 3 parent = 0 position = -0.24285335838794708,-0.11066818237304688,0.24285341799259186 rotation = 0,-0.382683456,0,0.923879504 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 203.17094456091735 tempExt = 202.67335205987439 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 1244.5427697745463 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741610 uid = 1750970165 mid = 2689079807 launchID = 3 parent = 0 position = 5.5618946761707777E-16,-0.11066818237304688,0.3434465229511261 rotation = 0,-8.42937027E-08,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 203.17078839086633 tempExt = 202.66978831582705 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 1244.5427697745463 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741578 uid = 1419352047 mid = 2689079807 launchID = 3 parent = 0 position = 0.24285337328910828,-0.11066818237304688,0.24285337328910828 rotation = 0,0.382683367,0,0.923879564 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 203.17078839086633 tempExt = 202.66978831582705 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 1244.5427697745463 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741546 uid = 427943987 mid = 2689079807 launchID = 3 parent = 0 position = 0.34344655275344849,-0.11066818237304688,-5.0496062442562106E-08 rotation = 0,0.707106829,0,0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 203.17078839086633 tempExt = 202.66978831582705 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 1244.5427697745463 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741514 uid = 3224831984 mid = 2689079807 launchID = 3 parent = 0 position = 0.24285334348678589,-0.11066818237304688,-0.24285343289375305 rotation = 0,0.923879564,0,0.382683456 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 9 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 203.17078839086633 tempExt = 202.66978831582705 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 1244.5427697745463 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741482 uid = 859741756 mid = 2689079807 launchID = 3 parent = 0 position = -4.0942019552403508E-08,-0.11066818237304688,-0.3434465229511261 rotation = 0,1,0,8.42937027E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 203.17078839086633 tempExt = 202.66978831582705 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 1244.5427697745463 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741450 uid = 345379695 mid = 2689079807 launchID = 3 parent = 0 position = -0.24285347759723663,-0.11066818237304688,-0.2428533136844635 rotation = 0,0.923879504,0,-0.382683516 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 203.17084616540006 tempExt = 202.67110863232634 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 1244.5427697745463 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = -9.9568766E-05 yaw = -3.32262395E-14 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = 57f4133a7bd14b6f938395674744403d name = Dumb Relay type = Probe sit = ORBITING landed = False landedAt = displaylandedAt = splashed = False met = 21600.071860964596 lct = 7340.4823287957915 lastUT = 28940.554189760387 root = 0 lat = 3.3589119663645206E-07 lon = -144.61868302148793 alt = 2486750.0218869573 hgt = -1 nrm = 0.620264351,-0.00984387845,0.784331381 rot = -0.000771573395,-0.989900768,-0.00633500703,0.141618431 CoM = 1.16633601E-08,-0.0179425422,5.7334546E-09 stg = 0 prst = False ref = 0 ctrl = True cPch = cHdg = cMod = 0 ORBIT { SMA = 3086750.0191430445 ECC = 3.2275882501364714E-09 INC = 0 LPE = 15.810405261155188 LAN = 305.99906758052742 MNA = 1.8683127246611138 EPH = 28940.554189760387 REF = 1 } PART { name = probeCoreOcto cid = 4294610596 uid = 1744468126 mid = 1511247485 launchID = 4 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 2 attN = top, 1 mass = 0.100000001 shielded = False temp = 207.63135620924001 tempExt = 206.15863568419701 tempExtUnexp = 4 expt = 0 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = probeCoreOcto (Dumb Relay) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { HibernateToggle { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Running stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None } Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = NormalPlus Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 28940.554189760387 ExtraDelay = 0 CmdGuid = 885eac8e-5671-4722-a586-48ecd1661c4b } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongAntenna2 cid = 4294743174 uid = 3490978438 mid = 1511247485 launchID = 4 parent = 0 position = 0,0.18708133697509766,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 207.63980202039554 tempExt = 206.42952729281274 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.993293703 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294603734 uid = 54376110 mid = 1511247485 launchID = 4 parent = 0 position = 0,-0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 207.57020541647645 tempExt = 206.08226296334195 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = solarPanels5 cid = 4294603052 uid = 1509322013 mid = 1511247485 launchID = 4 parent = 0 position = -0.34344655275344849,-0.11066818237304688,2.0471011552558593E-08 rotation = 0,-0.707106829,0,0.707106709 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 207.58683764494202 tempExt = 206.0950012347148 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 7340.4823287957915 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741642 uid = 715968005 mid = 1511247485 launchID = 4 parent = 0 position = -0.24285335838794708,-0.11066818237304688,0.24285341799259186 rotation = 0,-0.382683456,0,0.923879504 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 207.58683764494941 tempExt = 206.0950012347212 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 7340.4823287957915 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741610 uid = 2440143042 mid = 1511247485 launchID = 4 parent = 0 position = 5.5618946761707777E-16,-0.11066818237304688,0.3434465229511261 rotation = 0,-8.42937027E-08,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 207.58683764494663 tempExt = 206.09500123471872 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 7340.4823287957915 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741578 uid = 2120617325 mid = 1511247485 launchID = 4 parent = 0 position = 0.24285337328910828,-0.11066818237304688,0.24285337328910828 rotation = 0,0.382683367,0,0.923879564 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 207.58683764494202 tempExt = 206.0950012347148 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 7340.4823287957915 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741546 uid = 3156926776 mid = 1511247485 launchID = 4 parent = 0 position = 0.34344655275344849,-0.11066818237304688,-5.0496062442562106E-08 rotation = 0,0.707106829,0,0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 207.60033910035116 tempExt = 206.4135012143272 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 7340.4823287957915 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741514 uid = 253604682 mid = 1511247485 launchID = 4 parent = 0 position = 0.24285334348678589,-0.11066818237304688,-0.24285343289375305 rotation = 0,0.923879564,0,0.382683456 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 9 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 207.60680909377274 tempExt = 206.56671459092161 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 7340.4823287957915 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741482 uid = 1307343770 mid = 1511247485 launchID = 4 parent = 0 position = -4.0942019552403508E-08,-0.11066818237304688,-0.3434465229511261 rotation = 0,1,0,8.42937027E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 207.58683764494202 tempExt = 206.0950012347148 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 7340.4823287957915 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741450 uid = 1903736628 mid = 1511247485 launchID = 4 parent = 0 position = -0.24285347759723663,-0.11066818237304688,-0.2428533136844635 rotation = 0,0.923879504,0,-0.382683516 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 207.58683764494202 tempExt = 206.0950012347148 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 7340.4823287957915 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = -0.000894836441 yaw = -5.08386256E-05 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = d01713248ec14fb79faa9122d5133c68 name = Dumb Relay type = Probe sit = ORBITING landed = False landedAt = displaylandedAt = splashed = False met = 15260.045467532802 lct = 13738.888722228859 lastUT = 28998.954189761662 root = 0 lat = 5.2036549939656031E-07 lon = 88.528780884607727 alt = 2486749.9760602354 hgt = -1 nrm = -0.752867579,-6.25077009E-05,-0.658172011 rot = -5.50267941E-05,0.915774226,-8.69236464E-06,0.401693404 CoM = 9.74569048E-09,-0.0179426093,-6.71005296E-08 stg = 0 prst = False ref = 0 ctrl = True cPch = cHdg = cMod = 0 ORBIT { SMA = 3086749.9800463482 ECC = 3.2960041786019529E-09 INC = 0 LPE = 23.305521954273498 LAN = 212.73236245606137 MNA = 1.1683368373436218 EPH = 28998.934189761661 REF = 1 } PART { name = probeCoreOcto cid = 4294610596 uid = 2024432212 mid = 324065099 launchID = 5 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 2 attN = top, 1 mass = 0.100000001 shielded = False temp = 163.67586742882042 tempExt = 163.74454149946888 tempExtUnexp = 4 expt = 0 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = probeCoreOcto (Dumb Relay) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { HibernateToggle { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Running stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None } Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = NormalPlus Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 28998.954189761662 ExtraDelay = 0 CmdGuid = b6518d88-07b2-48c1-96bd-084151725ac0 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 0.25225458806035295 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongAntenna2 cid = 4294743174 uid = 4248708 mid = 324065099 launchID = 5 parent = 0 position = 0,0.18708133697509766,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 163.68035944184766 tempExt = 164.01010279765114 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.993293703 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294603734 uid = 407644221 mid = 324065099 launchID = 5 parent = 0 position = 0,-0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 163.67433583554779 tempExt = 163.68590703219306 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 5.0450917612070487 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = solarPanels5 cid = 4294603052 uid = 865898546 mid = 324065099 launchID = 5 parent = 0 position = -0.34344655275344849,-0.11066818237304688,2.0471011552558593E-08 rotation = 0,-0.707106829,0,0.707106709 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 163.67500063526637 tempExt = 163.7006642090158 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 13738.888722228859 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741642 uid = 3279796908 mid = 324065099 launchID = 5 parent = 0 position = -0.24285335838794708,-0.11066818237304688,0.24285341799259186 rotation = 0,-0.382683456,0,0.923879504 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 163.67464608355314 tempExt = 163.69258741393276 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 13738.888722228859 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741610 uid = 1915600820 mid = 324065099 launchID = 5 parent = 0 position = 5.5618946761707777E-16,-0.11066818237304688,0.3434465229511261 rotation = 0,-8.42937027E-08,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 163.67464608355314 tempExt = 163.69258741393276 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 13738.888722228859 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741578 uid = 2646542762 mid = 324065099 launchID = 5 parent = 0 position = 0.24285337328910828,-0.11066818237304688,0.24285337328910828 rotation = 0,0.382683367,0,0.923879564 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 163.67464608355314 tempExt = 163.69258741393276 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 13738.888722228859 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741546 uid = 1592991979 mid = 324065099 launchID = 5 parent = 0 position = 0.34344655275344849,-0.11066818237304688,-5.0496062442562106E-08 rotation = 0,0.707106829,0,0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 163.67464608355314 tempExt = 163.69258741393276 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 13738.888722228859 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741514 uid = 981356437 mid = 324065099 launchID = 5 parent = 0 position = 0.24285334348678589,-0.11066818237304688,-0.24285343289375305 rotation = 0,0.923879564,0,0.382683456 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 9 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 163.69442799124377 tempExt = 164.14299545900698 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 13738.888722228859 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741482 uid = 414668407 mid = 324065099 launchID = 5 parent = 0 position = -4.0942019552403508E-08,-0.11066818237304688,-0.3434465229511261 rotation = 0,1,0,8.42937027E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 163.68948537082369 tempExt = 164.03046424547313 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 13738.888722228859 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741450 uid = 1220418096 mid = 324065099 launchID = 5 parent = 0 position = -0.24285347759723663,-0.11066818237304688,-0.2428533136844635 rotation = 0,0.923879504,0,-0.382683516 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 163.67464608334811 tempExt = 163.69258741374352 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 13738.888722228859 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = -8.91151986E-10 yaw = 1.17938326E-14 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = 18c42359df4d4e0ba5d81961b76ec180 name = Dumb Relay type = Probe sit = ORBITING landed = False landedAt = displaylandedAt = splashed = False met = 43025.464334245669 lct = 16754.365534363627 lastUT = 59779.829868609297 root = 0 lat = 5.1450018301632607E-07 lon = 125.57485823505299 alt = 2486750.0017196126 hgt = -1 nrm = -0.354940921,-0.0297445618,0.934415579 rot = -0.0157308057,-0.12864846,-0.00213488797,0.991563201 CoM = -3.66708264E-09,-0.0179427061,2.15368345E-09 stg = 0 prst = False ref = 696736481 ctrl = True cPch = cHdg = cMod = 0 ORBIT { SMA = 3086750.0045518349 ECC = 8.2461459346059E-10 INC = 0 LPE = 115.4501536482185 LAN = 44.235959783024668 MNA = -0.44405447915918228 EPH = 59779.829868609297 REF = 1 } PART { name = probeCoreOcto cid = 4294610596 uid = 696736481 mid = 4294194363 launchID = 6 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 2 attN = top, 1 mass = 0.100000001 shielded = False temp = 181.81613421481549 tempExt = 181.83066693817645 tempExtUnexp = 4 expt = 0 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = probeCoreOcto (Dumb Relay) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { HibernateToggle { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Running stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None } Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = NormalPlus Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 59779.829868609297 ExtraDelay = 0 CmdGuid = 95c52bb8-b8f3-479e-93ae-092bcf8040af } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongAntenna2 cid = 4294743174 uid = 2018393498 mid = 4294194363 launchID = 6 parent = 0 position = 0,0.18708133697509766,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 181.82196892811405 tempExt = 182.13175701900323 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.993293703 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294603734 uid = 3778754028 mid = 4294194363 launchID = 6 parent = 0 position = 0,-0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 181.8106686718622 tempExt = 181.77664022318456 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = solarPanels5 cid = 4294603052 uid = 4143091365 mid = 4294194363 launchID = 6 parent = 0 position = -0.34344655275344849,-0.11066818237304688,2.0471011552558593E-08 rotation = 0,-0.707106829,0,0.707106709 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 181.81196813512506 tempExt = 181.78335402766965 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 16754.365534363627 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741642 uid = 1801806196 mid = 4294194363 launchID = 6 parent = 0 position = -0.24285335838794708,-0.11066818237304688,0.24285341799259186 rotation = 0,-0.382683456,0,0.923879504 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 181.81196813512506 tempExt = 181.78335402766965 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 16754.365534363627 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741610 uid = 3508325942 mid = 4294194363 launchID = 6 parent = 0 position = 5.5618946761707777E-16,-0.11066818237304688,0.3434465229511261 rotation = 0,-8.42937027E-08,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 181.81196813512506 tempExt = 181.78335402766965 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 16754.365534363627 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741578 uid = 1589496818 mid = 4294194363 launchID = 6 parent = 0 position = 0.24285337328910828,-0.11066818237304688,0.24285337328910828 rotation = 0,0.382683367,0,0.923879564 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 181.81196813512506 tempExt = 181.78335402766965 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 16754.365534363627 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741546 uid = 4166513395 mid = 4294194363 launchID = 6 parent = 0 position = 0.34344655275344849,-0.11066818237304688,-5.0496062442562106E-08 rotation = 0,0.707106829,0,0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 181.84442288094831 tempExt = 182.15766129280632 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 16754.365534363627 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741514 uid = 1282245065 mid = 4294194363 launchID = 6 parent = 0 position = 0.24285334348678589,-0.11066818237304688,-0.24285343289375305 rotation = 0,0.923879564,0,0.382683456 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 9 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 181.86511267372705 tempExt = 182.41765536253999 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 16754.365534363627 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741482 uid = 1185352052 mid = 4294194363 launchID = 6 parent = 0 position = -4.0942019552403508E-08,-0.11066818237304688,-0.3434465229511261 rotation = 0,1,0,8.42937027E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 181.81220487272614 tempExt = 181.7859704395878 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 16754.365534363627 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741450 uid = 1811380358 mid = 4294194363 launchID = 6 parent = 0 position = -0.24285347759723663,-0.11066818237304688,-0.2428533136844635 rotation = 0,0.923879504,0,-0.382683516 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 181.81197579715641 tempExt = 181.78337113081423 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 16754.365534363627 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = -0.0347396918 yaw = -0.000188010308 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = 43b3d8959fcc4ee986120fe7669f7a7c name = Dumb Relay type = Probe sit = ORBITING landed = False landedAt = displaylandedAt = splashed = False met = 37667.446208866284 lct = 22684.114463807811 lastUT = 60351.560672674095 root = 0 lat = 4.9476682182750146E-07 lon = 9.6435515932759124 alt = 2486749.9995236448 hgt = -1 nrm = 0.996213377,-3.02366243E-05,-0.0869401693 rot = 1.60474781E-06,-0.127334192,1.52003613E-05,0.991859853 CoM = -3.09958068E-08,-0.0179426037,1.54369104E-08 stg = 0 prst = False ref = 0 ctrl = True cPch = 0.464 cHdg = 0.298 cMod = 0 ORBIT { SMA = 3086749.999227968 ECC = 1.679675095435624E-09 INC = 0 LPE = 356.82177688125932 LAN = 297.76688822911905 MNA = 1.627954186260548 EPH = 60351.560672674095 REF = 1 } PART { name = probeCoreOcto cid = 4294610596 uid = 1319079865 mid = 2997302359 launchID = 7 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 2 attN = top, 1 mass = 0.100000001 shielded = False temp = 87.33278906639022 tempExt = 87.590202056566142 tempExtUnexp = 4 expt = 0 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = probeCoreOcto (Dumb Relay) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { HibernateToggle { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Running stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None } Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = NormalPlus Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 60351.560672674095 ExtraDelay = 0 CmdGuid = 3cbfc6d0-dcbe-4066-8619-42f4f0c556ea } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongAntenna2 cid = 4294743174 uid = 97093205 mid = 2997302359 launchID = 7 parent = 0 position = 0,0.18708133697509766,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 87.336986718829564 tempExt = 87.779469391781191 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.993293703 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294603734 uid = 1674324907 mid = 2997302359 launchID = 7 parent = 0 position = 0,-0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 87.336960854968211 tempExt = 87.480942102354604 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = solarPanels5 cid = 4294603052 uid = 148171439 mid = 2997302359 launchID = 7 parent = 0 position = -0.34344655275344849,-0.11066818237304688,2.0471011552558593E-08 rotation = 0,-0.707106829,0,0.707106709 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 87.336869712052504 tempExt = 87.499706699305349 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 22684.114463807811 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741642 uid = 266941485 mid = 2997302359 launchID = 7 parent = 0 position = -0.24285335838794708,-0.11066818237304688,0.24285341799259186 rotation = 0,-0.382683456,0,0.923879504 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 87.336967175749763 tempExt = 87.501476334941046 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 22684.114463807811 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741610 uid = 3654644939 mid = 2997302359 launchID = 7 parent = 0 position = 5.5618946761707777E-16,-0.11066818237304688,0.3434465229511261 rotation = 0,-8.42937027E-08,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 87.336633812666136 tempExt = 87.494849611442817 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 22684.114463807811 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741578 uid = 4218185682 mid = 2997302359 launchID = 7 parent = 0 position = 0.24285337328910828,-0.11066818237304688,0.24285337328910828 rotation = 0,0.382683367,0,0.923879564 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 87.337330302263254 tempExt = 87.507963737943697 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 22684.114463807811 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741546 uid = 3405409298 mid = 2997302359 launchID = 7 parent = 0 position = 0.34344655275344849,-0.11066818237304688,-5.0496062442562106E-08 rotation = 0,0.707106829,0,0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 87.336634672033995 tempExt = 87.494850847968408 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 22684.114463807811 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741514 uid = 295126041 mid = 2997302359 launchID = 7 parent = 0 position = 0.24285334348678589,-0.11066818237304688,-0.24285343289375305 rotation = 0,0.923879564,0,0.382683456 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 9 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 87.338888934872969 tempExt = 87.536404216973494 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 22684.114463807811 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741482 uid = 2658313079 mid = 2997302359 launchID = 7 parent = 0 position = -4.0942019552403508E-08,-0.11066818237304688,-0.3434465229511261 rotation = 0,1,0,8.42937027E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 87.336634304512827 tempExt = 87.494850386311143 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 22684.114463807811 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741450 uid = 3094880625 mid = 2997302359 launchID = 7 parent = 0 position = -0.24285347759723663,-0.11066818237304688,-0.2428533136844635 rotation = 0,0.923879504,0,-0.382683516 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 87.33673000896782 tempExt = 87.497167120104947 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 22684.114463807811 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = -0.000200269351 yaw = 1.69897802E-08 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = ba7eab7f98df4543903f2a0924714bb8 name = Dumb Relay type = Probe sit = ORBITING landed = False landedAt = displaylandedAt = splashed = False met = 11.060000000241416 lct = 28949.254189760577 lastUT = 28960.314189760818 root = 0 lat = 3.3298780451466129E-07 lon = 146.41489297738462 alt = 2486749.9997510514 hgt = -1 nrm = -0.63040185,-0.0136002339,0.776149809 rot = -0.00927907508,-0.150700182,-0.000758073351,0.988535643 CoM = -1.23691279E-09,-0.0179426111,-2.91038305E-11 stg = 0 prst = False ref = 3070714349 ctrl = True cPch = cHdg = cMod = 0 ORBIT { SMA = 3086749.9996676543 ECC = 1.246727028240224E-10 INC = 0 LPE = 31.824318941255999 LAN = 180.09480225029193 MNA = 2.5883314518988443 EPH = 28960.314189760818 REF = 1 } PART { name = probeCoreOcto cid = 4294610596 uid = 3070714349 mid = 1286712316 launchID = 8 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 2 attN = top, 1 mass = 0.100000001 shielded = False temp = 304.47355217001342 tempExt = 303.92596105835707 tempExtUnexp = 4 expt = 0 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = probeCoreOcto modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { HibernateToggle { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Running stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None } Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = NormalPlus Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 28960.314189760818 ExtraDelay = 0 CmdGuid = 886c20d8-b31d-4250-ad7c-441ea2ebf7b5 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 9.9456100434538985 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongAntenna2 cid = 4294743174 uid = 3868563020 mid = 1286712316 launchID = 8 parent = 0 position = 0,0.18708133697509766,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 304.47907282955515 tempExt = 304.12381404656867 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.993293703 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294603734 uid = 1114861578 mid = 1286712316 launchID = 8 parent = 0 position = 0,-0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 304.45245308008828 tempExt = 303.87871435121474 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 198.91220086907927 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = solarPanels5 cid = 4294603052 uid = 3274615039 mid = 1286712316 launchID = 8 parent = 0 position = -0.34344655275344849,-0.11066818237304688,2.0471011552558593E-08 rotation = 0,-0.707106829,0,0.707106709 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 304.45708587219838 tempExt = 303.81998889347904 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 28949.254189760577 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741642 uid = 3240484492 mid = 1286712316 launchID = 8 parent = 0 position = -0.24285335838794708,-0.11066818237304688,0.24285341799259186 rotation = 0,-0.382683456,0,0.923879504 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 304.45676460372096 tempExt = 303.81879321596438 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 28949.254189760577 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741610 uid = 611836067 mid = 1286712316 launchID = 8 parent = 0 position = 5.5618946761707777E-16,-0.11066818237304688,0.3434465229511261 rotation = 0,-8.42937027E-08,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 304.45803568861567 tempExt = 303.82530969937159 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 28949.254189760577 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741578 uid = 2467190420 mid = 1286712316 launchID = 8 parent = 0 position = 0.24285337328910828,-0.11066818237304688,0.24285337328910828 rotation = 0,0.382683367,0,0.923879564 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 304.45672127740499 tempExt = 303.81874924865929 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 28949.254189760577 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741546 uid = 1814907162 mid = 1286712316 launchID = 8 parent = 0 position = 0.34344655275344849,-0.11066818237304688,-5.0496062442562106E-08 rotation = 0,0.707106829,0,0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 304.45672219427604 tempExt = 303.81875084669491 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 28949.254189760577 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741514 uid = 3303414970 mid = 1286712316 launchID = 8 parent = 0 position = 0.24285334348678589,-0.11066818237304688,-0.24285343289375305 rotation = 0,0.923879564,0,0.382683456 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 9 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 304.45672090145916 tempExt = 303.81874886300903 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 28949.254189760577 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741482 uid = 3847981646 mid = 1286712316 launchID = 8 parent = 0 position = -4.0942019552403508E-08,-0.11066818237304688,-0.3434465229511261 rotation = 0,1,0,8.42937027E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 10 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 304.45672400167115 tempExt = 303.81875337775671 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 28949.254189760577 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294741450 uid = 3339934310 mid = 1286712316 launchID = 8 parent = 0 position = -0.24285347759723663,-0.11066818237304688,-0.2428533136844635 rotation = 0,0.923879504,0,-0.382683516 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 304.45673829793577 tempExt = 303.81876603289408 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 28949.254189760577 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = -0.00803529751 yaw = 0.000156294525 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = a84fa5d8aa954012ac6b57f8bee2b6c5 name = Dish One type = Probe sit = ORBITING landed = False landedAt = displaylandedAt = splashed = False met = 31017.417765011538 lct = 28965.334189760928 lastUT = 59982.751954772466 root = 0 lat = -4.9939079990454379E-10 lon = -81.009079705974145 alt = 4486750.1112026079 hgt = -1 nrm = -0.0558310151,0.998440385,8.64267349E-06 rot = -0.703311682,-0.0792829543,-0.0708898902,0.702881038 CoM = -2.58907676E-07,-0.0289116893,7.4505806E-09 stg = 0 prst = False ref = 0 ctrl = True cPch = cHdg = cMod = 0 ORBIT { SMA = 5086749.9541380918 ECC = 3.1912260205874453E-08 INC = 0 LPE = 53.178691578108563 LAN = 20.032053005387866 MNA = -2.4811782560985649 EPH = 59982.751954772466 REF = 1 } PART { name = probeCoreOcto cid = 4294734974 uid = 2227747365 mid = 2137879846 launchID = 9 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 2 attN = top, 1 mass = 0.100000001 shielded = False temp = 196.72866091787583 tempExt = 196.68773064675062 tempExtUnexp = 4 expt = 0 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = probeCoreOcto (Dish One) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { HibernateToggle { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None } Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 59982.751954772466 ExtraDelay = 0 CmdGuid = 10a28647-b52c-4be9-88b8-e07a06ebe80c } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Land,Kerbin 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 9.9997073170680828 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongDish2 cid = 4294726444 uid = 690028634 mid = 2137879846 launchID = 9 parent = 0 position = 0,0.21208095550537109,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 0 mass = 0.200000003 shielded = False temp = 197.1982817895364 tempExt = 197.29372455761819 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 0.99999993907651941 RTOmniRange = 0 RTDishRange = 6.0000002E+10 stagingEnabled = True RTAntennaTarget = 45766545-7665-4576-6545-766545766545 EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294715328 uid = 2110872914 mid = 2137879846 launchID = 9 parent = 0 position = 0,-0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 0 attN = bottom, 3 mass = 0.00999999978 shielded = False temp = 195.51317213670796 tempExt = 190.01166558912354 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 199.99414634136164 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryBankMini cid = 4294714146 uid = 2869113071 mid = 2137879846 launchID = 9 parent = 2 position = 0,-0.48708248138427734,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 2 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 195.47697019580448 tempExt = 194.45682742421064 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 199.99414634136164 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = solarPanels4 cid = 4294711204 uid = 2412832347 mid = 2137879846 launchID = 9 parent = 2 position = -0.31005677580833435,-0.34576892852783203,1.8480825758615538E-08 rotation = 0,0,6.17078513E-08,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 193.66452107200496 tempExt = 189.12741485228221 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 28965.334189760928 currentRotation = (-0.507458627, -0.507458866, -0.492428303, 0.492428213) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294708608 uid = 2613747074 mid = 2137879846 launchID = 9 parent = 2 position = -0.21924322843551636,-0.34576892852783203,0.21924327313899994 rotation = 2.36145734E-08,0.382683456,5.70106202E-08,0.923879504 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 193.66637184319245 tempExt = 189.12569407684109 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 28965.334189760928 currentRotation = (0.183105692, 0.183123559, 0.682990193, -0.682980657) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294708504 uid = 2990436309 mid = 2137879846 launchID = 9 parent = 2 position = 6.7481378490208237E-16,-0.34576892852783203,0.31005674600601196 rotation = 4.36340422E-08,0.707106829,4.36340422E-08,0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 7 sym = 8 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 193.78271512366811 tempExt = 189.44291921046755 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 28965.334189760928 currentRotation = (0.134780854, 0.134780601, 0.694149077, -0.6941365) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294708400 uid = 1802386708 mid = 2137879846 launchID = 9 parent = 2 position = 0.21924324333667755,-0.34576892852783203,0.21924322843551636 rotation = 5.70106238E-08,0.923879564,2.36145734E-08,0.382683456 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 8 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 194.34468766444792 tempExt = 191.13251212190227 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 28965.334189760928 currentRotation = (0.179551736, 0.179526821, 0.683933794, -0.683934152) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294708296 uid = 3514360055 mid = 2137879846 launchID = 9 parent = 2 position = 0.31005677580833435,-0.34576892852783203,-4.5586851626921998E-08 rotation = 6.17078513E-08,1,-2.69733576E-15,-4.37113883E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 7 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 194.25111489753843 tempExt = 190.87295808837155 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 28965.334189760928 currentRotation = (-0.492437899, -0.49242875, -0.507452965, 0.507454872) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294708192 uid = 184820502 mid = 2137879846 launchID = 9 parent = 2 position = 0.21924321353435516,-0.34576892852783203,-0.21924328804016113 rotation = 5.70106202E-08,0.923879504,-2.3614577E-08,-0.382683516 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 10 sym = 11 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 194.39960606136543 tempExt = 191.29937940419313 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 28965.334189760928 currentRotation = (0.682985485, 0.682986557, 0.18312563, -0.183098942) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294708088 uid = 570058289 mid = 2137879846 launchID = 9 parent = 2 position = -3.6961647964517397E-08,-0.34576892852783203,-0.31005674600601196 rotation = 4.36340422E-08,0.707106829,-4.36340422E-08,-0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 11 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 193.69562164056336 tempExt = 189.20298670859739 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 28965.334189760928 currentRotation = (0.694147408, 0.694138229, 0.134783268, -0.134777784) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294707984 uid = 461016585 mid = 2137879846 launchID = 9 parent = 2 position = -0.21924333274364471,-0.34576892852783203,-0.21924318373203278 rotation = 2.36145627E-08,0.382683277,-5.70106273E-08,-0.923879623 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 193.66795183862899 tempExt = 189.12987836414601 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 28965.334189760928 currentRotation = (0.683940113, 0.683924913, 0.179533452, -0.17955634) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = sensorThermometer cid = 4294699424 uid = 3534789586 mid = 2137879846 launchID = 9 parent = 0 position = 0.34361279010772705,-0.014966011047363281,2.0480920071008768E-08 rotation = 0,0.707106829,0,-0.707106709 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 197.17032732234136 tempExt = 196.97884121747799 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = sensorThermometer modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } UPGRADESAPPLIED { } } } PART { name = RTLongAntenna2 cid = 4294516218 uid = 2068325258 mid = 2137879846 launchID = 9 parent = 0 position = -0.34393265843391418,-0.010713577270507813,2.0499985708966051E-08 rotation = 0.50000006,-0.5,0.500000119,0.499999911 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 srfN = srfAttach, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 198.03005731534796 tempExt = 197.44088730596636 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.993763864 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = afff882d0e1e4d7d8a69503aba6b97c2 name = Dish One type = Probe sit = ORBITING landed = False landedAt = displaylandedAt = splashed = False met = 31133.277764975534 lct = 29061.314189763023 lastUT = 60194.591954738557 root = 0 lat = -3.3851600414462932E-06 lon = -88.182811126872267 alt = 386749.99881939101 hgt = -1 nrm = -0.159757674,3.17584272E-06,-0.98715651 rot = -1.75492232E-06,-0.0959327072,-2.08062306E-06,0.995387912 CoM = 9.62803142E-07,-0.0289117936,-6.5762481E-07 stg = 0 prst = False ref = 0 ctrl = True cPch = cHdg = cMod = 0 ORBIT { SMA = 1086749.9988081893 ECC = 1.2677179123969705E-09 INC = 4.9045561968554799E-06 LPE = 0.76020581286769295 LAN = 270.73283895937055 MNA = -1.5792201496433271 EPH = 60194.591954738557 REF = 5 } PART { name = probeCoreOcto cid = 4294734974 uid = 1664090732 mid = 4230821565 launchID = 10 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 2 attN = top, 1 mass = 0.100000001 shielded = False temp = 134.11908771743495 tempExt = 134.10891262350793 tempExtUnexp = 4 expt = 0 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = probeCoreOcto (Dish One) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { HibernateToggle { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Running stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None } Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = NormalPlus Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 60194.591954738557 ExtraDelay = 0 CmdGuid = 213b9416-758c-42f3-bc05-38a7244ad483 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Eve } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 8.2847284007399686 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongDish2 cid = 4294726444 uid = 2450451314 mid = 4230821565 launchID = 10 parent = 0 position = 0,0.21208095550537109,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 0 mass = 0.200000003 shielded = False temp = 134.11934791168383 tempExt = 134.12034163375523 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 0.99999993907651941 RTOmniRange = 0 RTDishRange = 6.0000002E+10 stagingEnabled = True RTAntennaTarget = a84fa5d8-aa95-4012-ac6b-57f8bee2b6c5 EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294715328 uid = 2450972699 mid = 4230821565 launchID = 10 parent = 0 position = 0,-0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 0 attN = bottom, 3 mass = 0.00999999978 shielded = False temp = 134.11758186377992 tempExt = 134.07941231427139 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 165.69456801479805 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryBankMini cid = 4294714146 uid = 3389388066 mid = 4230821565 launchID = 10 parent = 2 position = 0,-0.48708248138427734,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 2 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 134.11717087116057 tempExt = 134.09217534858738 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 165.69456801479805 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = solarPanels4 cid = 4294711204 uid = 3521002801 mid = 4230821565 launchID = 10 parent = 2 position = -0.31005677580833435,-0.34576892852783203,1.8480825758615538E-08 rotation = 0,0,6.17078513E-08,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 134.1180343957995 tempExt = 134.06624711783161 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 29061.314189763023 currentRotation = (0.00104276906, 0.00102615345, 0.707164168, -0.707047999) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294708608 uid = 168320523 mid = 4230821565 launchID = 10 parent = 2 position = -0.21924322843551636,-0.34576892852783203,0.21924327313899994 rotation = 2.36145734E-08,0.382683456,5.70106202E-08,0.923879504 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 134.1191452326058 tempExt = 134.11711194157351 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 29061.314189763023 currentRotation = (-0.545894206, -0.545898855, -0.449472636, 0.449408919) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294708504 uid = 493095251 mid = 4230821565 launchID = 10 parent = 2 position = 6.7481378490208237E-16,-0.34576892852783203,0.31005674600601196 rotation = 4.36340422E-08,0.707106829,4.36340422E-08,0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 7 sym = 8 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 134.11967841753656 tempExt = 134.14359069042237 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 29061.314189763023 currentRotation = (-0.70711118, -0.707087338, -0.00327050826, 0.00326327933) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294708400 uid = 2229531607 mid = 4230821565 launchID = 10 parent = 2 position = 0.21924324333667755,-0.34576892852783203,0.21924322843551636 rotation = 5.70106238E-08,0.923879564,2.36145734E-08,0.382683456 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 8 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 134.12381175603122 tempExt = 134.33819359287673 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 29061.314189763023 currentRotation = (-0.707106352, -0.707106233, -0.00085127377, 0.000880591571) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294708296 uid = 4021652554 mid = 4230821565 launchID = 10 parent = 2 position = 0.31005677580833435,-0.34576892852783203,-4.5586851626921998E-08 rotation = 6.17078513E-08,1,-2.69733576E-15,-4.37113883E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 7 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 134.1191641752861 tempExt = 134.11811685074079 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 29061.314189763023 currentRotation = (0.707090914, 0.707121074, 0.00107489969, -0.00107210886) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294708192 uid = 1086778092 mid = 4230821565 launchID = 10 parent = 2 position = 0.21924321353435516,-0.34576892852783203,-0.21924328804016113 rotation = 5.70106202E-08,0.923879504,-2.3614577E-08,-0.382683516 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 10 sym = 11 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 134.1180340261991 tempExt = 134.06624655620905 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 29061.314189763023 currentRotation = (-0.449451745, -0.449460834, -0.545879424, 0.545888126) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294708088 uid = 1742317542 mid = 4230821565 launchID = 10 parent = 2 position = -3.6961647964517397E-08,-0.34576892852783203,-0.31005674600601196 rotation = 4.36340422E-08,0.707106829,-4.36340422E-08,-0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 11 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 134.11803494897487 tempExt = 134.06624795881191 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 29061.314189763023 currentRotation = (-0.00337008783, -0.00337168574, -0.707114637, 0.707082927) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294707984 uid = 4069227437 mid = 4230821565 launchID = 10 parent = 2 position = -0.21924333274364471,-0.34576892852783203,-0.21924318373203278 rotation = 2.36145627E-08,0.382683277,-5.70106273E-08,-0.923879623 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 134.11803584095185 tempExt = 134.0662493161733 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 29061.314189763023 currentRotation = (-0.000878533174, -0.000859055668, -0.707118332, 0.707094252) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = sensorThermometer cid = 4294699424 uid = 37586646 mid = 4230821565 launchID = 10 parent = 0 position = 0.34361279010772705,-0.014966011047363281,2.0480920071008768E-08 rotation = 0,0.707106829,0,-0.707106709 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 134.11897312587274 tempExt = 134.10467491912939 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = sensorThermometer modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } UPGRADESAPPLIED { } } } PART { name = RTLongAntenna2 cid = 4294516218 uid = 331891360 mid = 4230821565 launchID = 10 parent = 0 position = -0.34393265843391418,-0.010713577270507813,2.0499985708966051E-08 rotation = 0.50000006,-0.5,0.500000119,0.499999911 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 srfN = srfAttach, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 134.11890872774811 tempExt = 134.11017257521274 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.993763864 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 43504.8432632418 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = -7.23548965E-06 yaw = -1.41959908E-05 roll = -2.60949691E-05 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = 77ccd861f6c3420fb8d5b5b5a45814e4 name = Smart SAS type = Probe sit = ORBITING landed = False landedAt = displaylandedAt = splashed = False met = 11958.5724732444 lct = 48233.039481494634 lastUT = 60191.611954739034 root = 0 lat = 3.3129671687580117E-06 lon = 20.580684887525557 alt = 1386750.0001861951 hgt = -1 nrm = 0.761633754,-5.68030671E-08,0.64800787 rot = -1.74653021E-08,0.172022656,5.62249447E-08,0.985093057 CoM = 4.17987822E-09,-0.114189476,-5.63527536E-09 stg = 0 prst = False ref = 0 ctrl = True cPch = cHdg = cMod = 0 ORBIT { SMA = 2086750.0001156877 ECC = 9.4479375284270842E-11 INC = 0 LPE = 201.19914815082674 LAN = 199.51873777509721 MNA = -1.9365705890049021 EPH = 60191.611954739034 REF = 5 } PART { name = probeCoreOcto2 cid = 4294355974 uid = 2518202834 mid = 2479572892 launchID = 11 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 1 attN = top, 11 mass = 0.0399999991 shielded = False temp = 161.96290989867322 tempExt = 162.21031687656227 tempExtUnexp = 4 expt = 0 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = probeCoreOcto2 (Smart SAS) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { HibernateToggle { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 60191.611954739034 ExtraDelay = 0 CmdGuid = b9d0855e-8c06-417b-9c3d-74e8cdd8f498 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Eve } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 4.9997073170680828 maxAmount = 5 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = sasModule cid = 4294351696 uid = 3432446747 mid = 2479572892 launchID = 11 parent = 0 position = 0,-0.15217304229736328,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 2 attN = top, 0 mass = 0.0500000007 shielded = False temp = 161.96323142906675 tempExt = 162.26775787506989 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = sasModule modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Running stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None } Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294344458 uid = 3727555310 mid = 2479572892 launchID = 11 parent = 1 position = 0,-0.34328460693359375,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 1 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 161.97832565060588 tempExt = 162.26646321190884 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 199.98829268272331 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = solarPanels5 cid = 4294342658 uid = 3247790393 mid = 2479572892 launchID = 11 parent = 1 position = -0.2966991662979126,-0.20923042297363281,1.768465018869847E-08 rotation = 0,-0.707106829,0,0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 1 mass = 0.00499999989 shielded = False temp = 161.9670105758228 tempExt = 162.09792259910247 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 48233.039481494634 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294341730 uid = 234037077 mid = 2479572892 launchID = 11 parent = 1 position = -0.20979796350002289,-0.20923042297363281,0.20979802310466766 rotation = 0,-0.382683426,0,0.923879564 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 1 mass = 0.00499999989 shielded = False temp = 161.9670105758228 tempExt = 162.09792259910247 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 48233.039481494634 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294341698 uid = 3204199462 mid = 2479572892 launchID = 11 parent = 1 position = 7.2226954692583339E-16,-0.20923042297363281,0.29669913649559021 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 1 mass = 0.00499999989 shielded = False temp = 161.9670105758228 tempExt = 162.09792259910247 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 48233.039481494634 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294341666 uid = 2163016141 mid = 2479572892 launchID = 11 parent = 1 position = 0.20979797840118408,-0.20923042297363281,0.20979797840118408 rotation = 0,0.382683456,0,0.923879564 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 1 mass = 0.00499999989 shielded = False temp = 161.9670105758228 tempExt = 162.09792259910247 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 48233.039481494634 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294341634 uid = 1246247097 mid = 2479572892 launchID = 11 parent = 1 position = 0.2966991662979126,-0.20923042297363281,-4.362291505799476E-08 rotation = 0,0.707106888,0,0.707106769 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 1 mass = 0.00499999989 shielded = False temp = 161.9670105758228 tempExt = 162.09792259910247 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 48233.039481494634 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294341602 uid = 2837351547 mid = 2479572892 launchID = 11 parent = 1 position = 0.20979796350002289,-0.20923042297363281,-0.20979803800582886 rotation = 0,0.923879623,0,0.382683367 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 9 sym = 10 srfN = srfAttach, 1 mass = 0.00499999989 shielded = False temp = 161.9670105758228 tempExt = 162.09792259910247 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 48233.039481494634 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294341570 uid = 3766512914 mid = 2479572892 launchID = 11 parent = 1 position = -3.5369296824683261E-08,-0.20923042297363281,-0.29669913649559021 rotation = 0,1,0,0 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 10 srfN = srfAttach, 1 mass = 0.00499999989 shielded = False temp = 161.9670105758228 tempExt = 162.09792259910247 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 48233.039481494634 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294341538 uid = 216154003 mid = 2479572892 launchID = 11 parent = 1 position = -0.20979806780815125,-0.20923042297363281,-0.20979791879653931 rotation = 0,0.923879504,0,-0.382683605 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 srfN = srfAttach, 1 mass = 0.00499999989 shielded = False temp = 161.9670105758228 tempExt = 162.09792259910247 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 48233.039481494634 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = RTLongAntenna2 cid = 4294347338 uid = 1948189778 mid = 2479572892 launchID = 11 parent = 0 position = 0,0.061061859130859375,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 161.98084046774611 tempExt = 162.90059584088709 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.993103266 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = True, 48259.1050308087 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = -8.82434819E-08 yaw = -4.29515893E-07 roll = -7.88723199E-15 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = b2810c9ad38c447a8ec94664ca8299de name = Dish One 2 type = Probe sit = ORBITING landed = False landedAt = displaylandedAt = splashed = False met = 127.55999997958133 lct = 48329.852704139281 lastUT = 48457.412704118862 root = 0 lat = -1.7633852506762942E-06 lon = -174.9626225278268 alt = 1486750.0017495197 hgt = -1 nrm = -0.993439794,3.82243525E-06,0.11435625 rot = 1.31329432E-06,-0.101089962,1.90925198E-06,0.994877338 CoM = -5.32910576E-07,-0.0289117657,1.14448383E-07 stg = 0 prst = False ref = 0 ctrl = True cPch = cHdg = cMod = 0 ORBIT { SMA = 2086750.0032857377 ECC = 7.8437837868076206E-10 INC = 2.4148365394514667E-06 LPE = 290.8988316255186 LAN = 93.892080307284402 MNA = -0.35315969491768384 EPH = 48457.412704118862 REF = 1 } PART { name = probeCoreOcto cid = 4294734974 uid = 322700524 mid = 782029989 launchID = 12 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 2 attN = top, 1 mass = 0.100000001 shielded = False temp = 300.74323349763978 tempExt = 299.59341426227752 tempExtUnexp = 4 expt = 0 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = probeCoreOcto (Dish One 2) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { HibernateToggle { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Running stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None } Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = NormalPlus Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 48457.412704118862 ExtraDelay = 0 CmdGuid = 860964b1-2024-4307-9639-37220841bb29 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 9.9997073170680828 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongDish2 cid = 4294726444 uid = 3258258061 mid = 782029989 launchID = 12 parent = 0 position = 0,0.21208095550537109,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 0 mass = 0.200000003 shielded = False temp = 300.94060124234431 tempExt = 300.2389530204577 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 0.99999993907651941 RTOmniRange = 0 RTDishRange = 6.0000002E+10 stagingEnabled = True RTAntennaTarget = 97670109-5394-4a46-b548-605632445f90 EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294715328 uid = 3566693338 mid = 782029989 launchID = 12 parent = 0 position = 0,-0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 0 attN = bottom, 3 mass = 0.00999999978 shielded = False temp = 300.0164664441927 tempExt = 294.75571014641997 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 199.99414634136164 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryBankMini cid = 4294714146 uid = 988234270 mid = 782029989 launchID = 12 parent = 2 position = 0,-0.48708248138427734,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 2 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 299.92006624121177 tempExt = 298.00946132751619 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 199.99414634136164 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = solarPanels4 cid = 4294711204 uid = 998295370 mid = 782029989 launchID = 12 parent = 2 position = -0.31005677580833435,-0.34576892852783203,1.8480825758615538E-08 rotation = 0,0,6.17078513E-08,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 299.11499188991831 tempExt = 294.23228802533208 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 48329.852704139281 currentRotation = (-5.42172493E-05, -5.58197498E-05, 0.707116127, -0.707097471) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294708608 uid = 2196558367 mid = 782029989 launchID = 12 parent = 2 position = -0.21924322843551636,-0.34576892852783203,0.21924327313899994 rotation = 2.36145734E-08,0.382683456,5.70106202E-08,0.923879504 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 299.19654761666396 tempExt = 294.34465234569399 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 48329.852704139281 currentRotation = (-0.707109213, -0.707104385, 1.18790695E-05, 3.81469727E-06) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294708504 uid = 1669922105 mid = 782029989 launchID = 12 parent = 2 position = 6.7481378490208237E-16,-0.34576892852783203,0.31005674600601196 rotation = 4.36340422E-08,0.707106829,4.36340422E-08,0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 7 sym = 8 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 299.32730030436454 tempExt = 294.83569059072141 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 48329.852704139281 currentRotation = (-0.707115531, -0.707098126, 1.37852305E-06, -1.96695328E-06) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294708400 uid = 2732923682 mid = 782029989 launchID = 12 parent = 2 position = 0.21924324333667755,-0.34576892852783203,0.21924322843551636 rotation = 5.70106238E-08,0.923879564,2.36145734E-08,0.382683456 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 8 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 299.02650963546427 tempExt = 293.98354337065814 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 48329.852704139281 currentRotation = (-0.707108557, -0.707105041, -3.34961737E-06, -2.06381105E-06) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294708296 uid = 3176927134 mid = 782029989 launchID = 12 parent = 2 position = 0.31005677580833435,-0.34576892852783203,-4.5586851626921998E-08 rotation = 6.17078513E-08,1,-2.69733576E-15,-4.37113883E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 7 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 299.00347290641065 tempExt = 293.90735120658809 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 48329.852704139281 currentRotation = (0.70711112, 0.707102478, 2.4402043E-05, -2.5808813E-05) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294708192 uid = 2478413952 mid = 782029989 launchID = 12 parent = 2 position = 0.21924321353435516,-0.34576892852783203,-0.21924328804016113 rotation = 5.70106202E-08,0.923879504,-2.3614577E-08,-0.382683516 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 10 sym = 11 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 299.00543118847497 tempExt = 293.91180500192633 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 48329.852704139281 currentRotation = (-1.5576612E-05, 5.54323196E-06, -0.707110524, 0.707103133) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294708088 uid = 2456936106 mid = 782029989 launchID = 12 parent = 2 position = -3.6961647964517397E-08,-0.34576892852783203,-0.31005674600601196 rotation = 4.36340422E-08,0.707106829,-4.36340422E-08,-0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 11 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 299.01391479382579 tempExt = 293.93181667449028 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 48329.852704139281 currentRotation = (1.28980082E-06, 3.42726707E-07, -0.707104087, 0.707109511) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294707984 uid = 840345311 mid = 782029989 launchID = 12 parent = 2 position = -0.21924333274364471,-0.34576892852783203,-0.21924318373203278 rotation = 2.36145627E-08,0.382683277,-5.70106273E-08,-0.923879623 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 300.17626692756875 tempExt = 297.26686444152472 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 48329.852704139281 currentRotation = (1.02773301E-05, 1.45286299E-06, -0.707115591, 0.707098067) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = sensorThermometer cid = 4294699424 uid = 2517345499 mid = 782029989 launchID = 12 parent = 0 position = 0.34361279010772705,-0.014966011047363281,2.0480920071008768E-08 rotation = 0,0.707106829,0,-0.707106709 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 301.05639196898403 tempExt = 300.22367038179334 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = sensorThermometer modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } UPGRADESAPPLIED { } } } PART { name = RTLongAntenna2 cid = 4294516218 uid = 3360266067 mid = 782029989 launchID = 12 parent = 0 position = -0.34393265843391418,-0.010713577270507813,2.0499985708966051E-08 rotation = 0.50000006,-0.5,0.500000119,0.499999911 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 srfN = srfAttach, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 301.50084540384967 tempExt = 300.40230998125645 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.993763864 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 3.10746259E-07 yaw = -2.89510922E-07 roll = -7.43522605E-07 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = 9767010953944a46b548605632445f90 name = Dish One type = Probe sit = ORBITING landed = False landedAt = displaylandedAt = splashed = False met = 776.05336180600716 lct = 48417.152704125307 lastUT = 49193.206065931314 root = 0 lat = 1.5000210101591067E-06 lon = 53.283672939371968 alt = 1026750.0224499507 hgt = -1 nrm = -0.999938309,0.00548230018,0.00966447592 rot = -0.00896415859,0.891383469,0.0242564455,0.452511758 CoM = 2.32830644E-09,-0.0289117116,-5.52972779E-08 stg = 0 prst = False ref = 0 ctrl = True cPch = cHdg = cMod = 0 ORBIT { SMA = 1086750.0441056329 ECC = 8.8783738427554159E-08 INC = 0 LPE = 267.71763716597184 LAN = 170.85452549692013 MNA = -1.3427372656004146 EPH = 49193.206065931314 REF = 3 } PART { name = probeCoreOcto cid = 4294734974 uid = 3226981421 mid = 3918903816 launchID = 13 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 2 attN = top, 1 mass = 0.100000001 shielded = False temp = 232.07258770903127 tempExt = 231.74815110325187 tempExtUnexp = 4 expt = 0 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = probeCoreOcto (Dish One) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { HibernateToggle { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Running stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None } Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = NormalPlus Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 49193.206065931314 ExtraDelay = 0 CmdGuid = e9f7ded7-c535-48a9-b092-c8340cd291eb } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Minmus } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 9.9997073170680828 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongDish2 cid = 4294726444 uid = 1276759485 mid = 3918903816 launchID = 13 parent = 0 position = 0,0.21208095550537109,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 0 mass = 0.200000003 shielded = False temp = 232.58933409487545 tempExt = 232.4258781696735 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 0.99999993907651941 RTOmniRange = 0 RTDishRange = 6.0000002E+10 stagingEnabled = True RTAntennaTarget = b2810c9a-d38c-447a-8ec9-4664ca8299de EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294715328 uid = 3732740159 mid = 3918903816 launchID = 13 parent = 0 position = 0,-0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 0 attN = bottom, 3 mass = 0.00999999978 shielded = False temp = 230.96907810467587 tempExt = 227.65177058433741 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 199.99414634136164 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryBankMini cid = 4294714146 uid = 2323394721 mid = 3918903816 launchID = 13 parent = 2 position = 0,-0.48708248138427734,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 2 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 230.90770165513649 tempExt = 229.95284428906149 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 199.99414634136164 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = solarPanels4 cid = 4294711204 uid = 1822454168 mid = 3918903816 launchID = 13 parent = 2 position = -0.31005677580833435,-0.34576892852783203,1.8480825758615538E-08 rotation = 0,0,6.17078513E-08,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 229.40737437959891 tempExt = 227.25316086183335 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 48417.152704125307 currentRotation = (-0.0887395218, -0.0887462273, 0.701525688, -0.701506317) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294708608 uid = 1015350808 mid = 3918903816 launchID = 13 parent = 2 position = -0.21924322843551636,-0.34576892852783203,0.21924327313899994 rotation = 2.36145734E-08,0.382683456,5.70106202E-08,0.923879504 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 229.98500614830095 tempExt = 229.08802431571362 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 48417.152704125307 currentRotation = (-0.706856549, -0.706841707, 0.0190838408, -0.0190915186) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294708504 uid = 297480789 mid = 3918903816 launchID = 13 parent = 2 position = 6.7481378490208237E-16,-0.34576892852783203,0.31005674600601196 rotation = 4.36340422E-08,0.707106829,4.36340422E-08,0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 7 sym = 8 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 229.47512375351695 tempExt = 227.61388522711528 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 48417.152704125307 currentRotation = (-0.70697087, -0.706950843, 0.0143658705, -0.0143661508) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294708400 uid = 1527323450 mid = 3918903816 launchID = 13 parent = 2 position = 0.21924324333667755,-0.34576892852783203,0.21924322843551636 rotation = 5.70106238E-08,0.923879564,2.36145734E-08,0.382683456 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 8 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 229.20786297610505 tempExt = 226.82511438862196 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 48417.152704125307 currentRotation = (-0.706798434, -0.706781209, 0.0211785305, -0.0211632848) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294708296 uid = 75252380 mid = 3918903816 launchID = 13 parent = 2 position = 0.31005677580833435,-0.34576892852783203,-4.5586851626921998E-08 rotation = 6.17078513E-08,1,-2.69733576E-15,-4.37113883E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 7 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 229.21677388568156 tempExt = 226.82522882475766 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 48417.152704125307 currentRotation = (0.701518893, 0.701533377, -0.0886670798, 0.0886587575) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294708192 uid = 421971298 mid = 3918903816 launchID = 13 parent = 2 position = 0.21924321353435516,-0.34576892852783203,-0.21924328804016113 rotation = 5.70106202E-08,0.923879504,-2.3614577E-08,-0.382683516 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 10 sym = 11 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 229.20893832953723 tempExt = 226.82414863228624 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 48417.152704125307 currentRotation = (0.0190775543, 0.0190710127, -0.706856549, 0.706842482) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294708088 uid = 2820778401 mid = 3918903816 launchID = 13 parent = 2 position = -3.6961647964517397E-08,-0.34576892852783203,-0.31005674600601196 rotation = 4.36340422E-08,0.707106829,-4.36340422E-08,-0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 11 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 229.23479679781212 tempExt = 227.23832130699654 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 48417.152704125307 currentRotation = (0.014366392, 0.014364548, -0.706969023, 0.706952631) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294707984 uid = 3131951022 mid = 3918903816 launchID = 13 parent = 2 position = -0.21924333274364471,-0.34576892852783203,-0.21924318373203278 rotation = 2.36145627E-08,0.382683277,-5.70106273E-08,-0.923879623 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 230.03840498604117 tempExt = 229.96290597681102 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 48417.152704125307 currentRotation = (0.0211736597, 0.0211898368, -0.706794202, 0.706784785) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = sensorThermometer cid = 4294699424 uid = 2536767763 mid = 3918903816 launchID = 13 parent = 0 position = 0.34361279010772705,-0.014966011047363281,2.0480920071008768E-08 rotation = 0,0.707106829,0,-0.707106709 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 232.47665728017355 tempExt = 232.3129594300749 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = sensorThermometer modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } UPGRADESAPPLIED { } } } PART { name = RTLongAntenna2 cid = 4294516218 uid = 1933230213 mid = 3918903816 launchID = 13 parent = 0 position = -0.34393265843391418,-0.010713577270507813,2.0499985708966051E-08 rotation = 0.50000006,-0.5,0.500000119,0.499999911 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 srfN = srfAttach, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 233.56700405932901 tempExt = 232.69225751016089 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.993763864 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0.310992092 yaw = -0.0130021991 roll = 0.00232083956 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = 67a9b3148e9147a49f91cf3d820c583f name = RC Rocket type = Probe sit = ORBITING landed = False landedAt = displaylandedAt = splashed = False met = 10660.263802666195 lct = 49202.886065929764 lastUT = 59863.14986859596 root = 0 lat = 9.1640621493547093E-05 lon = 1.6646194092239048 alt = 626749.99279829406 hgt = -1 nrm = -0.162323028,0.00150114356,0.986736417 rot = 0.000670447829,0.752858043,-0.000365411368,0.658182442 CoM = -4.28553903E-08,-1.35340667,1.13621354E-07 stg = 1 prst = False ref = 0 ctrl = True cPch = cHdg = cMod = 0 ORBIT { SMA = 686749.95593922806 ECC = 6.4094506472241409E-08 INC = 2.1361409804484527E-05 LPE = 47.221927583583927 LAN = 140.18022303838245 MNA = -2.4836649266930411 EPH = 59863.14986859596 REF = 3 } PART { name = probeCoreOcto2 cid = 4294193826 uid = 650625706 mid = 3674667315 launchID = 14 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 1 attN = top, 12 mass = 0.0399999991 shielded = False temp = 261.2454327190033 tempExt = 260.9327762088846 tempExtUnexp = 4 expt = 0 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = probeCoreOcto2 (RC Rocket) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { HibernateToggle { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 59863.14986859596 ExtraDelay = 0 CmdGuid = d4a852c5-ab6b-4f89-a34b-3102eb4eebbd } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Minmus } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 4.9997073170680828 maxAmount = 5 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = sasModule cid = 4294181342 uid = 3034665139 mid = 3674667315 launchID = 14 parent = 0 position = 0,-0.15217304229736328,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 2 attN = top, 0 mass = 0.0500000007 shielded = False temp = 261.25197936683333 tempExt = 261.03149610578674 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = sasModule modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None } Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } UPGRADESAPPLIED { } } } PART { name = fuelTankSmallFlat cid = 4294179194 uid = 3884468543 mid = 3674667315 launchID = 14 parent = 1 position = 0,-0.55578422546386719,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 1 attN = bottom, 3 mass = 0.0625 shielded = False temp = 261.25931483631871 tempExt = 261.16712518101133 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = fuelTankSmallFlat modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 45 maxAmount = 45 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 55 maxAmount = 55 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = liquidEngine2 cid = 4294172694 uid = 1614901762 mid = 3674667315 launchID = 14 parent = 2 position = 0,-1.7701101303100586,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 0 sqor = 0 sepI = -1 sidx = 0 attm = 0 srfN = , -1 attN = top, 2 attN = bottom, -1 mass = 1.5 shielded = False temp = 261.26818470905488 tempExt = 261.37679617518017 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = liquidEngine2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 9 manuallyOverridden = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleJettison isEnabled = True isJettisoned = True shroudHideOverride = False stagingEnabled = True EVENTS { } ACTIONS { JettisonAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True gimbalActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None } LockAction { actionGroup = None } FreeAction { actionGroup = None } TogglePitchAction { actionGroup = None } ToggleYawAction { actionGroup = None } ToggleRollAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateThrottle isEnabled = True animState = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleAlternator isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleSurfaceFX isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294168150 uid = 355800471 mid = 3674667315 launchID = 14 parent = 2 position = -0.61644476652145386,-0.59257411956787109,3.6742974884873547E-08 rotation = 4.36334169E-08,-0.707106709,4.36334133E-08,0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 2 mass = 0.00499999989 shielded = False temp = 261.25018730927582 tempExt = 261.04208756340557 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 49202.886065929764 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294167242 uid = 2382836004 mid = 3674667315 launchID = 14 parent = 2 position = -0.43589222431182861,-0.59257411956787109,0.43589234352111816 rotation = 5.70098067E-08,-0.382683307,2.36142288E-08,0.923879564 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 2 mass = 0.00499999989 shielded = False temp = 261.25018730927582 tempExt = 261.04208756340557 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 49202.886065929764 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294167210 uid = 564870585 mid = 3674667315 launchID = 14 parent = 2 position = 1.3626617127965139E-15,-0.59257411956787109,0.61644470691680908 rotation = 6.17069702E-08,8.42937027E-08,-2.5121481E-15,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 7 sym = 8 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 2 mass = 0.00499999989 shielded = False temp = 261.25018730927582 tempExt = 261.04208756340557 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 49202.886065929764 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294167178 uid = 1501303670 mid = 3674667315 launchID = 14 parent = 2 position = 0.435892254114151,-0.59257411956787109,0.435892254114151 rotation = 5.70098067E-08,0.382683516,-2.36142377E-08,0.923879504 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 8 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 2 mass = 0.00499999989 shielded = False temp = 261.25018730927582 tempExt = 261.04208756340557 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 49202.886065929764 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294167146 uid = 1493274608 mid = 3674667315 launchID = 14 parent = 2 position = 0.61644476652145386,-0.59257411956787109,-9.0634287630564359E-08 rotation = 4.36334098E-08,0.707106888,-4.36334204E-08,0.70710665 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 7 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 2 mass = 0.00499999989 shielded = False temp = 261.25018730927582 tempExt = 261.04208756340557 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 49202.886065929764 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294167114 uid = 2297432080 mid = 3674667315 launchID = 14 parent = 2 position = 0.43589219450950623,-0.59257411956787109,-0.43589237332344055 rotation = 2.3614227E-08,0.923879564,-5.70098067E-08,0.382683277 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 10 sym = 11 srfN = srfAttach, 2 mass = 0.00499999989 shielded = False temp = 261.25018730927582 tempExt = 261.04208756340557 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 49202.886065929764 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294167082 uid = 105464629 mid = 3674667315 launchID = 14 parent = 2 position = -7.3485942664319737E-08,-0.59257411956787109,-0.61644470691680908 rotation = -2.5121481E-15,1,-6.17069702E-08,-8.42937027E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 11 srfN = srfAttach, 2 mass = 0.00499999989 shielded = False temp = 261.25018730927582 tempExt = 261.04208756340557 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 49202.886065929764 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294167050 uid = 2877394980 mid = 3674667315 launchID = 14 parent = 2 position = -0.43589243292808533,-0.59257411956787109,-0.43589213490486145 rotation = -2.36142466E-08,0.923879445,-5.70097995E-08,-0.382683665 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 2 mass = 0.00499999989 shielded = False temp = 261.25018730927582 tempExt = 261.04208756340557 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 49202.886065929764 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294162520 uid = 673135846 mid = 3674667315 launchID = 14 parent = 0 position = 0,0.16106224060058594,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 13 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 261.23308145047611 tempExt = 261.04001282746725 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 199.98829268272331 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongAntenna2 cid = 4294159580 uid = 649046153 mid = 3674667315 launchID = 14 parent = 12 position = 0,0.2610626220703125,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 12 mass = 0.00999999978 shielded = False temp = 261.24472734275298 tempExt = 261.24885684767571 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.993033767 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 49217.1460659275 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = 1e6ff7a3017e404b8174340d2eac9ade name = Wide Dish type = Relay sit = ORBITING landed = False landedAt = displaylandedAt = splashed = False met = 125.33999997993669 lct = 59651.389868629856 lastUT = 59776.729868609793 root = 0 lat = 1.7698965925206495E-06 lon = -4.139966268162846 alt = 1486749.9050953749 hgt = -1 nrm = 0.0753085315,-0.995240927,0.0618396401 rot = 0.469412386,-0.501783311,-0.496583939,-0.530349016 CoM = -0.0548232645,-0.102739096,-0.0548231825 stg = 0 prst = False ref = 2195716170 ctrl = True cPch = cHdg = cMod = 0 ORBIT { SMA = 2086750.0024377506 ECC = 2.0951122097893869E-09 INC = 0 LPE = 52.956908693550417 LAN = 4.8474847454514247 MNA = -0.93073763290664913 EPH = 59776.729868609793 REF = 1 } PART { name = probeCoreOcto cid = 4294712396 uid = 2195716170 mid = 865570216 launchID = 15 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 1 attN = top, -1 mass = 0.100000001 shielded = False temp = 302.35772953908372 tempExt = 302.0052412122252 tempExtUnexp = 4 expt = 0 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = probeCoreOcto modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { HibernateToggle { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Running stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None } Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 59776.729868609793 ExtraDelay = 0 CmdGuid = 3a8d0a5e-618e-4788-b8ba-99d1aac6f09e } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 9.9994761862923038 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryBankMini cid = 4294701698 uid = 1746207315 mid = 865570216 launchID = 15 parent = 0 position = 0,-0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 0 attN = bottom, 2 mass = 0.00999999978 shielded = False temp = 302.39298008610871 tempExt = 301.90499459301753 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 199.98952372584606 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = sasModule cid = 4294706662 uid = 599485042 mid = 865570216 launchID = 15 parent = 1 position = 0,-0.47819328308105469,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, -1 attN = top, 1 mass = 0.0500000007 shielded = False temp = 302.40768227556049 tempExt = 302.3800188548276 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = sasModule modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Running stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None } Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294698834 uid = 4187327691 mid = 865570216 launchID = 15 parent = 0 position = -0.34395626187324524,-0.024210929870605469,2.0501392583582856E-08 rotation = 0,-8.42937027E-08,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 srfN = srfAttach, 0 mass = 0.0175000001 shielded = False temp = 302.27695431169747 tempExt = 302.28931454712506 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 59651.389868629856 currentRotation = (0.484781772, 0.484829128, -0.514776826, 0.514715672) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294698418 uid = 1365514268 mid = 865570216 launchID = 15 parent = 0 position = 5.5437861705496649E-16,-0.024210929870605469,0.34395623207092285 rotation = 0,0.707106709,0,0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 5 sym = 6 srfN = srfAttach, 0 mass = 0.0175000001 shielded = False temp = 302.47317588243482 tempExt = 302.58572819835848 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 59651.389868629856 currentRotation = (0.470585704, 0.470579386, -0.527782321, 0.527778387) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294698314 uid = 1323184702 mid = 865570216 launchID = 15 parent = 0 position = 0.34395626187324524,-0.024210929870605469,-5.0571003384902724E-08 rotation = 0,1,0,4.05823144E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 6 srfN = srfAttach, 0 mass = 0.0175000001 shielded = False temp = 302.37811113427432 tempExt = 302.43941812971963 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 59651.389868629856 currentRotation = (-0.514714837, -0.514777601, 0.484829068, -0.484781861) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294698210 uid = 161335406 mid = 865570216 launchID = 15 parent = 0 position = -4.1002781614452033E-08,-0.024210929870605469,-0.34395623207092285 rotation = 0,0.707106829,0,-0.707106709 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 srfN = srfAttach, 0 mass = 0.0175000001 shielded = False temp = 302.4848399613802 tempExt = 302.5646839150927 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 59651.389868629856 currentRotation = (-0.527786076, -0.527774692, 0.470588416, -0.470576584) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = HighGainAntenna5 cid = 4294674510 uid = 829732501 mid = 865570216 launchID = 15 parent = 0 position = -0.24278819561004639,-0.048197746276855469,-0.24278818070888519 rotation = -0.653281331,0.653281331,-0.270598501,0.270598501 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 srfN = srfAttach, 0 attN = bottom, -1 mass = 0.0700000003 shielded = False temp = 302.38391290532303 tempExt = 301.83544280422291 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = HighGainAntenna5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.995814621 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 0.70710678118654757 RTOmniRange = 0 RTDishRange = 20000000 stagingEnabled = True RTAntennaTarget = 4b657262-696e-4b65-7262-696e4b657262 EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = RTLongAntenna2 cid = 4294757490 uid = 836710120 mid = 865570216 launchID = 15 parent = 0 position = 0.24354250729084015,-0.014887809753417969,0.24354246258735657 rotation = 0.65328145,0.270598024,-0.270597965,0.653281569 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 srfN = srfAttach, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 302.33951782157476 tempExt = 301.89284754956475 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = True animTime = 0.00713674026 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = True, 59699.8698686221 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = -1.10121455E-05 yaw = -2.38790972E-06 roll = 4.17376305E-06 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = dd3a96fecfb74ad0ab36134df2ff3c5e name = RC Rocket type = Probe sit = ORBITING landed = False landedAt = displaylandedAt = splashed = False met = 1321.1960966679471 lct = 60228.99195473305 lastUT = 61550.208051400994 root = 0 lat = 1.2070994231296973E-08 lon = -166.98985875398012 alt = 886749.46575409593 hgt = -1 nrm = -0.999811888,-0.00129121542,-0.0193546414 rot = 0.701607823,0.0737685487,0.0873472616,-0.70333147 CoM = 3.69548798E-06,-1.35340571,-1.1920929E-07 stg = 1 prst = False ref = 2057720825 ctrl = True cPch = 0.2 cHdg = 0.3 cMod = 0 ORBIT { SMA = 1586749.7982156714 ECC = 2.1562315389417798E-07 INC = 0 LPE = 136.37968218284365 LAN = 346.7330357677065 MNA = -0.25912956535459847 EPH = 61550.208051400994 REF = 5 } PART { name = probeCoreOcto2 cid = 4294193826 uid = 2057720825 mid = 450593747 launchID = 19 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 1 attN = top, 12 mass = 0.0399999991 shielded = False temp = 297.19443311564629 tempExt = 295.05004016738167 tempExtUnexp = 4 expt = 0 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = probeCoreOcto2 (RC Rocket) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None } HibernateToggle { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = Prograde Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 61550.208051400994 ExtraDelay = 0 CmdGuid = 478ce772-e9d2-4cab-a801-37a5c2eaa09e } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Eve } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 4.9724931868980233 maxAmount = 5 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = sasModule cid = 4294181342 uid = 4246724007 mid = 450593747 launchID = 19 parent = 0 position = 0,-0.15217304229736328,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 2 attN = top, 0 mass = 0.0500000007 shielded = False temp = 297.89429226915206 tempExt = 296.33741752227547 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = sasModule modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Running stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None } Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } UPGRADESAPPLIED { } } } PART { name = fuelTankSmallFlat cid = 4294179194 uid = 2959580699 mid = 450593747 launchID = 19 parent = 1 position = 0,-0.55578422546386719,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 1 attN = bottom, 3 mass = 0.0625 shielded = False temp = 298.65128345014836 tempExt = 297.2062390563442 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = fuelTankSmallFlat modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 45 maxAmount = 45 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 55 maxAmount = 55 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = liquidEngine2 cid = 4294172694 uid = 1270435690 mid = 450593747 launchID = 19 parent = 2 position = 0,-1.7701101303100586,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 0 sqor = 0 sepI = -1 sidx = 0 attm = 0 srfN = , -1 attN = top, 2 attN = bottom, -1 mass = 1.5 shielded = False temp = 298.73792851353539 tempExt = 298.19806969844495 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = liquidEngine2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 9 manuallyOverridden = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None } ShutdownAction { actionGroup = None } ActivateAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleJettison isEnabled = True isJettisoned = True shroudHideOverride = False stagingEnabled = True EVENTS { } ACTIONS { JettisonAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True gimbalActive = True stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None } LockAction { actionGroup = None } FreeAction { actionGroup = None } TogglePitchAction { actionGroup = None } ToggleYawAction { actionGroup = None } ToggleRollAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateThrottle isEnabled = True animState = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleAlternator isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleSurfaceFX isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294168150 uid = 1251625521 mid = 450593747 launchID = 19 parent = 2 position = -0.61644476652145386,-0.59257411956787109,3.6742974884873547E-08 rotation = 4.36334169E-08,-0.707106709,4.36334133E-08,0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 2 mass = 0.00499999989 shielded = False temp = 298.53685540911357 tempExt = 296.89364945890145 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 60228.99195473305 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294167242 uid = 3592700893 mid = 450593747 launchID = 19 parent = 2 position = -0.43589222431182861,-0.59257411956787109,0.43589234352111816 rotation = 5.70098067E-08,-0.382683307,2.36142288E-08,0.923879564 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 2 mass = 0.00499999989 shielded = False temp = 298.53685540911357 tempExt = 296.89364945890145 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 60228.99195473305 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294167210 uid = 2055531575 mid = 450593747 launchID = 19 parent = 2 position = 1.3626617127965139E-15,-0.59257411956787109,0.61644470691680908 rotation = 6.17069702E-08,8.42937027E-08,-2.5121481E-15,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 7 sym = 8 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 2 mass = 0.00499999989 shielded = False temp = 298.53685922375684 tempExt = 296.89392845882742 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 60228.99195473305 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294167178 uid = 4054104762 mid = 450593747 launchID = 19 parent = 2 position = 0.435892254114151,-0.59257411956787109,0.435892254114151 rotation = 5.70098067E-08,0.382683516,-2.36142377E-08,0.923879504 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 8 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 2 mass = 0.00499999989 shielded = False temp = 298.53685540911357 tempExt = 296.89364945890145 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 60228.99195473305 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294167146 uid = 1929856101 mid = 450593747 launchID = 19 parent = 2 position = 0.61644476652145386,-0.59257411956787109,-9.0634287630564359E-08 rotation = 4.36334098E-08,0.707106888,-4.36334204E-08,0.70710665 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 7 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 2 mass = 0.00499999989 shielded = False temp = 298.5385519897319 tempExt = 296.95583273568644 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 60228.99195473305 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294167114 uid = 2831727323 mid = 450593747 launchID = 19 parent = 2 position = 0.43589219450950623,-0.59257411956787109,-0.43589237332344055 rotation = 2.3614227E-08,0.923879564,-5.70098067E-08,0.382683277 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 10 sym = 11 srfN = srfAttach, 2 mass = 0.00499999989 shielded = False temp = 298.53685540911357 tempExt = 296.89364945890145 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 60228.99195473305 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294167082 uid = 3609041735 mid = 450593747 launchID = 19 parent = 2 position = -7.3485942664319737E-08,-0.59257411956787109,-0.61644470691680908 rotation = -2.5121481E-15,1,-6.17069702E-08,-8.42937027E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 11 srfN = srfAttach, 2 mass = 0.00499999989 shielded = False temp = 298.53685540911357 tempExt = 296.89364945890145 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 60228.99195473305 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294167050 uid = 262220539 mid = 450593747 launchID = 19 parent = 2 position = -0.43589243292808533,-0.59257411956787109,-0.43589213490486145 rotation = -2.36142466E-08,0.923879445,-5.70097995E-08,-0.382683665 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 2 mass = 0.00499999989 shielded = False temp = 298.53685540911357 tempExt = 296.89364945890145 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 60228.99195473305 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False } ExtendAction { actionGroup = None active = False } RetractAction { actionGroup = None active = False } } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294162520 uid = 71242272 mid = 450593747 launchID = 19 parent = 0 position = 0,0.16106224060058594,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 13 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 296.7600316094676 tempExt = 294.04345805774864 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 198.89972747591952 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongAntenna2 cid = 4294159580 uid = 1140725077 mid = 450593747 launchID = 19 parent = 12 position = 0,0.2610626220703125,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 12 mass = 0.00999999978 shielded = False temp = 291.40446673576838 tempExt = 292.24249151173325 tempExtUnexp = 4 expt = 0.5 state = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992747605 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None } ActionOpen { actionGroup = None } ActionClose { actionGroup = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0.00986497011 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } } LoaderInfo { ModuleManager.2.7.5 v2.7.5.0 = False AsteroidDay v1.0.0.0 = False DebugStuff v1.4.0.0 = False RemoteTech v1.8.0.0 / v1.8.6 = False AsteroidDay = False DebugStuff = True RemoteTech = True ModuleManager.2.7.5.dll = False ModuleManager.ConfigCache = True ModuleManager.ConfigSHA = True ModuleManager.Physics = True ModuleManager.TechTree = True RemoteTechVanillaDSN.cfg = False DMModuleScienceAnimateGeneric v0.16.0.0 = False Firespitter v7.3.6212.36331 = False Coatl Aerospace = False DMagicScienceAnimate = False Firespitter = False ModuleManager.2.8.1 v2.8.1.0 = False RemoteTech v1.8.0.0 / v1.8.8 = False ModuleManager.2.8.1.dll = False ContractConfigurator v1.0.0.0 / v1.23.3 = False CC_RemoteTech v1.0.0.0 / v1.23.3 = False ContractConfigurator = False ContractPacks = False ModuleManager v3.0.1.0 = False RemoteTech v1.8.0.0 / v1.8.9 = False StockRemoteTechAntennas = False ModuleManager.3.0.1.dll = False ModuleManager v3.0.4.0 = True DebugStuff v1.5.0.0 = True RemoteTech v1.8.0.0 / v1.8.12 = True MM_LICENSE.md = True ModuleManager.3.0.4.dll = True } ROSTER { KERBAL { name = Jebediah Kerman gender = Male type = Crew trait = Pilot brave = 0.5 dumb = 0.5 badS = True veteran = True tour = False state = Available inactive = False inactiveTimeEnd = 0 gExperienced = 0 outDueToG = False ToD = 0 idx = 0 extraXP = 0 CAREER_LOG { flight = 3 0 = Flight,Kerbin 0 = Land,Kerbin 0 = Recover 1 = ExitVessel,Kerbin 1 = BoardVessel,Kerbin 1 = Recover 2 = Recover } FLIGHT_LOG { flight = 3 } } KERBAL { name = Bill Kerman gender = Male type = Crew trait = Engineer brave = 0.5 dumb = 0.800000012 badS = False veteran = True tour = False state = Available inactive = False inactiveTimeEnd = 0 gExperienced = 0 outDueToG = False ToD = 0 idx = -1 extraXP = 0 CAREER_LOG { flight = 0 } FLIGHT_LOG { flight = 0 } } KERBAL { name = Bob Kerman gender = Male type = Crew trait = Scientist brave = 0.300000012 dumb = 0.100000001 badS = False veteran = True tour = False state = Available inactive = False inactiveTimeEnd = 0 gExperienced = 0 outDueToG = False ToD = 0 idx = -1 extraXP = 0 CAREER_LOG { flight = 0 } FLIGHT_LOG { flight = 0 } } KERBAL { name = Valentina Kerman gender = Female type = Crew trait = Pilot brave = 0.550000012 dumb = 0.400000006 badS = True veteran = True tour = False state = Available inactive = False inactiveTimeEnd = 0 gExperienced = 0 outDueToG = False ToD = 0 idx = -1 extraXP = 0 CAREER_LOG { flight = 0 } FLIGHT_LOG { flight = 0 } } } MESSAGESYSTEM { flash = False } } ================================================ FILE: saves/RemoteTech KSP1_4 Testbed/Ships/SPH/Auto-Saved Ship.craft ================================================ ship = Car version = 1.4.1 description = type = SPH size = 2.6142354,2.06533813,5.82568455 persistentId = 1576766863 rot = 0,0,0,0 missionFlag = Squad/Flags/trippy vesselType = Debris PART { part = Mark2Cockpit_4293514300 partName = Part persistentId = 1673849873 pos = 0,10,0 attPos = 0,0,0 attPos0 = 0,10,0 rot = 0.707106829,0,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0.707106769,0,0,0.707106769 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = batteryBank_4293504134 link = batteryBank_4293502910 attN = top,batteryBank_4293502910_0|0.9375|0 attN = bottom,batteryBank_4293504134_0|-0.9375|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ResetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceContainer isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { CollectAllAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FlagDecal isEnabled = True flagDisplayed = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = True animTime = 0 animSpeed = 0.25 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = Light wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 50 maxAmount = 50 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = MonoPropellant amount = 7.5 maxAmount = 7.5 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = batteryBank_4293504134 partName = Part persistentId = 1121146432 pos = 0,10,-1.04835665 attPos = 0,0,0 attPos0 = 0,-1.04835558,1.1920929E-07 rot = 0.707106829,0,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = trussPiece1x_4293444048 attN = top,Mark2Cockpit_4293514300_0|0.1108553|0 attN = bottom,trussPiece1x_4293444048_0|-0.1108553|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 1000 maxAmount = 1000 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = batteryBank_4293502910 partName = Part persistentId = 881464571 pos = 0,10,1.04835665 attPos = 0,0,0 attPos0 = 0,1.04835558,-1.1920929E-07 rot = 0.707106829,0,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = trussPiece1x_4293439466 attN = top,trussPiece1x_4293439466_0|0.1108553|0 attN = bottom,Mark2Cockpit_4293514300_0|-0.1108553|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 1000 maxAmount = 1000 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = trussPiece1x_4293444048 partName = Part persistentId = 1256813713 pos = 0,10,-1.71848619 attPos = 0,0,0 attPos0 = 0,-0.670128167,1.1920924E-07 rot = 0.707106829,0,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = wheelMed_4293424618 link = wheelMed_4293423616 link = LgRadialSolarPanel_4293404164 attN = top,batteryBank_4293504134_0|0.5592728|0 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = trussPiece1x_4293439466 partName = Part persistentId = 1334143243 pos = 0,10,1.71848619 attPos = 0,0,0 attPos0 = 0,0.670128167,-1.1920924E-07 rot = 0.707106829,0,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = wheelMed_4293422116 link = wheelMed_4293421690 link = LgRadialSolarPanel_4293408400 link = probeCoreOcto2_4293283440 attN = bottom,batteryBank_4293502910_0|-0.5592728|0 attN = top,probeCoreOcto2_4293283440_0|0.5592728|0 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = wheelMed_4293424618 partName = Part persistentId = 2558644619 pos = 0.300000012,9.69999981,-1.71848774 attPos = -0.0245695412,0.0324681997,0.300000072 attPos0 = 0.324569553,-0.0324697495,0 rot = -2.98023259E-08,1.00000012,1.1920929E-07,2.98023171E-08 attRot = -0.707106709,0,0,-0.707106709 attRot0 = 4.21468478E-08,-0.707106829,0.707106829,0 mir = 1,1,1 symMethod = Mirror autostrutMode = ForceHeaviest rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = wheelMed_4293423616 srfN = srfAttach,trussPiece1x_4293444048 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = False autoFriction = True frictionMultiplier = 1 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 suspensionPos = (-1, -1, -1) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 100 brakeInput = 0 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = wheelMed_4293423616 partName = Part persistentId = 1020865550 pos = -0.300000012,9.69999981,-1.71848714 attPos = 0.0245695412,0.0324687958,0.300000191 attPos0 = -0.324569553,-0.0324697495,0 rot = -1.1920929E-07,-7.35137178E-08,2.98023224E-08,-1.00000012 attRot = -0.707106709,0,0,-0.707106709 attRot0 = 0.707106769,-3.09086232E-08,7.30554603E-08,-0.707106888 mir = 1,1,1 symMethod = Mirror autostrutMode = ForceHeaviest rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = wheelMed_4293424618 srfN = srfAttach,trussPiece1x_4293444048 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = False autoFriction = True frictionMultiplier = 1 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 suspensionPos = (-1, -1, -1) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 100 brakeInput = 0 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = wheelMed_4293422116 partName = Part persistentId = 2665563466 pos = 0.300000012,9.69999981,1.71848726 attPos = -0.0262460709,-0.00555765629,0.300000072 attPos0 = 0.326246083,0.00555872917,0 rot = 2.98023224E-08,-1.00000012,0,-2.98023224E-08 attRot = -0.707106709,0,0,-0.707106709 attRot0 = 4.21468478E-08,-0.707106829,0.707106829,0 mir = 1,1,1 symMethod = Mirror autostrutMode = ForceHeaviest rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = wheelMed_4293421690 srfN = srfAttach,trussPiece1x_4293439466 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = False autoFriction = True frictionMultiplier = 1 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 suspensionPos = (-1, -1, -1) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 100 brakeInput = 0 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = wheelMed_4293421690 partName = Part persistentId = 2216561089 pos = -0.300000012,9.69999981,1.71848774 attPos = 0.0262460709,-0.00555717945,0.300000072 attPos0 = -0.326246083,0.00555872917,0 rot = 0,-7.35136965E-08,2.98023206E-08,-1.00000012 attRot = -0.707106709,0,0,-0.707106709 attRot0 = 0.707106769,-3.09086232E-08,7.30554603E-08,-0.707106888 mir = 1,1,1 symMethod = Mirror autostrutMode = ForceHeaviest rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = wheelMed_4293422116 srfN = srfAttach,trussPiece1x_4293439466 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = False autoFriction = True frictionMultiplier = 1 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 suspensionPos = (-1, -1, -1) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 100 brakeInput = 0 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = LgRadialSolarPanel_4293408400 partName = Part persistentId = 431854477 pos = -2.83748722E-08,10.3245707,2.04625821 attPos = 0,0,0 attPos0 = -2.83748722E-08,0.327771902,-0.324570507 rot = 0,0.707106948,0.707106709,0 attRot = 0,0,0,1 attRot0 = 0,1,-1.78813934E-07,0 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,trussPiece1x_4293439466 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, 0, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = LgRadialSolarPanel_4293404164 partName = Part persistentId = 846747831 pos = -2.85131705E-08,10.3261528,-2.17942548 attPos = 0,0,0 attPos0 = -2.85131705E-08,-0.460938871,-0.326152653 rot = 0,0.707106948,0.707106709,0 attRot = 0,0,0,1 attRot0 = 0,1,-1.78813934E-07,0 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,trussPiece1x_4293444048 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, 0, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = probeCoreOcto2_4293283440 partName = Part persistentId = 840173303 pos = 0,10,2.33882189 attPos = 0,0,0 attPos0 = 0,0.6203354,0 rot = 0.707106829,0,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = bottom,trussPiece1x_4293439466_0|-0.0610621|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 5 maxAmount = 5 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } ================================================ FILE: saves/RemoteTech KSP1_4 Testbed/Ships/SPH/Car.craft ================================================ ship = Car version = 1.4.1 description = type = SPH size = 2.6142354,2.06533813,5.82568455 persistentId = 1576766863 rot = 0,0,0,0 missionFlag = Squad/Flags/trippy vesselType = Debris PART { part = Mark2Cockpit_4293514300 partName = Part persistentId = 1673849873 pos = 0,10,0 attPos = 0,0,0 attPos0 = 0,10,0 rot = 0.707106829,0,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0.707106769,0,0,0.707106769 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = batteryBank_4293504134 link = batteryBank_4293502910 attN = top,batteryBank_4293502910_0|0.9375|0 attN = bottom,batteryBank_4293504134_0|-0.9375|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ResetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceContainer isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { CollectAllAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FlagDecal isEnabled = True flagDisplayed = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = True animTime = 0 animSpeed = 0.25 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = Light wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 50 maxAmount = 50 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = MonoPropellant amount = 7.5 maxAmount = 7.5 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = batteryBank_4293504134 partName = Part persistentId = 1121146432 pos = 0,10,-1.04835665 attPos = 0,0,0 attPos0 = 0,-1.04835558,1.1920929E-07 rot = 0.707106829,0,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = trussPiece1x_4293444048 attN = top,Mark2Cockpit_4293514300_0|0.1108553|0 attN = bottom,trussPiece1x_4293444048_0|-0.1108553|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 1000 maxAmount = 1000 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = batteryBank_4293502910 partName = Part persistentId = 881464571 pos = 0,10,1.04835665 attPos = 0,0,0 attPos0 = 0,1.04835558,-1.1920929E-07 rot = 0.707106829,0,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = trussPiece1x_4293439466 attN = top,trussPiece1x_4293439466_0|0.1108553|0 attN = bottom,Mark2Cockpit_4293514300_0|-0.1108553|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 1000 maxAmount = 1000 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = trussPiece1x_4293444048 partName = Part persistentId = 1256813713 pos = 0,10,-1.71848619 attPos = 0,0,0 attPos0 = 0,-0.670128167,1.1920924E-07 rot = 0.707106829,0,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = wheelMed_4293424618 link = wheelMed_4293423616 link = LgRadialSolarPanel_4293404164 attN = top,batteryBank_4293504134_0|0.5592728|0 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = trussPiece1x_4293439466 partName = Part persistentId = 1334143243 pos = 0,10,1.71848619 attPos = 0,0,0 attPos0 = 0,0.670128167,-1.1920924E-07 rot = 0.707106829,0,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = wheelMed_4293422116 link = wheelMed_4293421690 link = LgRadialSolarPanel_4293408400 link = probeCoreOcto2_4293283440 attN = bottom,batteryBank_4293502910_0|-0.5592728|0 attN = top,probeCoreOcto2_4293283440_0|0.5592728|0 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = wheelMed_4293424618 partName = Part persistentId = 2558644619 pos = 0.300000012,9.69999981,-1.71848774 attPos = -0.0245695412,0.0324681997,0.300000072 attPos0 = 0.324569553,-0.0324697495,0 rot = -2.98023259E-08,1.00000012,1.1920929E-07,2.98023171E-08 attRot = -0.707106709,0,0,-0.707106709 attRot0 = 4.21468478E-08,-0.707106829,0.707106829,0 mir = 1,1,1 symMethod = Mirror autostrutMode = ForceHeaviest rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = wheelMed_4293423616 srfN = srfAttach,trussPiece1x_4293444048 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = False autoFriction = True frictionMultiplier = 1 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 suspensionPos = (-1, -1, -1) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 100 brakeInput = 0 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = wheelMed_4293423616 partName = Part persistentId = 1020865550 pos = -0.300000012,9.69999981,-1.71848714 attPos = 0.0245695412,0.0324687958,0.300000191 attPos0 = -0.324569553,-0.0324697495,0 rot = -1.1920929E-07,-7.35137178E-08,2.98023224E-08,-1.00000012 attRot = -0.707106709,0,0,-0.707106709 attRot0 = 0.707106769,-3.09086232E-08,7.30554603E-08,-0.707106888 mir = 1,1,1 symMethod = Mirror autostrutMode = ForceHeaviest rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = wheelMed_4293424618 srfN = srfAttach,trussPiece1x_4293444048 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = False autoFriction = True frictionMultiplier = 1 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 suspensionPos = (-1, -1, -1) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 100 brakeInput = 0 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = wheelMed_4293422116 partName = Part persistentId = 2665563466 pos = 0.300000012,9.69999981,1.71848726 attPos = -0.0262460709,-0.00555765629,0.300000072 attPos0 = 0.326246083,0.00555872917,0 rot = 2.98023224E-08,-1.00000012,0,-2.98023224E-08 attRot = -0.707106709,0,0,-0.707106709 attRot0 = 4.21468478E-08,-0.707106829,0.707106829,0 mir = 1,1,1 symMethod = Mirror autostrutMode = ForceHeaviest rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = wheelMed_4293421690 srfN = srfAttach,trussPiece1x_4293439466 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = False autoFriction = True frictionMultiplier = 1 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 suspensionPos = (-1, -1, -1) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 100 brakeInput = 0 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = wheelMed_4293421690 partName = Part persistentId = 2216561089 pos = -0.300000012,9.69999981,1.71848774 attPos = 0.0262460709,-0.00555717945,0.300000072 attPos0 = -0.326246083,0.00555872917,0 rot = 0,-7.35136965E-08,2.98023206E-08,-1.00000012 attRot = -0.707106709,0,0,-0.707106709 attRot0 = 0.707106769,-3.09086232E-08,7.30554603E-08,-0.707106888 mir = 1,1,1 symMethod = Mirror autostrutMode = ForceHeaviest rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = wheelMed_4293422116 srfN = srfAttach,trussPiece1x_4293439466 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = False autoFriction = True frictionMultiplier = 1 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 suspensionPos = (-1, -1, -1) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 100 brakeInput = 0 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = LgRadialSolarPanel_4293408400 partName = Part persistentId = 431854477 pos = -2.83748722E-08,10.3245707,2.04625821 attPos = 0,0,0 attPos0 = -2.83748722E-08,0.327771902,-0.324570507 rot = 0,0.707106948,0.707106709,0 attRot = 0,0,0,1 attRot0 = 0,1,-1.78813934E-07,0 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,trussPiece1x_4293439466 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, 0, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = LgRadialSolarPanel_4293404164 partName = Part persistentId = 846747831 pos = -2.85131705E-08,10.3261528,-2.17942548 attPos = 0,0,0 attPos0 = -2.85131705E-08,-0.460938871,-0.326152653 rot = 0,0.707106948,0.707106709,0 attRot = 0,0,0,1 attRot0 = 0,1,-1.78813934E-07,0 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,trussPiece1x_4293444048 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, 0, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = probeCoreOcto2_4293283440 partName = Part persistentId = 840173303 pos = 0,10,2.33882189 attPos = 0,0,0 attPos0 = 0,0.6203354,0 rot = 0.707106829,0,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = bottom,trussPiece1x_4293439466_0|-0.0610621|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 5 maxAmount = 5 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } ================================================ FILE: saves/RemoteTech KSP1_4 Testbed/Ships/VAB/Auto-Saved Ship.craft ================================================ ship = Untitled Space Craft version = 1.4.4 description = type = VAB size = 0.686725497,0.441567421,0.955002546 steamPublishedFileId = 0 persistentId = 37558658 rot = 0,0,0,0 missionFlag = Squad/Flags/trippy vesselType = Debris PART { part = probeCoreOcto_4294663918 partName = Part persistentId = 2976608013 pos = 0,15,0 attPos = 0,0,0 attPos0 = 0,15,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = launchClamp1_4294640402 link = mediumDishAntenna_4294625296 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = launchClamp1_4294640402 partName = Part persistentId = 3448525512 pos = -1.15028214,13.6961575,-0.0136429323 attPos = 0,0,0 attPos0 = -1.15028214,-1.30384254,-0.0136429323 rot = 0,0.707106709,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0,0.707106709,0,0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 0 resPri = 0 dstg = 0 sidx = 0 sqor = 0 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,probeCoreOcto_4294663918 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = LaunchClamp isEnabled = True scaleFactor = 5.68973064 height = 14.356308 stagingEnabled = True towerRot = 0,-0.707106709,0,0.707106829 EVENTS { } ACTIONS { ReleaseClamp { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleGenerator isEnabled = True generatorIsActive = False throttle = 0 stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 5000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = mediumDishAntenna_4294625296 partName = Part persistentId = 2914504586 pos = 0.0612692237,15.1999063,0.0353738032 attPos = 0,0,0 attPos0 = 0.0612692237,0.199906349,0.0353738032 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,probeCoreOcto_4294663918 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = True animTime = 0 animSpeed = 1 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 0.92387953251128674 RTOmniRange = 0 RTDishRange = 0 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ================================================ FILE: saves/RemoteTech KSP1_4 Testbed/Ships/VAB/Car.craft ================================================ ship = Car version = 1.4.2 description = type = VAB size = 3.08392954,2.14629364,3.83571625 persistentId = 3679753971 rot = 0,0,0,0 missionFlag = Squad/Flags/trippy vesselType = Debris PART { part = Mark2Cockpit_4294373842 partName = Part persistentId = 4003252942 pos = -0.0546299852,15.1860409,0.165947884 attPos = 0,0,0 attPos0 = -0.0546299852,15.1860409,0.165947884 rot = 0.707106829,0,0,0.707106829 attRot = 0.707106769,0,0,0.707106769 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = batteryBank_4294365524 link = batteryBank_4294364830 attN = top,batteryBank_4294364830_0|0.9375|0 attN = bottom,batteryBank_4294365524_0|-0.9375|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ResetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceContainer isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { CollectAllAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FlagDecal isEnabled = True flagDisplayed = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = True animTime = 0 animSpeed = 0.25 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = Light wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 50 maxAmount = 50 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = MonoPropellant amount = 7.5 maxAmount = 7.5 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = batteryBank_4294365524 partName = Part persistentId = 3347731418 pos = -0.0546299852,15.1860409,-0.882408142 attPos = 0,0,0 attPos0 = 0,-1.04835546,1.1920929E-07 rot = 0.707106829,0,0,0.707106829 attRot = 0.707106769,0,0,0.707106769 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = roverWheel1_4294354528 link = roverWheel1_4294353946 link = fuelTankSmallFlat_4294301024 attN = top,Mark2Cockpit_4294373842_0|0.1108553|0 attN = bottom,fuelTankSmallFlat_4294301024_0|-0.1108553|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 1000 maxAmount = 1000 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = batteryBank_4294364830 partName = Part persistentId = 3112362048 pos = -0.0546299852,15.1860409,1.21430409 attPos = 0,0,0 attPos0 = 0,1.04835558,-1.1920929E-07 rot = 0.707106829,0,0,0.707106829 attRot = 0.707106769,0,0,0.707106769 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = roverWheel1_4294357960 link = roverWheel1_4294354858 link = probeCoreOcto2_4294208512 attN = top,probeCoreOcto2_4294208512_0|0.1108553|0 attN = bottom,Mark2Cockpit_4294373842_0|-0.1108553|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 1000 maxAmount = 1000 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = roverWheel1_4294357960 partName = Part persistentId = 884936515 pos = -1.05463004,14.3860416,1.21430445 attPos = -0.00923901796,0.0117797805,0.397498965 attPos0 = -0.990760982,-0.0117793037,0.402500033 rot = 0,2.98023224E-08,-2.98023224E-08,1.00000012 attRot = -0.707106709,0,0,0.707106709 attRot0 = -0.707106829,0,-4.21468478E-08,0.707106829 mir = 1,1,1 symMethod = Mirror autostrutMode = ForceHeaviest rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = roverWheel1_4294354858 srfN = srfAttach,batteryBank_4294364830 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = False autoFriction = True frictionMultiplier = 1 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 suspensionPos = (-1, -1, -1) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 100 brakeInput = 0 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = roverWheel1_4294354858 partName = Part persistentId = 51763586 pos = 0.945370018,14.3860416,1.21430457 attPos = 0.00923901796,0.0117798997,0.397498965 attPos0 = 0.990760982,-0.0117793037,0.402500033 rot = -2.98023224E-08,1.00000012,0,-1.39090721E-08 attRot = -0.707106709,0,0,0.707106709 attRot0 = -1.12382184E-08,0.707106888,-0.707106769,-3.09086232E-08 mir = 1,1,1 symMethod = Mirror autostrutMode = ForceHeaviest rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = roverWheel1_4294357960 srfN = srfAttach,batteryBank_4294364830 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = False autoFriction = True frictionMultiplier = 1 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 suspensionPos = (-1, -1, -1) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 100 brakeInput = 0 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = roverWheel1_4294354528 partName = Part persistentId = 1458390502 pos = -1.05463004,14.3860416,-0.882408619 attPos = -0.00550979376,-0.000480174815,0.397499025 attPos0 = -0.994490206,0.000479817187,0.402499974 rot = 0,2.98023224E-08,-2.98023224E-08,1.00000012 attRot = -0.707106709,0,0,0.707106709 attRot0 = -0.707106829,0,-4.21468478E-08,0.707106829 mir = 1,1,1 symMethod = Mirror autostrutMode = ForceHeaviest rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = roverWheel1_4294353946 srfN = srfAttach,batteryBank_4294365524 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = False autoFriction = True frictionMultiplier = 1 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 suspensionPos = (-1, -1, -1) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 100 brakeInput = 0 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = roverWheel1_4294353946 partName = Part persistentId = 308339286 pos = 0.945370018,14.3860416,-0.882408857 attPos = 0.00550979376,-0.000480413233,0.397499025 attPos0 = 0.994490206,0.000479817187,0.402499974 rot = -2.98023224E-08,1.00000012,0,-1.39090721E-08 attRot = -0.707106709,0,0,0.707106709 attRot0 = -1.12382184E-08,0.707106888,-0.707106769,-3.09086232E-08 mir = 1,1,1 symMethod = Mirror autostrutMode = ForceHeaviest rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = roverWheel1_4294354528 srfN = srfAttach,batteryBank_4294365524 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = False autoFriction = True frictionMultiplier = 1 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 suspensionPos = (-1, -1, -1) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 100 brakeInput = 0 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = fuelTankSmallFlat_4294301024 partName = Part persistentId = 1564392779 pos = -0.0546299852,15.1860409,-1.30576372 attPos = 0,0,0 attPos0 = 0,-0.423355401,0 rot = 0.707106829,0,0,0.707106829 attRot = 0.707106769,0,0,0.707106769 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = liquidEngineMini_4294291926 link = GearFree_4294286020 attN = top,batteryBank_4294365524_0|0.3125|0 attN = bottom,liquidEngineMini_4294291926_0|-0.3125|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 45 maxAmount = 45 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 55 maxAmount = 55 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = liquidEngineMini_4294291926 partName = Part persistentId = 70875592 pos = -0.0546299852,15.1860409,-1.61826491 attPos = 0,0,0 attPos0 = 0,-0.312500477,1.1920924E-07 rot = 0.707106829,0,0,0.707106829 attRot = 0.707106769,0,0,0.707106769 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = 0 resPri = 0 dstg = 0 sidx = 0 sqor = 0 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = top,fuelTankSmallFlat_4294301024_0|0|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnginesFX isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleJettison isEnabled = True activejettisonName = node_fairing_collider isJettisoned = True shroudHideOverride = False stagingEnabled = True EVENTS { } ACTIONS { JettisonAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True gimbalActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } LockAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } FreeAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } TogglePitchAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleYawAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleRollAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = GearFree_4294286020 partName = Part persistentId = 656838058 pos = -0.0546299852,14.8127279,-1.6057651 attPos = 0,0,0 attPos0 = 0,-0.300000668,0.37331292 rot = 0,0,0,1.00000012 attRot = -0.707106709,0,0,0.707106709 attRot0 = -0.707106829,0,0,0.707106829 mir = 1,1,1 symMethod = Mirror autostrutMode = ForceHeaviest rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,fuelTankSmallFlat_4294301024 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = FREE isGrounded = False autoFriction = True frictionMultiplier = 1 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 suspensionPos = (-1, -1, -1) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = probeCoreOcto2_4294208512 partName = Part persistentId = 1265968272 pos = -0.0546299852,15.1860409,1.38622177 attPos = 0,0,0 attPos0 = 0,0.171917602,0 rot = 0.707106829,0,0,0.707106829 attRot = 0.707106769,0,0,0.707106769 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = bottom,batteryBank_4294364830_0|-0.0610621|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 5 maxAmount = 5 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } ================================================ FILE: saves/RemoteTech KSP1_4 Testbed/Ships/VAB/Dish 75Mm Range.craft ================================================ ship = Dish 75Mm Range version = 1.4.1 description = type = VAB size = 2.55997372,1.53801918,2.55997324 persistentId = 3670179945 rot = 0,0,0,0 missionFlag = Squad/Flags/trippy vesselType = Debris PART { part = probeCoreOcto_4293289628 partName = Part persistentId = 557880037 pos = 0,15,0 attPos = 0,0,0 attPos0 = 0,15,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = batteryBankMini_4293283982 link = solarPanels3_4293282140 link = solarPanels3_4293281096 link = solarPanels3_4293280992 link = solarPanels3_4293280888 link = RelayAntenna5_4293238374 attN = bottom,batteryBankMini_4293283982_0|-0.1870818|0 attN = top,RelayAntenna5_4293238374_0|0.1870818|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = batteryBankMini_4293283982 partName = Part persistentId = 3751334898 pos = 0,14.7129183,0 attPos = 0,0,0 attPos0 = 0,-0.287081718,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = SurfAntenna_4293264894 attN = top,probeCoreOcto_4293289628_0|0.1|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = solarPanels3_4293282140 partName = Part persistentId = 4146140515 pos = -0.345790058,14.9709368,2.06106954E-08 attPos = 0,0,0 attPos0 = -0.345790058,-0.0290632248,2.06106954E-08 rot = 0,-8.42937027E-08,0,1 attRot = 0,0,0,1 attRot0 = 0,-8.42937027E-08,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels3_4293281096 sym = solarPanels3_4293280992 sym = solarPanels3_4293280888 srfN = srfAttach,probeCoreOcto_4293289628 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.707106829, 0, 0, 0.707106829) storedAnimationTime = 0 storedAnimationSpeed = 10 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels3_4293281096 partName = Part persistentId = 1759594078 pos = 5.47863663E-16,14.9709368,0.345790029 attPos = 0,0,0 attPos0 = 5.47863663E-16,-0.0290632248,0.345790029 rot = 0,0.707106709,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0,0.707106709,0,0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels3_4293282140 sym = solarPanels3_4293280992 sym = solarPanels3_4293280888 srfN = srfAttach,probeCoreOcto_4293289628 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.707106829, 0, 0, 0.707106829) storedAnimationTime = 0 storedAnimationSpeed = 10 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels3_4293280992 partName = Part persistentId = 2697723898 pos = 0.345790058,14.9709368,-5.08406224E-08 attPos = 0,0,0 attPos0 = 0.345790058,-0.0290632248,-5.08406224E-08 rot = 0,1,0,4.05823144E-08 attRot = 0,0,0,1 attRot0 = 0,1,0,4.05823144E-08 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels3_4293282140 sym = solarPanels3_4293281096 sym = solarPanels3_4293280888 srfN = srfAttach,probeCoreOcto_4293289628 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.707106829, 0, 0, 0.707106829) storedAnimationTime = 0 storedAnimationSpeed = 10 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels3_4293280888 partName = Part persistentId = 2808831822 pos = -4.12213872E-08,14.9709368,-0.345790029 attPos = 0,0,0 attPos0 = -4.12213872E-08,-0.0290632248,-0.345790029 rot = 0,0.707106829,0,-0.707106709 attRot = 0,0,0,1 attRot0 = 0,0.707106829,0,-0.707106709 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels3_4293282140 sym = solarPanels3_4293281096 sym = solarPanels3_4293280992 srfN = srfAttach,probeCoreOcto_4293289628 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.707106829, 0, 0, 0.707106829) storedAnimationTime = 0 storedAnimationSpeed = 10 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = SurfAntenna_4293264894 partName = Part persistentId = 3945545355 pos = -0.249602661,14.7279053,0.249602631 attPos = 0,0,0 attPos0 = -0.249602661,0.0149869919,0.249602631 rot = 0.653281391,-0.270598114,0.270598024,0.653281569 attRot = 0,0,0,1 attRot0 = 0.653281391,-0.270598114,0.270598024,0.653281569 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,batteryBankMini_4293283982 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 1500000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = RelayAntenna5_4293238374 partName = Part persistentId = 1280768509 pos = 0,15.1870813,0 attPos = 0,0,0 attPos0 = 0,0.187081337,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = bottom,probeCoreOcto_4293289628_0|0|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 0.99405633822231965 RTOmniRange = 0 RTDishRange = 0 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ================================================ FILE: saves/RemoteTech KSP1_4 Testbed/Ships/VAB/Dish Sat.craft ================================================ ship = Dish Sat version = 1.4.1 description = type = VAB size = 3.47056437,4.25943375,6.00229502 persistentId = 998290497 rot = 0,0,0,0 missionFlag = Squad/Flags/trippy vesselType = Debris PART { part = HECS2.ProbeCore_4294315528 partName = Part persistentId = 3967947456 pos = 0,15,0 attPos = 0,0,0 attPos0 = 0,15,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = batteryBank_4294308190 link = RelayAntenna100_4294298942 link = largeSolarPanel_4294290300 link = largeSolarPanel_4294290230 link = ksp.r.largeBatteryPack_4294288996 link = ksp.r.largeBatteryPack_4294288038 link = RTLongAntenna2_4294277094 link = RTLongAntenna2_4294274940 attN = top,RelayAntenna100_4294298942_0|0.5|0 attN = bottom,batteryBank_4294308190_0|-0.5|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceContainer isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { CollectAllAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 1000 maxAmount = 1000 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = batteryBank_4294308190 partName = Part persistentId = 1121146432 pos = 0,14.3891449,0 attPos = 0,0,0 attPos0 = 0,-0.610855103,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = top,HECS2.ProbeCore_4294315528_0|0.1108553|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 1000 maxAmount = 1000 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = RelayAntenna100_4294298942 partName = Part persistentId = 2246212507 pos = 0,15.6800003,0 attPos = 0,0,0 attPos0 = 0,0.680000305,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = bottom,HECS2.ProbeCore_4294315528_0|-0.18|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 0.99999997620176351 RTOmniRange = 0 RTDishRange = 0 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = largeSolarPanel_4294290300 partName = Part persistentId = 132195741 pos = -0.632963181,14.9848709,-0.365441561 attPos = 0,0,0 attPos0 = -0.632963181,-0.0151290894,-0.365441561 rot = -0.683012784,-0.183012694,-0.18301253,0.683012724 attRot = -0.707106709,0,0,0.707106709 attRot0 = -0.683012784,-0.183012694,-0.18301253,0.683012724 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = largeSolarPanel_4294290230 srfN = srfAttach,HECS2.ProbeCore_4294315528 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, 0, -0.707106829, 0.707106829) storedAnimationTime = 0 storedAnimationSpeed = 1 deployState = RETRACTED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = largeSolarPanel_4294290230 partName = Part persistentId = 537254439 pos = 0.63296324,14.9848709,0.365441501 attPos = 0,0,0 attPos0 = 0.63296324,-0.0151290894,0.365441501 rot = -0.1830125,0.683012724,0.683012784,0.183012664 attRot = -0.707106709,0,0,0.707106709 attRot0 = -0.1830125,0.683012724,0.683012784,0.183012664 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = largeSolarPanel_4294290300 srfN = srfAttach,HECS2.ProbeCore_4294315528 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, 0, -0.707106829, 0.707106829) storedAnimationTime = 0 storedAnimationSpeed = 1 deployState = RETRACTED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = ksp.r.largeBatteryPack_4294288996 partName = Part persistentId = 3164324311 pos = -6.35969286E-08,15.0148945,-0.72746408 attPos = 0,0,0 attPos0 = -6.35969286E-08,0.0148944855,-0.72746408 rot = 2.38418579E-07,0,0,-1 attRot = 0,0,0,1 attRot0 = 2.38418579E-07,0,0,-1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = ksp.r.largeBatteryPack_4294288038 srfN = srfAttach,HECS2.ProbeCore_4294315528 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 400 maxAmount = 400 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = ksp.r.largeBatteryPack_4294288038 partName = Part persistentId = 2640636140 pos = 1.27193857E-07,15.0148945,0.72746408 attPos = 0,0,0 attPos0 = 1.27193857E-07,0.0148944855,0.72746408 rot = -1.04216071E-14,-1,-2.38418579E-07,4.37113883E-08 attRot = 0,0,0,1 attRot0 = -1.04216071E-14,-1,-2.38418579E-07,4.37113883E-08 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = ksp.r.largeBatteryPack_4294288996 srfN = srfAttach,HECS2.ProbeCore_4294315528 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 400 maxAmount = 400 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = RTLongAntenna2_4294277094 partName = Part persistentId = 493165526 pos = 0.412211001,15.0467787,-0.713970244 attPos = 0,0,0 attPos0 = 0.412211001,0.0467786789,-0.713970244 rot = 0.183012784,0.683012545,-0.683012843,0.183012694 attRot = 0,0,0,1 attRot0 = 0.183012784,0.683012545,-0.683012843,0.183012694 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = RTLongAntenna2_4294274940 srfN = srfAttach,HECS2.ProbeCore_4294315528 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992120922 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = RTLongAntenna2_4294274940 partName = Part persistentId = 3092594922 pos = -0.412210941,15.0467787,0.713970304 attPos = 0,0,0 attPos0 = -0.412210941,0.0467786789,0.713970304 rot = -0.683012843,0.183012664,-0.183012754,-0.683012545 attRot = 0,0,0,1 attRot0 = -0.683012843,0.183012664,-0.183012754,-0.683012545 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = RTLongAntenna2_4294277094 srfN = srfAttach,HECS2.ProbeCore_4294315528 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = MOVING animSwitch = False animTime = 0.714399755 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ================================================ FILE: saves/RemoteTech KSP1_4 Testbed/Ships/VAB/Disk 20Mm Range.craft ================================================ ship = Disk 20Mm Range version = 1.4.1 description = type = VAB size = 4.52141094,1.94750214,5.2208662 persistentId = 2356625332 rot = 0,0,0,0 missionFlag = Squad/Flags/trippy vesselType = Debris PART { part = probeCoreOcto_4293429552 partName = Part persistentId = 3695585115 pos = 0,15,0 attPos = 0,0,0 attPos0 = 0,15,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = batteryBankMini_4293422684 link = solarPanels4_4293418600 link = solarPanels4_4293416740 link = solarPanels4_4293416636 link = HighGainAntenna5_4293370512 attN = bottom,batteryBankMini_4293422684_0|-0.1870818|0 attN = top,HighGainAntenna5_4293370512_0|0.1870818|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = batteryBankMini_4293422684 partName = Part persistentId = 2113704616 pos = 0,14.7129183,0 attPos = 0,0,0 attPos0 = 0,-0.287081718,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = SurfAntenna_4293400802 attN = top,probeCoreOcto_4293429552_0|0.1|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = solarPanels4_4293418600 partName = Part persistentId = 961141384 pos = -0.343769908,14.9697638,2.0490285E-08 attPos = 0,0,0 attPos0 = -0.343769908,-0.0302362442,2.0490285E-08 rot = 0,-8.42937027E-08,0,1 attRot = 0,0,0,1 attRot0 = 0,-8.42937027E-08,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4293416740 sym = solarPanels4_4293416636 srfN = srfAttach,probeCoreOcto_4293429552 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 10 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4293416740 partName = Part persistentId = 2146113668 pos = 0.171885014,14.9697638,0.297713459 attPos = 0,0,0 attPos0 = 0.171885014,-0.0302362442,0.297713459 rot = 0,0.866025388,0,0.50000006 attRot = 0,0,0,1 attRot0 = 0,0.866025388,0,0.50000006 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4293418600 sym = solarPanels4_4293416636 srfN = srfAttach,probeCoreOcto_4293429552 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 10 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4293416636 partName = Part persistentId = 4279543905 pos = 0.171884939,14.9697638,-0.297713518 attPos = 0,0,0 attPos0 = 0.171884939,-0.0302362442,-0.297713518 rot = 0,0.866025448,0,-0.5 attRot = 0,0,0,1 attRot0 = 0,0.866025448,0,-0.5 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4293418600 sym = solarPanels4_4293416740 srfN = srfAttach,probeCoreOcto_4293429552 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 10 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = SurfAntenna_4293400802 partName = Part persistentId = 397050771 pos = -0.249303699,14.7094154,-0.249303684 attPos = 0,0,0 attPos0 = -0.249303699,-0.00350284576,-0.249303684 rot = -0.270598114,0.653281391,-0.653281569,-0.270598024 attRot = 0,0,0,1 attRot0 = -0.270598114,0.653281391,-0.653281569,-0.270598024 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,batteryBankMini_4293422684 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 1500000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = HighGainAntenna5_4293370512 partName = Part persistentId = 2788684888 pos = 0,15.1870813,0 attPos = 0,0,0 attPos0 = 0,0.187081337,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = bottom,probeCoreOcto_4293429552_0|0|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.993512809 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 0.70710678118654757 RTOmniRange = 0 RTDishRange = 20000000 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ================================================ FILE: saves/RemoteTech KSP1_4 Testbed/Ships/VAB/GO.craft ================================================ ship = GO version = 1.4.2 description = The flying four legged neighing landcreature.¨¨Legend has it that the Equus can be ridden by brave Kerbals, all we know is that it takes a brave Kerbal to ride this four booster beast past the Mun, or if really foolhardy, past Minmus. type = VAB size = 1.95700049,4.49117851,1.95700073 persistentId = 291794551 rot = 0,0,0,1 missionFlag = Squad/Flags/trippy vesselType = Debris PART { part = mk1pod_4294664102 partName = Part persistentId = 2755686826 pos = -2.44378998E-06,15.0000696,9.03010368E-06 attPos = 0,0,0 attPos0 = -2.44378998E-06,15.0000696,9.03010368E-06 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = parachuteSingle_4294655242 link = GooExperiment_4294265902 link = GooExperiment_4293294182 link = longAntenna_4294368390 link = probeStackSmall_4294710812 link = SurfAntenna_4294696176 link = ksp.r.largeBatteryPack_4294591394 attN = bottom,probeStackSmall_4294710812_0|-0.4050379|0 attN = top,parachuteSingle_4294655242_0|0.6423756|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleColorChanger isEnabled = True animState = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = Light wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ResetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceContainer isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { CollectAllAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FlagDecal isEnabled = True flagDisplayed = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleConductionMultiplier isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleLiftingSurface isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 50 maxAmount = 50 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = MonoPropellant amount = 0 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = parachuteSingle_4294655242 partName = Part persistentId = 226664776 pos = -2.44378998E-06,15.6575298,9.03010368E-06 attPos = 0,0,0 attPos0 = 0,0.657457411,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 0 resPri = 0 dstg = 0 sidx = 0 sqor = 0 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = bottom,mk1pod_4294664102_0|-0.01508113|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleParachute isEnabled = True persistentState = STOWED animTime = 0 minAirPressureToOpen = 0.720000029 deployAltitude = 1500 spreadAngle = 7 automateSafeDeploy = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } CutAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleDragModifier isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleDragModifier isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = GooExperiment_4294265902 partName = Part persistentId = 2414381437 pos = 0.196919799,15.5647602,9.05057368E-06 attPos = 0,0,0 attPos0 = 0.196922302,0.564689577,5.56821114E-08 rot = -0.00601698318,0.70708102,-0.00601697713,-0.707081378 attRot = -0.173648193,0,0,0.984807789 attRot0 = -0.00601698318,0.70708102,-0.00601697806,-0.707081378 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = GooExperiment_4293294182 srfN = srfAttach,mk1pod_4294664102 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = True animTime = 0 animSpeed = 1 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ResetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = GooExperiment_4293294182 partName = Part persistentId = 3512973031 pos = -0.196924806,15.5647602,9.02685042E-06 attPos = 0,0,0 attPos0 = -0.196922302,0.564689577,-3.84666201E-08 rot = -0.00601697713,-0.707081497,0.00601698318,-0.707080901 attRot = -0.173648193,0,0,0.984807789 attRot0 = -0.00601697713,-0.707081497,0.00601698412,-0.707080901 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = GooExperiment_4294265902 srfN = srfAttach,mk1pod_4294664102 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = True animTime = 0 animSpeed = 1 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ResetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = longAntenna_4294368390 partName = Part persistentId = 3201168161 pos = 0.293455124,15.4266729,-0.169418827 attPos = 0,0,0 attPos0 = 0.293457568,0.426603317,-0.169427857 rot = -0.00425466755,0.865994394,0.00736932689,0.499981433 attRot = -0.57357651,0,0,0.819152057 attRot0 = -0.00425466755,0.865994394,0.00736932689,0.499981433 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,mk1pod_4294664102 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = True animTime = 0 animSpeed = 1 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = probeStackSmall_4294710812 partName = Part persistentId = 864618569 pos = -2.44378998E-06,14.4950314,9.03010368E-06 attPos = 0,0,0 attPos0 = 0,-0.505038261,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = HeatShield1p5_4294602222 attN = bottom,HeatShield1p5_4294602222_0|-0.1|0 attN = top,mk1pod_4294664102_0|0.1|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleProbeControlPoint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceContainer isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { CollectAllAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 15 maxAmount = 15 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = SurfAntenna_4294696176 partName = Part persistentId = 3930766338 pos = -0.545154691,14.8087683,-0.314734817 attPos = 0,0,0 attPos0 = -0.545152247,-0.191301346,-0.314743847 rot = -0.283292711,0.713607609,-0.490677297,-0.41200161 attRot = 0,0,0,1 attRot0 = -0.283292711,0.713607609,-0.490677297,-0.41200161 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,mk1pod_4294664102 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 1500000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = HeatShield1p5_4294602222 partName = Part persistentId = 1006321214 pos = -2.44378998E-06,14.270031,9.03010368E-06 attPos = 0,0,0 attPos0 = 0,-0.225000381,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 1 sidx = -1 sqor = -1 sepI = 1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = stackDecoupler_4294640066 attN = direct,stackDecoupler_4294640066_0|0|0 attN = top,probeStackSmall_4294710812_0|0.125|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleJettison isEnabled = True activejettisonName = fairing isJettisoned = True shroudHideOverride = False stagingEnabled = False EVENTS { } ACTIONS { JettisonAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleDecouple isEnabled = True ejectionForcePercent = 100 isDecoupled = False stagingEnabled = False EVENTS { } ACTIONS { DecoupleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleAblator isEnabled = True nominalAmountRecip = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleColorChanger isEnabled = True animState = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleLiftingSurface isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } RESOURCE { name = Ablator amount = 500 maxAmount = 500 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = stackDecoupler_4294640066 partName = Part persistentId = 3025729652 pos = -2.44378998E-06,14.2049789,9.03010368E-06 attPos = 0,0,0 attPos0 = 0,-0.0650520325,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 1 resPri = 0 dstg = 3 sidx = 0 sqor = 1 sepI = 1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = fuelTank_4288402330 attN = bottom,fuelTank_4288402330_0|-0.1329949|0 attN = top,HeatShield1p5_4294602222_0|0.0650517|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDecouple isEnabled = True ejectionForcePercent = 100 isDecoupled = False stagingEnabled = True EVENTS { } ACTIONS { DecoupleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleToggleCrossfeed isEnabled = True crossfeedStatus = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } EnableAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } DisableAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = fuelTank_4288402330 partName = Part persistentId = 822878747 pos = -2.44378998E-06,13.1062994,9.03010368E-06 attPos = 0,0,0 attPos0 = 0,-1.09868395,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 1 resPri = 0 dstg = 4 sidx = -1 sqor = -1 sepI = 1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = liquidEngine3_4294626068 attN = top,stackDecoupler_4294640066_0|0.981725|0 attN = bottom,liquidEngine3_4294626068_0|-0.9125|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 180 maxAmount = 180 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 220 maxAmount = 220 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = liquidEngine3_4294626068 partName = Part persistentId = 1150072111 pos = -2.44378998E-06,11.9231691,9.03010368E-06 attPos = 0,0,0 attPos0 = 0,-1.18312299,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 2 resPri = 0 dstg = 4 sidx = 0 sqor = 2 sepI = 1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = top,fuelTank_4288402330_0|0.2875|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True gimbalActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } LockAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } FreeAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } TogglePitchAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleYawAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleRollAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateThrottle isEnabled = True animState = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleJettison isEnabled = True activejettisonName = fairing isJettisoned = True shroudHideOverride = False stagingEnabled = True EVENTS { } ACTIONS { JettisonAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleSurfaceFX isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = ksp.r.largeBatteryPack_4294591394 partName = Part persistentId = 214127345 pos = -2.44378998E-06,15.221859,0.417989343 attPos = 0,0,0 attPos0 = 0,0.22178936,0.417980313 rot = -1.99910133E-08,0.983294487,-0.182021797,-1.07992854E-07 attRot = 0,0,0,1 attRot0 = -1.99910133E-08,0.983294487,-0.182021797,-1.07992854E-07 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,mk1pod_4294664102 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 400 maxAmount = 400 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } ================================================ FILE: saves/RemoteTech KSP1_4 Testbed/Ships/VAB/Ion Fly.craft ================================================ ship = Ion Fly version = 1.4.1 description = type = VAB size = 1.1805532,4.71808624,13.3288574 persistentId = 2137151838 rot = 0,0,0,0 missionFlag = Squad/Flags/trippy vesselType = Debris PART { part = probeCoreOcto2_4294098884 partName = Part persistentId = 840173303 pos = 0,15,0 attPos = 0,0,0 attPos0 = 0,15,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = sasModule_4294067978 link = batteryBankMini_4294065540 attN = bottom,sasModule_4294067978_0|-0.0610621|0 attN = top,batteryBankMini_4294065540_0|0.0610621|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 5 maxAmount = 5 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = sasModule_4294067978 partName = Part persistentId = 2896446009 pos = 0,14.847827,0 attPos = 0,0,0 attPos0 = 0,-0.152173042,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = batteryBankMini_4294062730 link = largeSolarPanel_4294051288 link = largeSolarPanel_4294050018 attN = bottom,batteryBankMini_4294062730_0|-0.0911109|0 attN = top,probeCoreOcto2_4294098884_0|0.0911109|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = batteryBankMini_4294065540 partName = Part persistentId = 3639635137 pos = 0,15.1610622,0 attPos = 0,0,0 attPos0 = 0,0.161062241,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = batteryBankMini_4294060450 link = ksp.r.largeBatteryPack_4294024394 link = ksp.r.largeBatteryPack_4294023682 attN = top,batteryBankMini_4294060450_0|0.1|0 attN = bottom,probeCoreOcto2_4294098884_0|-0.1|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = batteryBankMini_4294062730 partName = Part persistentId = 1307478232 pos = 0,14.6567154,0 attPos = 0,0,0 attPos0 = 0,-0.191111565,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = batteryBankMini_4294057640 attN = top,sasModule_4294067978_0|0.1|0 attN = bottom,batteryBankMini_4294057640_0|-0.1|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = batteryBankMini_4294060450 partName = Part persistentId = 395152516 pos = 0,15.361063,0 attPos = 0,0,0 attPos0 = 0,0.200000763,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = RTLongAntenna2_4294035534 attN = top,RTLongAntenna2_4294035534_0|0.1|0 attN = bottom,batteryBankMini_4294065540_0|-0.1|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = batteryBankMini_4294057640 partName = Part persistentId = 2944111836 pos = 0,14.4567146,0 attPos = 0,0,0 attPos0 = 0,-0.200000763,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = ksp.r.largeBatteryPack_4294022504 link = ksp.r.largeBatteryPack_4294021922 link = xenonTank_4294002104 attN = top,batteryBankMini_4294062730_0|0.1|0 attN = bottom,xenonTank_4294002104_0|-0.1|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = largeSolarPanel_4294051288 partName = Part persistentId = 132195741 pos = -2.59854591E-08,14.913331,-0.297239006 attPos = 0,0,0 attPos0 = -2.59854591E-08,0.0655040741,-0.297239006 rot = 1.26440554E-07,0.707106829,-1.26440554E-07,-0.707106829 attRot = 0,0,0,1 attRot0 = 1.26440554E-07,0.707106829,-1.26440554E-07,-0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = largeSolarPanel_4294050018 srfN = srfAttach,sasModule_4294067978 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, 0, -0.707106829, 0.707106829) storedAnimationTime = 0 storedAnimationSpeed = 10 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = largeSolarPanel_4294050018 partName = Part persistentId = 2714523645 pos = 5.19709182E-08,14.913331,0.297239006 attPos = 0,0,0 attPos0 = 5.19709182E-08,0.0655040741,0.297239006 rot = -1.26440554E-07,-0.707106888,-1.26440554E-07,-0.707106769 attRot = 0,0,0,1 attRot0 = -1.26440554E-07,-0.707106888,-1.26440554E-07,-0.707106769 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = largeSolarPanel_4294051288 srfN = srfAttach,sasModule_4294067978 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, 0, -0.707106829, 0.707106829) storedAnimationTime = 0 storedAnimationSpeed = 10 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = RTLongAntenna2_4294035534 partName = Part persistentId = 2200018425 pos = 0,15.4610634,0 attPos = 0,0,0 attPos0 = 0,0.100000381,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = bottom,batteryBankMini_4294060450_0|0|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.993083358 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = ksp.r.largeBatteryPack_4294024394 partName = Part persistentId = 3164324311 pos = -0.305276245,15.172102,1.81958839E-08 attPos = 0,0,0 attPos0 = -0.305276245,0.0110397339,1.81958839E-08 rot = -4.36340422E-08,0.707106829,4.36340422E-08,0.707106829 attRot = 0,0,0,1 attRot0 = -4.36340422E-08,0.707106829,4.36340422E-08,0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = ksp.r.largeBatteryPack_4294023682 srfN = srfAttach,batteryBankMini_4294065540 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 400 maxAmount = 400 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = ksp.r.largeBatteryPack_4294023682 partName = Part persistentId = 2161250635 pos = 0.305276245,15.172102,-4.48839792E-08 attPos = 0,0,0 attPos0 = 0.305276245,0.0110397339,-4.48839792E-08 rot = 4.36340457E-08,0.707106769,4.36340386E-08,-0.707106888 attRot = 0,0,0,1 attRot0 = 4.36340457E-08,0.707106769,4.36340386E-08,-0.707106888 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = ksp.r.largeBatteryPack_4294024394 srfN = srfAttach,batteryBankMini_4294065540 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 400 maxAmount = 400 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = ksp.r.largeBatteryPack_4294022504 partName = Part persistentId = 3564354352 pos = -0.305015147,14.485445,1.81803212E-08 attPos = 0,0,0 attPos0 = -0.305015147,0.0287303925,1.81803212E-08 rot = 4.36340351E-08,0.707106829,-4.36340422E-08,0.707106709 attRot = 0,0,0,1 attRot0 = 4.36340351E-08,0.707106829,-4.36340422E-08,0.707106709 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = ksp.r.largeBatteryPack_4294021922 srfN = srfAttach,batteryBankMini_4294057640 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 400 maxAmount = 400 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = ksp.r.largeBatteryPack_4294021922 partName = Part persistentId = 1482860084 pos = 0.305015147,14.485445,-4.48455921E-08 attPos = 0,0,0 attPos0 = 0.305015147,0.0287303925,-4.48455921E-08 rot = -4.36340457E-08,0.70710665,-4.36340315E-08,-0.707106888 attRot = 0,0,0,1 attRot0 = -4.36340457E-08,0.70710665,-4.36340315E-08,-0.707106888 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = ksp.r.largeBatteryPack_4294022504 srfN = srfAttach,batteryBankMini_4294057640 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 400 maxAmount = 400 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = xenonTank_4294002104 partName = Part persistentId = 2770075896 pos = 0,14.2162485,0 attPos = 0,0,0 attPos0 = 0,-0.240466118,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = ionEngine_4293979548 attN = top,batteryBankMini_4294057640_0|0.1404661|0 attN = bottom,ionEngine_4293979548_0|-0.1404661|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = XenonGas amount = 720 maxAmount = 720 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = ionEngine_4293979548 partName = Part persistentId = 1510456825 pos = 0,13.8622265,0 attPos = 0,0,0 attPos0 = 0,-0.354022026,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 0 resPri = 0 dstg = 0 sidx = 0 sqor = 0 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = top,xenonTank_4294002104_0|0.2135562|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnginesFX isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateThrottle isEnabled = True animState = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ================================================ FILE: saves/RemoteTech KSP1_4 Testbed/Ships/VAB/Manned Test.craft ================================================ ship = Manned Test version = 1.4.4 description = type = VAB size = 6.29631615,3.8445549,7.08115005 steamPublishedFileId = 0 persistentId = 3838479238 rot = 0,0,0,0 missionFlag = Squad/Flags/trippy vesselType = Debris PART { part = batteryBank_4294620848 partName = Part persistentId = 92130804 pos = -0.26221168,13.9766722,1.03452992 attPos = 0,0,0 attPos0 = 0,-0.785855293,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = RTLongAntenna2_4294577450 link = RTLongAntenna2_4294541332 link = kv1Pod_4294460714 attN = top,kv1Pod_4294460714_0|0.1108553|0 attN = bottom,fuelTankSmall_4294606558_0|-0.1108553|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 1000 maxAmount = 1000 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = fuelTankSmall_4294606558 partName = Part persistentId = 2566256161 pos = -0.26221168,13.3105669,1.03452992 attPos = 0,0,0 attPos0 = -0.26221168,13.3105669,1.03452992 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = liquidEngineMini_4294596562 link = solarPanels2_4294542374 link = solarPanels2_4294541910 link = strutCube_4294534014 link = strutCube_4294533360 link = strutCube_4294533328 link = strutCube_4294533296 link = batteryBank_4294620848 attN = top,batteryBank_4294620848_0|0.55525|0 attN = bottom,liquidEngineMini_4294596562_0|-0.55525|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 90 maxAmount = 90 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 110 maxAmount = 110 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = liquidEngineMini_4294596562 partName = Part persistentId = 3699164176 pos = -0.26221168,12.7553167,1.03452992 attPos = 0,0,0 attPos0 = 0,-0.555250168,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 0 resPri = 0 dstg = 0 sidx = 0 sqor = 0 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = top,fuelTankSmall_4294606558_0|0|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnginesFX isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleJettison isEnabled = True activejettisonName = node_fairing_collider isJettisoned = True shroudHideOverride = False stagingEnabled = True EVENTS { } ACTIONS { JettisonAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True gimbalActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } LockAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } FreeAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } TogglePitchAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleYawAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleRollAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = solarPanels2_4294542374 partName = Part persistentId = 4044252806 pos = 0.299884737,13.3094921,1.03452992 attPos = 0,0,0 attPos0 = 0.562096417,-0.00107479095,3.35035608E-08 rot = 1.77635684E-15,1,-7.48678413E-23,0 attRot = 0,0,0,1 attRot0 = 1.77635684E-15,1,-7.48678413E-23,0 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels2_4294541910 srfN = srfAttach,fuelTankSmall_4294606558 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.707106829, 0, 0, 0.707106829) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels2_4294541910 partName = Part persistentId = 3162919500 pos = -0.824308097,13.3094921,1.03452992 attPos = 0,0,0 attPos0 = -0.562096417,-0.00107479095,1.56364681E-08 rot = -1.52514859E-22,-4.37113883E-08,-1.77635684E-15,-1 attRot = 0,0,0,1 attRot0 = -1.52514859E-22,-4.37113883E-08,-1.77635684E-15,-1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels2_4294542374 srfN = srfAttach,fuelTankSmall_4294606558 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.707106829, 0, 0, 0.707106829) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = RTLongAntenna2_4294577450 partName = Part persistentId = 3243606393 pos = -0.26221168,13.9733276,1.6382916 attPos = 0,0,0 attPos0 = 0,-0.00334453583,0.603761733 rot = 0.707106709,0,0,0.707106948 attRot = 0,0,0,1 attRot0 = 0.707106709,0,0,0.707106948 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = RTLongAntenna2_4294541332 srfN = srfAttach,batteryBank_4294620848 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992554426 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = RTLongAntenna2_4294541332 partName = Part persistentId = 3502276166 pos = -0.26221174,13.9733276,0.430768192 attPos = 0,0,0 attPos0 = -5.27825286E-08,-0.00334453583,-0.603761733 rot = -3.09086161E-08,0.707106948,-0.707106709,-3.09086268E-08 attRot = 0,0,0,1 attRot0 = -3.09086161E-08,0.707106948,-0.707106709,-3.09086268E-08 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = RTLongAntenna2_4294577450 srfN = srfAttach,batteryBank_4294620848 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992554426 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = strutCube_4294534014 partName = Part persistentId = 4262978417 pos = -0.262211621,12.6356707,0.478181779 attPos = 0,0,0 attPos0 = 4.86374994E-08,-0.67489624,-0.556348145 rot = 1,1.77635673E-15,-1.77635673E-15,8.42937027E-08 attRot = 0,0,0,1 attRot0 = 1,1.77635673E-15,-1.77635673E-15,8.42937027E-08 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 link = strutCube_4294533198 sym = strutCube_4294533360 sym = strutCube_4294533328 sym = strutCube_4294533296 srfN = srfAttach,fuelTankSmall_4294606558 attN = top,strutCube_4294533198_0|0.1287344|0 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = strutCube_4294533360 partName = Part persistentId = 2628494537 pos = -0.818559766,12.6356707,1.03452981 attPos = 0,0,0 attPos0 = -0.556348085,-0.67489624,-8.17984329E-08 rot = 0.707106829,5.9604659E-08,-0.707106829,5.96046519E-08 attRot = 0,0,0,1 attRot0 = 0.707106829,5.9604659E-08,-0.707106829,5.96046519E-08 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 link = strutCube_4294532868 sym = strutCube_4294534014 sym = strutCube_4294533328 sym = strutCube_4294533296 srfN = srfAttach,fuelTankSmall_4294606558 attN = top,strutCube_4294532868_0|0.1287344|0 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = strutCube_4294533328 partName = Part persistentId = 3272463144 pos = -0.26221168,12.6356707,1.59087801 attPos = 0,0,0 attPos0 = 2.1676166E-16,-0.67489624,0.556348145 rot = -4.37113883E-08,8.42937027E-08,-1,-5.46095143E-15 attRot = 0,0,0,1 attRot0 = -4.37113883E-08,8.42937027E-08,-1,-5.46095143E-15 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 link = strutCube_4294532830 sym = strutCube_4294534014 sym = strutCube_4294533360 sym = strutCube_4294533296 srfN = srfAttach,fuelTankSmall_4294606558 attN = top,strutCube_4294532830_0|0.1287344|0 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = strutCube_4294533296 partName = Part persistentId = 268141383 pos = 0.294136405,12.6356707,1.03452992 attPos = 0,0,0 attPos0 = 0.556348085,-0.67489624,1.54765623E-08 rot = -0.707106829,5.96046519E-08,-0.707106829,-5.9604659E-08 attRot = 0,0,0,1 attRot0 = -0.707106829,5.96046519E-08,-0.707106829,-5.9604659E-08 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 link = strutCube_4294532792 sym = strutCube_4294534014 sym = strutCube_4294533360 sym = strutCube_4294533328 srfN = srfAttach,fuelTankSmall_4294606558 attN = top,strutCube_4294532792_0|0.1287344|0 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = strutCube_4294533198 partName = Part persistentId = 1025482205 pos = -0.262211621,12.3782015,0.478181779 attPos = 0,0,0 attPos0 = -9.14714162E-16,0.257469177,4.3406061E-08 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = -1,-1.77635673E-15,1.77635673E-15,8.42937027E-08 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 sym = strutCube_4294532868 sym = strutCube_4294532830 sym = strutCube_4294532792 attN = top,strutCube_4294534014_0|0.1287344|0 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = strutCube_4294532868 partName = Part persistentId = 734459246 pos = -0.818559766,12.3782015,1.03452981 attPos = 0,0,0 attPos0 = -3.65885538E-15,0.257468998,4.34060503E-08 rot = 7.10542736E-15,0.707106829,-2.51214789E-15,0.707106829 attRot = 0,0,0,1 attRot0 = -1,-3.55271326E-15,0,8.42937098E-08 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 sym = strutCube_4294533198 sym = strutCube_4294532830 sym = strutCube_4294532792 attN = top,strutCube_4294533360_0|0.1287344|0 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = strutCube_4294532830 partName = Part persistentId = 3920341830 pos = -0.26221168,12.3782015,1.59087801 attPos = 0,0,0 attPos0 = 1.43997846E-15,0.257469177,4.3406061E-08 rot = 0,1,7.76470235E-23,-4.37113883E-08 attRot = 0,0,0,1 attRot0 = -1,-1.77635684E-15,0,8.42937027E-08 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 sym = strutCube_4294533198 sym = strutCube_4294532868 sym = strutCube_4294532792 attN = top,strutCube_4294533328_0|0.1287344|0 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = strutCube_4294532792 partName = Part persistentId = 1409329389 pos = 0.294136405,12.3782015,1.03452992 attPos = 0,0,0 attPos0 = -1.88249917E-15,0.257468998,4.34060503E-08 rot = 0,0.707106829,-4.59327925E-15,-0.707106829 attRot = 0,0,0,1 attRot0 = -1,-3.55271326E-15,0,8.42937098E-08 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 sym = strutCube_4294533198 sym = strutCube_4294532868 sym = strutCube_4294532830 attN = top,strutCube_4294533296_0|0.1287344|0 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = kv1Pod_4294460714 partName = Part persistentId = 1996341504 pos = -0.26221168,14.7625275,1.03452992 attPos = 0,0,0 attPos0 = 0,0.785855293,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 1 resPri = 0 dstg = 1 sidx = 0 sqor = 1 sepI = 1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = sasModule_4294628394 attN = top,sasModule_4294628394_0|1.025|0 attN = bottom,batteryBank_4294620848_0|-0.675|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleAnchoredDecoupler isEnabled = True ejectionForcePercent = 100 isDecoupled = False stagingEnabled = True EVENTS { } ACTIONS { DecoupleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ResetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceContainer isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { CollectAllAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleAblator isEnabled = True nominalAmountRecip = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleColorChanger isEnabled = True animState = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleColorChanger isEnabled = True animState = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = Light wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleConductionMultiplier isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 50 maxAmount = 50 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Ablator amount = 20 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = sasModule_4294628394 partName = Part persistentId = 537418491 pos = -0.26221168,15.8786383,1.03452992 attPos = 0,0,0 attPos0 = 0,1.1161108,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 1 resPri = 0 dstg = 2 sidx = -1 sqor = -1 sepI = 1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = probeCoreOcto2_4294374310 attN = bottom,kv1Pod_4294460714_0|-0.0911109|0 attN = top,probeCoreOcto2_4294374310_0|0.0911109|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = probeCoreOcto2_4294374310 partName = Part persistentId = 4150984655 pos = -0.26221168,16.0308113,1.03452992 attPos = 0,0,0 attPos0 = 0,0.152173042,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 1 resPri = 0 dstg = 2 sidx = -1 sqor = -1 sepI = 1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = bottom,sasModule_4294628394_0|-0.0610621|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 5 maxAmount = 5 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } ================================================ FILE: saves/RemoteTech KSP1_4 Testbed/Ships/VAB/Omni 5Mm Range.craft ================================================ ship = Omni 5Mm Range version = 1.4.1 description = type = VAB size = 0.815140843,3.51786041,0.879227757 persistentId = 2004793707 rot = 0,0,0,0 missionFlag = Squad/Flags/trippy vesselType = Debris PART { part = probeCoreHex_4293545588 partName = Part persistentId = 4059824953 pos = 0,15,0 attPos = 0,0,0 attPos0 = 0,15,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = RTLongAntenna2_4293524740 link = solarPanels5_4293519790 link = solarPanels5_4293519566 link = solarPanels5_4293519534 link = solarPanels5_4293519502 link = solarPanels5_4293519470 link = solarPanels5_4293519438 link = batteryBankMini_4293517676 attN = bottom,batteryBankMini_4293517676_0|-0.1875|0 attN = top,RTLongAntenna2_4293524740_0|0.1875|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = RTLongAntenna2_4293524740 partName = Part persistentId = 3100939162 pos = 0,15.1875,0 attPos = 0,0,0 attPos0 = 0,0.1875,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = bottom,probeCoreHex_4293545588_0|0|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.991799891 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4293519790 partName = Part persistentId = 1530555204 pos = -0.341260731,14.9869623,2.03407264E-08 attPos = 0,0,0 attPos0 = -0.341260731,-0.0130376816,2.03407264E-08 rot = 0,-0.707106829,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0,-0.707106829,0,0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4293519566 sym = solarPanels5_4293519534 sym = solarPanels5_4293519502 sym = solarPanels5_4293519470 sym = solarPanels5_4293519438 srfN = srfAttach,probeCoreHex_4293545588 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4293519566 partName = Part persistentId = 1402412981 pos = -0.170630351,14.9869623,0.295540482 attPos = 0,0,0 attPos0 = -0.170630351,-0.0130376816,0.295540482 rot = 0,-0.258819044,0,0.965925872 attRot = 0,0,0,1 attRot0 = 0,-0.258819044,0,0.965925872 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4293519790 sym = solarPanels5_4293519534 sym = solarPanels5_4293519502 sym = solarPanels5_4293519470 sym = solarPanels5_4293519438 srfN = srfAttach,probeCoreHex_4293545588 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4293519534 partName = Part persistentId = 2726404209 pos = 0.170630425,14.9869623,0.295540452 attPos = 0,0,0 attPos0 = 0.170630425,-0.0130376816,0.295540452 rot = 0,0.258819103,0,0.965925872 attRot = 0,0,0,1 attRot0 = 0,0.258819103,0,0.965925872 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4293519790 sym = solarPanels5_4293519566 sym = solarPanels5_4293519502 sym = solarPanels5_4293519470 sym = solarPanels5_4293519438 srfN = srfAttach,probeCoreHex_4293545588 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4293519502 partName = Part persistentId = 2354692141 pos = 0.341260731,14.9869623,-5.01746875E-08 attPos = 0,0,0 attPos0 = 0.341260731,-0.0130376816,-5.01746875E-08 rot = 0,0.707106888,0,0.707106769 attRot = 0,0,0,1 attRot0 = 0,0.707106888,0,0.707106769 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4293519790 sym = solarPanels5_4293519566 sym = solarPanels5_4293519534 sym = solarPanels5_4293519470 sym = solarPanels5_4293519438 srfN = srfAttach,probeCoreHex_4293545588 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4293519470 partName = Part persistentId = 2792303253 pos = 0.170630351,14.9869623,-0.295540512 attPos = 0,0,0 attPos0 = 0.170630351,-0.0130376816,-0.295540512 rot = 0,0.965925872,0,0.258819014 attRot = 0,0,0,1 attRot0 = 0,0.965925872,0,0.258819014 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4293519790 sym = solarPanels5_4293519566 sym = solarPanels5_4293519534 sym = solarPanels5_4293519502 sym = solarPanels5_4293519438 srfN = srfAttach,probeCoreHex_4293545588 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4293519438 partName = Part persistentId = 2241178736 pos = -0.170630336,14.9869623,-0.295540482 attPos = 0,0,0 attPos0 = -0.170630336,-0.0130376816,-0.295540482 rot = 0,0.965925872,0,-0.258819014 attRot = 0,0,0,1 attRot0 = 0,0.965925872,0,-0.258819014 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4293519790 sym = solarPanels5_4293519566 sym = solarPanels5_4293519534 sym = solarPanels5_4293519502 sym = solarPanels5_4293519470 srfN = srfAttach,probeCoreHex_4293545588 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = batteryBankMini_4293517676 partName = Part persistentId = 3751334898 pos = 0,14.7124996,0 attPos = 0,0,0 attPos0 = 0,-0.287500381,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = top,probeCoreHex_4293545588_0|0.1|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } ================================================ FILE: saves/RemoteTech KSP1_4 Testbed/Ships/VAB/Omni Relay.craft ================================================ ship = Omni Relay version = 1.4.1 description = type = VAB size = 5.70726633,3.43711853,5.70726871 persistentId = 1674125841 rot = 0,0,0,0 missionFlag = Squad/Flags/trippy vesselType = Debris PART { part = probeCoreOcto2_4294618014 partName = Part persistentId = 840173303 pos = 0,15,0 attPos = 0,0,0 attPos0 = 0,15,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = RTLongAntenna2_4294606186 link = RTLongAntenna2_4294603876 link = sasModule_4294590694 attN = bottom,sasModule_4294590694_0|-0.0610621|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 5 maxAmount = 5 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = RTLongAntenna2_4294606186 partName = Part persistentId = 2200018425 pos = -0.180008799,15.0506973,1.07293614E-08 attPos = 0,0,0 attPos0 = -0.180008799,0.0506973267,1.07293614E-08 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = RTLongAntenna2_4294603876 srfN = srfAttach,probeCoreOcto2_4294618014 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.991167128 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = RTLongAntenna2_4294603876 partName = Part persistentId = 3127273860 pos = 0.180008799,15.0506973,-2.64662301E-08 attPos = 0,0,0 attPos0 = 0.180008799,0.0506973267,-2.64662301E-08 rot = 0,1,0,-4.37113883E-08 attRot = 0,0,0,1 attRot0 = 0,1,0,-4.37113883E-08 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = RTLongAntenna2_4294606186 srfN = srfAttach,probeCoreOcto2_4294618014 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992847264 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = sasModule_4294590694 partName = Part persistentId = 2896446009 pos = 0,14.847827,0 attPos = 0,0,0 attPos0 = 0,-0.152173042,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = solarPanels4_4294583170 link = solarPanels4_4294581510 link = solarPanels4_4294581406 link = solarPanels4_4294581302 link = batteryBankMini_4294578606 attN = bottom,batteryBankMini_4294578606_0|-0.0911109|0 attN = top,probeCoreOcto2_4294618014_0|0.0911109|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4294583170 partName = Part persistentId = 1995450387 pos = 2.61049067E-08,14.8372803,-0.298605323 attPos = 0,0,0 attPos0 = 2.61049067E-08,-0.0105466843,-0.298605323 rot = 1.26440554E-07,0.707106829,-1.26440554E-07,-0.707106829 attRot = 0,0,0,1 attRot0 = 1.26440554E-07,0.707106829,-1.26440554E-07,-0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4294581510 sym = solarPanels4_4294581406 sym = solarPanels4_4294581302 srfN = srfAttach,sasModule_4294590694 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4294581510 partName = Part persistentId = 2553449348 pos = -0.298605293,14.8372803,-4.39031709E-08 attPos = 0,0,0 attPos0 = -0.298605293,-0.0105466843,-4.39031709E-08 rot = 0,0,-1.78813949E-07,-1 attRot = 0,0,0,1 attRot0 = 0,0,-1.78813949E-07,-1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4294583170 sym = solarPanels4_4294581406 sym = solarPanels4_4294581302 srfN = srfAttach,sasModule_4294590694 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4294581406 partName = Part persistentId = 577229350 pos = -2.58655063E-16,14.8372803,0.298605323 attPos = 0,0,0 attPos0 = -2.58655063E-16,-0.0105466843,0.298605323 rot = -1.26440554E-07,-0.707106888,-1.26440554E-07,-0.707106769 attRot = 0,0,0,1 attRot0 = -1.26440554E-07,-0.707106888,-1.26440554E-07,-0.707106769 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4294583170 sym = solarPanels4_4294581510 sym = solarPanels4_4294581302 srfN = srfAttach,sasModule_4294590694 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4294581302 partName = Part persistentId = 747721626 pos = 0.298605293,14.8372803,8.30664071E-09 attPos = 0,0,0 attPos0 = 0.298605293,-0.0105466843,8.30664071E-09 rot = -1.78813949E-07,-1,0,0 attRot = 0,0,0,1 attRot0 = -1.78813949E-07,-1,0,0 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4294583170 sym = solarPanels4_4294581510 sym = solarPanels4_4294581406 srfN = srfAttach,sasModule_4294590694 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = batteryBankMini_4294578606 partName = Part persistentId = 3639635137 pos = 0,14.6567154,0 attPos = 0,0,0 attPos0 = 0,-0.191111565,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = batteryPack_4294573318 link = batteryPack_4294571992 link = batteryPack_4294571954 link = batteryPack_4294571916 attN = top,sasModule_4294590694_0|0.1|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = batteryPack_4294573318 partName = Part persistentId = 3080750876 pos = -0.213449925,14.7381868,-0.21344991 attPos = 0,0,0 attPos0 = -0.213449925,0.0814714432,-0.21344991 rot = 1.55754421E-07,-0.382683486,-6.45156035E-08,-0.923879564 attRot = 0,0,0,1 attRot0 = 1.55754421E-07,-0.382683486,-6.45156035E-08,-0.923879564 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = batteryPack_4294571992 sym = batteryPack_4294571954 sym = batteryPack_4294571916 srfN = srfAttach,batteryBankMini_4294578606 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 100 maxAmount = 100 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = batteryPack_4294571992 partName = Part persistentId = 2892449644 pos = -0.21344991,14.7381868,0.213449895 attPos = 0,0,0 attPos0 = -0.21344991,0.0814714432,0.213449895 rot = 6.45155822E-08,-0.923879564,-1.55754421E-07,-0.382683396 attRot = 0,0,0,1 attRot0 = 6.45155822E-08,-0.923879564,-1.55754421E-07,-0.382683396 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = batteryPack_4294573318 sym = batteryPack_4294571954 sym = batteryPack_4294571916 srfN = srfAttach,batteryBankMini_4294578606 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 100 maxAmount = 100 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = batteryPack_4294571954 partName = Part persistentId = 251146200 pos = 0.21344994,14.7381868,0.213449895 attPos = 0,0,0 attPos0 = 0.21344994,0.0814714432,0.213449895 rot = -6.45156106E-08,-0.923879564,-1.55754421E-07,0.382683516 attRot = 0,0,0,1 attRot0 = -6.45156106E-08,-0.923879564,-1.55754421E-07,0.382683516 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = batteryPack_4294573318 sym = batteryPack_4294571992 sym = batteryPack_4294571916 srfN = srfAttach,batteryBankMini_4294578606 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 100 maxAmount = 100 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = batteryPack_4294571916 partName = Part persistentId = 1988246392 pos = 0.21344988,14.7381868,-0.213449925 attPos = 0,0,0 attPos0 = 0.21344988,0.0814714432,-0.213449925 rot = -1.55754421E-07,-0.382683396,-6.45155822E-08,0.923879564 attRot = 0,0,0,1 attRot0 = -1.55754421E-07,-0.382683396,-6.45155822E-08,0.923879564 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = batteryPack_4294573318 sym = batteryPack_4294571992 sym = batteryPack_4294571954 srfN = srfAttach,batteryBankMini_4294578606 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 100 maxAmount = 100 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } ================================================ FILE: saves/RemoteTech KSP1_4 Testbed/Ships/VAB/RCS Test.craft ================================================ ship = RCS Test version = 1.4.1 description = type = VAB size = 1.55861926,5.07478905,1.55861902 persistentId = 4200829173 rot = 0,0,0,0 missionFlag = Squad/Flags/trippy vesselType = Debris PART { part = probeCoreOcto2_4294725412 partName = Part persistentId = 663917246 pos = 0,15,0 attPos = 0,0,0 attPos0 = 0,15,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = RCSFuelTank_4294713392 attN = bottom,RCSFuelTank_4294713392_0|-0.0610621|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 5 maxAmount = 5 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = RCSFuelTank_4294713392 partName = Part persistentId = 2711019455 pos = 0,14.653635,0 attPos = 0,0,0 attPos0 = 0,-0.346364975,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = fuelTank.long_4294692444 link = RCSBlock_4294658662 link = RCSBlock_4294657882 link = RCSBlock_4294657818 link = RCSBlock_4294657754 attN = top,probeCoreOcto2_4294725412_0|0.2853027|0 attN = bottom,fuelTank.long_4294692444_0|-0.2853027|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 120 maxAmount = 120 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = fuelTank.long_4294692444 partName = Part persistentId = 3561586807 pos = 0,12.4933319,0 attPos = 0,0,0 attPos0 = 0,-2.16030312,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = batteryBank_4294683530 link = solarPanels5_4294680592 link = solarPanels5_4294680368 link = solarPanels5_4294680336 link = solarPanels5_4294680304 link = solarPanels5_4294680272 link = solarPanels5_4294680240 link = SurfAntenna_4294666768 link = RCSBlock_4294656504 link = RCSBlock_4294656440 link = RCSBlock_4294656376 link = RCSBlock_4294656312 attN = top,RCSFuelTank_4294713392_0|1.875|0 attN = bottom,batteryBank_4294683530_0|-1.8875|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 360 maxAmount = 360 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 440 maxAmount = 440 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = batteryBank_4294683530 partName = Part persistentId = 2543361006 pos = 0,10.494977,0 attPos = 0,0,0 attPos0 = 0,-1.99835491,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = advSasModule_4294652222 attN = top,fuelTank.long_4294692444_0|0.1108553|0 attN = bottom,advSasModule_4294652222_0|-0.1108553|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 1000 maxAmount = 1000 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = solarPanels5_4294680592 partName = Part persistentId = 2028119984 pos = -0.619148731,13.917634,3.69041437E-08 attPos = 0,0,0 attPos0 = -0.619148731,1.4243021,3.69041437E-08 rot = -1.25607395E-15,-0.707106709,-1.25607384E-15,0.707106829 attRot = 0,0,0,1 attRot0 = -1.25607395E-15,-0.707106709,-1.25607384E-15,0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294680368 sym = solarPanels5_4294680336 sym = solarPanels5_4294680304 sym = solarPanels5_4294680272 sym = solarPanels5_4294680240 srfN = srfAttach,fuelTank.long_4294692444 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294680368 partName = Part persistentId = 4030256132 pos = -0.309574336,13.917634,0.536198556 attPos = 0,0,0 attPos0 = -0.309574336,1.4243021,0.536198556 rot = -1.71582892E-15,-0.258818984,-4.59754925E-16,0.965925872 attRot = 0,0,0,1 attRot0 = -1.71582892E-15,-0.258818984,-4.59754925E-16,0.965925872 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294680592 sym = solarPanels5_4294680336 sym = solarPanels5_4294680304 sym = solarPanels5_4294680272 sym = solarPanels5_4294680240 srfN = srfAttach,fuelTank.long_4294692444 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294680336 partName = Part persistentId = 4195735149 pos = 0.309574485,13.917634,0.536198497 attPos = 0,0,0 attPos0 = 0.309574485,1.4243021,0.536198497 rot = -1.71582882E-15,0.258819163,4.59755137E-16,0.965925813 attRot = 0,0,0,1 attRot0 = -1.71582882E-15,0.258819163,4.59755137E-16,0.965925813 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294680592 sym = solarPanels5_4294680368 sym = solarPanels5_4294680304 sym = solarPanels5_4294680272 sym = solarPanels5_4294680240 srfN = srfAttach,fuelTank.long_4294692444 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294680304 partName = Part persistentId = 174928870 pos = 0.619148731,13.917634,-9.10318434E-08 attPos = 0,0,0 attPos0 = 0.619148731,1.4243021,-9.10318434E-08 rot = -1.25607373E-15,0.707106888,1.25607405E-15,0.70710665 attRot = 0,0,0,1 attRot0 = -1.25607373E-15,0.707106888,1.25607405E-15,0.70710665 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294680592 sym = solarPanels5_4294680368 sym = solarPanels5_4294680336 sym = solarPanels5_4294680272 sym = solarPanels5_4294680240 srfN = srfAttach,fuelTank.long_4294692444 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294680272 partName = Part persistentId = 3643358020 pos = 0.309574336,13.917634,-0.536198616 attPos = 0,0,0 attPos0 = 0.309574336,1.4243021,-0.536198616 rot = -4.59754767E-16,0.965925872,1.71582892E-15,0.258818895 attRot = 0,0,0,1 attRot0 = -4.59754767E-16,0.965925872,1.71582892E-15,0.258818895 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294680592 sym = solarPanels5_4294680368 sym = solarPanels5_4294680336 sym = solarPanels5_4294680304 sym = solarPanels5_4294680240 srfN = srfAttach,fuelTank.long_4294692444 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294680240 partName = Part persistentId = 3078692393 pos = -0.309574336,13.917634,-0.536198556 attPos = 0,0,0 attPos0 = -0.309574336,1.4243021,-0.536198556 rot = 4.59754925E-16,0.965925813,1.71582892E-15,-0.258819073 attRot = 0,0,0,1 attRot0 = 4.59754925E-16,0.965925813,1.71582892E-15,-0.258819073 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294680592 sym = solarPanels5_4294680368 sym = solarPanels5_4294680336 sym = solarPanels5_4294680304 sym = solarPanels5_4294680272 srfN = srfAttach,fuelTank.long_4294692444 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = SurfAntenna_4294666768 partName = Part persistentId = 3311341143 pos = -0.669598937,13.4696531,4.58716727E-08 attPos = 0,0,0 attPos0 = -0.669598937,0.97632122,4.58716727E-08 rot = 0.50000006,-0.49999997,0.49999997,0.50000006 attRot = 0,0,0,1 attRot0 = 0.50000006,-0.49999997,0.49999997,0.50000006 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,fuelTank.long_4294692444 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 1500000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = RCSBlock_4294658662 partName = Part persistentId = 4066901398 pos = -0.660589039,14.6550827,0.000742311007 attPos = 0,0,0 attPos0 = -0.660589039,0.00144767761,0.000742311007 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = RCSBlock_4294657882 sym = RCSBlock_4294657818 sym = RCSBlock_4294657754 srfN = srfAttach,RCSFuelTank_4294713392 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = RCSBlock_4294657882 partName = Part persistentId = 4274426213 pos = 0.000742271601,14.6550827,0.66058898 attPos = 0,0,0 attPos0 = 0.000742271601,0.00144767761,0.66058898 rot = 0,0.707106829,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0,0.707106829,0,0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = RCSBlock_4294658662 sym = RCSBlock_4294657818 sym = RCSBlock_4294657754 srfN = srfAttach,RCSFuelTank_4294713392 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = RCSBlock_4294657818 partName = Part persistentId = 870175063 pos = 0.660589039,14.6550827,-0.000742368749 attPos = 0,0,0 attPos0 = 0.660589039,0.00144767761,-0.000742368749 rot = 0,1,0,-4.37113883E-08 attRot = 0,0,0,1 attRot0 = 0,1,0,-4.37113883E-08 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = RCSBlock_4294658662 sym = RCSBlock_4294657882 sym = RCSBlock_4294657754 srfN = srfAttach,RCSFuelTank_4294713392 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = RCSBlock_4294657754 partName = Part persistentId = 2900679360 pos = -0.000742350356,14.6550827,-0.66058898 attPos = 0,0,0 attPos0 = -0.000742350356,0.00144767761,-0.66058898 rot = 0,0.707106829,0,-0.707106829 attRot = 0,0,0,1 attRot0 = 0,0.707106829,0,-0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = RCSBlock_4294658662 sym = RCSBlock_4294657882 sym = RCSBlock_4294657818 srfN = srfAttach,RCSFuelTank_4294713392 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = RCSBlock_4294656504 partName = Part persistentId = 175866295 pos = -0.675649762,10.8869009,0.000742321427 attPos = 0,0,0 attPos0 = -0.675649762,-1.60643101,0.000742321427 rot = -7.48678476E-23,8.42937027E-08,-1.77635684E-15,1 attRot = 0,0,0,1 attRot0 = -7.48678476E-23,8.42937027E-08,-1.77635684E-15,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = RCSBlock_4294656440 sym = RCSBlock_4294656376 sym = RCSBlock_4294656312 srfN = srfAttach,fuelTank.long_4294692444 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = RCSBlock_4294656440 partName = Part persistentId = 113807305 pos = 0.000742281089,10.8869009,0.675649703 attPos = 0,0,0 attPos0 = 0.000742281089,-1.60643101,0.675649703 rot = -1.25607405E-15,0.707106829,-1.25607384E-15,0.707106709 attRot = 0,0,0,1 attRot0 = -1.25607405E-15,0.707106829,-1.25607384E-15,0.707106709 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = RCSBlock_4294656504 sym = RCSBlock_4294656376 sym = RCSBlock_4294656312 srfN = srfAttach,fuelTank.long_4294692444 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = RCSBlock_4294656376 partName = Part persistentId = 3558407573 pos = 0.675649762,10.8869009,-0.000742380507 attPos = 0,0,0 attPos0 = 0.675649762,-1.60643101,-0.000742380507 rot = -1.77635684E-15,1,1.52514871E-22,-1.28005098E-07 attRot = 0,0,0,1 attRot0 = -1.77635684E-15,1,1.52514871E-22,-1.28005098E-07 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = RCSBlock_4294656504 sym = RCSBlock_4294656440 sym = RCSBlock_4294656312 srfN = srfAttach,fuelTank.long_4294692444 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = RCSBlock_4294656312 partName = Part persistentId = 606115380 pos = -0.000742361648,10.8869009,-0.675649703 attPos = 0,0,0 attPos0 = -0.000742361648,-1.60643101,-0.675649703 rot = -1.25607384E-15,0.707106709,1.25607405E-15,-0.707106829 attRot = 0,0,0,1 attRot0 = -1.25607384E-15,0.707106709,1.25607405E-15,-0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = RCSBlock_4294656504 sym = RCSBlock_4294656440 sym = RCSBlock_4294656376 srfN = srfAttach,fuelTank.long_4294692444 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = advSasModule_4294652222 partName = Part persistentId = 163027371 pos = 0,10.1850948,0 attPos = 0,0,0 attPos0 = 0,-0.309882164,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = top,batteryBank_4294683530_0|0.1990267|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } ================================================ FILE: saves/RemoteTech KSP1_4 Testbed/Ships/VAB/RSC Test.craft ================================================ ship = RSC Test version = 1.4.1 description = type = VAB size = 1.55849564,10.3654995,1.55849552 persistentId = 4219027272 rot = 0,0,0,0 missionFlag = Squad/Flags/trippy vesselType = Debris PART { part = probeCoreHex_4294703092 partName = Part persistentId = 322954578 pos = 0,15,0 attPos = 0,0,0 attPos0 = 0,15,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = RCSFuelTank_4294687764 link = batteryBankMini_4294626968 attN = bottom,RCSFuelTank_4294687764_0|-0.1875|0 attN = top,batteryBankMini_4294626968_0|0.1875|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = RCSFuelTank_4294687764 partName = Part persistentId = 583581814 pos = 0,14.5271969,0 attPos = 0,0,0 attPos0 = 0,-0.472803116,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = fuelTank.long_4294647218 link = RCSBlock_4294606550 link = RCSBlock_4294605706 link = RCSBlock_4294605642 link = RCSBlock_4294605578 attN = top,probeCoreHex_4294703092_0|0.2853027|0 attN = bottom,fuelTank.long_4294647218_0|-0.2853027|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 120 maxAmount = 120 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = fuelTank.long_4294647218 partName = Part persistentId = 2500778278 pos = 0,12.3668938,0 attPos = 0,0,0 attPos0 = 0,-2.16030312,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = fuelTank.long_4294644054 link = solarPanels5_4294623606 link = solarPanels5_4294623222 link = solarPanels5_4294623190 link = solarPanels5_4294623158 link = solarPanels5_4294623126 link = solarPanels5_4294623094 link = solarPanels5_4294623062 link = solarPanels5_4294623030 link = SurfAntenna_4294611760 attN = top,RCSFuelTank_4294687764_0|1.875|0 attN = bottom,fuelTank.long_4294644054_0|-1.8875|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 36.000000536441803 maxAmount = 360 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 44.000000655651093 maxAmount = 440 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = fuelTank.long_4294644054 partName = Part persistentId = 588970484 pos = 0,8.60439396,0 attPos = 0,0,0 attPos0 = 0,-3.76249981,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = liquidEngine2_4294637166 link = RCSBlock_4294604404 link = RCSBlock_4294603816 link = RCSBlock_4294603752 link = RCSBlock_4294603688 attN = top,fuelTank.long_4294647218_0|1.875|0 attN = bottom,liquidEngine2_4294637166_0|-1.8875|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 0 maxAmount = 360 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 0 maxAmount = 440 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = liquidEngine2_4294637166 partName = Part persistentId = 1372886320 pos = 0,5.81506729,0 attPos = 0,0,0 attPos0 = 0,-2.78932667,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 0 resPri = 0 dstg = 0 sidx = 0 sqor = 0 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = top,fuelTank.long_4294644054_0|0.9018263|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleJettison isEnabled = True activejettisonName = fairing isJettisoned = True shroudHideOverride = False stagingEnabled = True EVENTS { } ACTIONS { JettisonAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True gimbalActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } LockAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } FreeAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } TogglePitchAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleYawAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleRollAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateThrottle isEnabled = True animState = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleAlternator isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleSurfaceFX isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = batteryBankMini_4294626968 partName = Part persistentId = 552722682 pos = 0,15.2875004,0 attPos = 0,0,0 attPos0 = 0,0.287500381,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = bottom,probeCoreHex_4294703092_0|-0.1|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = solarPanels5_4294623606 partName = Part persistentId = 3817332001 pos = -0.620488882,13.4085083,3.6984023E-08 attPos = 0,0,0 attPos0 = -0.620488882,1.04161453,3.6984023E-08 rot = -1.25607395E-15,-0.707106709,-1.25607384E-15,0.707106829 attRot = 0,0,0,1 attRot0 = -1.25607395E-15,-0.707106709,-1.25607384E-15,0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294623222 sym = solarPanels5_4294623190 sym = solarPanels5_4294623158 sym = solarPanels5_4294623126 sym = solarPanels5_4294623094 sym = solarPanels5_4294623062 sym = solarPanels5_4294623030 srfN = srfAttach,fuelTank.long_4294647218 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294623222 partName = Part persistentId = 3789457930 pos = -0.438751847,13.4085083,0.438751966 attPos = 0,0,0 attPos0 = -0.438751847,1.04161453,0.438751966 rot = -1.64113968E-15,-0.382683307,-6.79782163E-16,0.923879564 attRot = 0,0,0,1 attRot0 = -1.64113968E-15,-0.382683307,-6.79782163E-16,0.923879564 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294623606 sym = solarPanels5_4294623190 sym = solarPanels5_4294623158 sym = solarPanels5_4294623126 sym = solarPanels5_4294623094 sym = solarPanels5_4294623062 sym = solarPanels5_4294623030 srfN = srfAttach,fuelTank.long_4294647218 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294623190 partName = Part persistentId = 3189176293 pos = 1.34829413E-15,13.4085083,0.620488822 attPos = 0,0,0 attPos0 = 1.34829413E-15,1.04161453,0.620488822 rot = -1.77635684E-15,8.42937027E-08,7.48678476E-23,1 attRot = 0,0,0,1 attRot0 = -1.77635684E-15,8.42937027E-08,7.48678476E-23,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294623606 sym = solarPanels5_4294623222 sym = solarPanels5_4294623158 sym = solarPanels5_4294623126 sym = solarPanels5_4294623094 sym = solarPanels5_4294623062 sym = solarPanels5_4294623030 srfN = srfAttach,fuelTank.long_4294647218 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294623158 partName = Part persistentId = 1164914750 pos = 0.438751876,13.4085083,0.438751876 attPos = 0,0,0 attPos0 = 0.438751876,1.04161453,0.438751876 rot = -1.64113968E-15,0.382683516,6.79782374E-16,0.923879504 attRot = 0,0,0,1 attRot0 = -1.64113968E-15,0.382683516,6.79782374E-16,0.923879504 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294623606 sym = solarPanels5_4294623222 sym = solarPanels5_4294623190 sym = solarPanels5_4294623126 sym = solarPanels5_4294623094 sym = solarPanels5_4294623062 sym = solarPanels5_4294623030 srfN = srfAttach,fuelTank.long_4294647218 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294623126 partName = Part persistentId = 3813639476 pos = 0.620488882,13.4085083,-9.1228884E-08 attPos = 0,0,0 attPos0 = 0.620488882,1.04161453,-9.1228884E-08 rot = -1.25607373E-15,0.707106888,1.25607405E-15,0.70710665 attRot = 0,0,0,1 attRot0 = -1.25607373E-15,0.707106888,1.25607405E-15,0.70710665 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294623606 sym = solarPanels5_4294623222 sym = solarPanels5_4294623190 sym = solarPanels5_4294623158 sym = solarPanels5_4294623094 sym = solarPanels5_4294623062 sym = solarPanels5_4294623030 srfN = srfAttach,fuelTank.long_4294647218 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294623094 partName = Part persistentId = 700129291 pos = 0.438751817,13.4085083,-0.438751996 attPos = 0,0,0 attPos0 = 0.438751817,1.04161453,-0.438751996 rot = -6.79782057E-16,0.923879564,1.64113968E-15,0.382683277 attRot = 0,0,0,1 attRot0 = -6.79782057E-16,0.923879564,1.64113968E-15,0.382683277 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294623606 sym = solarPanels5_4294623222 sym = solarPanels5_4294623190 sym = solarPanels5_4294623158 sym = solarPanels5_4294623126 sym = solarPanels5_4294623062 sym = solarPanels5_4294623030 srfN = srfAttach,fuelTank.long_4294647218 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294623062 partName = Part persistentId = 4194996670 pos = -7.39680388E-08,13.4085083,-0.620488822 attPos = 0,0,0 attPos0 = -7.39680388E-08,1.04161453,-0.620488822 rot = 7.48678476E-23,1,1.77635684E-15,-8.42937027E-08 attRot = 0,0,0,1 attRot0 = 7.48678476E-23,1,1.77635684E-15,-8.42937027E-08 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294623606 sym = solarPanels5_4294623222 sym = solarPanels5_4294623190 sym = solarPanels5_4294623158 sym = solarPanels5_4294623126 sym = solarPanels5_4294623094 sym = solarPanels5_4294623030 srfN = srfAttach,fuelTank.long_4294647218 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294623030 partName = Part persistentId = 1985806032 pos = -0.438752055,13.4085083,-0.438751757 attPos = 0,0,0 attPos0 = -0.438752055,1.04161453,-0.438751757 rot = 6.79782692E-16,0.923879445,1.64113957E-15,-0.382683665 attRot = 0,0,0,1 attRot0 = 6.79782692E-16,0.923879445,1.64113957E-15,-0.382683665 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294623606 sym = solarPanels5_4294623222 sym = solarPanels5_4294623190 sym = solarPanels5_4294623158 sym = solarPanels5_4294623126 sym = solarPanels5_4294623094 sym = solarPanels5_4294623062 srfN = srfAttach,fuelTank.long_4294647218 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = SurfAntenna_4294611760 partName = Part persistentId = 4292427009 pos = -0.669102132,12.6854229,4.58420644E-08 attPos = 0,0,0 attPos0 = -0.669102132,0.318529129,4.58420644E-08 rot = 0.50000006,-0.49999997,0.49999997,0.50000006 attRot = 0,0,0,1 attRot0 = 0.50000006,-0.49999997,0.49999997,0.50000006 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,fuelTank.long_4294647218 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 1500000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = RCSBlock_4294606550 partName = Part persistentId = 3963446586 pos = -0.660649657,14.5238113,0.000742311007 attPos = 0,0,0 attPos0 = -0.660649657,-0.00338554382,0.000742311007 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = RCSBlock_4294605706 sym = RCSBlock_4294605642 sym = RCSBlock_4294605578 srfN = srfAttach,RCSFuelTank_4294687764 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = RCSBlock_4294605706 partName = Part persistentId = 653494621 pos = 0.000742271601,14.5238113,0.660649598 attPos = 0,0,0 attPos0 = 0.000742271601,-0.00338554382,0.660649598 rot = 0,0.707106829,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0,0.707106829,0,0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = RCSBlock_4294606550 sym = RCSBlock_4294605642 sym = RCSBlock_4294605578 srfN = srfAttach,RCSFuelTank_4294687764 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = RCSBlock_4294605642 partName = Part persistentId = 918630609 pos = 0.660649657,14.5238113,-0.000742368749 attPos = 0,0,0 attPos0 = 0.660649657,-0.00338554382,-0.000742368749 rot = 0,1,0,-4.37113883E-08 attRot = 0,0,0,1 attRot0 = 0,1,0,-4.37113883E-08 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = RCSBlock_4294606550 sym = RCSBlock_4294605706 sym = RCSBlock_4294605578 srfN = srfAttach,RCSFuelTank_4294687764 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = RCSBlock_4294605578 partName = Part persistentId = 37265752 pos = -0.000742350356,14.5238113,-0.660649598 attPos = 0,0,0 attPos0 = -0.000742350356,-0.00338554382,-0.660649598 rot = 0,0.707106829,0,-0.707106829 attRot = 0,0,0,1 attRot0 = 0,0.707106829,0,-0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = RCSBlock_4294606550 sym = RCSBlock_4294605706 sym = RCSBlock_4294605642 srfN = srfAttach,RCSFuelTank_4294687764 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = RCSBlock_4294604404 partName = Part persistentId = 530018695 pos = -0.675587952,7.19981337,0.000742321427 attPos = 0,0,0 attPos0 = -0.675587952,-1.40458059,0.000742321427 rot = -7.48678476E-23,8.42937027E-08,-1.77635684E-15,1 attRot = 0,0,0,1 attRot0 = -7.48678476E-23,8.42937027E-08,-1.77635684E-15,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = RCSBlock_4294603816 sym = RCSBlock_4294603752 sym = RCSBlock_4294603688 srfN = srfAttach,fuelTank.long_4294644054 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = RCSBlock_4294603816 partName = Part persistentId = 859544656 pos = 0.000742281089,7.19981337,0.675587893 attPos = 0,0,0 attPos0 = 0.000742281089,-1.40458059,0.675587893 rot = -1.25607405E-15,0.707106829,-1.25607384E-15,0.707106709 attRot = 0,0,0,1 attRot0 = -1.25607405E-15,0.707106829,-1.25607384E-15,0.707106709 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = RCSBlock_4294604404 sym = RCSBlock_4294603752 sym = RCSBlock_4294603688 srfN = srfAttach,fuelTank.long_4294644054 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = RCSBlock_4294603752 partName = Part persistentId = 1564976988 pos = 0.675587952,7.19981337,-0.000742380507 attPos = 0,0,0 attPos0 = 0.675587952,-1.40458059,-0.000742380507 rot = -1.77635684E-15,1,1.52514871E-22,-1.28005098E-07 attRot = 0,0,0,1 attRot0 = -1.77635684E-15,1,1.52514871E-22,-1.28005098E-07 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = RCSBlock_4294604404 sym = RCSBlock_4294603816 sym = RCSBlock_4294603688 srfN = srfAttach,fuelTank.long_4294644054 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = RCSBlock_4294603688 partName = Part persistentId = 3452620625 pos = -0.000742361648,7.19981337,-0.675587893 attPos = 0,0,0 attPos0 = -0.000742361648,-1.40458059,-0.675587893 rot = -1.25607384E-15,0.707106709,1.25607405E-15,-0.707106829 attRot = 0,0,0,1 attRot0 = -1.25607384E-15,0.707106709,1.25607405E-15,-0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = RCSBlock_4294604404 sym = RCSBlock_4294603816 sym = RCSBlock_4294603752 srfN = srfAttach,fuelTank.long_4294644054 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } ================================================ FILE: saves/RemoteTech KSP1_4 Testbed/Ships/VAB/Rocket.craft ================================================ ship = Rocket version = 1.4.4 description = type = VAB size = 1.25607049,1.99609756,2.16126442 steamPublishedFileId = 0 persistentId = 3596990243 rot = 0,0,0,0 missionFlag = Squad/Flags/trippy vesselType = Debris PART { part = probeCoreOcto2_4294585400 partName = Part persistentId = 3254596423 pos = 0,15,0 attPos = 0,0,0 attPos0 = 0,15,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = sasModule_4294583446 link = batteryBankMini_4294577560 link = SurfAntenna_4294513720 attN = bottom,sasModule_4294583446_0|-0.0610621|0 attN = top,batteryBankMini_4294577560_0|0.0610621|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 5 maxAmount = 5 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = sasModule_4294583446 partName = Part persistentId = 1023267169 pos = 0,14.847827,0 attPos = 0,0,0 attPos0 = 0,-0.152173042,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = fuelTankSmall_4294541438 attN = bottom,fuelTankSmall_4294541438_0|-0.0911109|0 attN = top,probeCoreOcto2_4294585400_0|0.0911109|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = batteryBankMini_4294577560 partName = Part persistentId = 3356073274 pos = 0,15.1610622,0 attPos = 0,0,0 attPos0 = 0,0.161062241,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = RTLongAntenna2_4294566036 link = RTLongAntenna2_4294565306 attN = bottom,probeCoreOcto2_4294585400_0|-0.1|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = RTLongAntenna2_4294566036 partName = Part persistentId = 776818689 pos = 0,15.1464233,0.309469312 attPos = 0,0,0 attPos0 = 0,-0.0146389008,0.309469312 rot = 0.70710665,-9.15500475E-09,9.15500031E-09,0.707107008 attRot = 0,0,0,1 attRot0 = 0.70710665,-9.15500475E-09,9.15500031E-09,0.707107008 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = RTLongAntenna2_4294565306 srfN = srfAttach,batteryBankMini_4294577560 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = True animTime = 0 animSpeed = 1 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = RTLongAntenna2_4294565306 partName = Part persistentId = 1470052695 pos = -2.70546661E-08,15.1464233,-0.309469312 attPos = 0,0,0 attPos0 = -2.70546661E-08,-0.0146389008,-0.309469312 rot = -2.17536122E-08,0.707107008,-0.70710665,-2.17536247E-08 attRot = 0,0,0,1 attRot0 = -2.17536122E-08,0.707107008,-0.70710665,-2.17536247E-08 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = RTLongAntenna2_4294566036 srfN = srfAttach,batteryBankMini_4294577560 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = True animTime = 0 animSpeed = 1 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = fuelTankSmall_4294541438 partName = Part persistentId = 1173202179 pos = 0,14.2014656,0 attPos = 0,0,0 attPos0 = 0,-0.646361351,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = liquidEngineMini_4294526842 link = solarPanels5_4294522302 link = solarPanels5_4294522174 link = solarPanels5_4294522142 link = solarPanels5_4294522110 attN = top,sasModule_4294583446_0|0.55525|0 attN = bottom,liquidEngineMini_4294526842_0|-0.55525|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 90 maxAmount = 90 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 110 maxAmount = 110 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = liquidEngineMini_4294526842 partName = Part persistentId = 1416535865 pos = 0,13.6462154,0 attPos = 0,0,0 attPos0 = 0,-0.555250168,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 0 resPri = 0 dstg = 0 sidx = 0 sqor = 0 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = top,fuelTankSmall_4294541438_0|0|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnginesFX isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleJettison isEnabled = True activejettisonName = node_fairing_collider isJettisoned = True shroudHideOverride = False stagingEnabled = True EVENTS { } ACTIONS { JettisonAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True gimbalActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } LockAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } FreeAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } TogglePitchAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleYawAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleRollAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294522302 partName = Part persistentId = 1589655262 pos = -0.561725616,14.1936274,3.34814594E-08 attPos = 0,0,0 attPos0 = -0.561725616,-0.00783824921,3.34814594E-08 rot = -1.25607395E-15,-0.707106709,-1.25607384E-15,0.707106829 attRot = 0,0,0,1 attRot0 = -1.25607395E-15,-0.707106709,-1.25607384E-15,0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294522174 sym = solarPanels5_4294522142 sym = solarPanels5_4294522110 srfN = srfAttach,fuelTankSmall_4294541438 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294522174 partName = Part persistentId = 990675500 pos = 1.55706319E-15,14.1936274,0.561725557 attPos = 0,0,0 attPos0 = 1.55706319E-15,-0.00783824921,0.561725557 rot = -1.77635684E-15,8.42937027E-08,7.48678476E-23,1 attRot = 0,0,0,1 attRot0 = -1.77635684E-15,8.42937027E-08,7.48678476E-23,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294522302 sym = solarPanels5_4294522142 sym = solarPanels5_4294522110 srfN = srfAttach,fuelTankSmall_4294541438 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294522142 partName = Part persistentId = 411238793 pos = 0.561725616,14.1936274,-8.25890751E-08 attPos = 0,0,0 attPos0 = 0.561725616,-0.00783824921,-8.25890751E-08 rot = -1.25607373E-15,0.707106888,1.25607405E-15,0.70710665 attRot = 0,0,0,1 attRot0 = -1.25607373E-15,0.707106888,1.25607405E-15,0.70710665 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294522302 sym = solarPanels5_4294522174 sym = solarPanels5_4294522110 srfN = srfAttach,fuelTankSmall_4294541438 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294522110 partName = Part persistentId = 986994906 pos = -6.69629117E-08,14.1936274,-0.561725557 attPos = 0,0,0 attPos0 = -6.69629117E-08,-0.00783824921,-0.561725557 rot = 7.48678476E-23,1,1.77635684E-15,-8.42937027E-08 attRot = 0,0,0,1 attRot0 = 7.48678476E-23,1,1.77635684E-15,-8.42937027E-08 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294522302 sym = solarPanels5_4294522174 sym = solarPanels5_4294522142 srfN = srfAttach,fuelTankSmall_4294541438 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = SurfAntenna_4294513720 partName = Part persistentId = 4202898275 pos = -0.329367399,14.9810038,1.66515957E-08 attPos = 0,0,0 attPos0 = -0.329367399,-0.0189962387,1.66515957E-08 rot = 0.5,-0.5,0.5,0.5 attRot = 0,0,0,1 attRot0 = 0.5,-0.5,0.5,0.5 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,probeCoreOcto2_4294585400 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 1500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ================================================ FILE: saves/RemoteTech KSP1_4 Testbed/Ships/VAB/Stack Test.craft ================================================ ship = Stack Test version = 1.4.4 description = type = VAB size = 6.23389339,4.41555595,6.23389101 steamPublishedFileId = 0 persistentId = 2046375471 rot = 0,0,0,0 missionFlag = Squad/Flags/trippy vesselType = Debris PART { part = probeCoreHex_4294664594 partName = Part persistentId = 2061506446 pos = 0.0121332491,15.361124,-0.0126895867 attPos = 0,0,0 attPos0 = 0,15,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = batteryBank_4294624962 attN = bottom,batteryBank_4294624962_0|-0.1875|0 attN = top,Decoupler.0_4294584380_0|0.1875|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = batteryBank_4294624962 partName = Part persistentId = 830679983 pos = 0.0121332491,15.0627689,-0.0126895867 attPos = 0,0,0 attPos0 = 0,-0.298355103,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = fuelTankSmall_4294644282 attN = top,probeCoreHex_4294664594_0|0.1108553|0 attN = bottom,fuelTankSmall_4294644282_0|-0.1108553|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 1000 maxAmount = 1000 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = fuelTankSmall_4294644282 partName = Part persistentId = 1328184242 pos = 0.0121332491,14.3966637,-0.0126895867 attPos = 0,0,0 attPos0 = 0,-0.66610527,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = solarPanels4_4294616446 link = solarPanels4_4294615468 link = solarPanels4_4294615364 link = solarPanels4_4294615260 link = RTLongAntenna2_4294572568 link = liquidEngineMini_4294567288 attN = top,batteryBank_4294624962_0|0.55525|0 attN = bottom,liquidEngineMini_4294567288_0|-0.55525|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 90 maxAmount = 90 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 110 maxAmount = 110 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = solarPanels4_4294616446 partName = Part persistentId = 4078593969 pos = -0.549785376,14.4835873,-0.0126895532 attPos = 0,0,0 attPos0 = -0.561918616,0.0869235992,3.34929631E-08 rot = -7.48678476E-23,8.42937027E-08,-1.77635684E-15,1 attRot = 0,0,0,1 attRot0 = -7.48678476E-23,8.42937027E-08,-1.77635684E-15,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4294615468 sym = solarPanels4_4294615364 sym = solarPanels4_4294615260 srfN = srfAttach,fuelTankSmall_4294644282 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4294615468 partName = Part persistentId = 818595821 pos = 0.0121332491,14.4835873,0.549228966 attPos = 0,0,0 attPos0 = 1.55637751E-15,0.0869235992,0.561918557 rot = -1.25607405E-15,0.707106829,-1.25607384E-15,0.707106709 attRot = 0,0,0,1 attRot0 = -1.25607405E-15,0.707106829,-1.25607384E-15,0.707106709 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4294616446 sym = solarPanels4_4294615364 sym = solarPanels4_4294615260 srfN = srfAttach,fuelTankSmall_4294644282 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4294615364 partName = Part persistentId = 3307542869 pos = 0.574051857,14.4835873,-0.0126896696 attPos = 0,0,0 attPos0 = 0.561918616,0.0869235992,-8.26174471E-08 rot = -1.77635684E-15,1,1.52514871E-22,-1.28005098E-07 attRot = 0,0,0,1 attRot0 = -1.77635684E-15,1,1.52514871E-22,-1.28005098E-07 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4294616446 sym = solarPanels4_4294615468 sym = solarPanels4_4294615260 srfN = srfAttach,fuelTankSmall_4294644282 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4294615260 partName = Part persistentId = 1481481032 pos = 0.012133182,14.4835873,-0.574608147 attPos = 0,0,0 attPos0 = -6.6985919E-08,0.0869235992,-0.561918557 rot = -1.25607384E-15,0.707106709,1.25607405E-15,-0.707106829 attRot = 0,0,0,1 attRot0 = -1.25607384E-15,0.707106709,1.25607405E-15,-0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4294616446 sym = solarPanels4_4294615468 sym = solarPanels4_4294615364 srfN = srfAttach,fuelTankSmall_4294644282 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = RTLongAntenna2_4294572568 partName = Part persistentId = 2266577438 pos = -0.396510243,14.421629,-0.421333045 attPos = 0,0,0 attPos0 = -0.408643484,0.0249652863,-0.408643454 rot = -0.270598054,0.65328145,-0.65328151,-0.270598054 attRot = 0,0,0,1 attRot0 = -0.270598054,0.65328145,-0.65328151,-0.270598054 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,fuelTankSmall_4294644282 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.993029535 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = liquidEngineMini_4294567288 partName = Part persistentId = 4169669686 pos = 0.0121332491,13.8414135,-0.0126895867 attPos = 0,0,0 attPos0 = 0,-0.555250168,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 0 resPri = 0 dstg = 0 sidx = 0 sqor = 0 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = top,fuelTankSmall_4294644282_0|0|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnginesFX isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleJettison isEnabled = True activejettisonName = node_fairing_collider isJettisoned = True shroudHideOverride = False stagingEnabled = True EVENTS { } ACTIONS { JettisonAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True gimbalActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } LockAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } FreeAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } TogglePitchAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleYawAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleRollAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = Decoupler.0_4294584380 partName = Part persistentId = 816975330 pos = 0.0121332491,15.5811243,-0.0126895867 attPos = 0,0,0 attPos0 = 0,0.220000267,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 1 resPri = 0 dstg = 1 sidx = 0 sqor = 1 sepI = 1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = probeCoreHex_4294664594 attN = top,liquidEngineMini_4294559704_0|0.0325|0 attN = bottom,probeCoreHex_4294664594_0|-0.0325|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDecouple isEnabled = True ejectionForcePercent = 100 isDecoupled = False stagingEnabled = True EVENTS { } ACTIONS { DecoupleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleToggleCrossfeed isEnabled = True crossfeedStatus = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } EnableAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } DisableAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = liquidEngineMini_4294559704 partName = Part persistentId = 2213815543 pos = 0.0121332491,15.9886246,-0.0126895867 attPos = 0,0,0 attPos0 = 0,0.407500267,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 2 resPri = 0 dstg = 2 sidx = 0 sqor = 2 sepI = 1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = Decoupler.0_4294584380 attN = top,miniFuelTank_4294541698_0|0|0 attN = bottom,Decoupler.0_4294584380_0|-0.375|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnginesFX isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleJettison isEnabled = True activejettisonName = node_fairing_collider isJettisoned = False shroudHideOverride = False stagingEnabled = True EVENTS { } ACTIONS { JettisonAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True gimbalActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } LockAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } FreeAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } TogglePitchAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleYawAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleRollAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = miniFuelTank_4294541698 partName = Part persistentId = 3431629131 pos = 0.0121332491,16.162899,-0.0126895867 attPos = 0,0,0 attPos0 = 0,0.174273491,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 2 resPri = 0 dstg = 2 sidx = -1 sqor = -1 sepI = 1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = SurfAntenna_4294516770 link = liquidEngineMini_4294559704 attN = top,probeCoreHex_4294532112_0|0.1742737|0 attN = bottom,liquidEngineMini_4294559704_0|-0.1742737|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = probeCoreHex_4294532112 partName = Part persistentId = 2865817195 pos = 0.0121332491,16.5246716,-0.0126895867 attPos = 0,0,0 attPos0 = 0,0.361773491,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 2 resPri = 0 dstg = 2 sidx = -1 sqor = -1 sepI = 1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = solarPanels5_4294523656 link = solarPanels5_4294522804 link = solarPanels5_4294522772 link = solarPanels5_4294522740 link = solarPanels5_4294522708 link = solarPanels5_4294522676 link = miniFuelTank_4294541698 attN = bottom,miniFuelTank_4294541698_0|-0.1875|0 attN = top,Decoupler.0_4294515986_0|0.1875|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = solarPanels5_4294523656 partName = Part persistentId = 1845500609 pos = -0.329207808,16.4311047,-0.0126895662 attPos = 0,0,0 attPos0 = -0.341341048,-0.0935668945,2.03455137E-08 rot = 0,-0.707106829,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0,-0.707106829,0,0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 2 resPri = 0 dstg = 2 sidx = -1 sqor = -1 sepI = 1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294522804 sym = solarPanels5_4294522772 sym = solarPanels5_4294522740 sym = solarPanels5_4294522708 sym = solarPanels5_4294522676 srfN = srfAttach,probeCoreHex_4294532112 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294522804 partName = Part persistentId = 3186487592 pos = -0.158537254,16.4311047,0.28292042 attPos = 0,0,0 attPos0 = -0.170670509,-0.0935668945,0.295610011 rot = 0,-0.258819044,0,0.965925872 attRot = 0,0,0,1 attRot0 = 0,-0.258819044,0,0.965925872 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 2 resPri = 0 dstg = 2 sidx = -1 sqor = -1 sepI = 1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294523656 sym = solarPanels5_4294522772 sym = solarPanels5_4294522740 sym = solarPanels5_4294522708 sym = solarPanels5_4294522676 srfN = srfAttach,probeCoreHex_4294532112 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294522772 partName = Part persistentId = 2847274167 pos = 0.182803839,16.4311047,0.28292042 attPos = 0,0,0 attPos0 = 0.170670584,-0.0935668945,0.295610011 rot = 0,0.258819103,0,0.965925872 attRot = 0,0,0,1 attRot0 = 0,0.258819103,0,0.965925872 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 2 resPri = 0 dstg = 2 sidx = -1 sqor = -1 sepI = 1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294523656 sym = solarPanels5_4294522804 sym = solarPanels5_4294522740 sym = solarPanels5_4294522708 sym = solarPanels5_4294522676 srfN = srfAttach,probeCoreHex_4294532112 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294522740 partName = Part persistentId = 3593344846 pos = 0.353474289,16.4311047,-0.012689637 attPos = 0,0,0 attPos0 = 0.341341048,-0.0935668945,-5.01864967E-08 rot = 0,0.707106888,0,0.707106769 attRot = 0,0,0,1 attRot0 = 0,0.707106888,0,0.707106769 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 2 resPri = 0 dstg = 2 sidx = -1 sqor = -1 sepI = 1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294523656 sym = solarPanels5_4294522804 sym = solarPanels5_4294522772 sym = solarPanels5_4294522708 sym = solarPanels5_4294522676 srfN = srfAttach,probeCoreHex_4294532112 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294522708 partName = Part persistentId = 1656539286 pos = 0.182803765,16.4311047,-0.308299661 attPos = 0,0,0 attPos0 = 0.170670509,-0.0935668945,-0.29561007 rot = 0,0.965925872,0,0.258819014 attRot = 0,0,0,1 attRot0 = 0,0.965925872,0,0.258819014 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 2 resPri = 0 dstg = 2 sidx = -1 sqor = -1 sepI = 1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294523656 sym = solarPanels5_4294522804 sym = solarPanels5_4294522772 sym = solarPanels5_4294522740 sym = solarPanels5_4294522676 srfN = srfAttach,probeCoreHex_4294532112 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294522676 partName = Part persistentId = 3469077291 pos = -0.158537239,16.4311047,-0.308299631 attPos = 0,0,0 attPos0 = -0.170670494,-0.0935668945,-0.29561004 rot = 0,0.965925872,0,-0.258819014 attRot = 0,0,0,1 attRot0 = 0,0.965925872,0,-0.258819014 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 2 resPri = 0 dstg = 2 sidx = -1 sqor = -1 sepI = 1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294523656 sym = solarPanels5_4294522804 sym = solarPanels5_4294522772 sym = solarPanels5_4294522740 sym = solarPanels5_4294522708 srfN = srfAttach,probeCoreHex_4294532112 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = SurfAntenna_4294516770 partName = Part persistentId = 778182879 pos = -0.341764808,16.0825043,-0.012689569 attPos = 0,0,0 attPos0 = -0.353898048,-0.0803947449,1.81137363E-08 rot = 0.5,-0.5,0.5,0.5 attRot = 0,0,0,1 attRot0 = 0.5,-0.5,0.5,0.5 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 2 resPri = 0 dstg = 2 sidx = -1 sqor = -1 sepI = 1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,miniFuelTank_4294541698 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 1500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = Decoupler.0_4294515986 partName = Part persistentId = 223814179 pos = 0.0121332491,16.7446709,-0.0126895867 attPos = 0,0,0 attPos0 = 0,0.219999313,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 1 resPri = 0 dstg = 3 sidx = 1 sqor = 1 sepI = 1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = probeCoreHex_4294532112 attN = top,liquidEngineMini_4294515904_0|0.0325|0 attN = bottom,probeCoreHex_4294532112_0|-0.0325|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDecouple isEnabled = True ejectionForcePercent = 100 isDecoupled = False stagingEnabled = True EVENTS { } ACTIONS { DecoupleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleToggleCrossfeed isEnabled = True crossfeedStatus = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } EnableAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } DisableAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = liquidEngineMini_4294515904 partName = Part persistentId = 3899745839 pos = 0.0121332491,17.1521702,-0.0126895867 attPos = 0,0,0 attPos0 = 0,0.407500267,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 2 resPri = 0 dstg = 4 sidx = 1 sqor = 2 sepI = 1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = Decoupler.0_4294515986 attN = top,miniFuelTank_4294515824_0|0|0 attN = bottom,Decoupler.0_4294515986_0|-0.375|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnginesFX isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleJettison isEnabled = True activejettisonName = node_fairing_collider isJettisoned = False shroudHideOverride = False stagingEnabled = True EVENTS { } ACTIONS { JettisonAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True gimbalActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } LockAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } FreeAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } TogglePitchAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleYawAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleRollAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = miniFuelTank_4294515824 partName = Part persistentId = 1372768410 pos = 0.0121332491,17.3264446,-0.0126895867 attPos = 0,0,0 attPos0 = 0,0.174273491,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 2 resPri = 0 dstg = 4 sidx = -1 sqor = -1 sepI = 1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = SurfAntenna_4294515544 link = liquidEngineMini_4294515904 attN = top,probeCoreHex_4294515788_0|0.1742737|0 attN = bottom,liquidEngineMini_4294515904_0|-0.1742737|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = probeCoreHex_4294515788 partName = Part persistentId = 422703571 pos = 0.0121332491,17.6882191,-0.0126895867 attPos = 0,0,0 attPos0 = 0.0121332491,17.6882191,-0.0126895867 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 2 resPri = 0 dstg = 4 sidx = -1 sqor = -1 sepI = 1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = solarPanels5_4294515736 link = solarPanels5_4294515704 link = solarPanels5_4294515672 link = solarPanels5_4294515640 link = solarPanels5_4294515608 link = solarPanels5_4294515576 link = miniFuelTank_4294515824 attN = bottom,miniFuelTank_4294515824_0|-0.1875|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = solarPanels5_4294515736 partName = Part persistentId = 349211801 pos = -0.329207808,17.5946522,-0.0126895662 attPos = 0,0,0 attPos0 = -0.341341048,-0.0935668945,2.03455137E-08 rot = 0,-0.707106829,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0,-0.707106829,0,0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 2 resPri = 0 dstg = 4 sidx = -1 sqor = -1 sepI = 1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294515704 sym = solarPanels5_4294515672 sym = solarPanels5_4294515640 sym = solarPanels5_4294515608 sym = solarPanels5_4294515576 srfN = srfAttach,probeCoreHex_4294515788 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294515704 partName = Part persistentId = 3544870104 pos = -0.158537254,17.5946522,0.28292042 attPos = 0,0,0 attPos0 = -0.170670509,-0.0935668945,0.295610011 rot = 0,-0.258819044,0,0.965925872 attRot = 0,0,0,1 attRot0 = 0,-0.258819044,0,0.965925872 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 2 resPri = 0 dstg = 4 sidx = -1 sqor = -1 sepI = 1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294515736 sym = solarPanels5_4294515672 sym = solarPanels5_4294515640 sym = solarPanels5_4294515608 sym = solarPanels5_4294515576 srfN = srfAttach,probeCoreHex_4294515788 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294515672 partName = Part persistentId = 2818285978 pos = 0.182803839,17.5946522,0.28292042 attPos = 0,0,0 attPos0 = 0.170670584,-0.0935668945,0.295610011 rot = 0,0.258819103,0,0.965925872 attRot = 0,0,0,1 attRot0 = 0,0.258819103,0,0.965925872 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 2 resPri = 0 dstg = 4 sidx = -1 sqor = -1 sepI = 1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294515736 sym = solarPanels5_4294515704 sym = solarPanels5_4294515640 sym = solarPanels5_4294515608 sym = solarPanels5_4294515576 srfN = srfAttach,probeCoreHex_4294515788 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294515640 partName = Part persistentId = 3276470070 pos = 0.353474289,17.5946522,-0.012689637 attPos = 0,0,0 attPos0 = 0.341341048,-0.0935668945,-5.01864967E-08 rot = 0,0.707106888,0,0.707106769 attRot = 0,0,0,1 attRot0 = 0,0.707106888,0,0.707106769 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 2 resPri = 0 dstg = 4 sidx = -1 sqor = -1 sepI = 1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294515736 sym = solarPanels5_4294515704 sym = solarPanels5_4294515672 sym = solarPanels5_4294515608 sym = solarPanels5_4294515576 srfN = srfAttach,probeCoreHex_4294515788 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294515608 partName = Part persistentId = 1816036716 pos = 0.182803765,17.5946522,-0.308299661 attPos = 0,0,0 attPos0 = 0.170670509,-0.0935668945,-0.29561007 rot = 0,0.965925872,0,0.258819014 attRot = 0,0,0,1 attRot0 = 0,0.965925872,0,0.258819014 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 2 resPri = 0 dstg = 4 sidx = -1 sqor = -1 sepI = 1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294515736 sym = solarPanels5_4294515704 sym = solarPanels5_4294515672 sym = solarPanels5_4294515640 sym = solarPanels5_4294515576 srfN = srfAttach,probeCoreHex_4294515788 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294515576 partName = Part persistentId = 3531285885 pos = -0.158537239,17.5946522,-0.308299631 attPos = 0,0,0 attPos0 = -0.170670494,-0.0935668945,-0.29561004 rot = 0,0.965925872,0,-0.258819014 attRot = 0,0,0,1 attRot0 = 0,0.965925872,0,-0.258819014 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 2 resPri = 0 dstg = 4 sidx = -1 sqor = -1 sepI = 1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294515736 sym = solarPanels5_4294515704 sym = solarPanels5_4294515672 sym = solarPanels5_4294515640 sym = solarPanels5_4294515608 srfN = srfAttach,probeCoreHex_4294515788 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = SurfAntenna_4294515544 partName = Part persistentId = 46158602 pos = -0.341764808,17.2460499,-0.012689569 attPos = 0,0,0 attPos0 = -0.353898048,-0.0803947449,1.81137363E-08 rot = 0.5,-0.5,0.5,0.5 attRot = 0,0,0,1 attRot0 = 0.5,-0.5,0.5,0.5 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 2 resPri = 0 dstg = 4 sidx = -1 sqor = -1 sepI = 1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,miniFuelTank_4294515824 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 1500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ================================================ FILE: saves/RemoteTech KSP1_4 Testbed/Ships/VAB/Test.craft ================================================ ship = Test version = 1.4.2 description = type = VAB size = 7.84446049,4.3108902,1.88497066 persistentId = 2960862045 rot = 0,0,0,0 missionFlag = Squad/Flags/trippy vesselType = Debris PART { part = probeCoreOcto_4294725426 partName = Part persistentId = 1626612664 pos = 0,15,0 attPos = 0,0,0 attPos0 = 0,15,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = trussPiece3x_4294709766 link = batteryBankMini_4294619622 link = solarPanels5_4294593838 link = solarPanels5_4294593624 link = solarPanels5_4294593592 link = solarPanels5_4294593560 attN = bottom,trussPiece3x_4294709766_0|-0.1870818|0 attN = top,batteryBankMini_4294619622_0|0.1870818|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = trussPiece3x_4294709766 partName = Part persistentId = 754668487 pos = 0,13.3376808,0 attPos = 0,0,0 attPos0 = 0,-1.66231918,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = stackPoint1_4294701780 link = stackPoint1_4294701214 link = radialLiquidEngine1-2_4294638674 link = radialLiquidEngine1-2_4294635430 link = adapterSmallMiniTall_4294572242 attN = bottom,adapterSmallMiniTall_4294572242_0|-1.475238|0 attN = top,probeCoreOcto_4294725426_0|1.475238|0 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = stackPoint1_4294701780 partName = Part persistentId = 1600025083 pos = -0.405343831,13.9290066,1.93920044E-08 attPos = 0,0,0 attPos0 = -0.405343831,0.59132576,1.93920044E-08 rot = 0.5,-0.5,0.5,0.5 attRot = 0,0,0,1 attRot0 = 0.5,-0.5,0.5,0.5 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 link = fairingSize1_4294687668 sym = stackPoint1_4294701214 srfN = srfAttach,trussPiece3x_4294709766 attN = top,fairingSize1_4294687668_0|0.04688377|0 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = stackPoint1_4294701214 partName = Part persistentId = 4253109807 pos = 0.405343831,13.9290066,-5.48282877E-08 attPos = 0,0,0 attPos0 = 0.405343831,0.59132576,-5.48282877E-08 rot = 0.5,0.50000006,-0.50000006,0.5 attRot = 0,0,0,1 attRot0 = 0.5,0.50000006,-0.50000006,0.5 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 link = fairingSize1_4294678472 sym = stackPoint1_4294701780 srfN = srfAttach,trussPiece3x_4294709766 attN = top,fairingSize1_4294678472_0|0.04688377|0 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = fairingSize1_4294687668 partName = Part persistentId = 2690874198 pos = -0.652227581,13.9290066,1.93920044E-08 attPos = 0,0,0 attPos0 = 0,0.24688375,0 rot = 0.707106829,-0.707106829,0,0 attRot = 0.707106709,-0.707106709,0,0 attRot0 = 0,-0.707106829,0,0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 0 resPri = 0 dstg = 1 sidx = 0 sqor = 1 sepI = -1 attm = 0 modCost = 34.3918648 modMass = 0.0573197715 modSize = 0,0,0 sym = fairingSize1_4294678472 attN = bottom,stackPoint1_4294701780_0|-0.2|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleProceduralFairing isEnabled = True interstageCraftID = 0 nArcs = 2 ejectionForce = 100 useClamshell = False stagingEnabled = True fsm = st_idle EVENTS { } ACTIONS { DeployFairingAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } XSECTION { h = 0 r = 0.625 } XSECTION { h = 2 r = 0.200000003 } UPGRADESAPPLIED { } } MODULE { name = ModuleCargoBay isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNodeToggle isEnabled = True showMesh = True showNodes = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModulePartVariants isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = fairingSize1_4294678472 partName = Part persistentId = 1765672541 pos = 0.6522277,13.9290066,-5.40853335E-08 attPos = 0,0,0 attPos0 = -3.0173787E-08,0.246883735,3.5527122E-15 rot = -5.96046448E-08,5.96046448E-08,-0.707106829,0.707106829 attRot = 0.707106709,-0.707106709,0,0 attRot0 = -2.98023224E-08,-0.707106829,-2.10734239E-08,0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 0 resPri = 0 dstg = 1 sidx = 0 sqor = 1 sepI = -1 attm = 0 modCost = 34.3918648 modMass = 0.0573197715 modSize = 0,0,0 sym = fairingSize1_4294687668 attN = bottom,stackPoint1_4294701214_0|-0.2|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleProceduralFairing isEnabled = True interstageCraftID = 0 nArcs = 2 ejectionForce = 100 useClamshell = False stagingEnabled = True fsm = st_idle EVENTS { } ACTIONS { DeployFairingAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } XSECTION { h = 0 r = 0.625 } XSECTION { h = 2 r = 0.200000003 } UPGRADESAPPLIED { } } MODULE { name = ModuleCargoBay isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNodeToggle isEnabled = True showMesh = True showNodes = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModulePartVariants isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = radialLiquidEngine1-2_4294638674 partName = Part persistentId = 2411672035 pos = 2.83747763E-08,12.5310335,-0.324569613 attPos = 0,0,0 attPos0 = 2.83747763E-08,-0.806647301,-0.324569613 rot = 0,1,-8.94069672E-08,0 attRot = 0,0,0,1 attRot0 = 0,1,-8.94069672E-08,0 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 0 resPri = 0 dstg = 0 sidx = 1 sqor = 0 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = radialLiquidEngine1-2_4294635430 srfN = srfAttach,trussPiece3x_4294709766 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 57 manuallyOverridden = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True gimbalActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } LockAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } FreeAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } TogglePitchAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleYawAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleRollAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateThrottle isEnabled = True animState = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleSurfaceFX isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = radialLiquidEngine1-2_4294635430 partName = Part persistentId = 4270701312 pos = 4.30886931E-16,12.5310335,0.324569613 attPos = 0,0,0 attPos0 = 4.30886931E-16,-0.806647301,0.324569613 rot = -8.94069672E-08,-4.37113883E-08,3.90810245E-15,-1 attRot = 0,0,0,1 attRot0 = -8.94069672E-08,-4.37113883E-08,3.90810245E-15,-1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 0 resPri = 0 dstg = 0 sidx = 1 sqor = 0 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = radialLiquidEngine1-2_4294638674 srfN = srfAttach,trussPiece3x_4294709766 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 57 manuallyOverridden = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True gimbalActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } LockAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } FreeAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } TogglePitchAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleYawAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleRollAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateThrottle isEnabled = True animState = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleSurfaceFX isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = batteryBankMini_4294619622 partName = Part persistentId = 840960429 pos = 0,15.2870817,0 attPos = 0,0,0 attPos0 = 0,0.287081718,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = SurfAntenna_4294605598 attN = bottom,probeCoreOcto_4294725426_0|-0.1|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = solarPanels5_4294593838 partName = Part persistentId = 893938686 pos = -0.239703059,15.1613884,-0.239703029 attPos = 0,0,0 attPos0 = -0.239703059,0.161388397,-0.239703029 rot = 0.0880176127,0.899110734,0.21249342,-0.372423619 attRot = 0,0,0,1 attRot0 = 0.0880176127,0.899110734,0.21249342,-0.372423619 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294593624 sym = solarPanels5_4294593592 sym = solarPanels5_4294593560 srfN = srfAttach,probeCoreOcto_4294725426 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294593624 partName = Part persistentId = 406098319 pos = -0.239703029,15.1613884,0.239703029 attPos = 0,0,0 attPos0 = -0.239703029,0.161388397,0.239703029 rot = 0.21249339,0.372424036,0.0880176872,-0.899110556 attRot = 0,0,0,1 attRot0 = 0.21249339,0.372424036,0.0880176872,-0.899110556 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294593838 sym = solarPanels5_4294593592 sym = solarPanels5_4294593560 srfN = srfAttach,probeCoreOcto_4294725426 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294593592 partName = Part persistentId = 1049039251 pos = 0.239703074,15.1613884,0.239703014 attPos = 0,0,0 attPos0 = 0.239703074,0.161388397,0.239703014 rot = 0.21249342,-0.372423649,-0.0880176201,-0.899110734 attRot = 0,0,0,1 attRot0 = 0.21249342,-0.372423649,-0.0880176201,-0.899110734 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294593838 sym = solarPanels5_4294593624 sym = solarPanels5_4294593560 srfN = srfAttach,probeCoreOcto_4294725426 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294593560 partName = Part persistentId = 3909872390 pos = 0.239703,15.1613884,-0.239703059 attPos = 0,0,0 attPos0 = 0.239703,0.161388397,-0.239703059 rot = 0.0880176872,-0.899110556,-0.21249339,-0.372424036 attRot = 0,0,0,1 attRot0 = 0.0880176872,-0.899110556,-0.21249339,-0.372424036 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294593838 sym = solarPanels5_4294593624 sym = solarPanels5_4294593592 srfN = srfAttach,probeCoreOcto_4294725426 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = SurfAntenna_4294605598 partName = Part persistentId = 2114084044 pos = 0.0281002354,15.4308319,-0.0486710519 attPos = 0,0,0 attPos0 = 0.0281002354,0.143750191,-0.0486710519 rot = -2.52881108E-07,0,0,1 attRot = 0,0,0,1 attRot0 = -2.52881108E-07,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,batteryBankMini_4294619622 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 1500000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = adapterSmallMiniTall_4294572242 partName = Part persistentId = 4104584797 pos = 0,11.549943,0 attPos = 0,0,0 attPos0 = 0,-1.78773785,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = top,trussPiece3x_4294709766_0|0.3125|0 EVENTS { } ACTIONS { } PARTDATA { } } ================================================ FILE: saves/RemoteTech KSP1_4 Testbed/Ships/VAB/Untitled Space Craft.craft ================================================ ship = Untitled Space Craft version = 1.4.4 description = type = VAB size = 0.833514094,1.69841385,1.02799582 steamPublishedFileId = 0 persistentId = 37558658 rot = 0,0,0,0 missionFlag = Squad/Flags/trippy vesselType = Debris PART { part = probeCoreOcto_4294663918 partName = Part persistentId = 2976608013 pos = 0,15,0 attPos = 0,0,0 attPos0 = 0,15,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = launchClamp1_4294640402 link = mediumDishAntenna_4294625296 link = solarPanels3_4294647850 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = launchClamp1_4294640402 partName = Part persistentId = 3448525512 pos = -1.15028214,13.6961575,-0.0136429323 attPos = 0,0,0 attPos0 = -1.15028214,-1.30384254,-0.0136429323 rot = 0,0.707106709,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0,0.707106709,0,0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 0 resPri = 0 dstg = 0 sidx = 0 sqor = 0 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,probeCoreOcto_4294663918 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = LaunchClamp isEnabled = True scaleFactor = 5.68973064 height = 14.356308 stagingEnabled = True towerRot = 0,-0.707106709,0,0.707106829 EVENTS { } ACTIONS { ReleaseClamp { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleGenerator isEnabled = True generatorIsActive = False throttle = 0 stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 5000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = mediumDishAntenna_4294625296 partName = Part persistentId = 2914504586 pos = 0.0612692237,15.1999063,0.0353738032 attPos = 0,0,0 attPos0 = 0.0612692237,0.199906349,0.0353738032 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,probeCoreOcto_4294663918 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.991699696 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 0.92387953251128674 RTOmniRange = 0 RTDishRange = 50000000 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = solarPanels3_4294647850 partName = Part persistentId = 656074886 pos = 0.239048287,14.9843693,-0.24653931 attPos = 0,0,0 attPos0 = 0.239048287,-0.015630722,-0.24653931 rot = 3.89385875E-08,0.923879445,-1.61289027E-08,-0.382683665 attRot = 0,0,0,1 attRot0 = 3.89385875E-08,0.923879445,-1.61289027E-08,-0.382683665 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,probeCoreOcto_4294663918 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.707106829, 0, 0, 0.707106829) storedAnimationTime = 0 storedAnimationSpeed = -10 deployState = RETRACTED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } ================================================ FILE: saves/RemoteTech KSP1_4 Testbed/persistent.sfs ================================================ GAME { version = 1.4.4 Title = RT1810 (SANDBOX) Description = No description available. linkURL = linkCaption = Mode = SANDBOX Status = 1 Seed = 383353483 scene = 5 editor = None flag = Squad/Flags/trippy launchID = 38 defaultVABLaunchSite = LaunchPad defaultSPHLaunchSite = Island_Airfield modded = True envInfo = - Environment Info - Win32NT 7FFFFFFFFFFFFFFF Args: KSP_x64_Dbg.exe - versionFull = 1.4.4.2215 (WindowsPlayer x64) versionCreated = 1.4.1.2089 (WindowsPlayer x64) PARAMETERS { preset = Normal FLIGHT { CanQuickSave = True CanQuickLoad = True CanAutoSave = True CanUseMap = True CanSwitchVesselsNear = True CanSwitchVesselsFar = True CanTimeWarpHigh = True CanTimeWarpLow = True CanEVA = True CanIVA = True CanBoard = True CanRestart = True CanLeaveToEditor = True CanLeaveToTrackingStation = True CanLeaveToSpaceCenter = True CanLeaveToMainMenu = True } EDITOR { CanSave = True CanLoad = True CanStartNew = True CanLaunch = True CanLeaveToSpaceCenter = True CanLeaveToMainMenu = False startUpMode = 0 craftFileToLoad = } TRACKINGSTATION { CanFlyVessel = True CanAbortVessel = True CanLeaveToSpaceCenter = True CanLeaveToMainMenu = False } SPACECENTER { CanGoInVAB = True CanGoInSPH = True CanGoInTrackingStation = True CanLaunchAtPad = True CanLaunchAtRunway = True CanGoToAdmin = True CanGoToAstronautC = True CanGoToMissionControl = True CanGoToRnD = True CanSelectFlag = True CanLeaveToMainMenu = True } DIFFICULTY { AutoHireCrews = False MissingCrewsRespawn = True RespawnTimer = 7200 BypassEntryPurchaseAfterResearch = True AllowStockVessels = True IndestructibleFacilities = False ResourceAbundance = 1 ReentryHeatScale = 1 EnableCommNet = False AllowOtherLaunchSites = True } CAREER { TechTreeUrl = GameData\ModuleManager.TechTree StartingFunds = 25000 StartingScience = 0 StartingReputation = 0 FundsGainMultiplier = 1 RepGainMultiplier = 1 ScienceGainMultiplier = 1 FundsLossMultiplier = 1 RepLossMultiplier = 1 RepLossDeclined = 1 } CommNetParams { requireSignalForControl = False plasmaBlackout = False rangeModifier = 1 DSNModifier = 1 occlusionMultiplierVac = 0.9 occlusionMultiplierAtm = 0.75 enableGroundStations = True } AdvancedParams { EnableKerbalExperience = False ImmediateLevelUp = False AllowNegativeCurrency = False PressurePartLimits = False GPartLimits = False GKerbalLimits = False KerbalGToleranceMult = 1 ResourceTransferObeyCrossfeed = False ActionGroupsAlways = False BuildingImpactDamageMult = 0.05 PartUpgradesInSandbox = False PartUpgradesInCareer = True PartUpgradesInMission = False } MissionParamsGeneral { enableFunding = True startingFunds = 100000 spacer = enableKerbalLevels = True kerbalLevelPilot = 5 kerbalLevelScientist = 5 kerbalLevelEngineer = 5 spacer2 = preventVesselRecovery = True } MissionParamsExtras { facilityOpenAC = False astronautHiresAreFree = True spacer = facilityOpenEditor = False launchSitesOpen = False spacer2 = cheatsEnabled = False } MissionParamsFacilities { facilityLevelAdmin = 3 facilityLevelAC = 3 facilityLevelLaunchpad = 3 facilityLevelMC = 3 facilityLevelRD = 3 facilityLevelRunway = 3 facilityLevelSPH = 3 facilityLevelTS = 3 facilityLevelVAB = 3 } } SCENARIO { name = CommNetScenario scene = 7, 8, 5, 6 } SCENARIO { name = PartUpgradeManager scene = 6, 5, 7 UPGRADES { Unlocks { } Enableds { } } } SCENARIO { name = ResourceScenario scene = 7, 8, 5, 6, 21 RESOURCE_SETTINGS { GameSeed = 621096355 MaxDeltaTime = 21600 } } SCENARIO { name = ProgressTracking scene = 7, 8, 5 Progress { FirstLaunch { completed = 29972.799566770671 } FirstCrewToSurvive { completed = 19891.376162147673 crew { crews = Jebediah Kerman } } RecordsAltitude { completed = 458.87999999987261 record = 70000 } RecordsSpeed { reached = 43847.436428667716 record = 2267.7043210307725 } RecordsDistance { completed = 458.87999999987261 record = 100000 } Kerbin { reached = 458.85999999987263 Orbit { completed = 458.85999999987263 vessel { name = Omni Relay flag = Squad/Flags/trippy } } Escape { completedUnmanned = 13809.064980473697 } Landing { completed = 19872.136162147253 vessel { name = Car flag = Squad/Flags/trippy } crew { crews = Jebediah Kerman } } } Eve { reached = 13809.064980473697 Orbit { completedUnmanned = 13863.004980474874 vessel { name = Ion Fly flag = Squad/Flags/trippy } } Flyby { completedUnmanned = 13809.064980473697 } } } } SCENARIO { name = VesselRecovery scene = 5, 7, 8, 6 } SCENARIO { name = ScenarioAchievements scene = 7, 8, 5, 6 } SCENARIO { name = ScenarioCustomWaypoints scene = 7, 8, 21 } SCENARIO { name = ScenarioDestructibles scene = 5, 7, 6, 8 SpaceCenter/Administration/Facility/mainBuilding { intact = True } SpaceCenter/AstronautComplex/Facility/building { intact = True } SpaceCenter/LaunchPad/Facility/LaunchPadMedium/ksp_pad_cylTank { intact = True } SpaceCenter/LaunchPad/Facility/LaunchPadMedium/ksp_pad_launchPad { intact = True } SpaceCenter/LaunchPad/Facility/LaunchPadMedium/ksp_pad_sphereTank { intact = True } SpaceCenter/LaunchPad/Facility/LaunchPadMedium/ksp_pad_waterTower { intact = True } SpaceCenter/LaunchPad/Facility/LaunchPadMedium/KSCFlagPoleLaunchPad { intact = True } SpaceCenter/MissionControl/Facility/building { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/ksp_pad_cylTank { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/SmallLab { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/CentralBuilding { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/MainBuilding { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/CornerLab { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/WindTunnel { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/Observatory { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/SideLab { intact = True } SpaceCenter/Runway/Facility/model_runway_new_v43/runway_light_SE { intact = True } SpaceCenter/Runway/Facility/model_runway_new_v43/runway_light_NE { intact = True } SpaceCenter/Runway/Facility/model_runway_new_v43/runway_light_NW { intact = True } SpaceCenter/Runway/Facility/model_runway_new_v43/runway_light_SW { intact = True } SpaceCenter/Runway/Facility/End09 { intact = True } SpaceCenter/Runway/Facility/End27 { intact = True } SpaceCenter/Runway/Facility/Section1 { intact = True } SpaceCenter/Runway/Facility/Section2 { intact = True } SpaceCenter/Runway/Facility/Section3 { intact = True } SpaceCenter/Runway/Facility/Section4 { intact = True } SpaceCenter/SpaceplaneHangar/Facility/Tank { intact = True } SpaceCenter/SpaceplaneHangar/Facility/ksp_pad_cylTank { intact = True } SpaceCenter/SpaceplaneHangar/Facility/ksp_pad_waterTower { intact = True } SpaceCenter/SpaceplaneHangar/Facility/mainBuilding { intact = True } SpaceCenter/TrackingStation/Facility/dish_array/dish_south { intact = True } SpaceCenter/TrackingStation/Facility/dish_array/dish_north { intact = True } SpaceCenter/TrackingStation/Facility/dish_array/dish_east { intact = True } SpaceCenter/TrackingStation/Facility/MainBuilding { intact = True } SpaceCenter/VehicleAssemblyBuilding/Facility/ksp_pad_cylTank { intact = True } SpaceCenter/VehicleAssemblyBuilding/Facility/Tank { intact = True } SpaceCenter/VehicleAssemblyBuilding/Facility/mainBuilding { intact = True } SpaceCenter/VehicleAssemblyBuilding/Facility/PodMemorial { intact = True } SpaceCenter/FlagPole/Facility { intact = True } SpaceCenter/VehicleAssemblyBuilding/Facility/VAB2 { intact = True } SpaceCenter/TrackingStation/Facility/building/Antenna_South { intact = True } SpaceCenter/TrackingStation/Facility/building/Antenna_North { intact = True } SpaceCenter/TrackingStation/Facility/building/Antenna_East { intact = True } SpaceCenter/TrackingStation/Facility/building/Building { intact = True } SpaceCenter/SpaceplaneHangar/Facility/Building { intact = True } SpaceCenter/MissionControl/Facility/mainBuilding { intact = True } SpaceCenter/LaunchPad/Facility/Flag { intact = True } SpaceCenter/AstronautComplex/Facility/mainBuilding { intact = True } SpaceCenter/Administration/Facility/Building { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/mainBuilding { intact = True } } SCENARIO { name = ScenarioDiscoverableObjects scene = 7, 8, 5 lastSeed = 1010368862 sizeCurve { key = 0 0 1.5 1.5 key = 0.3 0.45 0.875 0.875 key = 0.7 0.55 0.875 0.875 key = 1 1 1.5 1.5 } } SCENARIO { name = SentinelScenario scene = 7, 8, 5 NextSpawnTime = 105529.74900323959 } FLIGHTSTATE { version = 1.4.4 UT = 98497.916559920341 activeVessel = 0 mapViewFiltering = -1026 commNetUIModeTracking = Network commNetUIModeFlight = Path VESSEL { pid = 06c0577991a048c78ab49e55430172db persistentId = 3713375427 name = Ast. HSJ-227 type = SpaceObject sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = True launchedFrom = landedAt = displaylandedAt = splashed = False met = 0.02 lct = 0.02 lastUT = -1 distanceTraveled = 0 root = 0 lat = -2.8344804761546802 lon = -178.91868442051728 alt = 14594728252.438622 hgt = -1 nrm = 0,1,0 rot = -0.298433661,0.402898014,-0.817398846,0.283672005 CoM = 0,0,0 stg = 0 prst = False ref = 0 ctrl = False PQSMin = 0 PQSMax = 0 ORBIT { SMA = 15240607809.803398 ECC = 0.10916050071886135 INC = 2.8722366742304275 LPE = 2.1172906173452457 LAN = 261.7733382309433 MNA = -0.055479683359263003 EPH = 2043585.7560839844 REF = 0 } PART { name = PotatoRoid cid = 0 uid = 559298752 mid = 559298752 persistentId = 3913199596 launchID = 0 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 0 sqor = 0 sepI = 0 sidx = 0 attm = 0 srfN = None, -1 mass = 150 shielded = False temp = -1 tempExt = 0 tempExtUnexp = 0 expt = 0.100000001 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = rTrf = modCost = 0 } ACTIONGROUPS { } DISCOVERY { state = 1 lastObservedTime = 0.02 lifetime = 586354.71038818359 refTime = 1728000 size = 4 } FLIGHTPLAN { } CTRLSTATE { } VESSELMODULES { FlightIntegrator { } } } VESSEL { pid = e12796cb8ca8484a9f2f4e259a951e58 persistentId = 1330336420 name = Ast. KFL-438 type = SpaceObject sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = True launchedFrom = landedAt = displaylandedAt = splashed = False met = 49.460000000002132 lct = 49.460000000002132 lastUT = -1 distanceTraveled = 0 root = 0 lat = -1.7230325510292706 lon = 177.51499634796474 alt = 13640062811.429834 hgt = -1 nrm = 0,1,0 rot = 0.556013763,-0.285944551,-0.63584733,0.452529162 CoM = 0,0,0 stg = 0 prst = False ref = 0 ctrl = False PQSMin = 0 PQSMax = 0 ORBIT { SMA = 15115764127.489424 ECC = 0.10237873407397093 INC = 1.8474633469239774 LPE = 333.26561457196141 LAN = 246.40091691482939 MNA = 0.29855454096562201 EPH = 1551532.0161523437 REF = 0 } PART { name = PotatoRoid cid = 0 uid = 1294145386 mid = 1294145386 persistentId = 2174542226 launchID = 0 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 0 sqor = 0 sepI = 0 sidx = 0 attm = 0 srfN = None, -1 mass = 150 shielded = False temp = -1 tempExt = 0 tempExtUnexp = 0 expt = 0.100000001 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = rTrf = modCost = 0 } ACTIONGROUPS { } DISCOVERY { state = 1 lastObservedTime = 49.460000000002132 lifetime = 1265062.060546875 refTime = 1728000 size = 4 } FLIGHTPLAN { } CTRLSTATE { } VESSELMODULES { FlightIntegrator { } } } VESSEL { pid = 7842ec31b93142dbbc8982d5ae78f2e4 persistentId = 2159301915 name = Ast. FYA-155 type = SpaceObject sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = True launchedFrom = landedAt = displaylandedAt = splashed = False met = 64.460000000004314 lct = 64.460000000004314 lastUT = -1 distanceTraveled = 0 root = 0 lat = 0.36345380243726166 lon = -179.01711854928973 alt = 14642896521.188292 hgt = -1 nrm = 0,1,0 rot = -0.204920143,0.536275029,0.649306476,0.49881655 CoM = 0,0,0 stg = 0 prst = False ref = 0 ctrl = False PQSMin = 0 PQSMax = 0 ORBIT { SMA = 15378927296.993101 ECC = 0.1159924940622437 INC = 0.37416547207966688 LPE = 184.84092053325585 LAN = 77.293587889637593 MNA = -0.0618530456272594 EPH = 1986823.1391992187 REF = 0 } PART { name = PotatoRoid cid = 0 uid = 1542890113 mid = 1542890113 persistentId = 4064797192 launchID = 0 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 0 sqor = 0 sepI = 0 sidx = 0 attm = 0 srfN = None, -1 mass = 150 shielded = False temp = -1 tempExt = 0 tempExtUnexp = 0 expt = 0.100000001 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = rTrf = modCost = 0 } ACTIONGROUPS { } DISCOVERY { state = 1 lastObservedTime = 64.460000000004314 lifetime = 315339.6354675293 refTime = 1728000 size = 0 } FLIGHTPLAN { } CTRLSTATE { } VESSELMODULES { FlightIntegrator { } } } VESSEL { pid = 8deceb4dbb8a4c4085c210e9f8e7ca17 persistentId = 945390794 name = Ast. NAZ-012 type = SpaceObject sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = True launchedFrom = landedAt = displaylandedAt = splashed = False met = 109.47999999999536 lct = 109.47999999999536 lastUT = -1 distanceTraveled = 0 root = 0 lat = 0.19453793470434588 lon = 178.39262850826327 alt = 13575085860.795441 hgt = -1 nrm = 0,1,0 rot = -0.266142666,-0.428572327,0.403689206,0.763235748 CoM = 0,0,0 stg = 0 prst = False ref = 0 ctrl = False PQSMin = 0 PQSMax = 0 ORBIT { SMA = 14253525744.647142 ECC = 0.049413680551860927 INC = 0.26887539939785587 LPE = 189.68350578115874 LAN = 44.82989211268557 MNA = 0.37315130117622169 EPH = 1997349.1162304687 REF = 0 } PART { name = PotatoRoid cid = 0 uid = 689439383 mid = 689439383 persistentId = 1943421756 launchID = 0 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 0 sqor = 0 sepI = 0 sidx = 0 attm = 0 srfN = None, -1 mass = 150 shielded = False temp = -1 tempExt = 0 tempExtUnexp = 0 expt = 0.100000001 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = rTrf = modCost = 0 } ACTIONGROUPS { } DISCOVERY { state = 1 lastObservedTime = 109.47999999999536 lifetime = 1622126.513671875 refTime = 1728000 size = 4 } FLIGHTPLAN { } CTRLSTATE { } VESSELMODULES { FlightIntegrator { } } } VESSEL { pid = 63a84c26013f4f2c86e0513f3fd2ea38 persistentId = 1713245430 name = Ast. SRI-906 type = SpaceObject sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = True launchedFrom = landedAt = displaylandedAt = splashed = False met = 169.48000000001289 lct = 169.48000000001289 lastUT = -1 distanceTraveled = 0 root = 0 lat = -0.046403020172548097 lon = -174.46091698289922 alt = 15406550476.816433 hgt = -1 nrm = 0,1,0 rot = 0.250870496,0.470834702,-0.335569799,0.776383698 CoM = 0,0,0 stg = 0 prst = False ref = 0 ctrl = False PQSMin = 0 PQSMax = 0 ORBIT { SMA = 15388879072.543264 ECC = 0.11565008515770635 INC = 0.07620321282823074 LPE = 323.04079744489917 LAN = 328.16759089212741 MNA = -0.019331168094288368 EPH = 2812044.138203125 REF = 0 } PART { name = PotatoRoid cid = 0 uid = 516213829 mid = 516213829 persistentId = 3583642396 launchID = 0 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 0 sqor = 0 sepI = 0 sidx = 0 attm = 0 srfN = None, -1 mass = 150 shielded = False temp = -1 tempExt = 0 tempExtUnexp = 0 expt = 0.100000001 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = rTrf = modCost = 0 } ACTIONGROUPS { } DISCOVERY { state = 1 lastObservedTime = 169.48000000001289 lifetime = 1058412.2772216797 refTime = 1728000 size = 2 } FLIGHTPLAN { } CTRLSTATE { } VESSELMODULES { FlightIntegrator { } } } VESSEL { pid = 99ff1a029a4846b4a5b4b54a31617637 persistentId = 2276716765 name = Ast. BKE-303 type = SpaceObject sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = True launchedFrom = landedAt = displaylandedAt = splashed = False met = 207.74000000003247 lct = 207.74000000003247 lastUT = -1 distanceTraveled = 0 root = 0 lat = -0.0083216598588480139 lon = -175.91607757749537 alt = 14461175559.29216 hgt = -1 nrm = 0,1,0 rot = 0.245810717,-0.730813622,0.137781397,0.62169528 CoM = 0,0,0 stg = 0 prst = False ref = 0 ctrl = False PQSMin = 0 PQSMax = 0 ORBIT { SMA = 14171535118.645994 ECC = 0.049344726727079624 INC = 0.95431756208163854 LPE = 324.23254358896821 LAN = 3.7574591173145109 MNA = 0.58257344110608256 EPH = 4722896.985605469 REF = 0 } PART { name = PotatoRoid cid = 0 uid = 618260442 mid = 618260442 persistentId = 803555270 launchID = 0 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 0 sqor = 0 sepI = 0 sidx = 0 attm = 0 srfN = None, -1 mass = 150 shielded = False temp = -1 tempExt = 0 tempExtUnexp = 0 expt = 0.100000001 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = rTrf = modCost = 0 } ACTIONGROUPS { } DISCOVERY { state = 1 lastObservedTime = 207.74000000003247 lifetime = 989904.88586425781 refTime = 1728000 size = 1 } FLIGHTPLAN { } CTRLSTATE { } VESSELMODULES { FlightIntegrator { } } } VESSEL { pid = 35a543e32948438087664ab8ff62ca63 persistentId = 4150876303 name = Ast. NNA-162 type = SpaceObject sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = True launchedFrom = landedAt = displaylandedAt = splashed = False met = 327.75999999999186 lct = 327.75999999999186 lastUT = -1 distanceTraveled = 0 root = 0 lat = 0.22181688438287886 lon = -158.6314880139193 alt = 15435161624.872545 hgt = -1 nrm = 0,1,0 rot = -0.328167319,-0.58114326,0.495014518,0.556362569 CoM = 0,0,0 stg = 0 prst = False ref = 0 ctrl = False PQSMin = 0 PQSMax = 0 ORBIT { SMA = 14600942008.83765 ECC = 0.075051441989844467 INC = 0.52267261091623163 LPE = 205.21728284874271 LAN = 176.53021510838835 MNA = -0.4890328748888505 EPH = 4326048.1213281248 REF = 0 } PART { name = PotatoRoid cid = 0 uid = 1010368862 mid = 1010368862 persistentId = 1840731376 launchID = 0 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 0 sqor = 0 sepI = 0 sidx = 0 attm = 0 srfN = None, -1 mass = 150 shielded = False temp = -1 tempExt = 0 tempExtUnexp = 0 expt = 0.100000001 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = rTrf = modCost = 0 } ACTIONGROUPS { } DISCOVERY { state = 1 lastObservedTime = 327.75999999999186 lifetime = 1687293.8415527344 refTime = 1728000 size = 4 } FLIGHTPLAN { } CTRLSTATE { } VESSELMODULES { FlightIntegrator { } } } VESSEL { pid = 8a17a528daf44729ae8632ff4f8b2ba4 persistentId = 1674125841 name = Omni Relay type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 41470.876797610275 lct = 458.83999999987265 lastUT = 41929.716797610148 distanceTraveled = 20035.012824710542 root = 0 lat = -5.0234247096941658E-09 lon = 32.909593959473177 alt = 2486749.8799722204 hgt = -1 nrm = 0.902967215,0.429607362,0.0093844533 rot = 0.619752049,-0.347084284,-0.342129499,-0.615132034 CoM = 0.000671681017,-0.119847059,2.36928463E-06 stg = 0 prst = False ref = 181897109 ctrl = True PQSMin = 2 PQSMax = 10 cPch = 0.2 cHdg = 0.3 cMod = 0 ORBIT { SMA = 3086749.999839881 ECC = 6.5419644089687116E-11 INC = 0 LPE = 296.04014237604997 LAN = 240.00321564381341 MNA = -1.5434691384713659 EPH = 4871.4238476562014 REF = 1 } PART { name = probeCoreOcto2 cid = 4294618014 uid = 181897109 mid = 3351318038 persistentId = 840173303 launchID = 1 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 3 attN = top, -1 mass = 0.0399999991 shielded = False temp = 232.09014643623098 tempExt = 232.07458999071113 tempExtUnexp = 4 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = probeCoreOcto2 (Omni Relay) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = Comfort isEnabled = True bonus = not-alone stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = HardDrive isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 41929.716797610148 ExtraDelay = 0 CmdGuid = 31e08e8f-4345-4519-b2d3-1cdea1e63e2b } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 5 maxAmount = 5 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongAntenna2 cid = 4294606186 uid = 3404024357 mid = 3351318038 persistentId = 2200018425 launchID = 1 parent = 0 position = -0.18000879883766174,0.05069732666015625,1.0729361399341997E-08 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 2 srfN = srfAttach, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 232.090125531052 tempExt = 232.07097781586128 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.991167128 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = RTLongAntenna2 cid = 4294603876 uid = 3753534169 mid = 3351318038 persistentId = 3127273860 launchID = 1 parent = 0 position = 0.18000879883766174,0.05069732666015625,-2.6466230096389154E-08 rotation = 0,1,0,-4.37113883E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 srfN = srfAttach, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 232.09017843776388 tempExt = 232.10774618819545 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992847264 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = sasModule cid = 4294590694 uid = 136881316 mid = 3351318038 persistentId = 2896446009 launchID = 1 parent = 0 position = 0,-0.15217304229736328,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 8 attN = top, 0 mass = 0.0500000007 shielded = False temp = 232.09014514194297 tempExt = 232.06887308221607 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = sasModule modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = Reliability isEnabled = True type = ModuleReactionWheel broken = False critical = False quality = False last = 41929.436797610193 next = 11031346.503422659 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294583170 uid = 2910329995 mid = 3351318038 persistentId = 1995450387 launchID = 1 parent = 3 position = 2.6104906680757267E-08,-0.1627197265625,-0.29860532283782959 rotation = 1.26440554E-07,0.707106829,-1.26440554E-07,-0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 5 sym = 6 sym = 7 srfN = srfAttach, 3 mass = 0.0175000001 shielded = False temp = 232.09016918665637 tempExt = 232.11257445557155 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 458.83999999987265 currentRotation = (-0.423535466, -0.423534572, -0.566233814, 0.566229105) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = WarpFixer isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = Reliability isEnabled = True type = ModuleDeployableSolarPanel broken = False critical = False quality = False last = 41929.436797610193 next = 68182757.715836883 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294581510 uid = 1258401284 mid = 3351318038 persistentId = 2553449348 launchID = 1 parent = 3 position = -0.2986052930355072,-0.1627197265625,-4.3903170876546938E-08 rotation = 0,0,-1.78813949E-07,-1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 6 sym = 7 srfN = srfAttach, 3 mass = 0.0175000001 shielded = False temp = 232.09013677278085 tempExt = 232.06909222380864 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 458.83999999987265 currentRotation = (-0.499450535, -0.499438345, -0.50055027, 0.500559628) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = WarpFixer isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = Reliability isEnabled = True type = ModuleDeployableSolarPanel broken = False critical = False quality = False last = 41929.436797610193 next = 20000214.601089716 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294581406 uid = 3878168291 mid = 3351318038 persistentId = 577229350 launchID = 1 parent = 3 position = -2.5865506297125668E-16,-0.1627197265625,0.29860532283782959 rotation = -1.26440554E-07,-0.707106888,-1.26440554E-07,-0.707106769 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 7 srfN = srfAttach, 3 mass = 0.0175000001 shielded = False temp = 232.09016918394434 tempExt = 232.11256485439907 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 458.83999999987265 currentRotation = (-0.566234529, -0.566227794, -0.423537135, 0.423533857) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = WarpFixer isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = Reliability isEnabled = True type = ModuleDeployableSolarPanel broken = False critical = False quality = False last = 41929.436797610193 next = 70133170.529276103 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294581302 uid = 394560550 mid = 3351318038 persistentId = 747721626 launchID = 1 parent = 3 position = 0.2986052930355072,-0.1627197265625,8.3066407086107574E-09 rotation = -1.78813949E-07,-1,0,0 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 srfN = srfAttach, 3 mass = 0.0175000001 shielded = False temp = 232.0901451111273 tempExt = 232.07992644277479 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 458.83999999987265 currentRotation = (-0.500558853, -0.500551581, -0.499438226, 0.499450177) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = WarpFixer isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = Reliability isEnabled = True type = ModuleDeployableSolarPanel broken = False critical = False quality = False last = 41929.436797610193 next = 50192264.534456216 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294578606 uid = 2914344108 mid = 3351318038 persistentId = 3639635137 launchID = 1 parent = 3 position = 0,-0.34328460693359375,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 3 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 232.09010767616184 tempExt = 232.07306829141683 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryPack cid = 4294573318 uid = 555189847 mid = 3351318038 persistentId = 3080750876 launchID = 1 parent = 8 position = -0.21344992518424988,-0.26181316375732422,-0.21344991028308868 rotation = 1.55754421E-07,-0.382683486,-6.45156035E-08,-0.923879564 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 10 sym = 11 sym = 12 srfN = srfAttach, 8 mass = 0.00499999989 shielded = False temp = 232.09009896345876 tempExt = 232.07257293902609 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 100 maxAmount = 100 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryPack cid = 4294571992 uid = 2360475936 mid = 3351318038 persistentId = 2892449644 launchID = 1 parent = 8 position = -0.21344991028308868,-0.26181316375732422,0.21344989538192749 rotation = 6.45155822E-08,-0.923879564,-1.55754421E-07,-0.382683396 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 9 sym = 11 sym = 12 srfN = srfAttach, 8 mass = 0.00499999989 shielded = False temp = 232.09009896345876 tempExt = 232.07257293902609 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 100 maxAmount = 100 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryPack cid = 4294571954 uid = 2225050318 mid = 3351318038 persistentId = 251146200 launchID = 1 parent = 8 position = 0.21344994008541107,-0.26181316375732422,0.21344989538192749 rotation = -6.45156106E-08,-0.923879564,-1.55754421E-07,0.382683516 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 9 sym = 10 sym = 12 srfN = srfAttach, 8 mass = 0.00499999989 shielded = False temp = 232.09016334046549 tempExt = 232.09389089353996 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 100 maxAmount = 100 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryPack cid = 4294571916 uid = 393829255 mid = 3351318038 persistentId = 1988246392 launchID = 1 parent = 8 position = 0.2134498804807663,-0.26181316375732422,-0.21344992518424988 rotation = -1.55754421E-07,-0.382683396,-6.45155822E-08,0.923879564 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 8 mass = 0.00499999989 shielded = False temp = 232.09014361892153 tempExt = 232.08679894373532 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 100 maxAmount = 100 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = be2514ca40ab45c4a4f027ebf32d6c8b persistentId = 1674125841 name = Omni Relay type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 82611.978740365186 lct = 4882.5038476564432 lastUT = 87494.482588021623 distanceTraveled = 1188962.7820754824 root = 0 lat = 2.5686837400222635E-08 lon = 88.545409240234562 alt = 2486749.7643971583 hgt = -1 nrm = 0.0914128423,-0.992913842,-0.075931266 rot = 0.660867751,0.303723603,-0.239804089,-0.643039405 CoM = 3.20374966E-07,-0.139511123,-2.88709998E-07 stg = 0 prst = False ref = 277336343 ctrl = True PQSMin = 2 PQSMax = 10 cPch = -0.1 cHdg = 1.734 cMod = 0 ORBIT { SMA = 3086749.9628078798 ECC = 2.1832690221960174E-08 INC = 0 LPE = 267.49067813711326 LAN = 265.42290743070151 MNA = 0.47639770478210286 EPH = 87494.482588021623 REF = 1 } PART { name = probeCoreOcto2 cid = 4294618014 uid = 277336343 mid = 1665372086 persistentId = 827407853 launchID = 2 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 3 attN = top, -1 mass = 0.0399999991 shielded = False temp = 88.249184309030838 tempExt = 88.798473066844139 tempExtUnexp = 4 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = probeCoreOcto2 (Omni Relay) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 87494.482588021623 ExtraDelay = 0 CmdGuid = 3474ee7e-2a0b-4c53-b969-560ac9ab1ece } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 5 maxAmount = 5 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongAntenna2 cid = 4294606186 uid = 4090509633 mid = 1665372086 persistentId = 3713793346 launchID = 2 parent = 0 position = -0.18000879883766174,0.05069732666015625,1.0729361399341997E-08 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 2 srfN = srfAttach, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 87.690905550898293 tempExt = 88.44704212834975 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.991167128 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = RTLongAntenna2 cid = 4294603876 uid = 222145479 mid = 1665372086 persistentId = 1702154671 launchID = 2 parent = 0 position = 0.18000879883766174,0.05069732666015625,-2.6466230096389154E-08 rotation = 0,1,0,-4.37113883E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 srfN = srfAttach, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 87.634814290364076 tempExt = 88.322941532438705 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992847264 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = sasModule cid = 4294590694 uid = 3648566181 mid = 1665372086 persistentId = 3679549302 launchID = 2 parent = 0 position = 0,-0.15217304229736328,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 8 attN = top, 0 mass = 0.0500000007 shielded = False temp = 88.447171762267573 tempExt = 90.042800004925454 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = sasModule modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294583170 uid = 1159699748 mid = 1665372086 persistentId = 449574453 launchID = 2 parent = 3 position = 2.6104906680757267E-08,-0.1627197265625,-0.29860532283782959 rotation = 1.26440554E-07,0.707106829,-1.26440554E-07,-0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 5 sym = 6 sym = 7 srfN = srfAttach, 3 mass = 0.0175000001 shielded = False temp = 89.56373030371158 tempExt = 93.538038811480632 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 4882.5038476564432 currentRotation = (0.417755932, 0.417812526, 0.570716083, -0.570259452) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294581510 uid = 3758679673 mid = 1665372086 persistentId = 2977620315 launchID = 2 parent = 3 position = -0.2986052930355072,-0.1627197265625,-4.3903170876546938E-08 rotation = 0,0,-1.78813949E-07,-1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 6 sym = 7 srfN = srfAttach, 3 mass = 0.0175000001 shielded = False temp = 89.974899835791518 tempExt = 94.560290713225911 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 4882.5038476564432 currentRotation = (-0.421475142, -0.421337843, -0.567394376, 0.568239987) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294581406 uid = 1841620936 mid = 1665372086 persistentId = 998989646 launchID = 2 parent = 3 position = -2.5865506297125668E-16,-0.1627197265625,0.29860532283782959 rotation = -1.26440554E-07,-0.707106888,-1.26440554E-07,-0.707106769 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 7 srfN = srfAttach, 3 mass = 0.0175000001 shielded = False temp = 89.983254613398088 tempExt = 94.581398223142855 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 4882.5038476564432 currentRotation = (0.570312202, 0.570677042, 0.417796522, -0.417753339) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294581302 uid = 1818570489 mid = 1665372086 persistentId = 1462924380 launchID = 2 parent = 3 position = 0.2986052930355072,-0.1627197265625,8.3066407086107574E-09 rotation = -1.78813949E-07,-1,0,0 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 srfN = srfAttach, 3 mass = 0.0175000001 shielded = False temp = 89.362988792254143 tempExt = 92.715985362703961 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 4882.5038476564432 currentRotation = (-0.568214118, -0.567432702, -0.421344995, 0.42145133) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294578606 uid = 1862910209 mid = 1665372086 persistentId = 912637732 launchID = 2 parent = 3 position = 0,-0.34328460693359375,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 3 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 88.387647043483341 tempExt = 88.776426483849207 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryPack cid = 4294573318 uid = 4257801237 mid = 1665372086 persistentId = 2002281918 launchID = 2 parent = 8 position = -0.21344992518424988,-0.26181316375732422,-0.21344991028308868 rotation = 1.55754421E-07,-0.382683486,-6.45156035E-08,-0.923879564 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 10 sym = 11 sym = 12 srfN = srfAttach, 8 mass = 0.00499999989 shielded = False temp = 88.351141940239103 tempExt = 88.598421795222322 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 100 maxAmount = 100 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryPack cid = 4294571992 uid = 3893672226 mid = 1665372086 persistentId = 4044965253 launchID = 2 parent = 8 position = -0.21344991028308868,-0.26181316375732422,0.21344989538192749 rotation = 6.45155822E-08,-0.923879564,-1.55754421E-07,-0.382683396 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 9 sym = 11 sym = 12 srfN = srfAttach, 8 mass = 0.00499999989 shielded = False temp = 88.353747492958931 tempExt = 88.624306714466627 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 100 maxAmount = 100 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryPack cid = 4294571954 uid = 3274672325 mid = 1665372086 persistentId = 428943987 launchID = 2 parent = 8 position = 0.21344994008541107,-0.26181316375732422,0.21344989538192749 rotation = -6.45156106E-08,-0.923879564,-1.55754421E-07,0.382683516 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 9 sym = 10 sym = 12 srfN = srfAttach, 8 mass = 0.00499999989 shielded = False temp = 88.350210909988391 tempExt = 88.589204912112208 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 100 maxAmount = 100 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryPack cid = 4294571916 uid = 637916928 mid = 1665372086 persistentId = 2463369395 launchID = 2 parent = 8 position = 0.2134498804807663,-0.26181316375732422,-0.21344992518424988 rotation = -1.55754421E-07,-0.382683396,-6.45155822E-08,0.923879564 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 8 mass = 0.00499999989 shielded = False temp = 88.348367532840101 tempExt = 88.570920705724006 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 100 maxAmount = 100 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = 716c1fa8b2e14a1189e5280f7e07ba93 persistentId = 1674125841 name = Omni Relay type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 4444.5342065431487 lct = 9180.0107739265204 lastUT = 13624.544980469669 distanceTraveled = 13035.960552585384 root = 0 lat = -4.0213331004182196E-09 lon = 130.63476879143346 alt = 2486750.0230389708 hgt = -1 nrm = -0.98624301,0.165173173,-0.00653553009 rot = -0.617493272,0.349358141,0.345656812,0.61414367 CoM = 1.49011612E-08,-0.1395123,-1.49011612E-08 stg = 0 prst = False ref = 2145660536 ctrl = True PQSMin = 2 PQSMax = 10 cPch = -0.6790317 cHdg = 0.5660366 cMod = 0 ORBIT { SMA = 3086750.0000056657 ECC = 3.8836052407036175E-12 INC = 0 LPE = 73.830932966542548 LAN = 44.406830622583641 MNA = -0.52349961711688442 EPH = 13624.544980469669 REF = 1 } PART { name = probeCoreOcto2 cid = 4294618014 uid = 2145660536 mid = 160555801 persistentId = 2045252280 launchID = 3 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 3 attN = top, -1 mass = 0.0399999991 shielded = False temp = 263.47148577942426 tempExt = 260.65244338390346 tempExtUnexp = 4 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = probeCoreOcto2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 13624.544980469669 ExtraDelay = 0 CmdGuid = 8678f3f5-01a5-4a12-ac88-d6df88437435 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 5 maxAmount = 5 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongAntenna2 cid = 4294606186 uid = 1128409889 mid = 160555801 persistentId = 4212348863 launchID = 3 parent = 0 position = -0.18000879883766174,0.05069732666015625,1.0729361399341997E-08 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 2 srfN = srfAttach, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 262.8173708627524 tempExt = 260.95062137163819 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.991167128 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = RTLongAntenna2 cid = 4294603876 uid = 1808757823 mid = 160555801 persistentId = 3450772351 launchID = 3 parent = 0 position = 0.18000879883766174,0.05069732666015625,-2.6466230096389154E-08 rotation = 0,1,0,-4.37113883E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 srfN = srfAttach, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 262.81732649500094 tempExt = 260.95382396475952 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992847264 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = sasModule cid = 4294590694 uid = 3450845281 mid = 160555801 persistentId = 3964738211 launchID = 3 parent = 0 position = 0,-0.15217304229736328,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 8 attN = top, 0 mass = 0.0500000007 shielded = False temp = 262.01434048612327 tempExt = 254.1877436701748 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = sasModule modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294583170 uid = 285422629 mid = 160555801 persistentId = 4028367261 launchID = 3 parent = 3 position = 2.6104906680757267E-08,-0.1627197265625,-0.29860532283782959 rotation = 1.26440554E-07,0.707106829,-1.26440554E-07,-0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 5 sym = 6 sym = 7 srfN = srfAttach, 3 mass = 0.0175000001 shielded = False temp = 261.02516584846359 tempExt = 253.36267498368073 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 9180.0107739265204 currentRotation = (0.446474433, 0.44647488, -0.548325598, 0.548324585) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294581510 uid = 2705563723 mid = 160555801 persistentId = 1813736544 launchID = 3 parent = 3 position = -0.2986052930355072,-0.1627197265625,-4.3903170876546938E-08 rotation = 0,0,-1.78813949E-07,-1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 6 sym = 7 srfN = srfAttach, 3 mass = 0.0175000001 shielded = False temp = 260.87204944049734 tempExt = 252.65920135598574 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 9180.0107739265204 currentRotation = (-0.50074321, -0.500745356, 0.499255985, -0.499253213) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294581406 uid = 3753234263 mid = 160555801 persistentId = 912770298 launchID = 3 parent = 3 position = -2.5865506297125668E-16,-0.1627197265625,0.29860532283782959 rotation = -1.26440554E-07,-0.707106888,-1.26440554E-07,-0.707106769 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 7 srfN = srfAttach, 3 mass = 0.0175000001 shielded = False temp = 261.02433882828745 tempExt = 253.35890674026518 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 9180.0107739265204 currentRotation = (-0.548325598, -0.548325062, 0.446474344, -0.446474463) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294581302 uid = 3034063556 mid = 160555801 persistentId = 2686694126 launchID = 3 parent = 3 position = 0.2986052930355072,-0.1627197265625,8.3066407086107574E-09 rotation = -1.78813949E-07,-1,0,0 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 srfN = srfAttach, 3 mass = 0.0175000001 shielded = False temp = 260.84745162005572 tempExt = 252.54731579961813 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 9180.0107739265204 currentRotation = (0.499254763, 0.499254167, -0.500744939, 0.500743866) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294578606 uid = 1480546461 mid = 160555801 persistentId = 3210475525 launchID = 3 parent = 3 position = 0,-0.34328460693359375,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 3 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 260.33126131282745 tempExt = 258.56452656570411 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryPack cid = 4294573318 uid = 674431761 mid = 160555801 persistentId = 3341031086 launchID = 3 parent = 8 position = -0.21344992518424988,-0.26181316375732422,-0.21344991028308868 rotation = 1.55754421E-07,-0.382683486,-6.45156035E-08,-0.923879564 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 10 sym = 11 sym = 12 srfN = srfAttach, 8 mass = 0.00499999989 shielded = False temp = 260.30599963885368 tempExt = 258.91072892881499 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 100 maxAmount = 100 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryPack cid = 4294571992 uid = 30559344 mid = 160555801 persistentId = 1555643226 launchID = 3 parent = 8 position = -0.21344991028308868,-0.26181316375732422,0.21344989538192749 rotation = 6.45155822E-08,-0.923879564,-1.55754421E-07,-0.382683396 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 9 sym = 11 sym = 12 srfN = srfAttach, 8 mass = 0.00499999989 shielded = False temp = 260.30086612534717 tempExt = 258.85941659333207 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 100 maxAmount = 100 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryPack cid = 4294571954 uid = 1864091294 mid = 160555801 persistentId = 2081318882 launchID = 3 parent = 8 position = 0.21344994008541107,-0.26181316375732422,0.21344989538192749 rotation = -6.45156106E-08,-0.923879564,-1.55754421E-07,0.382683516 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 9 sym = 10 sym = 12 srfN = srfAttach, 8 mass = 0.00499999989 shielded = False temp = 260.29870958902143 tempExt = 258.83790636033626 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 100 maxAmount = 100 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryPack cid = 4294571916 uid = 3469157069 mid = 160555801 persistentId = 1074999134 launchID = 3 parent = 8 position = 0.2134498804807663,-0.26181316375732422,-0.21344992518424988 rotation = -1.55754421E-07,-0.382683396,-6.45155822E-08,0.923879564 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 8 mass = 0.00499999989 shielded = False temp = 260.29906121668546 tempExt = 258.84140635293244 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 100 maxAmount = 100 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = 5bf115e7344a4abfada1876d9a168e31 persistentId = 1674125841 name = Omni Relay type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 30688.447436895545 lct = 13631.684980469825 lastUT = 44320.152417365367 distanceTraveled = 68134.514201132173 root = 0 lat = 7.4320018259243321E-10 lon = 138.89743971910008 alt = 2486750.0096275839 hgt = -1 nrm = -0.570177019,-0.821499228,-0.00610131444 rot = -0.702281296,-0.0843718126,-0.0896095634,0.701179385 CoM = 7.97212124E-07,-0.139512867,5.96046448E-08 stg = 0 prst = False ref = 1777040037 ctrl = True PQSMin = 2 PQSMax = 10 cPch = 0.518 cHdg = 0.4379999 cMod = 0 ORBIT { SMA = 3086750.1645080233 ECC = 1.6171400589346213E-08 INC = 0 LPE = 126.54897259907113 LAN = 158.97017459899223 MNA = -0.63214492276858636 EPH = 44320.13241736537 REF = 1 } PART { name = probeCoreOcto2 cid = 4294618014 uid = 1777040037 mid = 3387688180 persistentId = 3654830630 launchID = 4 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 3 attN = top, -1 mass = 0.0399999991 shielded = False temp = 275.2368711144311 tempExt = 274.75988124724171 tempExtUnexp = 4 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = probeCoreOcto2 (Omni Relay) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 44320.152417365367 ExtraDelay = 0 CmdGuid = 9204949f-4931-40d5-bec2-78039df3dcba } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 5 maxAmount = 5 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongAntenna2 cid = 4294606186 uid = 3779851753 mid = 3387688180 persistentId = 482239473 launchID = 4 parent = 0 position = -0.18000879883766174,0.05069732666015625,1.0729361399341997E-08 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 2 srfN = srfAttach, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 275.21321200855419 tempExt = 274.87167805732531 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.991167128 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = RTLongAntenna2 cid = 4294603876 uid = 4104055982 mid = 3387688180 persistentId = 2028738502 launchID = 4 parent = 0 position = 0.18000879883766174,0.05069732666015625,-2.6466230096389154E-08 rotation = 0,1,0,-4.37113883E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 srfN = srfAttach, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 275.19000504039064 tempExt = 274.74937708438301 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992847264 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = sasModule cid = 4294590694 uid = 139379468 mid = 3387688180 persistentId = 2606817915 launchID = 4 parent = 0 position = 0,-0.15217304229736328,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 8 attN = top, 0 mass = 0.0500000007 shielded = False temp = 275.24220981304074 tempExt = 274.76262331718999 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = sasModule modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294583170 uid = 436748638 mid = 3387688180 persistentId = 618750030 launchID = 4 parent = 3 position = 2.6104906680757267E-08,-0.1627197265625,-0.29860532283782959 rotation = 1.26440554E-07,0.707106829,-1.26440554E-07,-0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 5 sym = 6 sym = 7 srfN = srfAttach, 3 mass = 0.0175000001 shielded = False temp = 275.30533523571103 tempExt = 275.85217855984843 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 13631.684980469825 currentRotation = (-0.33993724, -0.339936495, -0.620038271, 0.62003094) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294581510 uid = 4041450880 mid = 3387688180 persistentId = 4105367691 launchID = 4 parent = 3 position = -0.2986052930355072,-0.1627197265625,-4.3903170876546938E-08 rotation = 0,0,-1.78813949E-07,-1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 6 sym = 7 srfN = srfAttach, 3 mass = 0.0175000001 shielded = False temp = 275.30951441032573 tempExt = 275.94069848183932 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 13631.684980469825 currentRotation = (-0.499976039, -0.499962568, -0.500031531, 0.500029862) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294581406 uid = 3933594929 mid = 3387688180 persistentId = 3072469624 launchID = 4 parent = 3 position = -2.5865506297125668E-16,-0.1627197265625,0.29860532283782959 rotation = -1.26440554E-07,-0.707106888,-1.26440554E-07,-0.707106769 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 7 srfN = srfAttach, 3 mass = 0.0175000001 shielded = False temp = 275.30413226518715 tempExt = 275.83791659683629 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 13631.684980469825 currentRotation = (-0.620036602, -0.620032907, -0.339937568, 0.33993569) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294581302 uid = 2593461228 mid = 3387688180 persistentId = 3970171506 launchID = 4 parent = 3 position = 0.2986052930355072,-0.1627197265625,8.3066407086107574E-09 rotation = -1.78813949E-07,-1,0,0 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 srfN = srfAttach, 3 mass = 0.0175000001 shielded = False temp = 275.16457870374978 tempExt = 273.95670309386645 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 13631.684980469825 currentRotation = (-0.500032663, -0.500033319, -0.499968767, 0.49996531) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294578606 uid = 72077058 mid = 3387688180 persistentId = 3410151883 launchID = 4 parent = 3 position = 0,-0.34328460693359375,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 3 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 275.08323577466223 tempExt = 274.62987029139578 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryPack cid = 4294573318 uid = 1145905857 mid = 3387688180 persistentId = 1836121209 launchID = 4 parent = 8 position = -0.21344992518424988,-0.26181316375732422,-0.21344991028308868 rotation = 1.55754421E-07,-0.382683486,-6.45156035E-08,-0.923879564 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 10 sym = 11 sym = 12 srfN = srfAttach, 8 mass = 0.00499999989 shielded = False temp = 275.09188783036194 tempExt = 274.70581382851003 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 100 maxAmount = 100 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryPack cid = 4294571992 uid = 2366436650 mid = 3387688180 persistentId = 947873145 launchID = 4 parent = 8 position = -0.21344991028308868,-0.26181316375732422,0.21344989538192749 rotation = 6.45155822E-08,-0.923879564,-1.55754421E-07,-0.382683396 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 9 sym = 11 sym = 12 srfN = srfAttach, 8 mass = 0.00499999989 shielded = False temp = 275.12027045853779 tempExt = 274.77963968825151 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 100 maxAmount = 100 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryPack cid = 4294571954 uid = 134382136 mid = 3387688180 persistentId = 141993582 launchID = 4 parent = 8 position = 0.21344994008541107,-0.26181316375732422,0.21344989538192749 rotation = -6.45156106E-08,-0.923879564,-1.55754421E-07,0.382683516 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 9 sym = 10 sym = 12 srfN = srfAttach, 8 mass = 0.00499999989 shielded = False temp = 275.07440921330709 tempExt = 274.59872295722022 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 100 maxAmount = 100 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryPack cid = 4294571916 uid = 3994980339 mid = 3387688180 persistentId = 4026749109 launchID = 4 parent = 8 position = 0.2134498804807663,-0.26181316375732422,-0.21344992518424988 rotation = -1.55754421E-07,-0.382683396,-6.45155822E-08,0.923879564 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 8 mass = 0.00499999989 shielded = False temp = 275.07492024853838 tempExt = 274.6039675942485 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 100 maxAmount = 100 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = 25edaf7a9ea64edeb9c7f07c232d483d persistentId = 998290497 name = Dish Sat 1 type = Relay sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 29306.171816966533 lct = 13699.944980471315 lastUT = 43006.116797437848 distanceTraveled = 123751.15797866671 root = 0 lat = 1.1181142670589697E-07 lon = 121.67974605702391 alt = 5486750.6226592241 hgt = -1 nrm = -0.579819024,-0.107363015,-0.807640553 rot = -0.706975341,0.56650883,-0.0133768162,0.423172355 CoM = -1.49011612E-08,0.257935017,-2.08616257E-07 stg = 0 prst = False ref = 2502950552 ctrl = True PQSMin = 2 PQSMax = 10 cPch = 0.9000005 cHdg = 4.356 cMod = 0 ORBIT { SMA = 6086750.4777195742 ECC = 9.4117592566627241E-08 INC = 0 LPE = 192.11336719844982 LAN = 119.82715476603585 MNA = -1.7769188339574582 EPH = 43006.116797437848 REF = 1 } PART { name = HECS2.ProbeCore cid = 4294315528 uid = 2502950552 mid = 1057800425 persistentId = 3967947456 launchID = 5 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = top, 2 attN = bottom, 1 mass = 0.200000003 shielded = False temp = 4.3845270790820292 tempExt = 4.9949326129098628 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = HECS2.ProbeCore (Dish Sat 1) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Running stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceContainer isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { CollectAllAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 43006.116797437848 ExtraDelay = 0 CmdGuid = d8c1d93a-688d-4fcc-b707-09be54daa401 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 999.99142857127958 maxAmount = 1000 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryBank cid = 4294308190 uid = 3781274983 mid = 1057800425 persistentId = 1121146432 launchID = 5 parent = 0 position = 0,-0.6108551025390625,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = top, 0 attN = bottom, -1 mass = 0.0500000007 shielded = False temp = 4.3796305459921614 tempExt = 4.7518616455628786 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = batteryBank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 999.99142857127958 maxAmount = 1000 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RelayAntenna100 cid = 4294298942 uid = 3784610451 mid = 1057800425 persistentId = 2246212507 launchID = 5 parent = 0 position = 0,0.68000030517578125,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 0 mass = 0.649999976 shielded = False temp = 4.3983245175067678 tempExt = 5.0438610567581375 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RelayAntenna100 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 0.99999997620176351 RTOmniRange = 0 RTDishRange = 9.9999998E+10 stagingEnabled = True RTAntennaTarget = 8c6dc3ba-5ddb-4106-897b-1facfa9b2950 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } } PART { name = largeSolarPanel cid = 4294290300 uid = 2180712099 mid = 1057800425 persistentId = 132195741 launchID = 5 parent = 0 position = -0.63296318054199219,-0.01512908935546875,-0.36544156074523926 rotation = -0.683012784,-0.183012694,-0.18301253,0.683012724 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 srfN = srfAttach, 0 mass = 0.300000012 shielded = False temp = 4.1985244499250909 tempExt = 4.890240636864335 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = largeSolarPanel modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 13699.944980471315 currentRotation = (-0.187491015, -0.187487558, 0.68182224, -0.681772709) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = largeSolarPanel cid = 4294290230 uid = 3235285296 mid = 1057800425 persistentId = 537254439 launchID = 5 parent = 0 position = 0.63296324014663696,-0.01512908935546875,0.36544150114059448 rotation = -0.1830125,0.683012724,0.683012784,0.183012664 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 srfN = srfAttach, 0 mass = 0.300000012 shielded = False temp = 4.6940272910849412 tempExt = 7.0482375951017593 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = largeSolarPanel modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 13699.944980471315 currentRotation = (0.187486097, 0.18749164, 0.681820214, -0.681775033) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = ksp.r.largeBatteryPack cid = 4294288996 uid = 3350858021 mid = 1057800425 persistentId = 3164324311 launchID = 5 parent = 0 position = -6.3596928612241754E-08,0.014894485473632813,-0.72746407985687256 rotation = 2.38418579E-07,0,0,-1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 6 srfN = srfAttach, 0 mass = 0.0199999996 shielded = False temp = 4.4212064744198161 tempExt = 4.7829146009394368 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = ksp.r.largeBatteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 399.99657142851186 maxAmount = 400 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = ksp.r.largeBatteryPack cid = 4294288038 uid = 3200074083 mid = 1057800425 persistentId = 2640636140 launchID = 5 parent = 0 position = 1.2719385722448351E-07,0.014894485473632813,0.72746407985687256 rotation = -1.04216071E-14,-1,-2.38418579E-07,4.37113883E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 5 srfN = srfAttach, 0 mass = 0.0199999996 shielded = False temp = 4.4213181276181004 tempExt = 4.7830770977341519 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = ksp.r.largeBatteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 399.99657142851186 maxAmount = 400 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongAntenna2 cid = 4294277094 uid = 2281823671 mid = 1057800425 persistentId = 493165526 launchID = 5 parent = 0 position = 0.41221100091934204,0.046778678894042969,-0.71397024393081665 rotation = 0.183012784,0.683012545,-0.683012843,0.183012694 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 8 srfN = srfAttach, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 4.3640388594298862 tempExt = 4.8823709053490223 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992120922 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = RTLongAntenna2 cid = 4294274940 uid = 2880585528 mid = 1057800425 persistentId = 3092594922 launchID = 5 parent = 0 position = -0.41221094131469727,0.046778678894042969,0.71397030353546143 rotation = -0.683012843,0.183012664,-0.183012754,-0.683012545 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 7 srfN = srfAttach, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 4.4288391893164532 tempExt = 4.9843129782907525 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.990993559 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = True, 13706.7849804715 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 4.80527069E-06 yaw = 3.79913502E-07 roll = -1.99771716E-06 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = 8c6dc3ba5ddb4106897b1facfa9b2950 persistentId = 998290497 name = Dish Sat 2 type = Relay sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 25458.281078794713 lct = 13769.084980472824 lastUT = 39227.366059267537 distanceTraveled = 386823.78073125816 root = 0 lat = -2.2095074248984031E-05 lon = -100.64778976582812 alt = 386751.04272122146 hgt = -1 nrm = -0.792331159,0.00191618502,-0.610088229 rot = -0.370352864,-0.251338869,-0.602452219,0.660847187 CoM = -3.46451998E-07,0.257938564,-1.89431012E-06 stg = 0 prst = False ref = 3951252535 ctrl = True PQSMin = 2 PQSMax = 10 cPch = 0.05999998 cHdg = 0.5100004 cMod = 0 ORBIT { SMA = 1086751.1277715219 ECC = 3.0012320899599932E-07 INC = 2.32094561643728E-05 LPE = 212.95087225717353 LAN = 146.85323618012978 MNA = 1.3085573321488251 EPH = 39227.366059267537 REF = 5 } PART { name = HECS2.ProbeCore cid = 4294315528 uid = 3951252535 mid = 2438749580 persistentId = 1183735111 launchID = 6 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = top, 2 attN = bottom, 1 mass = 0.200000003 shielded = False temp = 5.3935586173808616 tempExt = 7.8914726875712686 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = HECS2.ProbeCore (Dish Sat 2) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceContainer isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { CollectAllAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = Prograde Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 39227.366059267537 ExtraDelay = 0 CmdGuid = a1466ee6-d677-4add-a1a4-d0daae770c74 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin 0 = Orbit,Eve } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 1000 maxAmount = 1000 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryBank cid = 4294308190 uid = 2382020595 mid = 2438749580 persistentId = 4130540769 launchID = 6 parent = 0 position = 0,-0.6108551025390625,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = top, 0 attN = bottom, -1 mass = 0.0500000007 shielded = False temp = 5.5450693657281356 tempExt = 7.4870235242850409 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = batteryBank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 1000 maxAmount = 1000 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RelayAntenna100 cid = 4294298942 uid = 2668653587 mid = 2438749580 persistentId = 1014543460 launchID = 6 parent = 0 position = 0,0.68000030517578125,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 0 mass = 0.649999976 shielded = False temp = 5.3397051792225296 tempExt = 6.5758406691641218 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RelayAntenna100 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 0.99999997620176351 RTOmniRange = 0 RTDishRange = 9.9999998E+10 stagingEnabled = True RTAntennaTarget = 25edaf7a-9ea6-4ede-b9c7-f07c232d483d EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin 0 = Orbit,Eve } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = largeSolarPanel cid = 4294290300 uid = 691156332 mid = 2438749580 persistentId = 1727409624 launchID = 6 parent = 0 position = -0.63296318054199219,-0.01512908935546875,-0.36544156074523926 rotation = -0.683012784,-0.183012694,-0.18301253,0.683012724 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 srfN = srfAttach, 0 mass = 0.300000012 shielded = False temp = 6.3222766940699042 tempExt = 13.754741009907423 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = largeSolarPanel modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 13769.084980472824 currentRotation = (-0.668769121, -0.668738604, -0.229699031, 0.229727939) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = largeSolarPanel cid = 4294290230 uid = 3150682255 mid = 2438749580 persistentId = 75090003 launchID = 6 parent = 0 position = 0.63296324014663696,-0.01512908935546875,0.36544150114059448 rotation = -0.1830125,0.683012724,0.683012784,0.183012664 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 srfN = srfAttach, 0 mass = 0.300000012 shielded = False temp = 6.4333609913680556 tempExt = 13.668934863333723 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = largeSolarPanel modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 13769.084980472824 currentRotation = (0.668773472, 0.668735325, -0.229696095, 0.229727775) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = ksp.r.largeBatteryPack cid = 4294288996 uid = 3894639755 mid = 2438749580 persistentId = 2158216321 launchID = 6 parent = 0 position = -6.3596928612241754E-08,0.014894485473632813,-0.72746407985687256 rotation = 2.38418579E-07,0,0,-1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 6 srfN = srfAttach, 0 mass = 0.0199999996 shielded = False temp = 5.8767460063438515 tempExt = 7.158181218645689 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = ksp.r.largeBatteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 400 maxAmount = 400 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = ksp.r.largeBatteryPack cid = 4294288038 uid = 2025836235 mid = 2438749580 persistentId = 2982053274 launchID = 6 parent = 0 position = 1.2719385722448351E-07,0.014894485473632813,0.72746407985687256 rotation = -1.04216071E-14,-1,-2.38418579E-07,4.37113883E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 5 srfN = srfAttach, 0 mass = 0.0199999996 shielded = False temp = 5.8613192636718141 tempExt = 7.15192359979818 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = ksp.r.largeBatteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 400 maxAmount = 400 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongAntenna2 cid = 4294277094 uid = 2268475683 mid = 2438749580 persistentId = 3120723520 launchID = 6 parent = 0 position = 0.41221100091934204,0.046778678894042969,-0.71397024393081665 rotation = 0.183012784,0.683012545,-0.683012843,0.183012694 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 8 srfN = srfAttach, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 5.4286579342381849 tempExt = 7.3862582521530395 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992120922 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = RTLongAntenna2 cid = 4294274940 uid = 543505901 mid = 2438749580 persistentId = 651904330 launchID = 6 parent = 0 position = -0.41221094131469727,0.046778678894042969,0.71397030353546143 rotation = -0.683012843,0.183012664,-0.183012754,-0.683012545 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 7 srfN = srfAttach, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 5.4004914917005999 tempExt = 7.4552971763217855 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.990993559 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = b5476b8780f74a33ac67b007d39f2566 persistentId = 2137151838 name = Ion Fly type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 55247.793525230372 lct = 13862.964980474873 lastUT = 69110.758505705249 distanceTraveled = 3471344.8126683729 root = 0 lat = 0.0099930374985416383 lon = 98.610809874437862 alt = 759818.03313372051 hgt = -1 nrm = 0.74923408,-0.0222205818,-0.661932826 rot = -0.0682449341,0.572454512,-0.704087555,0.414607435 CoM = -0.000203102827,-0.366827458,-1.04308128E-07 stg = 0 prst = False ref = 1435698314 ctrl = True PQSMin = 2 PQSMax = 10 cPch = 0.2 cHdg = 0.3 cMod = 0 ORBIT { SMA = 1523769.3824505159 ECC = 0.047781267188822661 INC = 0.043304794571003162 LPE = 196.55085968173492 LAN = 241.01943007605922 MNA = -0.48290246212545979 EPH = 44300.132417368572 REF = 5 } PART { name = probeCoreOcto2 cid = 4294098884 uid = 1435698314 mid = 1884621381 persistentId = 2442633440 launchID = 7 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 1 attN = top, 10 mass = 0.0399999991 shielded = False temp = 341.10481288856442 tempExt = 341.01216781217084 tempExtUnexp = 4 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = probeCoreOcto2 (Ion Fly) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 69110.758505705249 ExtraDelay = 0 CmdGuid = b022d1ec-070f-4444-b149-75abc4cec33b } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Eve } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 4.9999750519746184 maxAmount = 5 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = sasModule cid = 4294067978 uid = 2472974589 mid = 1884621381 persistentId = 1689429674 launchID = 7 parent = 0 position = 0,-0.15217304229736328,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 2 attN = top, 0 mass = 0.0500000007 shielded = False temp = 341.10478744539313 tempExt = 340.99048557057722 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = sasModule modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294062730 uid = 1791402537 mid = 1884621381 persistentId = 1307478232 launchID = 7 parent = 1 position = 0,-0.34328460693359375,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 1 attN = bottom, 3 mass = 0.00999999978 shielded = False temp = 341.10465112070546 tempExt = 341.00843477500172 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 199.99900207898472 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryBankMini cid = 4294057640 uid = 3702855949 mid = 1884621381 persistentId = 2944111836 launchID = 7 parent = 2 position = 0,-0.54328536987304688,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 2 attN = bottom, 6 mass = 0.00999999978 shielded = False temp = 341.10464879477496 tempExt = 341.0092978797781 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 199.99900207898472 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = ksp.r.largeBatteryPack cid = 4294022504 uid = 1738456895 mid = 1884621381 persistentId = 3564354352 launchID = 7 parent = 3 position = -0.30501514673233032,-0.51455497741699219,1.8180321248451037E-08 rotation = 4.36340351E-08,0.707106829,-4.36340422E-08,0.707106709 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 5 srfN = srfAttach, 3 mass = 0.0199999996 shielded = False temp = 341.1046809180279 tempExt = 341.04391181970419 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = ksp.r.largeBatteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 399.99800415796943 maxAmount = 400 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = ksp.r.largeBatteryPack cid = 4294021922 uid = 4057611878 mid = 1884621381 persistentId = 1482860084 launchID = 7 parent = 3 position = 0.30501514673233032,-0.51455497741699219,-4.4845592128694989E-08 rotation = -4.36340457E-08,0.70710665,-4.36340315E-08,-0.707106888 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 srfN = srfAttach, 3 mass = 0.0199999996 shielded = False temp = 341.1045979609367 tempExt = 341.01129977133814 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = ksp.r.largeBatteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 399.99800415796943 maxAmount = 400 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = xenonTank cid = 4294002104 uid = 4217163126 mid = 1884621381 persistentId = 2770075896 launchID = 7 parent = 3 position = 0,-0.78375148773193359,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = top, 3 attN = bottom, 7 mass = 0.0240000002 shielded = False temp = 341.10476947041622 tempExt = 341.01129639578727 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = xenonTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = XenonGas amount = 698.20924774757646 maxAmount = 720 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = ionEngine cid = 4293979548 uid = 1279484858 mid = 1884621381 persistentId = 1510456825 launchID = 7 parent = 6 position = 0,-1.1377735137939453,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 0 sqor = 0 sepI = -1 sidx = 0 attm = 0 srfN = , -1 attN = top, 6 attN = bottom, -1 mass = 0.25 shielded = False temp = 341.10483110772583 tempExt = 341.07387824082554 tempExtUnexp = 4 expt = 0.5 state = 1 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = ionEngine modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnginesFX isEnabled = True staged = True flameout = False EngineIgnited = True engineShutdown = False currentThrottle = 0 thrustPercentage = 35 manuallyOverridden = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateThrottle isEnabled = True animState = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = largeSolarPanel cid = 4294051288 uid = 2547496812 mid = 1884621381 persistentId = 1177588759 launchID = 7 parent = 1 position = -2.5985459117805476E-08,-0.086668968200683594,-0.29723900556564331 rotation = 1.26440554E-07,0.707106829,-1.26440554E-07,-0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 9 srfN = srfAttach, 1 mass = 0.300000012 shielded = False temp = 341.10483774164476 tempExt = 341.10920850255638 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = largeSolarPanel modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 13862.964980474873 currentRotation = (-0.653751135, -0.653471887, 0.269791514, -0.269808352) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = largeSolarPanel cid = 4294050018 uid = 3575892265 mid = 1884621381 persistentId = 2714523645 launchID = 7 parent = 1 position = 5.1970918235610952E-08,-0.086668968200683594,0.29723900556564331 rotation = -1.26440554E-07,-0.707106888,-1.26440554E-07,-0.707106769 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 8 srfN = srfAttach, 1 mass = 0.300000012 shielded = False temp = 341.10484213468902 tempExt = 341.1164404855478 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = largeSolarPanel modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 13862.964980474873 currentRotation = (0.269720852, 0.269704252, -0.653654754, 0.653640449) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294065540 uid = 1722574213 mid = 1884621381 persistentId = 1625257184 launchID = 7 parent = 0 position = 0,0.16106224060058594,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 11 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 341.1045435437137 tempExt = 340.98618746797422 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 199.99900207898472 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryBankMini cid = 4294060450 uid = 3857071812 mid = 1884621381 persistentId = 395152516 launchID = 7 parent = 10 position = 0,0.36106300354003906,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 12 attN = bottom, 10 mass = 0.00999999978 shielded = False temp = 341.10453806164742 tempExt = 341.00901027738939 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 199.99900207898472 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongAntenna2 cid = 4294035534 uid = 1071351545 mid = 1884621381 persistentId = 3517997451 launchID = 7 parent = 11 position = 0,0.46106338500976563,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 11 mass = 0.00999999978 shielded = False temp = 341.10475387367643 tempExt = 341.05059799698995 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992237091 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = ksp.r.largeBatteryPack cid = 4294024394 uid = 1347879053 mid = 1884621381 persistentId = 2910411654 launchID = 7 parent = 10 position = -0.30527624487876892,0.17210197448730469,1.8195883910721022E-08 rotation = -4.36340422E-08,0.707106829,4.36340422E-08,0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 14 srfN = srfAttach, 10 mass = 0.0199999996 shielded = False temp = 341.10458896451217 tempExt = 341.00809292138041 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = ksp.r.largeBatteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 399.99800415796943 maxAmount = 400 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = ksp.r.largeBatteryPack cid = 4294023682 uid = 3659105044 mid = 1884621381 persistentId = 2161250635 launchID = 7 parent = 10 position = 0.30527624487876892,0.17210197448730469,-4.4883979199994428E-08 rotation = 4.36340457E-08,0.707106769,4.36340386E-08,-0.707106888 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 13 srfN = srfAttach, 10 mass = 0.0199999996 shielded = False temp = 341.10458896451217 tempExt = 341.00809292138041 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = ksp.r.largeBatteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 399.99800415796943 maxAmount = 400 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } ACTIONGROUPS { Stage = True, 25433.350412691 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 29902.9395667691 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = 1d4da5ef4ab646609ebd5dc27e5337aa persistentId = 2137151838 name = Ion Fly type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 26444.209463249612 lct = 17914.222954109628 lastUT = 44358.452417359236 distanceTraveled = 1005582.106052356 root = 0 lat = -0.29003025177330621 lon = -84.56924182446943 alt = 987552.86052434728 hgt = -1 nrm = 0.0595508218,-0.996931553,-0.0508066714 rot = 0.648340106,-0.297083706,-0.287837267,0.63917613 CoM = 3.65078449E-07,-0.372412503,-3.87430191E-07 stg = 0 prst = False ref = 1654616657 ctrl = True PQSMin = 2 PQSMax = 10 cPch = 0.444 cHdg = 2.064 cMod = 0 ORBIT { SMA = 1555748.025228244 ECC = 0.020702960694518768 INC = 0.8530578285863939 LPE = 28.769074948551538 LAN = 186.59855708299088 MNA = 2.9798944627890704 EPH = 44358.452417359236 REF = 1 } PART { name = probeCoreOcto2 cid = 4294098884 uid = 1654616657 mid = 2059472186 persistentId = 2448200539 launchID = 8 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 1 attN = top, 10 mass = 0.0399999991 shielded = False temp = 268.27566436761089 tempExt = 268.27125399894561 tempExtUnexp = 4 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = probeCoreOcto2 (Ion Fly) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 44358.452417359236 ExtraDelay = 0 CmdGuid = cc55c6fe-63dc-4641-9fba-c20ad68d80f0 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 4.9999750519746184 maxAmount = 5 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = sasModule cid = 4294067978 uid = 2630424578 mid = 2059472186 persistentId = 4089518121 launchID = 8 parent = 0 position = 0,-0.15217304229736328,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 2 attN = top, 0 mass = 0.0500000007 shielded = False temp = 268.30031423975498 tempExt = 268.566074927415 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = sasModule modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294062730 uid = 3360371213 mid = 2059472186 persistentId = 3828825837 launchID = 8 parent = 1 position = 0,-0.34328460693359375,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 1 attN = bottom, 3 mass = 0.00999999978 shielded = False temp = 268.28976891975304 tempExt = 268.30131131807855 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 199.99900207898472 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryBankMini cid = 4294057640 uid = 2291067029 mid = 2059472186 persistentId = 1511461284 launchID = 8 parent = 2 position = 0,-0.54328536987304688,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 2 attN = bottom, 6 mass = 0.00999999978 shielded = False temp = 268.24962375340863 tempExt = 268.1544769691418 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 199.99900207898472 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = ksp.r.largeBatteryPack cid = 4294022504 uid = 3566130886 mid = 2059472186 persistentId = 1010968318 launchID = 8 parent = 3 position = -0.30501514673233032,-0.51455497741699219,1.8180321248451037E-08 rotation = 4.36340351E-08,0.707106829,-4.36340422E-08,0.707106709 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 5 srfN = srfAttach, 3 mass = 0.0199999996 shielded = False temp = 268.23783503878531 tempExt = 268.17130992061004 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = ksp.r.largeBatteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 399.99800415796943 maxAmount = 400 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = ksp.r.largeBatteryPack cid = 4294021922 uid = 3461207658 mid = 2059472186 persistentId = 876994945 launchID = 8 parent = 3 position = 0.30501514673233032,-0.51455497741699219,-4.4845592128694989E-08 rotation = -4.36340457E-08,0.70710665,-4.36340315E-08,-0.707106888 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 srfN = srfAttach, 3 mass = 0.0199999996 shielded = False temp = 268.23192776813454 tempExt = 268.11056514042463 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = ksp.r.largeBatteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 399.99800415796943 maxAmount = 400 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = xenonTank cid = 4294002104 uid = 800052033 mid = 2059472186 persistentId = 2331932747 launchID = 8 parent = 3 position = 0,-0.78375148773193359,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = top, 3 attN = bottom, 7 mass = 0.0240000002 shielded = False temp = 268.28883532877813 tempExt = 268.28580375333752 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = xenonTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = XenonGas amount = 710.74594020744166 maxAmount = 720 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = ionEngine cid = 4293979548 uid = 1325859879 mid = 2059472186 persistentId = 2853018656 launchID = 8 parent = 6 position = 0,-1.1377735137939453,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 0 sqor = 0 sepI = -1 sidx = 0 attm = 0 srfN = , -1 attN = top, 6 attN = bottom, -1 mass = 0.25 shielded = False temp = 268.31233185165456 tempExt = 268.43560742917009 tempExtUnexp = 4 expt = 0.5 state = 1 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = ionEngine modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnginesFX isEnabled = True staged = True flameout = False EngineIgnited = True engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateThrottle isEnabled = True animState = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = largeSolarPanel cid = 4294051288 uid = 2566741610 mid = 2059472186 persistentId = 3230103747 launchID = 8 parent = 1 position = -2.5985459117805476E-08,-0.086668968200683594,-0.29723900556564331 rotation = 1.26440554E-07,0.707106829,-1.26440554E-07,-0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 9 srfN = srfAttach, 1 mass = 0.300000012 shielded = False temp = 268.34758139785453 tempExt = 269.41450352039652 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = largeSolarPanel modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 17914.222954109628 currentRotation = (0.439314872, 0.439220995, -0.554174304, 0.554056168) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = largeSolarPanel cid = 4294050018 uid = 1606986941 mid = 2059472186 persistentId = 536953791 launchID = 8 parent = 1 position = 5.1970918235610952E-08,-0.086668968200683594,0.29723900556564331 rotation = -1.26440554E-07,-0.707106888,-1.26440554E-07,-0.707106769 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 8 srfN = srfAttach, 1 mass = 0.300000012 shielded = False temp = 268.35406104693328 tempExt = 269.5666284688383 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = largeSolarPanel modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 17914.222954109628 currentRotation = (-0.554172158, -0.554049909, 0.439338773, -0.439207554) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294065540 uid = 3485790154 mid = 2059472186 persistentId = 3345205457 launchID = 8 parent = 0 position = 0,0.16106224060058594,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 11 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 268.23912005982129 tempExt = 268.11849326590027 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 199.99900207898472 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryBankMini cid = 4294060450 uid = 2347785552 mid = 2059472186 persistentId = 3915465762 launchID = 8 parent = 10 position = 0,0.36106300354003906,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 12 attN = bottom, 10 mass = 0.00999999978 shielded = False temp = 268.2235919239767 tempExt = 268.10037235407719 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 199.99900207898472 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongAntenna2 cid = 4294035534 uid = 93242623 mid = 2059472186 persistentId = 731069808 launchID = 8 parent = 11 position = 0,0.46106338500976563,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 11 mass = 0.00999999978 shielded = False temp = 268.22655480176604 tempExt = 268.09725853467097 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992763817 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = ksp.r.largeBatteryPack cid = 4294024394 uid = 3584765472 mid = 2059472186 persistentId = 3822591736 launchID = 8 parent = 10 position = -0.30527624487876892,0.17210197448730469,1.8195883910721022E-08 rotation = -4.36340422E-08,0.707106829,4.36340422E-08,0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 14 srfN = srfAttach, 10 mass = 0.0199999996 shielded = False temp = 268.22611941110551 tempExt = 268.10320818149933 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = ksp.r.largeBatteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 399.99800415796943 maxAmount = 400 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = ksp.r.largeBatteryPack cid = 4294023682 uid = 2662594457 mid = 2059472186 persistentId = 4228192607 launchID = 8 parent = 10 position = 0.30527624487876892,0.17210197448730469,-4.4883979199994428E-08 rotation = 4.36340457E-08,0.707106769,4.36340386E-08,-0.707106888 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 13 srfN = srfAttach, 10 mass = 0.0199999996 shielded = False temp = 268.22556567791662 tempExt = 268.09639542792365 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = ksp.r.largeBatteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 399.99800415796943 maxAmount = 400 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } ACTIONGROUPS { Stage = True, 18279.8424658363 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 36151.7903602047 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = be95bd1715024f97ad627d4ba43e3798 persistentId = 4228053467 name = Car Probe type = Probe sit = LANDED landed = True skipGroundPositioning = False vesselSpawning = True launchedFrom = Island_Airfield landedAt = displaylandedAt = splashed = False met = 5.2000000001135049 lct = 19885.976162147555 lastUT = 19891.176162147669 distanceTraveled = 0.80030030963377696 root = 0 lat = -1.6372648188393926 lon = -71.858202740109405 alt = 383.45086004317272 hgt = 0.404596984 nrm = -0.0732953548,0.0907278955,0.993174791 rot = -0.906168103,-0.32152468,-0.264262557,0.0751445144 CoM = 9.29086673E-06,-0.000116527081,0.250459015 stg = 0 prst = False ref = 0 ctrl = False PQSMin = 2 PQSMax = 10 cPch = 0 cHdg = 0 cMod = -1 ORBIT { SMA = NaN ECC = 1 INC = 1.6372568533091487 LPE = 90 LAN = 124.89073772419385 MNA = 0 EPH = 97974.996559813808 REF = 1 } PART { name = trussPiece1x cid = 4293439466 uid = 2060574425 mid = 783328621 persistentId = 1334143243 launchID = 9 parent = 0 position = 0,0,0 rotation = 0,0,0,1.00000048 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, -1 attN = top, -1 mass = 0.125 shielded = False temp = 309.74263828333625 tempExt = 309.63225434760642 tempExtUnexp = 309.63199087667795 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = trussPiece1x modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = wheelMed cid = 4293422116 uid = 2845574867 mid = 783328621 persistentId = 2665563466 launchID = 9 parent = 0 position = 0.30000001192092896,1.0728836059570313E-06,0.30000019073486328 rotation = 4.21468656E-08,-0.707107127,0.707107127,0 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 2 srfN = srfAttach, 0 mass = 0.104999997 shielded = False temp = 309.74111063965665 tempExt = 309.76122263517516 tempExtUnexp = 309.7608632986433 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = ForceHeaviest rigidAttachment = False flag = Squad/Flags/trippy rTrf = wheelMed modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = False autoFriction = True frictionMultiplier = 0.999590039 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 suspensionPos = (-0.746000886, -0.280502319, 0.00200268766) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100.017082 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 100 brakeInput = 0 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = wheelMed cid = 4293421690 uid = 2582248297 mid = 783328621 persistentId = 2216561089 launchID = 9 parent = 0 position = -0.30000001192092896,1.5497207641601563E-06,0.30000019073486328 rotation = 0.707107127,-3.09086232E-08,7.30554817E-08,-0.707107127 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 srfN = srfAttach, 0 mass = 0.104999997 shielded = False temp = 309.7408710167241 tempExt = 309.77047018390562 tempExtUnexp = 309.76998856979003 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = ForceHeaviest rigidAttachment = False flag = Squad/Flags/trippy rTrf = wheelMed modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = False autoFriction = True frictionMultiplier = 0.999590039 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 suspensionPos = (-0.746002078, -0.280499697, 0.00200215075) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100.017082 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 100 brakeInput = 0 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = True, 19878.1561621474 Brakes = False, 19813.476162146 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = -1 yaw = -1 roll = -1 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = None canComm = False } } } VESSEL { pid = 1c4d33e37c324d0a8179c9505d0a7098 persistentId = 2004793707 name = Omni 5Mm Range type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 22705.62063526949 lct = 20365.116162158014 lastUT = 43070.736797427504 distanceTraveled = 25889.112289519959 root = 0 lat = -1.8068348187123739E-07 lon = 90.623701044347285 alt = 5086750.002246459 hgt = -1 nrm = 0.857433319,-4.54751614E-08,0.514595151 rot = -0.487904578,1.89513525E-08,-0.872896969,1.58298121E-08 CoM = -1.63061264E-09,-0.0191666912,-8.67381444E-11 stg = 0 prst = False ref = 3782348682 ctrl = True PQSMin = 2 PQSMax = 10 cPch = -0.116 cHdg = 1.758 cMod = 0 ORBIT { SMA = 5686750.0003737658 ECC = 3.3234754603823995E-10 INC = 0 LPE = 262.26785585683785 LAN = 90.131149206697671 MNA = -3.0062417272184025 EPH = 43070.736797427504 REF = 1 } PART { name = probeCoreHex cid = 4293545588 uid = 3782348682 mid = 3648327423 persistentId = 4059824953 launchID = 10 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 8 attN = top, 1 mass = 0.100000001 shielded = False temp = 58.368611350067496 tempExt = 58.368157807674322 tempExtUnexp = 4 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = probeCoreHex (Omni 5Mm Range) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Running stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 43070.736797427504 ExtraDelay = 0 CmdGuid = 149154ec-7c1f-4ffb-a537-f0ed6ba24cc0 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 9.8821396907430454 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongAntenna2 cid = 4293524740 uid = 4165638750 mid = 3648327423 persistentId = 3100939162 launchID = 10 parent = 0 position = 0,0.1875,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 58.368611350067496 tempExt = 58.368699796810716 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.991799891 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4293519790 uid = 428841059 mid = 3648327423 persistentId = 1530555204 launchID = 10 parent = 0 position = -0.34126073122024536,-0.013037681579589844,2.0340726436529621E-08 rotation = 0,-0.707106829,0,0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 58.368611350067496 tempExt = 58.367830728092336 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 20365.116162158014 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4293519566 uid = 465774940 mid = 3648327423 persistentId = 1402412981 launchID = 10 parent = 0 position = -0.17063035070896149,-0.013037681579589844,0.29554048180580139 rotation = 0,-0.258819044,0,0.965925872 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 2 sym = 4 sym = 5 sym = 6 sym = 7 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 58.368611350067496 tempExt = 58.367830728092336 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 20365.116162158014 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4293519534 uid = 2782892379 mid = 3648327423 persistentId = 2726404209 launchID = 10 parent = 0 position = 0.17063042521476746,-0.013037681579589844,0.295540452003479 rotation = 0,0.258819103,0,0.965925872 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 2 sym = 3 sym = 5 sym = 6 sym = 7 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 58.368611350067496 tempExt = 58.367830728092336 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 20365.116162158014 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4293519502 uid = 3143719152 mid = 3648327423 persistentId = 2354692141 launchID = 10 parent = 0 position = 0.34126073122024536,-0.013037681579589844,-5.0174687515891492E-08 rotation = 0,0.707106888,0,0.707106769 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 2 sym = 3 sym = 4 sym = 6 sym = 7 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 58.368611350067496 tempExt = 58.367830728092336 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 20365.116162158014 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4293519470 uid = 1446776602 mid = 3648327423 persistentId = 2792303253 launchID = 10 parent = 0 position = 0.17063035070896149,-0.013037681579589844,-0.29554051160812378 rotation = 0,0.965925872,0,0.258819014 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 7 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 58.368611350067496 tempExt = 58.367830728092336 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 20365.116162158014 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4293519438 uid = 128047453 mid = 3648327423 persistentId = 2241178736 launchID = 10 parent = 0 position = -0.17063033580780029,-0.013037681579589844,-0.29554048180580139 rotation = 0,0.965925872,0,-0.258819014 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 58.368611350067496 tempExt = 58.367830728092336 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 20365.116162158014 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4293517676 uid = 986830894 mid = 3648327423 persistentId = 3751334898 launchID = 10 parent = 0 position = 0,-0.28750038146972656,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 58.368611350067496 tempExt = 58.367914960403048 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 197.6427938148635 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = True, 25280.6704126877 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 2.43330732E-07 yaw = 0 roll = 1.72178454E-06 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = 2766c07b3b7146f48f05bd626b5c0490 persistentId = 2356625332 name = Disk 20Mm Range type = Relay sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 3613.8790869274235 lct = 20427.276162159371 lastUT = 24041.155249086794 distanceTraveled = 40757.526045992861 root = 0 lat = 8.9835857051101199E-09 lon = -127.62610024291759 alt = 20086749.811012838 hgt = -1 nrm = -0.765972614,0.642784715,-0.0106576681 rot = -0.702847302,-0.070892103,-0.0815263465,0.703088522 CoM = 6.14672899E-08,0.0175000578,-1.76951289E-08 stg = 0 prst = False ref = 3905085457 ctrl = True PQSMin = 2 PQSMax = 10 cPch = 0.614 cHdg = 3.666001 cMod = 0 ORBIT { SMA = 20686749.644963857 ECC = 1.1898038556161146E-08 INC = 0 LPE = 226.13928295463657 LAN = 273.94319703827182 MNA = -2.3750838377114238 EPH = 24041.155249086794 REF = 1 } PART { name = probeCoreOcto cid = 4293429552 uid = 3905085457 mid = 3126511549 persistentId = 3695585115 launchID = 11 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 1 attN = top, 6 mass = 0.100000001 shielded = False temp = 278.84212763430435 tempExt = 278.69099943293566 tempExtUnexp = 4 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = probeCoreOcto (Disk 20Mm Range) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 600 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 24041.155249086794 ExtraDelay = 0 CmdGuid = 5b45b55d-acbd-44ff-8f16-cbc4d16a3d68 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryBankMini cid = 4293422684 uid = 1080604199 mid = 3126511549 persistentId = 2113704616 launchID = 11 parent = 0 position = 0,-0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 278.47837479750422 tempExt = 278.17481289841442 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = SurfAntenna cid = 4293400802 uid = 2313773998 mid = 3126511549 persistentId = 397050771 launchID = 11 parent = 1 position = -0.24930369853973389,-0.29058456420898438,-0.24930368363857269 rotation = -0.270598114,0.653281391,-0.653281569,-0.270598024 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 srfN = srfAttach, 1 mass = 0.0149999997 shielded = False temp = 278.77145661097421 tempExt = 278.52974401032287 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = SurfAntenna modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 1500000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4293418600 uid = 2569933667 mid = 3126511549 persistentId = 961141384 launchID = 11 parent = 0 position = -0.34376990795135498,-0.030236244201660156,2.0490285024266086E-08 rotation = 0,-8.42937027E-08,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 srfN = srfAttach, 0 mass = 0.0175000001 shielded = False temp = 278.84363560343803 tempExt = 278.76833852306197 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 20427.276162159371 currentRotation = (-0.504687071, -0.504629135, -0.495233774, 0.495362461) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4293416740 uid = 1795708790 mid = 3126511549 persistentId = 2146113668 launchID = 11 parent = 0 position = 0.17188501358032227,-0.030236244201660156,0.29771345853805542 rotation = 0,0.866025388,0,0.50000006 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 5 srfN = srfAttach, 0 mass = 0.0175000001 shielded = False temp = 279.03939893691842 tempExt = 279.61923855070211 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 20427.276162159371 currentRotation = (-0.662101626, -0.66207546, -0.248256862, 0.248286247) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4293416636 uid = 2390231103 mid = 3126511549 persistentId = 4279543905 launchID = 11 parent = 0 position = 0.1718849390745163,-0.030236244201660156,-0.2977135181427002 rotation = 0,0.866025448,0,-0.5 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 srfN = srfAttach, 0 mass = 0.0175000001 shielded = False temp = 279.04665631252476 tempExt = 279.6564767633273 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 20427.276162159371 currentRotation = (-0.245655984, -0.245626986, -0.663069427, 0.663068295) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = HighGainAntenna5 cid = 4293370512 uid = 464725473 mid = 3126511549 persistentId = 2788684888 launchID = 11 parent = 0 position = 0,0.18708133697509766,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 0 mass = 0.0700000003 shielded = False temp = 278.88847681697018 tempExt = 278.98867487693576 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = HighGainAntenna5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.993512809 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 0.70710678118654757 RTOmniRange = 0 RTDishRange = 20000000 stagingEnabled = True RTAntennaTarget = 5105f5a9-d628-41c6-ad4b-21154e8fc488 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = db925e370aa44f99b635bc996fc5a08c persistentId = 3670179945 name = Dish 75Mm Range type = Relay sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 74.940000001635781 lct = 20648.216162164194 lastUT = 20723.156162165829 distanceTraveled = 12289.593275127274 root = 0 lat = 5.6771850905316936E-11 lon = -76.195885557522701 alt = 75086749.945341736 hgt = -1 nrm = -0.00521743298,0.999985576,0.0013589263 rot = -0.702125311,-0.0858237743,-0.0877863318,0.701390028 CoM = 5.58793545E-09,0.0546398461,1.11758709E-08 stg = 0 prst = False ref = 3996511245 ctrl = True PQSMin = 2 PQSMax = 10 cPch = 0.1439925 cHdg = -4.294436 cMod = 0 ORBIT { SMA = 75686749.999971718 ECC = 5.3071661346108921E-13 INC = 0 LPE = 103.67626581672791 LAN = 359.3560720728795 MNA = -1.7982422873883019 EPH = 20723.156162165829 REF = 1 } PART { name = probeCoreOcto cid = 4293289628 uid = 3996511245 mid = 1605957004 persistentId = 557880037 launchID = 12 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 1 attN = top, 7 mass = 0.100000001 shielded = False temp = 305.51440544873338 tempExt = 303.32245921722432 tempExtUnexp = 4 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = probeCoreOcto modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 20723.156162165829 ExtraDelay = 0 CmdGuid = e58d1c90-18ce-4b5b-add9-fee85ff677b1 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryBankMini cid = 4293283982 uid = 3213778229 mid = 1605957004 persistentId = 108499029 launchID = 12 parent = 0 position = 0,-0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 305.47697519692986 tempExt = 304.50020758324951 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = SurfAntenna cid = 4293264894 uid = 2210396763 mid = 1605957004 persistentId = 3945545355 launchID = 12 parent = 1 position = -0.24960266053676605,-0.2720947265625,0.24960263073444366 rotation = 0.653281391,-0.270598114,0.270598024,0.653281569 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 srfN = srfAttach, 1 mass = 0.0149999997 shielded = False temp = 305.52173943279661 tempExt = 304.57196060062415 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = SurfAntenna modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 1500000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = solarPanels3 cid = 4293282140 uid = 2121257940 mid = 1605957004 persistentId = 4146140515 launchID = 12 parent = 0 position = -0.34579005837440491,-0.029063224792480469,2.0610695372624832E-08 rotation = 0,-8.42937027E-08,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 srfN = srfAttach, 0 mass = 0.0175000001 shielded = False temp = 305.09827516090888 tempExt = 302.4968294858287 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels3 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 20648.216162164194 currentRotation = (-0.707093894, 0.000474333705, -0.000499069632, 0.707119465) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels3 cid = 4293281096 uid = 1829510989 mid = 1605957004 persistentId = 1759594078 launchID = 12 parent = 0 position = 5.4786366314116004E-16,-0.029063224792480469,0.34579002857208252 rotation = 0,0.707106709,0,0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 5 sym = 6 srfN = srfAttach, 0 mass = 0.0175000001 shielded = False temp = 305.18188514581851 tempExt = 302.76991493524832 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels3 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 20648.216162164194 currentRotation = (-0.70709163, 0.00261068321, -0.00260630227, 0.707112312) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels3 cid = 4293280992 uid = 174443190 mid = 1605957004 persistentId = 2697723898 launchID = 12 parent = 0 position = 0.34579005837440491,-0.029063224792480469,-5.0840622378700573E-08 rotation = 0,1,0,4.05823144E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 6 srfN = srfAttach, 0 mass = 0.0175000001 shielded = False temp = 305.26282976871278 tempExt = 303.00239781609713 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels3 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 20648.216162164194 currentRotation = (-0.707107902, -0.000495076121, 0.000476539077, 0.707105458) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels3 cid = 4293280888 uid = 994184770 mid = 1605957004 persistentId = 2808831822 launchID = 12 parent = 0 position = -4.1221387192535985E-08,-0.029063224792480469,-0.34579002857208252 rotation = 0,0.707106829,0,-0.707106709 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 srfN = srfAttach, 0 mass = 0.0175000001 shielded = False temp = 305.17511506932618 tempExt = 302.74914764213645 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels3 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 20648.216162164194 currentRotation = (-0.707092404, -0.00260862708, 0.00260847807, 0.707111597) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = RelayAntenna5 cid = 4293238374 uid = 2947424575 mid = 1605957004 persistentId = 1280768509 launchID = 12 parent = 0 position = 0,0.18708133697509766,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 0 mass = 0.150000006 shielded = False temp = 305.62803334351941 tempExt = 304.95488534386544 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RelayAntenna5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 0.99405633822231965 RTOmniRange = 0 RTDishRange = 200000000 stagingEnabled = True RTAntennaTarget = 5105f5a9-d628-41c6-ad4b-21154e8fc488 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = 297fe000ed994f10bd79891e32454dd1 persistentId = 2474835671 name = Test type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 43800.98303644605 lct = 30369.459566779329 lastUT = 74170.442603225383 distanceTraveled = 1134521.9055490349 root = 0 lat = 6.7110320195184914E-05 lon = 103.78752997937796 alt = 1086760.7596352561 hgt = -1 nrm = 0.247270286,0.548406363,0.798816681 rot = 0.243320048,-0.0327748992,0.581195533,0.775843382 CoM = -7.78436661E-05,-9.00022602,-8.29696655E-05 stg = 0 prst = False ref = 231132704 ctrl = True PQSMin = 2 PQSMax = 10 cPch = 0.106 cHdg = 0.1920001 cMod = 0 ORBIT { SMA = 1686750.1201652326 ECC = 8.7284283480608433E-06 INC = 4.0945545664670373E-06 LPE = 341.44414386324098 LAN = 258.6248740364756 MNA = 1.9686020583222155 EPH = 74170.442603225383 REF = 1 } PART { name = probeCoreOcto cid = 4294717904 uid = 231132704 mid = 19728819 persistentId = 412865180 launchID = 15 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 2 attN = top, 1 mass = 0.100000001 shielded = False temp = 251.57319649431753 tempExt = 251.57235857441063 tempExtUnexp = 4 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = probeCoreOcto (Test) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Running stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = Prograde Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 74170.442603225383 ExtraDelay = 0 CmdGuid = a0846644-08b8-418b-b488-8c6bcd052ae2 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 9.9904005919980374 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongAntenna2 cid = 4294577308 uid = 2914291001 mid = 19728819 persistentId = 2037573375 launchID = 15 parent = 0 position = 0,0.18708229064941406,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 251.57438349465451 tempExt = 251.68245560867524 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992684841 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = asasmodule1-2 cid = 4294563866 uid = 3880124867 mid = 19728819 persistentId = 1701333234 launchID = 15 parent = 0 position = 0,-0.43708229064941406,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = top, 0 attN = bottom, 3 mass = 0.200000003 shielded = False temp = 251.57989749012359 tempExt = 251.84173331495427 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = asasmodule1-2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Disabled stagingEnabled = True WheelState = Disabled EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = RCSTank1-2 cid = 4294624986 uid = 4282661226 mid = 19728819 persistentId = 346507045 launchID = 15 parent = 2 position = 0,-1.1870822906494141,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = top, 2 attN = bottom, 4 mass = 0.400000006 shielded = False temp = 251.57268311210549 tempExt = 251.46901034676716 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RCSTank1-2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = False stagingEnabled = True selectedVariant = YellowAndWhite EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } RESOURCE { name = MonoPropellant amount = 642.01754342357935 maxAmount = 750 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = Size3LargeTank cid = 4294635598 uid = 3110606262 mid = 19728819 persistentId = 3784881296 launchID = 15 parent = 3 position = 0,-5.4270820617675781,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 3 attN = bottom, 5 mass = 9 shielded = False temp = 251.57271477330545 tempExt = 251.58188772430699 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = Size3LargeTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 6480 maxAmount = 6480 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 7920 maxAmount = 7920 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = Size3LargeTank cid = 4294612018 uid = 2558682348 mid = 19728819 persistentId = 2166356835 launchID = 15 parent = 4 position = 0,-12.907081604003906,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 4 attN = bottom, -1 mass = 9 shielded = False temp = 251.57271485288243 tempExt = 251.58173817707245 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = Size3LargeTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 6480 maxAmount = 6480 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 7920 maxAmount = 7920 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = linearRcs cid = 4294604238 uid = 3368917101 mid = 19728819 persistentId = 1539562967 launchID = 15 parent = 5 position = -1.3116635084152222,-16.261707305908203,-1.3116633892059326 rotation = -0.270598084,0.653281391,-0.653281569,-0.270598024 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 7 sym = 8 sym = 9 srfN = srfAttach, 5 mass = 0.0299999993 shielded = False temp = 251.57234157267067 tempExt = 251.46691490973691 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = linearRcs modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = linearRcs cid = 4294604004 uid = 1866540068 mid = 19728819 persistentId = 3189619762 launchID = 15 parent = 5 position = -1.3116633892059326,-16.261707305908203,1.3116633892059326 rotation = -0.653281569,0.270597994,-0.270598084,-0.653281391 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 6 sym = 8 sym = 9 srfN = srfAttach, 5 mass = 0.0299999993 shielded = False temp = 251.57233783951736 tempExt = 251.46691429772014 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = linearRcs modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = linearRcs cid = 4294603950 uid = 3950771493 mid = 19728819 persistentId = 61832064 launchID = 15 parent = 5 position = 1.3116636276245117,-16.261707305908203,1.3116633892059326 rotation = -0.653281569,-0.270598054,0.270598114,-0.653281391 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 6 sym = 7 sym = 9 srfN = srfAttach, 5 mass = 0.0299999993 shielded = False temp = 251.57232365757423 tempExt = 251.46691262420495 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = linearRcs modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = linearRcs cid = 4294603896 uid = 3893222525 mid = 19728819 persistentId = 2401756630 launchID = 15 parent = 5 position = 1.3116632699966431,-16.261707305908203,-1.3116633892059326 rotation = -0.270598084,-0.653281391,0.653281569,-0.270597994 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 5 mass = 0.0299999993 shielded = False temp = 251.57232363426039 tempExt = 251.46691261930761 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = linearRcs modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = linearRcs cid = 4294602098 uid = 3784877196 mid = 19728819 persistentId = 2861321682 launchID = 15 parent = 4 position = -1.3075780868530273,-2.0201892852783203,-1.3075778484344482 rotation = -0.270598084,0.653281391,-0.653281569,-0.270598024 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 11 sym = 12 sym = 13 srfN = srfAttach, 4 mass = 0.0299999993 shielded = False temp = 251.57232361086551 tempExt = 251.46692674397198 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = linearRcs modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = linearRcs cid = 4294601308 uid = 3558129112 mid = 19728819 persistentId = 2733194913 launchID = 15 parent = 4 position = -1.3075778484344482,-2.0201892852783203,1.3075780868530273 rotation = -0.653281569,0.270597994,-0.270598084,-0.653281391 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 10 sym = 12 sym = 13 srfN = srfAttach, 4 mass = 0.0299999993 shielded = False temp = 251.57232358754808 tempExt = 251.46692673907415 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = linearRcs modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = linearRcs cid = 4294601254 uid = 1970008974 mid = 19728819 persistentId = 3222515279 launchID = 15 parent = 4 position = 1.3075782060623169,-2.0201892852783203,1.3075778484344482 rotation = -0.653281569,-0.270598054,0.270598114,-0.653281391 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 10 sym = 11 sym = 13 srfN = srfAttach, 4 mass = 0.0299999993 shielded = False temp = 251.5723415234352 tempExt = 251.46692902855372 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = linearRcs modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = linearRcs cid = 4294601200 uid = 1009586861 mid = 19728819 persistentId = 1263786620 launchID = 15 parent = 4 position = 1.3075777292251587,-2.0201892852783203,-1.3075780868530273 rotation = -0.270598084,-0.653281391,0.653281569,-0.270597994 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 10 sym = 11 sym = 12 srfN = srfAttach, 4 mass = 0.0299999993 shielded = False temp = 251.57233779479554 tempExt = 251.46692841770547 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = linearRcs modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = ksp.r.largeBatteryPack cid = 4294595810 uid = 2983794066 mid = 19728819 persistentId = 1031531179 launchID = 15 parent = 3 position = 0,-1.1760444641113281,1.2088468074798584 rotation = 0,1,0,0 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 15 sym = 16 sym = 17 srfN = srfAttach, 3 mass = 0.0199999996 shielded = False temp = 251.56892582912462 tempExt = 251.4115290524079 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = ksp.r.largeBatteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 399.61602367992094 maxAmount = 400 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = ksp.r.largeBatteryPack cid = 4294595254 uid = 425139836 mid = 19728819 persistentId = 3981533294 launchID = 15 parent = 3 position = 1.2088466882705688,-1.1760444641113281,7.4505805969238281E-08 rotation = 0,0.707106829,0,-0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 14 sym = 16 sym = 17 srfN = srfAttach, 3 mass = 0.0199999996 shielded = False temp = 251.56892582912462 tempExt = 251.4115290524079 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = ksp.r.largeBatteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 399.61602367992094 maxAmount = 400 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = ksp.r.largeBatteryPack cid = 4294595228 uid = 1027781136 mid = 19728819 persistentId = 2681132978 launchID = 15 parent = 3 position = -1.0430812835693359E-07,-1.1760444641113281,-1.2088468074798584 rotation = 0,-4.37113883E-08,0,-1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 14 sym = 15 sym = 17 srfN = srfAttach, 3 mass = 0.0199999996 shielded = False temp = 251.56892582912462 tempExt = 251.4115290524079 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = ksp.r.largeBatteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 399.61602367992094 maxAmount = 400 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = ksp.r.largeBatteryPack cid = 4294595202 uid = 2508048487 mid = 19728819 persistentId = 1123294309 launchID = 15 parent = 3 position = -1.2088466882705688,-1.1760444641113281,7.4505805969238281E-08 rotation = 0,-0.707106829,0,-0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 14 sym = 15 sym = 16 srfN = srfAttach, 3 mass = 0.0199999996 shielded = False temp = 251.56892582912462 tempExt = 251.4115290524079 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = ksp.r.largeBatteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 399.61602367992094 maxAmount = 400 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = solarPanels4 cid = 4294590474 uid = 2039035854 mid = 19728819 persistentId = 3049619477 launchID = 15 parent = 3 position = -0.87116402387619019,-1.0939006805419922,0.87116390466690063 rotation = 0,0.382683456,0,0.923879623 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 19 sym = 20 sym = 21 srfN = srfAttach, 3 mass = 0.0175000001 shielded = False temp = 251.57520043173733 tempExt = 251.84977824364205 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 30369.459566779329 currentRotation = (-0.221179813, -0.221155778, 0.671652913, -0.671604037) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = Custom01 wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294589130 uid = 3676539180 mid = 19728819 persistentId = 155474495 launchID = 15 parent = 3 position = 0.87116378545761108,-1.0939006805419922,0.87116402387619019 rotation = 0,0.923879564,0,0.382683456 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 18 sym = 20 sym = 21 srfN = srfAttach, 3 mass = 0.0175000001 shielded = False temp = 251.57519434149734 tempExt = 251.84308542472601 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 30369.459566779329 currentRotation = (0.66019094, 0.660191178, -0.253278047, 0.253270149) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = Custom01 wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294589026 uid = 3880063737 mid = 19728819 persistentId = 3036463390 launchID = 15 parent = 3 position = 0.87116396427154541,-1.0939006805419922,-0.87116390466690063 rotation = 0,0.923879564,0,-0.382683456 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 18 sym = 19 sym = 21 srfN = srfAttach, 3 mass = 0.0175000001 shielded = False temp = 251.57228403526994 tempExt = 251.52431568079803 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 30369.459566779329 currentRotation = (0.671648204, 0.671614826, -0.221178606, 0.221138597) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = Custom01 wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294588922 uid = 1240511183 mid = 19728819 persistentId = 3227563798 launchID = 15 parent = 3 position = -0.87116390466690063,-1.0939006805419922,-0.87116390466690063 rotation = 0,0.382683456,0,-0.923879564 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 18 sym = 19 sym = 20 srfN = srfAttach, 3 mass = 0.0175000001 shielded = False temp = 251.57113038752604 tempExt = 251.39158183700476 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 30369.459566779329 currentRotation = (-0.253286093, -0.253255218, 0.66020602, -0.660178721) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = Custom01 wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = True, 33809.3503605796 SAS = False, 36290.4703601825 Brakes = False, 0 Abort = False, 0 Custom01 = True, 30372.7995667794 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 1 yaw = -1 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = 5561a79d96e5442e83a2b025aa979979 persistentId = 4200829173 name = RCS Test type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 64574.789403250797 lct = 31570.882970583516 lastUT = 96145.692373834318 distanceTraveled = 1644875.200897886 root = 0 lat = 4.4298514344026126E-05 lon = -109.42506451613387 alt = 1486619.9080740274 hgt = -1 nrm = 0.821955442,0.000349773007,0.569551945 rot = -0.794912279,-2.85727697E-06,0.606724501,0.000183293494 CoM = -4.71372914E-07,-2.43487716,-6.70028385E-07 stg = 0 prst = False ref = 2750250268 ctrl = True PQSMin = 2 PQSMax = 10 cPch = 0.574 cHdg = 3.496002 cMod = 0 ORBIT { SMA = 2086619.6518476964 ECC = 7.1415124815621537E-06 INC = 0.000342783473718955 LPE = 70.095877570527392 LAN = 345.68534477238785 MNA = 1.5879274455515033 EPH = 96145.672373834313 REF = 1 } PART { name = probeCoreOcto2 cid = 4294725412 uid = 2750250268 mid = 3018989377 persistentId = 663917246 launchID = 16 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 1 attN = top, -1 mass = 0.0399999991 shielded = False temp = 248.7522475635667 tempExt = 248.5532191427375 tempExtUnexp = 4 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = probeCoreOcto2 (RCS Test) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = NormalMinus Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 96145.692373834318 ExtraDelayScheduledTimeStamp = 0 ExtraDelay = 0 CmdGuid = 02db01a2-6cf6-4860-ae6e-c98e8bfab2d2 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 4.9999980099503381 maxAmount = 5 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RCSFuelTank cid = 4294713392 uid = 1775571562 mid = 3018989377 persistentId = 2711019455 launchID = 16 parent = 0 position = 0,-0.34636497497558594,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = top, 0 attN = bottom, 2 mass = 0.0799999982 shielded = False temp = 248.75363707760701 tempExt = 248.64467074168755 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RCSFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 0 maxAmount = 120 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = fuelTank.long cid = 4294692444 uid = 3865799983 mid = 3018989377 persistentId = 3561586807 launchID = 16 parent = 1 position = 0,-2.5066680908203125,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 1 attN = bottom, 3 mass = 0.5 shielded = False temp = 248.75918784266713 tempExt = 248.7840176896662 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = fuelTank.long modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 360 maxAmount = 360 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 440 maxAmount = 440 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryBank cid = 4294683530 uid = 2271914493 mid = 3018989377 persistentId = 2543361006 launchID = 16 parent = 2 position = 0,-4.5050230026245117,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = top, 2 attN = bottom, 4 mass = 0.0500000007 shielded = False temp = 248.75643042835839 tempExt = 248.6059329677831 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = batteryBank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 999.9996019900675 maxAmount = 1000 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = advSasModule cid = 4294652222 uid = 2196344796 mid = 3018989377 persistentId = 163027371 launchID = 16 parent = 3 position = 0,-4.8149051666259766,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = top, 3 attN = bottom, -1 mass = 0.100000001 shielded = False temp = 248.75869504978505 tempExt = 248.7524847296518 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = advSasModule modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294680592 uid = 3587809869 mid = 3018989377 persistentId = 2028119984 launchID = 16 parent = 2 position = -0.61914873123168945,-1.0823659896850586,3.6904143740912332E-08 rotation = -1.25607395E-15,-0.707106709,-1.25607384E-15,0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 2 mass = 0.00499999989 shielded = False temp = 248.76368722612239 tempExt = 248.86037222105864 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 31570.882970583516 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294680368 uid = 484149264 mid = 3018989377 persistentId = 4030256132 launchID = 16 parent = 2 position = -0.30957433581352234,-1.0823659896850586,0.53619855642318726 rotation = -1.71582892E-15,-0.258818984,-4.59754925E-16,0.965925872 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 5 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 2 mass = 0.00499999989 shielded = False temp = 248.75465820748317 tempExt = 248.65507587550653 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 31570.882970583516 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294680336 uid = 3298770078 mid = 3018989377 persistentId = 4195735149 launchID = 16 parent = 2 position = 0.30957448482513428,-1.0823659896850586,0.53619849681854248 rotation = -1.71582882E-15,0.258819163,4.59755137E-16,0.965925813 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 5 sym = 6 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 2 mass = 0.00499999989 shielded = False temp = 248.75465820748317 tempExt = 248.65507587550653 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 31570.882970583516 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294680304 uid = 3618101527 mid = 3018989377 persistentId = 174928870 launchID = 16 parent = 2 position = 0.61914873123168945,-1.0823659896850586,-9.1031843396649492E-08 rotation = -1.25607373E-15,0.707106888,1.25607405E-15,0.70710665 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 5 sym = 6 sym = 7 sym = 9 sym = 10 srfN = srfAttach, 2 mass = 0.00499999989 shielded = False temp = 248.75465820748317 tempExt = 248.65507587550653 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 31570.882970583516 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294680272 uid = 932216928 mid = 3018989377 persistentId = 3643358020 launchID = 16 parent = 2 position = 0.30957433581352234,-1.0823659896850586,-0.53619861602783203 rotation = -4.59754767E-16,0.965925872,1.71582892E-15,0.258818895 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 5 sym = 6 sym = 7 sym = 8 sym = 10 srfN = srfAttach, 2 mass = 0.00499999989 shielded = False temp = 248.75465820748317 tempExt = 248.65507587550653 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 31570.882970583516 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294680240 uid = 2552675090 mid = 3018989377 persistentId = 3078692393 launchID = 16 parent = 2 position = -0.30957433581352234,-1.0823659896850586,-0.53619855642318726 rotation = 4.59754925E-16,0.965925813,1.71582892E-15,-0.258819073 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 srfN = srfAttach, 2 mass = 0.00499999989 shielded = False temp = 248.75465820748317 tempExt = 248.65507587550653 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 31570.882970583516 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = SurfAntenna cid = 4294666768 uid = 3396043542 mid = 3018989377 persistentId = 3311341143 launchID = 16 parent = 2 position = -0.66959893703460693,-1.5303468704223633,4.5871672682551434E-08 rotation = 0.50000006,-0.49999997,0.49999997,0.50000006 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 srfN = srfAttach, 2 mass = 0.0149999997 shielded = False temp = 248.76214230310907 tempExt = 248.83215576057199 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = SurfAntenna modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 1500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = RCSBlock cid = 4294656504 uid = 3504084738 mid = 3018989377 persistentId = 175866295 launchID = 16 parent = 2 position = -0.67564976215362549,-4.1130990982055664,0.00074232142651453614 rotation = -7.48678476E-23,8.42937027E-08,-1.77635684E-15,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 13 sym = 14 sym = 15 srfN = srfAttach, 2 mass = 0.0500000007 shielded = False temp = 248.76068362122982 tempExt = 248.83197811286522 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = RCSBlock cid = 4294656440 uid = 286377779 mid = 3018989377 persistentId = 113807305 launchID = 16 parent = 2 position = 0.00074228108860552311,-4.1130990982055664,0.67564970254898071 rotation = -1.25607405E-15,0.707106829,-1.25607384E-15,0.707106709 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 12 sym = 14 sym = 15 srfN = srfAttach, 2 mass = 0.0500000007 shielded = False temp = 248.75743675212024 tempExt = 248.67675055316877 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = RCSBlock cid = 4294656376 uid = 3549557995 mid = 3018989377 persistentId = 3558407573 launchID = 16 parent = 2 position = 0.67564976215362549,-4.1130990982055664,-0.00074238050729036331 rotation = -1.77635684E-15,1,1.52514871E-22,-1.28005098E-07 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 12 sym = 13 sym = 15 srfN = srfAttach, 2 mass = 0.0500000007 shielded = False temp = 248.75698862377388 tempExt = 248.65555918140842 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = RCSBlock cid = 4294656312 uid = 1086888585 mid = 3018989377 persistentId = 606115380 launchID = 16 parent = 2 position = -0.00074236164800822735,-4.1130990982055664,-0.67564970254898071 rotation = -1.25607384E-15,0.707106709,1.25607405E-15,-0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 12 sym = 13 sym = 14 srfN = srfAttach, 2 mass = 0.0500000007 shielded = False temp = 248.75698862377388 tempExt = 248.65555918140842 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = RCSBlock cid = 4294658662 uid = 3601647913 mid = 3018989377 persistentId = 4066901398 launchID = 16 parent = 1 position = -0.66058903932571411,-0.34491729736328125,0.00074231100734323263 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 17 sym = 18 sym = 19 srfN = srfAttach, 1 mass = 0.0500000007 shielded = False temp = 248.75948296372709 tempExt = 248.80626713369819 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = RCSBlock cid = 4294657882 uid = 4036942997 mid = 3018989377 persistentId = 4274426213 launchID = 16 parent = 1 position = 0.00074227160075679421,-0.34491729736328125,0.66058897972106934 rotation = 0,0.707106829,0,0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 16 sym = 18 sym = 19 srfN = srfAttach, 1 mass = 0.0500000007 shielded = False temp = 248.75521916388701 tempExt = 248.57422583643293 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = RCSBlock cid = 4294657818 uid = 2844484355 mid = 3018989377 persistentId = 870175063 launchID = 16 parent = 1 position = 0.66058903932571411,-0.34491729736328125,-0.00074236874934285879 rotation = 0,1,0,-4.37113883E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 16 sym = 17 sym = 19 srfN = srfAttach, 1 mass = 0.0500000007 shielded = False temp = 248.75477633832864 tempExt = 248.55578726553301 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = RCSBlock cid = 4294657754 uid = 2625218800 mid = 3018989377 persistentId = 2900679360 launchID = 16 parent = 1 position = -0.00074235035572201014,-0.34491729736328125,-0.66058897972106934 rotation = 0,0.707106829,0,-0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 16 sym = 17 sym = 18 srfN = srfAttach, 1 mass = 0.0500000007 shielded = False temp = 248.75477633832864 tempExt = 248.55578726553301 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = True, 86206.0825877591 SAS = False, 35656.090360284 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = 81570704336d4ee79d4e137763f4acd1 persistentId = 2474835671 name = Test type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 9476.6938271394829 lct = 31726.762970586919 lastUT = 41203.456797726401 distanceTraveled = 1267284.320313999 root = 0 lat = 0.00019249651467574894 lon = -173.07215702164567 alt = 1986750.6724830614 hgt = -1 nrm = -0.649445593,2.96111421E-06,0.760407984 rot = 1.45772091E-07,0.47276628,1.57089673E-07,-0.881187856 CoM = 2.53144435E-07,-9.03396988,2.35552534E-06 stg = 0 prst = False ref = 2590599016 ctrl = True PQSMin = 2 PQSMax = 10 cPch = 0.09599989 cHdg = 1.638 cMod = 0 ORBIT { SMA = 2586751.9054769496 ECC = 1.2711328705214108E-06 INC = 1.1706354451251847E-05 LPE = 251.50948917198636 LAN = 285.77788537345202 MNA = 1.186410275958415 EPH = 41203.456797726401 REF = 1 } PART { name = probeCoreOcto cid = 4294717904 uid = 2590599016 mid = 1248823241 persistentId = 99769923 launchID = 17 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 2 attN = top, 1 mass = 0.100000001 shielded = False temp = 254.66964588641801 tempExt = 254.37843366678493 tempExtUnexp = 4 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = probeCoreOcto (Test) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = NormalPlus Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 41203.456797726401 ExtraDelay = 0 CmdGuid = 7610c3db-26da-4c31-9283-4c6133bcdeb6 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongAntenna2 cid = 4294577308 uid = 2577098383 mid = 1248823241 persistentId = 3023180834 launchID = 17 parent = 0 position = 0,0.18708229064941406,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 254.67536996152762 tempExt = 254.68176755732603 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992684841 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = asasmodule1-2 cid = 4294563866 uid = 1527874668 mid = 1248823241 persistentId = 3356441591 launchID = 17 parent = 0 position = 0,-0.43708229064941406,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = top, 0 attN = bottom, 3 mass = 0.200000003 shielded = False temp = 254.67708084798321 tempExt = 254.42672250250715 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = asasmodule1-2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = RCSTank1-2 cid = 4294624986 uid = 3273378406 mid = 1248823241 persistentId = 2576541016 launchID = 17 parent = 2 position = 0,-1.1870822906494141,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = top, 2 attN = bottom, 4 mass = 0.400000006 shielded = False temp = 254.68699139311076 tempExt = 254.54504248082154 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RCSTank1-2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModulePartVariants isEnabled = True stagingEnabled = True selectedVariant = YellowAndWhite EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } RESOURCE { name = MonoPropellant amount = 464.60070734343498 maxAmount = 750 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = Size3LargeTank cid = 4294635598 uid = 3283275260 mid = 1248823241 persistentId = 3110588623 launchID = 17 parent = 3 position = 0,-5.4270820617675781,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 3 attN = bottom, 5 mass = 9 shielded = False temp = 254.70798612235089 tempExt = 254.94746136912528 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = Size3LargeTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 6480 maxAmount = 6480 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 7920 maxAmount = 7920 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = Size3LargeTank cid = 4294612018 uid = 1834708473 mid = 1248823241 persistentId = 3747786574 launchID = 17 parent = 4 position = 0,-12.907081604003906,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 4 attN = bottom, -1 mass = 9 shielded = False temp = 254.70774730635947 tempExt = 254.96719312099972 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = Size3LargeTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 6480 maxAmount = 6480 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 7920 maxAmount = 7920 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RCSBlock cid = 4294664752 uid = 2966741317 mid = 1248823241 persistentId = 3912370202 launchID = 17 parent = 5 position = -1.3569234609603882,-16.235038757324219,-1.3558735847473145 rotation = 4.16627515E-08,0.382683456,-1.00582774E-07,-0.923879623 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 7 sym = 8 sym = 9 srfN = srfAttach, 5 mass = 0.0500000007 shielded = False temp = 254.70270016089185 tempExt = 254.75753619974549 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = RCSBlock cid = 4294664124 uid = 207320924 mid = 1248823241 persistentId = 1796455148 launchID = 17 parent = 5 position = -1.3558735847473145,-16.235038757324219,1.3569233417510986 rotation = -4.16627479E-08,-0.382683456,-1.00582767E-07,-0.923879564 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 6 sym = 8 sym = 9 srfN = srfAttach, 5 mass = 0.0500000007 shielded = False temp = 254.70270366249565 tempExt = 254.75753731888832 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = RCSBlock cid = 4294664060 uid = 1346023167 mid = 1248823241 persistentId = 3831836173 launchID = 17 parent = 5 position = 1.3569235801696777,-16.235038757324219,1.3558735847473145 rotation = -1.00582774E-07,-0.923879623,-4.16627479E-08,-0.382683426 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 6 sym = 7 sym = 9 srfN = srfAttach, 5 mass = 0.0500000007 shielded = False temp = 254.70270073595472 tempExt = 254.75753638354058 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = RCSBlock cid = 4294663996 uid = 3894736738 mid = 1248823241 persistentId = 2357943574 launchID = 17 parent = 5 position = 1.3558734655380249,-16.235038757324219,-1.3569233417510986 rotation = -1.00582767E-07,-0.923879564,4.16627479E-08,0.382683456 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 5 mass = 0.0500000007 shielded = False temp = 254.70270359160051 tempExt = 254.75753729622954 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = RCSBlock cid = 4294666386 uid = 1690775084 mid = 1248823241 persistentId = 3899439776 launchID = 17 parent = 4 position = -1.357452392578125,-2.0074462890625,-1.3564023971557617 rotation = 4.16627515E-08,0.382683456,-1.00582774E-07,-0.923879623 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 11 sym = 12 sym = 13 srfN = srfAttach, 4 mass = 0.0500000007 shielded = False temp = 254.70660790254919 tempExt = 254.73767108175591 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = RCSBlock cid = 4294666130 uid = 2586212108 mid = 1248823241 persistentId = 1278343021 launchID = 17 parent = 4 position = -1.3564023971557617,-2.0074462890625,1.357452392578125 rotation = -4.16627479E-08,-0.382683456,-1.00582767E-07,-0.923879564 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 10 sym = 12 sym = 13 srfN = srfAttach, 4 mass = 0.0500000007 shielded = False temp = 254.70660790254919 tempExt = 254.73767108175591 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = RCSBlock cid = 4294666066 uid = 2601041053 mid = 1248823241 persistentId = 607207570 launchID = 17 parent = 4 position = 1.3574525117874146,-2.0074462890625,1.3564023971557617 rotation = -1.00582774E-07,-0.923879623,-4.16627479E-08,-0.382683426 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 10 sym = 11 sym = 13 srfN = srfAttach, 4 mass = 0.0500000007 shielded = False temp = 254.70660790254919 tempExt = 254.73767108175591 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = RCSBlock cid = 4294666002 uid = 3423722933 mid = 1248823241 persistentId = 4177401916 launchID = 17 parent = 4 position = 1.3564022779464722,-2.0074462890625,-1.357452392578125 rotation = -1.00582767E-07,-0.923879564,4.16627479E-08,0.382683456 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 10 sym = 11 sym = 12 srfN = srfAttach, 4 mass = 0.0500000007 shielded = False temp = 254.70660790254919 tempExt = 254.73767108175591 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = ksp.r.largeBatteryPack cid = 4294595810 uid = 638012398 mid = 1248823241 persistentId = 1409760641 launchID = 17 parent = 3 position = 0,-1.1760444641113281,1.2088468074798584 rotation = 0,1,0,0 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 15 sym = 16 sym = 17 srfN = srfAttach, 3 mass = 0.0199999996 shielded = False temp = 254.66800378735951 tempExt = 254.44833388898144 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = ksp.r.largeBatteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 400 maxAmount = 400 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = ksp.r.largeBatteryPack cid = 4294595254 uid = 2150116013 mid = 1248823241 persistentId = 1615083586 launchID = 17 parent = 3 position = 1.2088466882705688,-1.1760444641113281,7.4505805969238281E-08 rotation = 0,0.707106829,0,-0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 14 sym = 16 sym = 17 srfN = srfAttach, 3 mass = 0.0199999996 shielded = False temp = 254.66800393606047 tempExt = 254.44833395935726 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = ksp.r.largeBatteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 400 maxAmount = 400 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = ksp.r.largeBatteryPack cid = 4294595228 uid = 2235197187 mid = 1248823241 persistentId = 1213429228 launchID = 17 parent = 3 position = -1.0430812835693359E-07,-1.1760444641113281,-1.2088468074798584 rotation = 0,-4.37113883E-08,0,-1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 14 sym = 15 sym = 17 srfN = srfAttach, 3 mass = 0.0199999996 shielded = False temp = 254.66800380192092 tempExt = 254.44833389583906 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = ksp.r.largeBatteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 400 maxAmount = 400 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = ksp.r.largeBatteryPack cid = 4294595202 uid = 732618556 mid = 1248823241 persistentId = 1304132073 launchID = 17 parent = 3 position = -1.2088466882705688,-1.1760444641113281,7.4505805969238281E-08 rotation = 0,-0.707106829,0,-0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 14 sym = 15 sym = 16 srfN = srfAttach, 3 mass = 0.0199999996 shielded = False temp = 254.66800378744503 tempExt = 254.44833388902163 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = ksp.r.largeBatteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 400 maxAmount = 400 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = solarPanels4 cid = 4294590474 uid = 1408502999 mid = 1248823241 persistentId = 979984179 launchID = 17 parent = 3 position = -0.87116402387619019,-1.0939006805419922,0.87116390466690063 rotation = 0,0.382683456,0,0.923879623 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 19 sym = 20 sym = 21 srfN = srfAttach, 3 mass = 0.0175000001 shielded = False temp = 254.73649481040445 tempExt = 253.6721057665354 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 31726.762970586919 currentRotation = (-0.707142472, -0.707023084, -0.00584503636, 0.00580593944) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = Custom01 wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294589130 uid = 488831551 mid = 1248823241 persistentId = 3069307783 launchID = 17 parent = 3 position = 0.87116378545761108,-1.0939006805419922,0.87116402387619019 rotation = 0,0.923879564,0,0.382683456 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 18 sym = 20 sym = 21 srfN = srfAttach, 3 mass = 0.0175000001 shielded = False temp = 254.37455808157893 tempExt = 253.40898944135486 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 31726.762970586919 currentRotation = (0.0138350539, 0.013674777, 0.706990004, -0.706956029) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = Custom01 wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294589026 uid = 4096012632 mid = 1248823241 persistentId = 2108152125 launchID = 17 parent = 3 position = 0.87116396427154541,-1.0939006805419922,-0.87116390466690063 rotation = 0,0.923879564,0,-0.382683456 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 18 sym = 19 sym = 21 srfN = srfAttach, 3 mass = 0.0175000001 shielded = False temp = 254.34650389092013 tempExt = 253.58769372509138 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 31726.762970586919 currentRotation = (-0.00576383434, -0.0058076675, -0.7071262, 0.707040131) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = Custom01 wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294588922 uid = 2551214795 mid = 1248823241 persistentId = 2478921375 launchID = 17 parent = 3 position = -0.87116390466690063,-1.0939006805419922,-0.87116390466690063 rotation = 0,0.382683456,0,-0.923879564 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 18 sym = 19 sym = 20 srfN = srfAttach, 3 mass = 0.0175000001 shielded = False temp = 254.66345063999108 tempExt = 254.81975819798706 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 31726.762970586919 currentRotation = (0.707035244, 0.706917822, 0.013506528, -0.0136385746) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = Custom01 wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 41157.1367977338 SAS = False, 37006.4703600679 Brakes = False, 0 Abort = False, 0 Custom01 = True, 31826.5829705891 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = fce1672921a143d08da68d215c9eef99 persistentId = 2960862045 name = Test type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 113.9196313463035 lct = 43733.996797321335 lastUT = 43847.916428667639 distanceTraveled = 23305.108875928127 root = 0 lat = -4.9311339413146457E-07 lon = -80.960654000425222 alt = 86752.074609727599 hgt = -1 nrm = -0.109039664,0.994036019,0.00169461966 rot = -0.701315105,-0.0904533342,-0.0977915898,0.700294435 CoM = -2.38418579E-07,-2.10173702,1.1920929E-07 stg = 1 prst = False ref = 2274684065 ctrl = True PQSMin = 2 PQSMax = 9 cPch = 0.4892908 cHdg = -7.587198 cMod = 0 ORBIT { SMA = 686749.99472130719 ECC = 1.3820130723472301E-08 INC = 0 LPE = 264.54920172381128 LAN = 105.91141755369853 MNA = 0.19359962919432169 EPH = 43847.916428667639 REF = 1 } PART { name = probeCoreOcto cid = 4294725426 uid = 2274684065 mid = 814763333 persistentId = 1626612664 launchID = 22 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 1 attN = top, 9 mass = 0.100000001 shielded = False temp = 307.61077573374666 tempExt = 304.81009510668548 tempExtUnexp = 4 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = probeCoreOcto modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 43847.916428667639 ExtraDelay = 0 CmdGuid = ee11b6d9-a577-4499-80c5-099589432cee } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 9.9999809523818044 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = trussPiece3x cid = 4294709766 uid = 509590377 mid = 814763333 persistentId = 754668487 launchID = 22 parent = 0 position = 0,-1.6623191833496094,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 8 attN = top, 0 mass = 0.375 shielded = False temp = 308.06075973727906 tempExt = 305.33767974187907 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = trussPiece3x modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = stackPoint1 cid = 4294701780 uid = 199116459 mid = 814763333 persistentId = 1600025083 launchID = 22 parent = 1 position = -0.40534383058547974,-1.0709934234619141,1.9392004446672217E-08 rotation = 0.5,-0.5,0.5,0.5 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 srfN = srfAttach, 1 attN = top, 3 mass = 0.0399999991 shielded = False temp = 307.74311114652841 tempExt = 304.94197737812857 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = stackPoint1 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = fairingSize1 cid = 4294687668 uid = 3257576125 mid = 814763333 persistentId = 2690874198 launchID = 22 parent = 2 position = -0.65222758054733276,-1.0709934234619141,1.9392004446672217E-08 rotation = 0.707106829,-0.707106829,0,0 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 1 sqor = 0 sepI = -1 sidx = 0 attm = 0 sym = 5 srfN = , -1 attN = interstage01a, -1 attN = interstage01b, -1 attN = interstage02a, -1 attN = interstage02b, -1 attN = interstage03a, -1 attN = interstage03b, -1 attN = interstage04a, -1 attN = interstage04b, -1 attN = interstage05a, -1 attN = interstage05b, -1 attN = interstage06a, -1 attN = interstage06b, -1 attN = top, -1 attN = bottom, 2 mass = 0.10505271 shielded = False temp = 308.10435117670789 tempExt = 302.56430160657487 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = fairingSize1 modCost = 18.0316238 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleProceduralFairing isEnabled = True interstageCraftID = 0 nArcs = 2 ejectionForce = 100 useClamshell = False stagingEnabled = True fsm = st_idle EVENTS { } ACTIONS { DeployFairingAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } XSECTION { h = 0 r = 0.625 } XSECTION { h = 0.979263246 r = 0.200000003 } UPGRADESAPPLIED { } } MODULE { name = ModuleCargoBay isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNodeToggle isEnabled = True showMesh = True showNodes = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModulePartVariants isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = stackPoint1 cid = 4294701214 uid = 571416480 mid = 814763333 persistentId = 4253109807 launchID = 22 parent = 1 position = 0.40534383058547974,-1.0709934234619141,-5.4828287687769262E-08 rotation = 0.5,0.50000006,-0.50000006,0.5 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 2 srfN = srfAttach, 1 attN = top, 5 mass = 0.0399999991 shielded = False temp = 307.74311114652716 tempExt = 304.94197737812868 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = stackPoint1 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = fairingSize1 cid = 4294678472 uid = 1643725202 mid = 814763333 persistentId = 1765672541 launchID = 22 parent = 4 position = 0.65222811698913574,-1.0709934234619141,1.5713131062966568E-07 rotation = 0,8.94069672E-08,-0.707106829,0.707106829 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 1 sqor = 0 sepI = -1 sidx = 0 attm = 0 sym = 3 srfN = , -1 attN = interstage01a, -1 attN = interstage01b, -1 attN = interstage02a, -1 attN = interstage02b, -1 attN = interstage03a, -1 attN = interstage03b, -1 attN = interstage04a, -1 attN = interstage04b, -1 attN = interstage05a, -1 attN = interstage05b, -1 attN = interstage06a, -1 attN = interstage06b, -1 attN = top, -1 attN = bottom, 4 mass = 0.10505271 shielded = False temp = 308.10435117670829 tempExt = 302.56430160652008 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = fairingSize1 modCost = 18.0316238 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleProceduralFairing isEnabled = True interstageCraftID = 0 nArcs = 2 ejectionForce = 100 useClamshell = False stagingEnabled = True fsm = st_idle EVENTS { } ACTIONS { DeployFairingAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } XSECTION { h = 0 r = 0.625 } XSECTION { h = 0.979263246 r = 0.200000003 } UPGRADESAPPLIED { } } MODULE { name = ModuleCargoBay isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNodeToggle isEnabled = True showMesh = True showNodes = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModulePartVariants isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = radialLiquidEngine1-2 cid = 4294638674 uid = 1982480225 mid = 814763333 persistentId = 2411672035 launchID = 22 parent = 1 position = 2.8374776306350213E-08,-2.4689664840698242,-0.32456961274147034 rotation = 0,1,-8.94069672E-08,0 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 0 sqor = 0 sepI = -1 sidx = 1 attm = 1 sym = 7 srfN = srfAttach, 1 mass = 0.899999976 shielded = False temp = 308.42857004467805 tempExt = 306.5374965450373 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = radialLiquidEngine1-2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 51 manuallyOverridden = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True gimbalActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } LockAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } FreeAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } TogglePitchAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleYawAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleRollAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateThrottle isEnabled = True animState = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleSurfaceFX isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = radialLiquidEngine1-2 cid = 4294635430 uid = 3404669473 mid = 814763333 persistentId = 4270701312 launchID = 22 parent = 1 position = 4.3088693081768346E-16,-2.4689664840698242,0.32456961274147034 rotation = -8.94069672E-08,-4.37113883E-08,3.90810245E-15,-1 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 0 sqor = 0 sepI = -1 sidx = 1 attm = 1 sym = 6 srfN = srfAttach, 1 mass = 0.899999976 shielded = False temp = 308.41947937338057 tempExt = 306.48653696015572 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = radialLiquidEngine1-2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 66.5 manuallyOverridden = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True gimbalActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } LockAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } FreeAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } TogglePitchAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleYawAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleRollAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateThrottle isEnabled = True animState = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleSurfaceFX isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = adapterSmallMiniTall cid = 4294572242 uid = 2354805335 mid = 814763333 persistentId = 4104584797 launchID = 22 parent = 1 position = 0,-3.4500570297241211,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = top, 1 attN = bottom, -1 mass = 0.0500000007 shielded = False temp = 307.77290285734574 tempExt = 305.11957090832277 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = adapterSmallMiniTall modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = batteryBankMini cid = 4294619622 uid = 3625547759 mid = 814763333 persistentId = 840960429 launchID = 22 parent = 0 position = 0,0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, -1 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 307.41907292192172 tempExt = 304.66665556927768 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 199.99961904763609 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = SurfAntenna cid = 4294605598 uid = 672600103 mid = 814763333 persistentId = 2114084044 launchID = 22 parent = 9 position = 0.028100235387682915,0.4308319091796875,-0.048671051859855652 rotation = -2.52881108E-07,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 srfN = srfAttach, 9 mass = 0.0149999997 shielded = False temp = 307.39967457863736 tempExt = 304.82125822532356 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = SurfAntenna modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 1500000 RTDishRange = -1 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294593838 uid = 472613116 mid = 814763333 persistentId = 893938686 launchID = 22 parent = 0 position = -0.23970305919647217,0.16138839721679688,-0.23970302939414978 rotation = 0.0880176127,0.899110734,0.21249342,-0.372423619 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 12 sym = 13 sym = 14 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 307.47687523994165 tempExt = 305.05478626294246 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 43733.996797321335 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294593624 uid = 1887827684 mid = 814763333 persistentId = 406098319 launchID = 22 parent = 0 position = -0.23970302939414978,0.16138839721679688,0.23970302939414978 rotation = 0.21249339,0.372424036,0.0880176872,-0.899110556 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 11 sym = 13 sym = 14 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 307.47531924455717 tempExt = 305.00671270562179 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 43733.996797321335 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294593592 uid = 2993029130 mid = 814763333 persistentId = 1049039251 launchID = 22 parent = 0 position = 0.23970307409763336,0.16138839721679688,0.23970301449298859 rotation = 0.21249342,-0.372423649,-0.0880176201,-0.899110734 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 11 sym = 12 sym = 14 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 307.46116242703943 tempExt = 304.68673017735347 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 43733.996797321335 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294593560 uid = 619605292 mid = 814763333 persistentId = 3909872390 launchID = 22 parent = 0 position = 0.23970299959182739,0.16138839721679688,-0.23970305919647217 rotation = 0.0880176872,-0.899110556,-0.21249339,-0.372424036 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 11 sym = 12 sym = 13 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 307.46089964088151 tempExt = 304.68072666190068 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 43733.996797321335 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = 2426bf8d66874723ac002668255b68bb persistentId = 3086015913 name = Untitled Space Craft type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 29319.161382383012 lct = 67842.335177265064 lastUT = 97161.496559648076 distanceTraveled = 1611058.819477305 root = 0 lat = 1.0716066219797457E-06 lon = -6.6177047766350565 alt = 486752.2303841759 hgt = -1 nrm = 0.0534771532,0.989147067,-0.136850834 rot = -0.0130665218,0.00225631357,0.688427985,-0.725183547 CoM = -5.77419996E-08,-0.392444253,1.07288361E-06 stg = 1 prst = False ref = 2698726221 ctrl = True PQSMin = 2 PQSMax = 9 cPch = 0.2 cHdg = 0.3 cMod = 0 ORBIT { SMA = 1086750.0024531474 ECC = 1.8119961415777174E-06 INC = 0 LPE = 186.73726184672759 LAN = 238.91153452521274 MNA = -2.7774831111528706 EPH = 97161.176559648011 REF = 1 } PART { name = probeCoreOcto cid = 4294681676 uid = 2698726221 mid = 1618114929 persistentId = 2238780628 launchID = 33 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 3 attN = top, 5 mass = 0.100000001 shielded = False temp = 78.904747551546208 tempExt = 79.08152903268828 tempExtUnexp = 4 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = probeCoreOcto (Untitled Space Craft) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Running stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 97161.496559648076 ExtraDelayScheduledTimeStamp = 0 ExtraDelay = 0 CmdGuid = ad0dd626-34e7-4f6d-ad32-71e3773855fc } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 9.9937193343513737 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongAntenna2 cid = 4294669038 uid = 126668865 mid = 1618114929 persistentId = 917070451 launchID = 33 parent = 0 position = 0,0.030619621276855469,0.34450036287307739 rotation = 0.707106829,-5.65513574E-08,5.65513574E-08,0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 2 srfN = srfAttach, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 78.945913102858569 tempExt = 79.070439237087896 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992504418 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = RTLongAntenna2 cid = 4294668930 uid = 3486044037 mid = 1618114929 persistentId = 1574725216 launchID = 33 parent = 0 position = -3.0117178084765328E-08,0.030619621276855469,-0.34450036287307739 rotation = 2.56427359E-08,0.707106829,-0.707106829,2.56427359E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 srfN = srfAttach, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 78.891353576400263 tempExt = 79.024666616161198 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = True animTime = 0.00312992139 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = xenonTank cid = 4294637790 uid = 3926128249 mid = 1618114929 persistentId = 4286313823 launchID = 33 parent = 0 position = 0,-0.32754707336425781,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = top, 0 attN = bottom, 4 mass = 0.0240000002 shielded = False temp = 78.882268330043757 tempExt = 79.052845542394351 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = xenonTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = XenonGas amount = 720 maxAmount = 720 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = ionEngine cid = 4294624364 uid = 3038081923 mid = 1618114929 persistentId = 3234712359 launchID = 33 parent = 3 position = 0,-0.68156909942626953,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 0 sqor = 0 sepI = -1 sidx = 0 attm = 0 srfN = , -1 attN = top, 3 attN = bottom, -1 mass = 0.25 shielded = False temp = 78.858035392065091 tempExt = 79.13801726855904 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = ionEngine modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnginesFX isEnabled = True staged = False flameout = True EngineIgnited = True engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateThrottle isEnabled = True animState = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294614628 uid = 591229755 mid = 1618114929 persistentId = 2589558588 launchID = 33 parent = 0 position = 0,0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, -1 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 78.912298082746915 tempExt = 79.00354272571316 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 199.87438668702757 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = solarPanels5 cid = 4294608918 uid = 3869763560 mid = 1618114929 persistentId = 784277015 launchID = 33 parent = 0 position = -0.24312391877174377,0.058374404907226563,0.24312387406826019 rotation = 0,-0.382683605,0,0.923879504 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 7 sym = 8 sym = 9 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 78.926056850502661 tempExt = 79.362712596363224 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 67842.335177265064 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294608790 uid = 2195426597 mid = 1618114929 persistentId = 2929105562 launchID = 33 parent = 0 position = 0.24312384426593781,0.058374404907226563,0.24312391877174377 rotation = 0,0.382683277,0,0.923879623 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 6 sym = 8 sym = 9 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 78.924809616902635 tempExt = 79.331010180601282 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 67842.335177265064 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294608758 uid = 2265653334 mid = 1618114929 persistentId = 482473359 launchID = 33 parent = 0 position = 0.24312390387058258,0.058374404907226563,-0.24312388896942139 rotation = 0,0.923879504,0,0.382683575 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 6 sym = 7 sym = 9 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 78.912500906553078 tempExt = 79.014544549235112 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 67842.335177265064 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294608726 uid = 924829596 mid = 1618114929 persistentId = 1207514725 launchID = 33 parent = 0 position = -0.24312387406826019,0.058374404907226563,-0.24312388896942139 rotation = 0,0.923879623,0,-0.382683277 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 78.912500906553078 tempExt = 79.013897223658276 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 67842.335177265064 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = True, 96795.4962520221 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = -2.4670527E-07 yaw = 3.22364463E-06 roll = 1.29975456E-06 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = 1a7cccaae0094216a532d56bd689ef8c persistentId = 3596990243 name = Rocket type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 1051.8059411986469 lct = 74278.222603247341 lastUT = 75330.028544445988 distanceTraveled = 231078.44721874452 root = 0 lat = 7.1047346652285248E-07 lon = 129.17048826142815 alt = 1486776.1756104201 hgt = -1 nrm = -0.0175680742,0.0244670063,0.999546349 rot = -0.234266385,-0.223414168,0.665787518,0.672259212 CoM = 1.07102096E-07,-0.761840105,-9.53674316E-07 stg = 0 prst = False ref = 3581125269 ctrl = True PQSMin = 2 PQSMax = 9 cPch = 0 cHdg = 0 cMod = 0 ORBIT { SMA = 2350576.5454066116 ECC = 0.11223909502182036 INC = 1.5007971104097566E-05 LPE = 1.5140069842826809 LAN = 35.199750287670327 MNA = 0.012510451161341554 EPH = 75330.028544445988 REF = 1 } PART { name = probeCoreOcto2 cid = 4294585400 uid = 3581125269 mid = 2392199145 persistentId = 3254596423 launchID = 34 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 1 attN = top, 8 mass = 0.0399999991 shielded = False temp = 292.42665454111977 tempExt = 291.7963680486319 tempExtUnexp = 4 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = probeCoreOcto2 (Rocket) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 20 ActiveCommands { AttitudeCommand { Mode = KillRot Attitude = Prograde Frame = World Orientation = -0.542764723,-0.552770257,-0.451060712,-0.44316563 Altitude = NaN TimeStamp = 75330.028544445988 ExtraDelay = 0 CmdGuid = 186db828-a6e6-4f80-aee1-e21bc6e8f1d5 } } Commands { AttitudeCommand { Mode = AttitudeHold Attitude = Prograde Frame = Maneuver Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 76073.679971204765 ExtraDelay = 0 CmdGuid = de3bd4d5-68fb-430d-a0f7-d3cf85a27e2d } ManeuverCommand { NodeIndex = 0 KaCItemId = TimeStamp = 76253.679971204765 ExtraDelay = 0 CmdGuid = b064180c-e63c-41d7-ac89-36a828e5e972 } } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 4.1267283115126201 maxAmount = 5 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = sasModule cid = 4294583446 uid = 2449808844 mid = 2392199145 persistentId = 1023267169 launchID = 34 parent = 0 position = 0,-0.15217304229736328,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 2 attN = top, 0 mass = 0.0500000007 shielded = False temp = 292.7857334837102 tempExt = 292.54103794990044 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = sasModule modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Running stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = fuelTankSmall cid = 4294541438 uid = 3920085697 mid = 2392199145 persistentId = 1173202179 launchID = 34 parent = 1 position = 0,-0.79853439331054688,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 1 attN = bottom, 3 mass = 0.125 shielded = False temp = 293.24608080752211 tempExt = 293.06622674229573 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = fuelTankSmall modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 87.219094176276315 maxAmount = 90 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 106.60111494063148 maxAmount = 110 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = liquidEngineMini cid = 4294526842 uid = 1555419993 mid = 2392199145 persistentId = 1416535865 launchID = 34 parent = 2 position = 0,-1.3537845611572266,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 0 sqor = 0 sepI = -1 sidx = 0 attm = 0 srfN = , -1 attN = top, 2 attN = bottom, -1 mass = 0.100000001 shielded = False temp = 294.84915868471182 tempExt = 293.65662008285773 tempExtUnexp = 4 expt = 0.5 state = 1 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = liquidEngineMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnginesFX isEnabled = True staged = True flameout = False EngineIgnited = True engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleJettison isEnabled = True activejettisonName = node_fairing_collider isJettisoned = True shroudHideOverride = False stagingEnabled = True EVENTS { } ACTIONS { JettisonAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True gimbalActive = True stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } LockAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } FreeAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } TogglePitchAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleYawAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleRollAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294522302 uid = 3527953959 mid = 2392199145 persistentId = 1589655262 launchID = 34 parent = 2 position = -0.56172561645507813,-0.80637264251708984,3.3481459382755929E-08 rotation = -1.25607395E-15,-0.707106709,-1.25607384E-15,0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 5 sym = 6 sym = 7 srfN = srfAttach, 2 mass = 0.00499999989 shielded = False temp = 293.21971203250092 tempExt = 292.88135745004865 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 74278.222603247341 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294522174 uid = 2041865061 mid = 2392199145 persistentId = 990675500 launchID = 34 parent = 2 position = 1.5570631857296643E-15,-0.80637264251708984,0.56172555685043335 rotation = -1.77635684E-15,8.42937027E-08,7.48678476E-23,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 6 sym = 7 srfN = srfAttach, 2 mass = 0.00499999989 shielded = False temp = 293.21971203250092 tempExt = 292.88135745004865 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 74278.222603247341 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294522142 uid = 1396696796 mid = 2392199145 persistentId = 411238793 launchID = 34 parent = 2 position = 0.56172561645507813,-0.80637264251708984,-8.2589075134364975E-08 rotation = -1.25607373E-15,0.707106888,1.25607405E-15,0.70710665 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 7 srfN = srfAttach, 2 mass = 0.00499999989 shielded = False temp = 293.21971203250092 tempExt = 292.88135745004865 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 74278.222603247341 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294522110 uid = 3857796962 mid = 2392199145 persistentId = 986994906 launchID = 34 parent = 2 position = -6.6962911660084501E-08,-0.80637264251708984,-0.56172555685043335 rotation = 7.48678476E-23,1,1.77635684E-15,-8.42937027E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 srfN = srfAttach, 2 mass = 0.00499999989 shielded = False temp = 293.22024671691264 tempExt = 292.88657704281388 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 74278.222603247341 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294577560 uid = 3604593288 mid = 2392199145 persistentId = 3356073274 launchID = 34 parent = 0 position = 0,0.16106224060058594,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, -1 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 292.27331987630731 tempExt = 291.3680278111247 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 165.06913246048472 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongAntenna2 cid = 4294566036 uid = 1309097186 mid = 2392199145 persistentId = 776818689 launchID = 34 parent = 8 position = 0,0.14642333984375,0.3094693124294281 rotation = 0.70710665,-9.15500475E-09,9.15500031E-09,0.707107008 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 10 srfN = srfAttach, 8 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 291.27398534441062 tempExt = 291.1863650509527 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.994432807 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = RTLongAntenna2 cid = 4294565306 uid = 4227295849 mid = 2392199145 persistentId = 1470052695 launchID = 34 parent = 8 position = -2.7054666063008881E-08,0.14642333984375,-0.3094693124294281 rotation = -2.17536122E-08,0.707107008,-0.70710665,-2.17536247E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 9 srfN = srfAttach, 8 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 291.21830717866601 tempExt = 291.00554090436935 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992539704 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = SurfAntenna cid = 4294513720 uid = 113801862 mid = 2392199145 persistentId = 4202898275 launchID = 34 parent = 0 position = -0.32936739921569824,-0.018996238708496094,1.6651595657890539E-08 rotation = 0.5,-0.5,0.5,0.5 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 srfN = srfAttach, 0 mass = 0.0149999997 shielded = False temp = 292.15651484251873 tempExt = 291.61019400010213 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = SurfAntenna modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 1500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = True, 74294.6426032507 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 75123.1118171305 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { MANEUVER { UT = 76258.209675694365 dV = 0,0,104.65352306074433 } } CTRLSTATE { pitch = 0.00106164603 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = f525e7fa5e2747119431c98d4ed90417 persistentId = 3838479238 name = Manned Test type = Ship sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 5906.4697852535173 lct = 90043.22258854087 lastUT = 95949.692373794387 distanceTraveled = 234372.15890393915 root = 0 lat = 3.8815877176480352E-08 lon = 140.79588207101688 alt = 6486750.3652809616 hgt = -1 nrm = 0.168910444,-0.191164851,-0.966915369 rot = 0.574728787,-0.634020627,0.415016234,-0.308976203 CoM = 0.00163126923,0.623753786,6.21676445E-05 stg = 2 prst = False ref = 1211671534 ctrl = True PQSMin = 2 PQSMax = 9 cPch = 0.2 cHdg = 0.3 cMod = 0 ORBIT { SMA = 7086750.8047357164 ECC = 9.4841305921560561E-08 INC = 0 LPE = 124.01224224847059 LAN = 303.50794837712533 MNA = -0.59012757874980104 EPH = 95949.31237379431 REF = 1 } PART { name = fuelTankSmall cid = 4294606558 uid = 2324801067 mid = 2625967615 persistentId = 2566256161 launchID = 35 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 12 attN = bottom, 1 mass = 0.125 shielded = False temp = 249.25119606189892 tempExt = 249.43703790721466 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = fuelTankSmall (Manned Test) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 90 maxAmount = 90 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 110 maxAmount = 110 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = liquidEngineMini cid = 4294596562 uid = 4140941454 mid = 2625967615 persistentId = 3699164176 launchID = 35 parent = 0 position = 0,-0.55525016784667969,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 0 sqor = 0 sepI = -1 sidx = 0 attm = 0 srfN = , -1 attN = top, 0 attN = bottom, -1 mass = 0.100000001 shielded = False temp = 249.18851450831934 tempExt = 249.08490322493759 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = liquidEngineMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnginesFX isEnabled = True staged = False flameout = False EngineIgnited = True engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleJettison isEnabled = True activejettisonName = node_fairing_collider isJettisoned = True shroudHideOverride = False stagingEnabled = True EVENTS { } ACTIONS { JettisonAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True gimbalActive = True stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } LockAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } FreeAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } TogglePitchAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleYawAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleRollAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = solarPanels2 cid = 4294542374 uid = 374065937 mid = 2625967615 persistentId = 4044252806 launchID = 35 parent = 0 position = 0.56209641695022583,-0.0010747909545898438,0 rotation = 1.77635684E-15,1,-7.48678413E-23,0 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 srfN = srfAttach, 0 mass = 0.0250000004 shielded = False temp = 249.32612850580108 tempExt = 250.01192719829228 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 90043.22258854087 currentRotation = (-0.290256739, 0.644810379, -0.644766033, 0.290254116) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels2 cid = 4294541910 uid = 2643715833 mid = 2625967615 persistentId = 3162919500 launchID = 35 parent = 0 position = -0.56209641695022583,-0.0010747909545898438,0 rotation = -1.52514859E-22,-4.37113883E-08,-1.77635684E-15,-1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 2 srfN = srfAttach, 0 mass = 0.0250000004 shielded = False temp = 249.30498276701459 tempExt = 249.81966980895447 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 90043.22258854087 currentRotation = (-0.290240675, -0.644801557, 0.644777358, 0.290264606) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = strutCube cid = 4294534014 uid = 3453864520 mid = 2625967615 persistentId = 4262978417 launchID = 35 parent = 0 position = 5.9604644775390625E-08,-0.674896240234375,-0.55634814500808716 rotation = 1,1.77635673E-15,-1.77635673E-15,8.42937027E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 6 sym = 8 sym = 10 srfN = srfAttach, 0 attN = top, 5 attN = bottom, -1 mass = 0.00100000005 shielded = False temp = 249.28690325442352 tempExt = 249.36063613116801 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = strutCube cid = 4294533198 uid = 2900979562 mid = 2625967615 persistentId = 1025482205 launchID = 35 parent = 4 position = 5.9604644775390625E-08,-0.93236541748046875,-0.55634814500808716 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sym = 7 sym = 9 sym = 11 srfN = srfAttach, -1 attN = top, 4 attN = bottom, -1 mass = 0.00100000005 shielded = False temp = 249.31124915413659 tempExt = 249.50916325094985 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = strutCube cid = 4294533360 uid = 4055680277 mid = 2625967615 persistentId = 2628494537 launchID = 35 parent = 0 position = -0.55634808540344238,-0.674896240234375,-1.1920928955078125E-07 rotation = 0.707106829,5.9604659E-08,-0.707106829,5.96046519E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 8 sym = 10 srfN = srfAttach, 0 attN = top, 7 attN = bottom, -1 mass = 0.00100000005 shielded = False temp = 249.24815492018269 tempExt = 249.25845971925827 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = strutCube cid = 4294532868 uid = 3766339660 mid = 2625967615 persistentId = 734459246 launchID = 35 parent = 6 position = -0.55634808540344238,-0.93236541748046875,-1.1920928955078125E-07 rotation = 7.10542736E-15,0.707106829,-2.51214789E-15,0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sym = 5 sym = 9 sym = 11 srfN = srfAttach, -1 attN = top, 6 attN = bottom, -1 mass = 0.00100000005 shielded = False temp = 249.24389367742347 tempExt = 249.21656124722892 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = strutCube cid = 4294533328 uid = 3878754664 mid = 2625967615 persistentId = 3272463144 launchID = 35 parent = 0 position = 0,-0.674896240234375,0.55634808540344238 rotation = -4.37113883E-08,8.42937027E-08,-1,-5.46095143E-15 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 6 sym = 10 srfN = srfAttach, 0 attN = top, 9 attN = bottom, -1 mass = 0.00100000005 shielded = False temp = 249.24777476387811 tempExt = 249.25786879257208 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = strutCube cid = 4294532830 uid = 424295731 mid = 2625967615 persistentId = 3920341830 launchID = 35 parent = 8 position = 0,-0.93236541748046875,0.55634808540344238 rotation = 0,1,7.76470235E-23,-4.37113883E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sym = 5 sym = 7 sym = 11 srfN = srfAttach, -1 attN = top, 8 attN = bottom, -1 mass = 0.00100000005 shielded = False temp = 249.24315381002225 tempExt = 249.21318934488733 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = strutCube cid = 4294533296 uid = 219774747 mid = 2625967615 persistentId = 268141383 launchID = 35 parent = 0 position = 0.55634808540344238,-0.674896240234375,0 rotation = -0.707106829,5.96046519E-08,-0.707106829,-5.9604659E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 6 sym = 8 srfN = srfAttach, 0 attN = top, 11 attN = bottom, -1 mass = 0.00100000005 shielded = False temp = 249.22511958397013 tempExt = 249.2038391726995 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = strutCube cid = 4294532792 uid = 2611125630 mid = 2625967615 persistentId = 1409329389 launchID = 35 parent = 10 position = 0.55634808540344238,-0.93236541748046875,0 rotation = 0,0.707106829,-4.59327925E-15,-0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sym = 5 sym = 7 sym = 9 srfN = srfAttach, -1 attN = top, 10 attN = bottom, -1 mass = 0.00100000005 shielded = False temp = 249.20156604722411 tempExt = 249.03064023040878 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = strutCube modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = batteryBank cid = 4294620848 uid = 1746922410 mid = 2625967615 persistentId = 92130804 launchID = 35 parent = 0 position = 0,0.66610527038574219,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = top, 15 attN = bottom, 0 mass = 0.0500000007 shielded = False temp = 249.22929683523455 tempExt = 249.09198031567431 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = batteryBank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 1000 maxAmount = 1000 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongAntenna2 cid = 4294577450 uid = 3731375417 mid = 2625967615 persistentId = 3243606393 launchID = 35 parent = 12 position = 0,0.66276073455810547,0.60376167297363281 rotation = 0.707106709,0,0,0.707106948 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 14 srfN = srfAttach, 12 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 248.95882043098433 tempExt = 248.90428887738 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992554426 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = RTLongAntenna2 cid = 4294541332 uid = 2662774178 mid = 2625967615 persistentId = 3502276166 launchID = 35 parent = 12 position = -5.9604644775390625E-08,0.66276073455810547,-0.60376173257827759 rotation = -3.09086161E-08,0.707106948,-0.707106709,-3.09086268E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 13 srfN = srfAttach, 12 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 249.08483243082316 tempExt = 249.21584560199599 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992554426 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = kv1Pod cid = 4294460714 uid = 1211671534 mid = 2625967615 persistentId = 1996341504 launchID = 35 parent = 12 position = 0,1.451960563659668,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 1 resPri = 0 dstg = 1 sqor = 1 sepI = 1 sidx = 0 attm = 0 srfN = , -1 attN = top, 16 attN = bottom, 12 mass = 0.75 shielded = False temp = 249.22061760943737 tempExt = 248.9134639376058 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = kv1Pod modCost = 0 crew = Jebediah Kerman EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleAnchoredDecoupler isEnabled = True ejectionForcePercent = 100 isDecoupled = False stagingEnabled = True EVENTS { } ACTIONS { DecoupleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ResetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceContainer isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { CollectAllAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleAblator isEnabled = True nominalAmountRecip = 0.050000000000000003 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleColorChanger isEnabled = True animState = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleColorChanger isEnabled = True animState = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = Light wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleConductionMultiplier isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 49.977636363269262 maxAmount = 50 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Ablator amount = 20 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = sasModule cid = 4294628394 uid = 3558438932 mid = 2625967615 persistentId = 537418491 launchID = 35 parent = 15 position = 0,2.5680713653564453,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 1 resPri = 0 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 15 attN = top, 17 mass = 0.0500000007 shielded = False temp = 249.20561744382724 tempExt = 248.92285290560778 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = sasModule modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = probeCoreOcto2 cid = 4294374310 uid = 571469742 mid = 2625967615 persistentId = 4150984655 launchID = 35 parent = 16 position = 0,2.7202444076538086,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 1 resPri = 0 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 16 attN = top, -1 mass = 0.0399999991 shielded = False temp = 249.19514526904757 tempExt = 248.87243970791079 tempExtUnexp = 4 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = probeCoreOcto2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 95949.692373794387 ExtraDelayScheduledTimeStamp = 0 ExtraDelay = 0 CmdGuid = 10b1986d-446e-4fd4-825c-5a092e50da36 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 4.9977636363269253 maxAmount = 5 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 90109.7625885544 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { MANEUVER { UT = 111585.02339515534 dV = 0,0,404.86980022030247 } } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = KerbalFull canComm = True } } } VESSEL { pid = f87f9cfaf1894acdb6c8a2354c43623d persistentId = 2046375471 name = Stack Test type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 203.78000004151545 lct = 97771.196559772288 lastUT = 97974.976559813804 distanceTraveled = 312429.70346724929 root = 0 lat = -1.8896071944755745E-07 lon = 92.619105379465267 alt = 486750.11123268562 hgt = -1 nrm = -0.882575929,0.0617761016,-0.466093898 rot = -0.602740109,0.608422577,0.370170236,0.359861821 CoM = -0.00458669662,-2.33154988,-6.51478767E-05 stg = 3 prst = False ref = 1520266947 ctrl = True PQSMin = 2 PQSMax = 9 cPch = 0.2 cHdg = 0.3 cMod = 0 ORBIT { SMA = 1086749.9490504093 ECC = 1.9528307879947132E-08 INC = 0 LPE = 100.9260646326005 LAN = 106.83015845909495 MNA = 2.9946524907377681 EPH = 97974.656559813739 REF = 1 } PART { name = probeCoreHex cid = 4294515788 uid = 1520266947 mid = 2990957875 persistentId = 422703571 launchID = 37 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 4 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 7 attN = top, -1 mass = 0.100000001 shielded = False temp = 300.85358966108834 tempExt = 300.27644516284494 tempExtUnexp = 4 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = probeCoreHex (Stack Test) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Running stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 97974.976559813804 ExtraDelayScheduledTimeStamp = 0 ExtraDelay = 0 CmdGuid = 9b0b8d1c-28fe-4ed6-b0e0-baea502594f4 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = solarPanels5 cid = 4294515736 uid = 3208296797 mid = 2990957875 persistentId = 349211801 launchID = 37 parent = 0 position = -0.3413410484790802,-0.09356689453125,2.0489096641540527E-08 rotation = 0,-0.707106829,0,0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 4 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 300.82343385045249 tempExt = 300.18189156646065 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 97771.196559772288 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294515704 uid = 543434075 mid = 2990957875 persistentId = 3544870104 launchID = 37 parent = 0 position = -0.17067050933837891,-0.09356689453125,0.29561001062393188 rotation = 0,-0.258819044,0,0.965925872 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 4 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 3 sym = 4 sym = 5 sym = 6 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 300.82344456067023 tempExt = 300.18214944233796 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 97771.196559772288 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294515672 uid = 2816718141 mid = 2990957875 persistentId = 2818285978 launchID = 37 parent = 0 position = 0.17067058384418488,-0.09356689453125,0.29561001062393188 rotation = 0,0.258819103,0,0.965925872 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 4 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 4 sym = 5 sym = 6 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 300.82343384888236 tempExt = 300.18189156517809 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 97771.196559772288 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294515640 uid = 4210470080 mid = 2990957875 persistentId = 3276470070 launchID = 37 parent = 0 position = 0.3413410484790802,-0.09356689453125,-5.029141902923584E-08 rotation = 0,0.707106888,0,0.707106769 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 4 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 5 sym = 6 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 300.82343385019078 tempExt = 300.18189156626056 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 97771.196559772288 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294515608 uid = 3097183914 mid = 2990957875 persistentId = 1816036716 launchID = 37 parent = 0 position = 0.17067050933837891,-0.09356689453125,-0.29561007022857666 rotation = 0,0.965925872,0,0.258819014 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 4 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 4 sym = 6 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 300.82348478347927 tempExt = 300.18293482474928 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 97771.196559772288 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294515576 uid = 3394787816 mid = 2990957875 persistentId = 3531285885 launchID = 37 parent = 0 position = -0.17067049443721771,-0.09356689453125,-0.29561004042625427 rotation = 0,0.965925872,0,-0.258819014 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 4 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 300.82343385485325 tempExt = 300.18189157005406 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 97771.196559772288 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = miniFuelTank cid = 4294515824 uid = 2153121555 mid = 2990957875 persistentId = 1372768410 launchID = 37 parent = 0 position = 0,-0.36177444458007813,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 4 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 0 attN = bottom, 9 mass = 0.0250000004 shielded = False temp = 300.93772138764916 tempExt = 300.1942579183343 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = SurfAntenna cid = 4294515544 uid = 2413155694 mid = 2990957875 persistentId = 46158602 launchID = 37 parent = 7 position = -0.35389804840087891,-0.442169189453125,1.7695128917694092E-08 rotation = 0.5,-0.5,0.5,0.5 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 4 sqor = -1 sepI = -1 sidx = -1 attm = 1 srfN = srfAttach, 7 mass = 0.0149999997 shielded = False temp = 300.92009165472911 tempExt = 300.44239343635104 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = SurfAntenna modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 1500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = liquidEngineMini cid = 4294515904 uid = 242687541 mid = 2990957875 persistentId = 3899745839 launchID = 37 parent = 7 position = 0,-0.53604888916015625,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 2 resPri = 0 dstg = 4 sqor = 2 sepI = -1 sidx = 0 attm = 0 srfN = , -1 attN = top, 7 attN = bottom, 10 mass = 0.100000001 shielded = False temp = 300.84699421416713 tempExt = 300.14251736432925 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = liquidEngineMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnginesFX isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleJettison isEnabled = True activejettisonName = node_fairing_collider isJettisoned = False shroudHideOverride = False stagingEnabled = True EVENTS { } ACTIONS { JettisonAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True gimbalActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } LockAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } FreeAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } TogglePitchAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleYawAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleRollAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = Decoupler.0 cid = 4294515986 uid = 1022701562 mid = 2990957875 persistentId = 223814179 launchID = 37 parent = 9 position = 0,-0.94354820251464844,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 1 resPri = 0 dstg = 3 sqor = 1 sepI = 1 sidx = 0 attm = 0 srfN = , -1 attN = top, 9 attN = bottom, 11 mass = 0.00999999978 shielded = False temp = 300.8625732840606 tempExt = 300.20205699227273 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = Decoupler.0 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDecouple isEnabled = True ejectionForcePercent = 100 isDecoupled = False stagingEnabled = True EVENTS { } ACTIONS { DecoupleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleToggleCrossfeed isEnabled = True crossfeedStatus = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } EnableAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } DisableAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = probeCoreHex cid = 4294532112 uid = 3390513340 mid = 2990957875 persistentId = 2865817195 launchID = 37 parent = 10 position = 0,-1.1635475158691406,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 1 resPri = 0 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 18 attN = top, 10 mass = 0.100000001 shielded = False temp = 300.87178846725146 tempExt = 300.29577926719367 tempExtUnexp = 4 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = probeCoreHex modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Running stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 97974.976559813804 ExtraDelayScheduledTimeStamp = 0 ExtraDelay = 0 CmdGuid = 06b28792-1fca-43ac-936c-8cb00141a22f } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 9.9998823529391316 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = solarPanels5 cid = 4294523656 uid = 2477672721 mid = 2990957875 persistentId = 1845500609 launchID = 37 parent = 11 position = -0.3413410484790802,-1.2571144104003906,2.0489096641540527E-08 rotation = 0,-0.707106829,0,0.707106829 mirror = 1,1,1 symMethod = Radial istg = 1 resPri = 0 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 13 sym = 14 sym = 15 sym = 16 sym = 17 srfN = srfAttach, 11 mass = 0.00499999989 shielded = False temp = 300.84477047287839 tempExt = 300.20157578902166 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 97771.196559772288 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294522804 uid = 185337543 mid = 2990957875 persistentId = 3186487592 launchID = 37 parent = 11 position = -0.17067050933837891,-1.2571144104003906,0.29561001062393188 rotation = 0,-0.258819044,0,0.965925872 mirror = 1,1,1 symMethod = Radial istg = 1 resPri = 0 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 12 sym = 14 sym = 15 sym = 16 sym = 17 srfN = srfAttach, 11 mass = 0.00499999989 shielded = False temp = 300.84478050443624 tempExt = 300.20184415317095 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 97771.196559772288 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294522772 uid = 928666884 mid = 2990957875 persistentId = 2847274167 launchID = 37 parent = 11 position = 0.17067058384418488,-1.2571144104003906,0.29561001062393188 rotation = 0,0.258819103,0,0.965925872 mirror = 1,1,1 symMethod = Radial istg = 1 resPri = 0 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 12 sym = 13 sym = 15 sym = 16 sym = 17 srfN = srfAttach, 11 mass = 0.00499999989 shielded = False temp = 300.84477047166217 tempExt = 300.20157578781567 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 97771.196559772288 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294522740 uid = 1811259526 mid = 2990957875 persistentId = 3593344846 launchID = 37 parent = 11 position = 0.3413410484790802,-1.2571144104003906,-5.029141902923584E-08 rotation = 0,0.707106888,0,0.707106769 mirror = 1,1,1 symMethod = Radial istg = 1 resPri = 0 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 12 sym = 13 sym = 14 sym = 16 sym = 17 srfN = srfAttach, 11 mass = 0.00499999989 shielded = False temp = 300.84477047296042 tempExt = 300.20157578912597 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 97771.196559772288 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294522708 uid = 2175428944 mid = 2990957875 persistentId = 1656539286 launchID = 37 parent = 11 position = 0.17067050933837891,-1.2571144104003906,-0.29561007022857666 rotation = 0,0.965925872,0,0.258819014 mirror = 1,1,1 symMethod = Radial istg = 1 resPri = 0 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 12 sym = 13 sym = 14 sym = 15 sym = 17 srfN = srfAttach, 11 mass = 0.00499999989 shielded = False temp = 300.84481810097776 tempExt = 300.20265878059212 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 97771.196559772288 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294522676 uid = 916294623 mid = 2990957875 persistentId = 3469077291 launchID = 37 parent = 11 position = -0.17067049443721771,-1.2571144104003906,-0.29561004042625427 rotation = 0,0.965925872,0,-0.258819014 mirror = 1,1,1 symMethod = Radial istg = 1 resPri = 0 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 12 sym = 13 sym = 14 sym = 15 sym = 16 srfN = srfAttach, 11 mass = 0.00499999989 shielded = False temp = 300.84477047515242 tempExt = 300.20157579127681 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 97771.196559772288 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = miniFuelTank cid = 4294541698 uid = 3007609468 mid = 2990957875 persistentId = 3431629131 launchID = 37 parent = 11 position = 0,-1.5253200531005859,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 1 resPri = 0 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 11 attN = bottom, 20 mass = 0.0250000004 shielded = False temp = 300.96029339345057 tempExt = 300.22613683634205 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = miniFuelTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 18 maxAmount = 18 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 22 maxAmount = 22 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = SurfAntenna cid = 4294516770 uid = 3132559776 mid = 2990957875 persistentId = 778182879 launchID = 37 parent = 18 position = -0.35389804840087891,-1.6057147979736328,1.7695128917694092E-08 rotation = 0.5,-0.5,0.5,0.5 mirror = 1,1,1 symMethod = Radial istg = 1 resPri = 0 dstg = 2 sqor = -1 sepI = 1 sidx = -1 attm = 1 srfN = srfAttach, 18 mass = 0.0149999997 shielded = False temp = 300.94139603591384 tempExt = 300.50611598715716 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = SurfAntenna modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 1500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = liquidEngineMini cid = 4294559704 uid = 2565566547 mid = 2990957875 persistentId = 2213815543 launchID = 37 parent = 18 position = 0,-1.6995944976806641,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 2 resPri = 0 dstg = 2 sqor = 2 sepI = 1 sidx = 1 attm = 0 srfN = , -1 attN = top, 18 attN = bottom, 21 mass = 0.100000001 shielded = False temp = 300.94217149524047 tempExt = 300.22003516580094 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = liquidEngineMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnginesFX isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleJettison isEnabled = True activejettisonName = node_fairing_collider isJettisoned = False shroudHideOverride = False stagingEnabled = True EVENTS { } ACTIONS { JettisonAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True gimbalActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } LockAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } FreeAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } TogglePitchAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleYawAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleRollAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = Decoupler.0 cid = 4294584380 uid = 3035155317 mid = 2990957875 persistentId = 816975330 launchID = 37 parent = 20 position = 0,-2.1070947647094727,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 1 resPri = 0 dstg = 1 sqor = 1 sepI = 1 sidx = 1 attm = 0 srfN = , -1 attN = top, 20 attN = bottom, 22 mass = 0.00999999978 shielded = False temp = 301.04271734618391 tempExt = 300.36635327362171 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = Decoupler.0 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDecouple isEnabled = True ejectionForcePercent = 100 isDecoupled = False stagingEnabled = True EVENTS { } ACTIONS { DecoupleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleToggleCrossfeed isEnabled = True crossfeedStatus = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } EnableAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } DisableAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = probeCoreHex cid = 4294664594 uid = 76573819 mid = 2990957875 persistentId = 2061506446 launchID = 37 parent = 21 position = 0,-2.3270950317382813,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 1 resPri = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 23 attN = top, 21 mass = 0.100000001 shielded = False temp = 301.0930143484091 tempExt = 300.52173034128725 tempExtUnexp = 4 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = probeCoreHex modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Running stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 97974.976559813804 ExtraDelayScheduledTimeStamp = 0 ExtraDelay = 0 CmdGuid = 667634c4-c081-4c46-a94f-5bab293b64e0 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 3000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 9.9998823529391316 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryBank cid = 4294624962 uid = 1636502420 mid = 2990957875 persistentId = 830679983 launchID = 37 parent = 22 position = 0,-2.6254501342773438,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 1 resPri = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 0 srfN = , -1 attN = top, 22 attN = bottom, 24 mass = 0.0500000007 shielded = False temp = 301.15541545668191 tempExt = 300.35700712098986 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = batteryBank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 999.98823529391314 maxAmount = 1000 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = fuelTankSmall cid = 4294644282 uid = 4255849482 mid = 2990957875 persistentId = 1328184242 launchID = 37 parent = 23 position = 0,-3.2915554046630859,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 1 resPri = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 23 attN = bottom, 30 mass = 0.125 shielded = False temp = 301.19818568519224 tempExt = 300.34654572264526 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = fuelTankSmall modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = LiquidFuel amount = 90 maxAmount = 90 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 110 maxAmount = 110 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = solarPanels4 cid = 4294616446 uid = 1532762684 mid = 2990957875 persistentId = 4078593969 launchID = 37 parent = 24 position = -0.56191861629486084,-3.2046318054199219,3.3527612686157227E-08 rotation = -7.48678476E-23,8.42937027E-08,-1.77635684E-15,1 mirror = 1,1,1 symMethod = Radial istg = 1 resPri = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 26 sym = 27 sym = 28 srfN = srfAttach, 24 mass = 0.0175000001 shielded = False temp = 300.93178479694649 tempExt = 299.90034218254823 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 97771.196559772288 currentRotation = (0.690891266, 0.690871954, -0.150615916, 0.150599405) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294615468 uid = 1537042184 mid = 2990957875 persistentId = 818595821 launchID = 37 parent = 24 position = 0,-3.2046318054199219,0.56191855669021606 rotation = -1.25607405E-15,0.707106829,-1.25607384E-15,0.707106709 mirror = 1,1,1 symMethod = Radial istg = 1 resPri = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 25 sym = 27 sym = 28 srfN = srfAttach, 24 mass = 0.0175000001 shielded = False temp = 301.00679664162715 tempExt = 300.23227536700927 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 97771.196559772288 currentRotation = (0.702124476, 0.702120006, -0.0838108435, 0.0838123262) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294615364 uid = 2016149989 mid = 2990957875 persistentId = 3307542869 launchID = 37 parent = 24 position = 0.56191861629486084,-3.2046318054199219,-8.2887709140777588E-08 rotation = -1.77635684E-15,1,1.52514871E-22,-1.28005098E-07 mirror = 1,1,1 symMethod = Radial istg = 1 resPri = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 25 sym = 26 sym = 28 srfN = srfAttach, 24 mass = 0.0175000001 shielded = False temp = 300.91796165305141 tempExt = 298.65339068077128 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 97771.196559772288 currentRotation = (-0.150568813, -0.150585324, 0.690897048, -0.690879464) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294615260 uid = 18656315 mid = 2990957875 persistentId = 1481481032 launchID = 37 parent = 24 position = -6.7055225372314453E-08,-3.2046318054199219,-0.56191855669021606 rotation = -1.25607384E-15,0.707106709,1.25607405E-15,-0.707106829 mirror = 1,1,1 symMethod = Radial istg = 1 resPri = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 1 sym = 25 sym = 26 sym = 27 srfN = srfAttach, 24 mass = 0.0175000001 shielded = False temp = 301.04224609493752 tempExt = 300.41020933580256 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 97771.196559772288 currentRotation = (-0.083816126, -0.0838143826, 0.702126741, -0.702116907) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = RTLongAntenna2 cid = 4294572568 uid = 959639094 mid = 2990957875 persistentId = 2266577438 launchID = 37 parent = 24 position = -0.40864348411560059,-3.2665901184082031,-0.4086434543132782 rotation = -0.270598054,0.65328145,-0.65328151,-0.270598054 mirror = 1,1,1 symMethod = Radial istg = 1 resPri = 0 dstg = 0 sqor = -1 sepI = 1 sidx = -1 attm = 1 srfN = srfAttach, 24 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 300.95923840230603 tempExt = 300.44295037502411 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.993029535 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = liquidEngineMini cid = 4294567288 uid = 3101287904 mid = 2990957875 persistentId = 4169669686 launchID = 37 parent = 24 position = 0,-3.8468055725097656,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 0 sqor = 0 sepI = 1 sidx = 0 attm = 0 srfN = , -1 attN = top, 24 attN = bottom, -1 mass = 0.100000001 shielded = False temp = 301.15077783248756 tempExt = 300.41432550443727 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/trippy rTrf = liquidEngineMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnginesFX isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleJettison isEnabled = True activejettisonName = node_fairing_collider isJettisoned = True shroudHideOverride = False stagingEnabled = True EVENTS { } ACTIONS { JettisonAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True gimbalActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } LockAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } FreeAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } TogglePitchAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleYawAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleRollAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = True, 97773.7965597728 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { MANEUVER { UT = 98183.773980894737 dV = 0,0,52.701619786267784 } } CTRLSTATE { pitch = 1.42183367E-07 yaw = 2.17124671E-06 roll = -2.56886608E-07 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } } LoaderInfo { ModuleManager v3.0.5.0 = False DebugStuff v1.5.0.0 = False RemoteTech v1.8.0.0 / v1.8.9 = False DebugStuff = False RemoteTech = True ModuleManager.3.0.5.dll = False ModuleManager.ConfigCache = True ModuleManager.ConfigSHA = True ModuleManager.Physics = True ModuleManager.TechTree = True RemoteTech v1.8.0.0 / v1.8.10 = False RemoteTech v1.8.0.0 / v1.8.10.1 = False ModuleManager v3.0.6.0 = False ModuleManager.3.0.6.dll = False RemoteTech v1.8.0.0 / v1.8.10.2 = False RemoteTech v1.8.0.0 / v1.8.10.3 = False Kerbalism v1.5.0.50 = False MiniAVC v1.0.3.2 = True Kerbalism = False Kerbalism v1.5.1.88 = False Assembly-CSharp-firstpass v0.0.0.0 = False Ionic.Zip v1.9.1.8 = False KSPAssets v1.1.0.0 = False KSPTrackIR v1.0.0.0 = False Mono.Cecil v0.9.6.0 = False Mono.Security v2.0.5.0 = False RedShellSDK v1.0.6431.19606 = False TDx.TDxInput v1.1.0.0 = False TrackIRUnity v1.0.0.0 = False UnityEngine v0.0.0.0 = False UnityEngine.UI v1.0.0.0 = False ModuleManager v3.0.7.0 = True ModuleManager.3.0.7.dll = True RemoteTech v1.8.0.0 / v1.8.11 = False SoilSampler = False KerbalEngineer v1.1.5.1 = True KerbalEngineer.Unity v1.0.0.0 = True KerbalEngineer = True RemoteTech v1.8.0.0 / v1.8.12 = True } ROSTER { KERBAL { name = Jebediah Kerman gender = Male type = Crew trait = Pilot brave = 0.5 dumb = 0.5 badS = True veteran = True tour = False state = Assigned inactive = False inactiveTimeEnd = 0 gExperienced = 0 outDueToG = False ToD = 0 idx = 0 extraXP = 0 suit = Default hero = True CAREER_LOG { flight = 2 0 = Land,Kerbin 0 = Flight,Kerbin 0 = Recover 1 = Land,Kerbin 1 = Flight,Kerbin 1 = Recover } FLIGHT_LOG { flight = 2 2 = Orbit,Kerbin } } KERBAL { name = Bill Kerman gender = Male type = Crew trait = Engineer brave = 0.5 dumb = 0.800000012 badS = False veteran = True tour = False state = Available inactive = False inactiveTimeEnd = 0 gExperienced = 0 outDueToG = False ToD = 0 idx = -1 extraXP = 0 suit = Default hero = True CAREER_LOG { flight = 0 } FLIGHT_LOG { flight = 0 } } KERBAL { name = Bob Kerman gender = Male type = Crew trait = Scientist brave = 0.300000012 dumb = 0.100000001 badS = False veteran = True tour = False state = Available inactive = False inactiveTimeEnd = 0 gExperienced = 0 outDueToG = False ToD = 0 idx = -1 extraXP = 0 suit = Default hero = True CAREER_LOG { flight = 0 } FLIGHT_LOG { flight = 0 } } KERBAL { name = Valentina Kerman gender = Female type = Crew trait = Pilot brave = 0.550000012 dumb = 0.400000006 badS = True veteran = True tour = False state = Available inactive = False inactiveTimeEnd = 0 gExperienced = 0 outDueToG = False ToD = 0 idx = -1 extraXP = 0 suit = Default hero = True CAREER_LOG { flight = 0 } FLIGHT_LOG { flight = 0 } } } MESSAGESYSTEM { flash = False } } ================================================ FILE: saves/RemoteTech KSP1_5 Testbed/Ships/SPH/Rover.craft ================================================ ship = Rover version = 1.5.1 description = type = SPH size = 2.86431837,1.5312233,2.42305064 steamPublishedFileId = 0 persistentId = 4257638165 rot = 0,0,0,0 missionFlag = Squad/Flags/default vesselType = Debris PART { part = roverBody.v2_4291866260 partName = Part persistentId = 3319947879 pos = 0,5,0 attPos = 0,0,0 attPos0 = 0,5,0 rot = 0.707106829,0,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0.707106769,0,0,0.707106769 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = roverWheel1_4291861282 link = roverWheel1_4291861074 link = roverWheel1_4291860070 link = roverWheel1_4291859672 link = SurfAntenna_4291855006 link = batteryBankMini_4291847672 link = batteryBankMini_4291844186 link = advSasModule_4291759910 attN = front,advSasModule_4291759910_0|0|-0.22407 attN = bottom,batteryBankMini_4291844186_0|-0.746285|0 attN = top,batteryBankMini_4291847672_0|0.746285|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FlagDecal isEnabled = True flagDisplayed = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 120 maxAmount = 120 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = roverWheel1_4291861282 partName = Part persistentId = 1562408628 pos = -0.890194178,4.59750032,0.647006392 attPos = 0,0,0 attPos0 = -0.890194178,0.647006154,0.402499676 rot = -1.1920929E-07,-5.96046732E-08,3.57627954E-07,-1.00000012 attRot = -0.707106769,0,0,0.707106769 attRot0 = 0.707106769,2.10734271E-07,2.95028002E-07,-0.707106888 mir = 1,1,1 symMethod = Mirror autostrutMode = ForceHeaviest rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = roverWheel1_4291861074 srfN = srfAttach,roverBody.v2_4291866260 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = False autoFriction = True frictionMultiplier = 1 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 autoSpringDamper = True suspensionPos = (-1, -1, -1) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 100 brakeInput = 0 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = roverWheel1_4291861074 partName = Part persistentId = 2991696497 pos = 0.890194178,4.59750032,0.647006273 attPos = 0,0,0 attPos0 = 0.890194178,0.647006035,0.402499676 rot = -3.57627869E-07,1.00000012,1.1920929E-07,1.58932494E-08 attRot = -0.707106769,0,0,0.707106769 attRot0 = -2.64119308E-07,0.707106888,-0.707106769,-2.41642852E-07 mir = 1,1,1 symMethod = Mirror autostrutMode = ForceHeaviest rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = roverWheel1_4291861282 srfN = srfAttach,roverBody.v2_4291866260 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = False autoFriction = True frictionMultiplier = 1 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 autoSpringDamper = True suspensionPos = (-1, -1, -1) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 100 brakeInput = 0 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = roverWheel1_4291860070 partName = Part persistentId = 3457942484 pos = -0.889962912,4.59750032,-0.638384104 attPos = 0,0,0 attPos0 = -0.889962912,-0.638383746,0.402499795 rot = -1.1920929E-07,-5.96046732E-08,3.57627954E-07,-1.00000012 attRot = -0.707106769,0,0,0.707106769 attRot0 = 0.707106769,2.10734271E-07,2.95028002E-07,-0.707106888 mir = 1,1,1 symMethod = Mirror autostrutMode = ForceHeaviest rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = roverWheel1_4291859672 srfN = srfAttach,roverBody.v2_4291866260 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = False autoFriction = True frictionMultiplier = 1 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 autoSpringDamper = True suspensionPos = (-1, -1, -1) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 100 brakeInput = 0 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = roverWheel1_4291859672 partName = Part persistentId = 3564612432 pos = 0.889962912,4.59750032,-0.638384044 attPos = 0,0,0 attPos0 = 0.889962912,-0.638383687,0.402499855 rot = -3.57627869E-07,1.00000012,1.1920929E-07,1.58932494E-08 attRot = -0.707106769,0,0,0.707106769 attRot0 = -2.64119308E-07,0.707106888,-0.707106769,-2.41642852E-07 mir = 1,1,1 symMethod = Mirror autostrutMode = ForceHeaviest rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = roverWheel1_4291860070 srfN = srfAttach,roverBody.v2_4291866260 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = False autoFriction = True frictionMultiplier = 1 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 autoSpringDamper = True suspensionPos = (-1, -1, -1) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 100 brakeInput = 0 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = SurfAntenna_4291855006 partName = Part persistentId = 370015909 pos = 4.68022776E-08,5.25169849,-0.653641582 attPos = 0,0,0 attPos0 = 4.68022776E-08,-0.653641343,-0.251698464 rot = 2.91692686E-07,1.00000012,-3.27825546E-07,-1.13686838E-13 attRot = 0,0,0,1 attRot0 = 2.06257937E-07,0.70710659,-0.707107067,2.06257766E-07 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,roverBody.v2_4291866260 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 1500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = batteryBankMini_4291847672 partName = Part persistentId = 51851936 pos = 0,5,0.846286058 attPos = 0,0,0 attPos0 = 0,0.846285224,-1.1920929E-07 rot = 0.707106829,0,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = strutOcto_4291833778 attN = top,strutOcto_4291833778_0|0.1|0 attN = bottom,roverBody.v2_4291866260_0|-0.1|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = batteryBankMini_4291844186 partName = Part persistentId = 21930936 pos = 0,5,-0.846286058 attPos = 0,0,0 attPos0 = 0,-0.846285224,1.1920929E-07 rot = 0.707106829,0,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = strutOcto_4291831784 attN = top,roverBody.v2_4291866260_0|0.1|0 attN = bottom,strutOcto_4291831784_0|-0.1|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = strutOcto_4291833778 partName = Part persistentId = 113222753 pos = 0,5,1.07502067 attPos = 0,0,0 attPos0 = 0,0.228734523,0 rot = 0.707106829,0,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = bottom,batteryBankMini_4291847672_0|-0.1287344|0 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = strutOcto_4291831784 partName = Part persistentId = 3225648492 pos = 0,5,-1.07502067 attPos = 0,0,0 attPos0 = 0,-0.228734523,0 rot = 0.707106829,0,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = top,batteryBankMini_4291844186_0|0.1287344|0 EVENTS { } ACTIONS { } PARTDATA { } } PART { part = advSasModule_4291759910 partName = Part persistentId = 1467420384 pos = 0,5.42309666,2.98023224E-08 attPos = 0,0,0 attPos0 = 0,-2.98023224E-08,-0.423096716 rot = 1.00000012,0,0,0 attRot = 0.707106769,0,0,0.707106769 attRot0 = 0.707106829,0,0,0.707106829 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = LgRadialSolarPanel_4291849418 link = LgRadialSolarPanel_4291758804 attN = top,roverBody.v2_4291866260_0|0.1990267|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = LgRadialSolarPanel_4291849418 partName = Part persistentId = 3746175898 pos = 0.414141625,5.60597515,0 attPos = 0,0,0 attPos0 = 0.414141625,-0.182878464,4.47034729E-08 rot = -0.707107008,0,0,0.707106769 attRot = 0,0,0,1 attRot0 = -0.707106709,0,0,-0.707106948 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = LgRadialSolarPanel_4291758804 srfN = srfAttach,advSasModule_4291759910 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, 0, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = LgRadialSolarPanel_4291758804 partName = Part persistentId = 1348833200 pos = -0.414141625,5.60597515,5.96046448E-08 attPos = 0,0,0 attPos0 = -0.414141625,-0.182878464,-1.49011576E-08 rot = -0.707107008,0,0,0.707106769 attRot = 0,0,0,1 attRot0 = -0.707106709,0,0,-0.707106948 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = LgRadialSolarPanel_4291849418 srfN = srfAttach,advSasModule_4291759910 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, 0, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } ================================================ FILE: saves/RemoteTech KSP1_5 Testbed/Ships/VAB/Dish 20Mm Limit.craft ================================================ ship = Dish 20Mm Limit version = 1.5.1 description = type = VAB size = 0.82074815,2.32972527,1.19644868 steamPublishedFileId = 0 persistentId = 152100838 rot = 0,0,0,0 missionFlag = Squad/Flags/default vesselType = Debris PART { part = probeCoreOcto.v2_4293497788 partName = Part persistentId = 3449198583 pos = 0,15,0 attPos = 0,0,0 attPos0 = 0,15,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = sasModule_4293496104 link = batteryBankMini_4293493832 link = solarPanels5_4293493084 link = solarPanels5_4293492698 link = solarPanels5_4293492666 link = solarPanels5_4293492634 link = solarPanels5_4293492602 link = solarPanels5_4293492570 link = solarPanels5_4293492538 link = solarPanels5_4293492506 attN = bottom,sasModule_4293496104_0|-0.1870818|0 attN = top,batteryBankMini_4293493832_0|0.1870818|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = sasModule_4293496104 partName = Part persistentId = 2737989541 pos = 0,14.7218075,0 attPos = 0,0,0 attPos0 = 0,-0.27819252,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = batteryBankMini_4293494534 attN = bottom,batteryBankMini_4293494534_0|-0.0911109|0 attN = top,probeCoreOcto.v2_4293497788_0|0.0911109|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = batteryBankMini_4293494534 partName = Part persistentId = 3453838612 pos = 0,14.5306959,0 attPos = 0,0,0 attPos0 = 0,-0.191111565,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = top,sasModule_4293496104_0|0.1|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = batteryBankMini_4293493832 partName = Part persistentId = 4013465972 pos = 0,15.2870817,0 attPos = 0,0,0 attPos0 = 0,0.287081718,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = HighGainAntenna5_4293434240 link = SurfAntenna_4293391962 attN = top,HighGainAntenna5_4293434240_0|0.1|0 attN = bottom,probeCoreOcto.v2_4293497788_0|-0.1|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = solarPanels5_4293493084 partName = Part persistentId = 4255474737 pos = -0.336090624,14.9830284,2.00325641E-08 attPos = 0,0,0 attPos0 = -0.336090624,-0.0169715881,2.00325641E-08 rot = -3.96246804E-08,-0.707106948,-3.96246982E-08,0.70710659 attRot = 0,0,0,1 attRot0 = -3.96246804E-08,-0.707106948,-3.96246982E-08,0.70710659 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4293492698 sym = solarPanels5_4293492666 sym = solarPanels5_4293492634 sym = solarPanels5_4293492602 sym = solarPanels5_4293492570 sym = solarPanels5_4293492538 sym = solarPanels5_4293492506 srfN = srfAttach,probeCoreOcto.v2_4293497788 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4293492698 partName = Part persistentId = 744023244 pos = -0.237651929,14.9830284,0.237651989 attPos = 0,0,0 attPos0 = -0.237651929,-0.0169715881,0.237651989 rot = -5.17721475E-08,-0.382683635,-2.14447375E-08,0.923879445 attRot = 0,0,0,1 attRot0 = -5.17721475E-08,-0.382683635,-2.14447375E-08,0.923879445 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4293493084 sym = solarPanels5_4293492666 sym = solarPanels5_4293492634 sym = solarPanels5_4293492602 sym = solarPanels5_4293492570 sym = solarPanels5_4293492538 sym = solarPanels5_4293492506 srfN = srfAttach,probeCoreOcto.v2_4293497788 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4293492666 partName = Part persistentId = 2551032830 pos = 5.82322975E-16,14.9830284,0.336090595 attPos = 0,0,0 attPos0 = 5.82322975E-16,-0.0169715881,0.336090595 rot = -5.60377771E-08,-2.52881108E-07,-1.25607405E-14,1 attRot = 0,0,0,1 attRot0 = -5.60377771E-08,-2.52881108E-07,-1.25607405E-14,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4293493084 sym = solarPanels5_4293492698 sym = solarPanels5_4293492634 sym = solarPanels5_4293492602 sym = solarPanels5_4293492570 sym = solarPanels5_4293492538 sym = solarPanels5_4293492506 srfN = srfAttach,probeCoreOcto.v2_4293497788 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4293492634 partName = Part persistentId = 2046921360 pos = 0.237651944,14.9830284,0.237651944 attPos = 0,0,0 attPos0 = 0.237651944,-0.0169715881,0.237651944 rot = -5.17721581E-08,0.382683218,2.14447162E-08,0.923879623 attRot = 0,0,0,1 attRot0 = -5.17721581E-08,0.382683218,2.14447162E-08,0.923879623 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4293493084 sym = solarPanels5_4293492698 sym = solarPanels5_4293492666 sym = solarPanels5_4293492602 sym = solarPanels5_4293492570 sym = solarPanels5_4293492538 sym = solarPanels5_4293492506 srfN = srfAttach,probeCoreOcto.v2_4293497788 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4293492602 partName = Part persistentId = 2801283308 pos = 0.336090624,14.9830284,-4.94145382E-08 attPos = 0,0,0 attPos0 = 0.336090624,-0.0169715881,-4.94145382E-08 rot = -3.96246982E-08,0.70710665,3.96246804E-08,0.707106888 attRot = 0,0,0,1 attRot0 = -3.96246982E-08,0.70710665,3.96246804E-08,0.707106888 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4293493084 sym = solarPanels5_4293492698 sym = solarPanels5_4293492666 sym = solarPanels5_4293492634 sym = solarPanels5_4293492570 sym = solarPanels5_4293492538 sym = solarPanels5_4293492506 srfN = srfAttach,probeCoreOcto.v2_4293497788 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4293492570 partName = Part persistentId = 470035104 pos = 0.237651914,14.9830284,-0.237652004 attPos = 0,0,0 attPos0 = 0.237651914,-0.0169715881,-0.237652004 rot = -2.14447358E-08,0.923879504,5.1772151E-08,0.382683605 attRot = 0,0,0,1 attRot0 = -2.14447358E-08,0.923879504,5.1772151E-08,0.382683605 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4293493084 sym = solarPanels5_4293492698 sym = solarPanels5_4293492666 sym = solarPanels5_4293492634 sym = solarPanels5_4293492602 sym = solarPanels5_4293492538 sym = solarPanels5_4293492506 srfN = srfAttach,probeCoreOcto.v2_4293497788 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4293492538 partName = Part persistentId = 2958715313 pos = -4.00651246E-08,14.9830284,-0.336090595 attPos = 0,0,0 attPos0 = -4.00651246E-08,-0.0169715881,-0.336090595 rot = -1.25607405E-14,1,5.60377771E-08,2.52881108E-07 attRot = 0,0,0,1 attRot0 = -1.25607405E-14,1,5.60377771E-08,2.52881108E-07 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4293493084 sym = solarPanels5_4293492698 sym = solarPanels5_4293492666 sym = solarPanels5_4293492634 sym = solarPanels5_4293492602 sym = solarPanels5_4293492570 sym = solarPanels5_4293492506 srfN = srfAttach,probeCoreOcto.v2_4293497788 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4293492506 partName = Part persistentId = 316917016 pos = -0.237652048,14.9830284,-0.237651885 attPos = 0,0,0 attPos0 = -0.237652048,-0.0169715881,-0.237651885 rot = 2.14447251E-08,0.923879564,5.17721546E-08,-0.382683367 attRot = 0,0,0,1 attRot0 = 2.14447251E-08,0.923879564,5.17721546E-08,-0.382683367 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4293493084 sym = solarPanels5_4293492698 sym = solarPanels5_4293492666 sym = solarPanels5_4293492634 sym = solarPanels5_4293492602 sym = solarPanels5_4293492570 sym = solarPanels5_4293492538 srfN = srfAttach,probeCoreOcto.v2_4293497788 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = HighGainAntenna5_4293434240 partName = Part persistentId = 2586054081 pos = 0,15.3870821,0 attPos = 0,0,0 attPos0 = 0,0.100000381,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = bottom,batteryBankMini_4293493832_0|0|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.995825052 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 0.70710678118654757 RTOmniRange = 0 RTDishRange = 20000000 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = SurfAntenna_4293391962 partName = Part persistentId = 3730426048 pos = -0.358669788,15.2804832,1.83981541E-08 attPos = 0,0,0 attPos0 = -0.358669788,-0.0065984726,1.83981541E-08 rot = 0.50000006,-0.5,0.50000006,0.5 attRot = 0,0,0,1 attRot0 = 0.50000006,-0.5,0.50000006,0.5 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,batteryBankMini_4293493832 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 1500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ================================================ FILE: saves/RemoteTech KSP1_5 Testbed/Ships/VAB/Dish 75Mm Limit.craft ================================================ ship = Dish 75Mm Limit version = 1.5.1 description = type = VAB size = 1.25999999,1.6701889,1.25999999 steamPublishedFileId = 0 persistentId = 152100838 rot = 0,0,0,0 missionFlag = Squad/Flags/default vesselType = Debris PART { part = probeCoreOcto.v2_4293497788 partName = Part persistentId = 3449198583 pos = 0,15,0 attPos = 0,0,0 attPos0 = 0,15,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = sasModule_4293496104 link = batteryBankMini_4293493832 link = solarPanels5_4293493084 link = solarPanels5_4294442088 link = solarPanels5_4294442056 link = solarPanels5_4294442024 link = solarPanels5_4294441992 link = solarPanels5_4294441960 link = solarPanels5_4294441928 link = solarPanels5_4294441896 attN = bottom,sasModule_4293496104_0|-0.1870818|0 attN = top,batteryBankMini_4293493832_0|0.1870818|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = sasModule_4293496104 partName = Part persistentId = 2737989541 pos = 0,14.7218075,0 attPos = 0,0,0 attPos0 = 0,-0.27819252,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = batteryBankMini_4293494534 attN = bottom,batteryBankMini_4293494534_0|-0.0911109|0 attN = top,probeCoreOcto.v2_4293497788_0|0.0911109|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = batteryBankMini_4293494534 partName = Part persistentId = 3453838612 pos = 0,14.5306959,0 attPos = 0,0,0 attPos0 = 0,-0.191111565,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = solarPanels5_4294441748 link = solarPanels5_4294441490 link = solarPanels5_4294441458 link = solarPanels5_4294441426 link = solarPanels5_4294441394 link = solarPanels5_4294441362 link = solarPanels5_4294441330 link = solarPanels5_4294441298 attN = top,sasModule_4293496104_0|0.1|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = batteryBankMini_4293493832 partName = Part persistentId = 4013465972 pos = 0,15.2870817,0 attPos = 0,0,0 attPos0 = 0,0.287081718,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = SurfAntenna_4293391962 link = RTShortDish2_4294446452 attN = top,RTShortDish2_4294446452_0|0.1|0 attN = bottom,probeCoreOcto.v2_4293497788_0|-0.1|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = SurfAntenna_4293391962 partName = Part persistentId = 3730426048 pos = -0.358669788,15.2804832,1.83981541E-08 attPos = 0,0,0 attPos0 = -0.358669788,-0.0065984726,1.83981541E-08 rot = 0.50000006,-0.5,0.50000006,0.5 attRot = 0,0,0,1 attRot0 = 0.50000006,-0.5,0.50000006,0.5 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,batteryBankMini_4293493832 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 1500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = RTShortDish2_4294446452 partName = Part persistentId = 2436626627 pos = 0,15.3870821,0 attPos = 0,0,0 attPos0 = 0,0.100000381,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = bottom,batteryBankMini_4293493832_0|0|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 0.97629600711993336 RTOmniRange = 0 RTDishRange = 0 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4293493084 partName = Part persistentId = 4255474737 pos = -0.33712402,14.9679899,2.00941592E-08 attPos = 0,0,0 attPos0 = -0.33712402,-0.0320100784,2.00941592E-08 rot = -3.96246804E-08,-0.707106948,-3.96246982E-08,0.70710659 attRot = 0,0,0,1 attRot0 = -3.96246804E-08,-0.707106948,-3.96246982E-08,0.70710659 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294442088 sym = solarPanels5_4294442056 sym = solarPanels5_4294442024 sym = solarPanels5_4294441992 sym = solarPanels5_4294441960 sym = solarPanels5_4294441928 sym = solarPanels5_4294441896 srfN = srfAttach,probeCoreOcto.v2_4293497788 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294442088 partName = Part persistentId = 1194958593 pos = -0.238382652,14.9679899,0.238382712 attPos = 0,0,0 attPos0 = -0.238382652,-0.0320100784,0.238382712 rot = -5.17721475E-08,-0.382683635,-2.14447375E-08,0.923879445 attRot = 0,0,0,1 attRot0 = -5.17721475E-08,-0.382683635,-2.14447375E-08,0.923879445 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4293493084 sym = solarPanels5_4294442056 sym = solarPanels5_4294442024 sym = solarPanels5_4294441992 sym = solarPanels5_4294441960 sym = solarPanels5_4294441928 sym = solarPanels5_4294441896 srfN = srfAttach,probeCoreOcto.v2_4293497788 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294442056 partName = Part persistentId = 2479595944 pos = 5.78651617E-16,14.9679899,0.33712399 attPos = 0,0,0 attPos0 = 5.78651617E-16,-0.0320100784,0.33712399 rot = -5.60377771E-08,-2.52881108E-07,-1.25607405E-14,1 attRot = 0,0,0,1 attRot0 = -5.60377771E-08,-2.52881108E-07,-1.25607405E-14,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4293493084 sym = solarPanels5_4294442088 sym = solarPanels5_4294442024 sym = solarPanels5_4294441992 sym = solarPanels5_4294441960 sym = solarPanels5_4294441928 sym = solarPanels5_4294441896 srfN = srfAttach,probeCoreOcto.v2_4293497788 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294442024 partName = Part persistentId = 2404112271 pos = 0.238382667,14.9679899,0.238382667 attPos = 0,0,0 attPos0 = 0.238382667,-0.0320100784,0.238382667 rot = -5.17721581E-08,0.382683218,2.14447162E-08,0.923879623 attRot = 0,0,0,1 attRot0 = -5.17721581E-08,0.382683218,2.14447162E-08,0.923879623 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4293493084 sym = solarPanels5_4294442088 sym = solarPanels5_4294442056 sym = solarPanels5_4294441992 sym = solarPanels5_4294441960 sym = solarPanels5_4294441928 sym = solarPanels5_4294441896 srfN = srfAttach,probeCoreOcto.v2_4293497788 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294441992 partName = Part persistentId = 2187635785 pos = 0.33712402,14.9679899,-4.95664771E-08 attPos = 0,0,0 attPos0 = 0.33712402,-0.0320100784,-4.95664771E-08 rot = -3.96246982E-08,0.70710665,3.96246804E-08,0.707106888 attRot = 0,0,0,1 attRot0 = -3.96246982E-08,0.70710665,3.96246804E-08,0.707106888 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4293493084 sym = solarPanels5_4294442088 sym = solarPanels5_4294442056 sym = solarPanels5_4294442024 sym = solarPanels5_4294441960 sym = solarPanels5_4294441928 sym = solarPanels5_4294441896 srfN = srfAttach,probeCoreOcto.v2_4293497788 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294441960 partName = Part persistentId = 2830297156 pos = 0.238382638,14.9679899,-0.238382727 attPos = 0,0,0 attPos0 = 0.238382638,-0.0320100784,-0.238382727 rot = -2.14447358E-08,0.923879504,5.1772151E-08,0.382683605 attRot = 0,0,0,1 attRot0 = -2.14447358E-08,0.923879504,5.1772151E-08,0.382683605 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4293493084 sym = solarPanels5_4294442088 sym = solarPanels5_4294442056 sym = solarPanels5_4294442024 sym = solarPanels5_4294441992 sym = solarPanels5_4294441928 sym = solarPanels5_4294441896 srfN = srfAttach,probeCoreOcto.v2_4293497788 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294441928 partName = Part persistentId = 1530030161 pos = -4.01883149E-08,14.9679899,-0.33712399 attPos = 0,0,0 attPos0 = -4.01883149E-08,-0.0320100784,-0.33712399 rot = -1.25607405E-14,1,5.60377771E-08,2.52881108E-07 attRot = 0,0,0,1 attRot0 = -1.25607405E-14,1,5.60377771E-08,2.52881108E-07 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4293493084 sym = solarPanels5_4294442088 sym = solarPanels5_4294442056 sym = solarPanels5_4294442024 sym = solarPanels5_4294441992 sym = solarPanels5_4294441960 sym = solarPanels5_4294441896 srfN = srfAttach,probeCoreOcto.v2_4293497788 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294441896 partName = Part persistentId = 1030905298 pos = -0.238382772,14.9679899,-0.238382608 attPos = 0,0,0 attPos0 = -0.238382772,-0.0320100784,-0.238382608 rot = 2.14447251E-08,0.923879564,5.17721546E-08,-0.382683367 attRot = 0,0,0,1 attRot0 = 2.14447251E-08,0.923879564,5.17721546E-08,-0.382683367 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4293493084 sym = solarPanels5_4294442088 sym = solarPanels5_4294442056 sym = solarPanels5_4294442024 sym = solarPanels5_4294441992 sym = solarPanels5_4294441960 sym = solarPanels5_4294441928 srfN = srfAttach,probeCoreOcto.v2_4293497788 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294441748 partName = Part persistentId = 2326319443 pos = -0.308708847,14.4741039,1.84004829E-08 attPos = 0,0,0 attPos0 = -0.308708847,-0.0565919876,1.84004829E-08 rot = 4.36340422E-08,-0.707106829,4.36340422E-08,0.707106829 attRot = 0,0,0,1 attRot0 = 4.36340422E-08,-0.707106829,4.36340422E-08,0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294441490 sym = solarPanels5_4294441458 sym = solarPanels5_4294441426 sym = solarPanels5_4294441394 sym = solarPanels5_4294441362 sym = solarPanels5_4294441330 sym = solarPanels5_4294441298 srfN = srfAttach,batteryBankMini_4293494534 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294441490 partName = Part persistentId = 1585359947 pos = -0.218290091,14.4741039,0.21829015 attPos = 0,0,0 attPos0 = -0.218290091,-0.0565919876,0.21829015 rot = 5.70106238E-08,-0.382683426,2.36145716E-08,0.923879564 attRot = 0,0,0,1 attRot0 = 5.70106238E-08,-0.382683426,2.36145716E-08,0.923879564 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294441748 sym = solarPanels5_4294441458 sym = solarPanels5_4294441426 sym = solarPanels5_4294441394 sym = solarPanels5_4294441362 sym = solarPanels5_4294441330 sym = solarPanels5_4294441298 srfN = srfAttach,batteryBankMini_4293494534 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294441458 partName = Part persistentId = 1653360431 pos = 6.79602592E-16,14.4741039,0.308708817 attPos = 0,0,0 attPos0 = 6.79602592E-16,-0.0565919876,0.308708817 rot = 6.17078513E-08,0,0,1 attRot = 0,0,0,1 attRot0 = 6.17078513E-08,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294441748 sym = solarPanels5_4294441490 sym = solarPanels5_4294441426 sym = solarPanels5_4294441394 sym = solarPanels5_4294441362 sym = solarPanels5_4294441330 sym = solarPanels5_4294441298 srfN = srfAttach,batteryBankMini_4293494534 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294441426 partName = Part persistentId = 1335877001 pos = 0.218290105,14.4741039,0.218290105 attPos = 0,0,0 attPos0 = 0.218290105,-0.0565919876,0.218290105 rot = 5.70106202E-08,0.382683456,-2.36145716E-08,0.923879564 attRot = 0,0,0,1 attRot0 = 5.70106202E-08,0.382683456,-2.36145716E-08,0.923879564 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294441748 sym = solarPanels5_4294441490 sym = solarPanels5_4294441458 sym = solarPanels5_4294441394 sym = solarPanels5_4294441362 sym = solarPanels5_4294441330 sym = solarPanels5_4294441298 srfN = srfAttach,batteryBankMini_4293494534 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294441394 partName = Part persistentId = 3564861238 pos = 0.308708847,14.4741039,-4.5388667E-08 attPos = 0,0,0 attPos0 = 0.308708847,-0.0565919876,-4.5388667E-08 rot = 4.36340386E-08,0.707106888,-4.36340457E-08,0.707106769 attRot = 0,0,0,1 attRot0 = 4.36340386E-08,0.707106888,-4.36340457E-08,0.707106769 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294441748 sym = solarPanels5_4294441490 sym = solarPanels5_4294441458 sym = solarPanels5_4294441426 sym = solarPanels5_4294441362 sym = solarPanels5_4294441330 sym = solarPanels5_4294441298 srfN = srfAttach,batteryBankMini_4293494534 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294441362 partName = Part persistentId = 4172833398 pos = 0.218290091,14.4741039,-0.218290165 attPos = 0,0,0 attPos0 = 0.218290091,-0.0565919876,-0.218290165 rot = 2.36145681E-08,0.923879623,-5.70106273E-08,0.382683367 attRot = 0,0,0,1 attRot0 = 2.36145681E-08,0.923879623,-5.70106273E-08,0.382683367 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294441748 sym = solarPanels5_4294441490 sym = solarPanels5_4294441458 sym = solarPanels5_4294441426 sym = solarPanels5_4294441394 sym = solarPanels5_4294441330 sym = solarPanels5_4294441298 srfN = srfAttach,batteryBankMini_4293494534 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294441330 partName = Part persistentId = 4170146733 pos = -3.68009623E-08,14.4741039,-0.308708817 attPos = 0,0,0 attPos0 = -3.68009623E-08,-0.0565919876,-0.308708817 rot = 0,1,-6.17078513E-08,0 attRot = 0,0,0,1 attRot0 = 0,1,-6.17078513E-08,0 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294441748 sym = solarPanels5_4294441490 sym = solarPanels5_4294441458 sym = solarPanels5_4294441426 sym = solarPanels5_4294441394 sym = solarPanels5_4294441362 sym = solarPanels5_4294441298 srfN = srfAttach,batteryBankMini_4293494534 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294441298 partName = Part persistentId = 309275440 pos = -0.218290195,14.4741039,-0.218290046 attPos = 0,0,0 attPos0 = -0.218290195,-0.0565919876,-0.218290046 rot = -2.36145823E-08,0.923879504,-5.70106167E-08,-0.382683605 attRot = 0,0,0,1 attRot0 = -2.36145823E-08,0.923879504,-5.70106167E-08,-0.382683605 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294441748 sym = solarPanels5_4294441490 sym = solarPanels5_4294441458 sym = solarPanels5_4294441426 sym = solarPanels5_4294441394 sym = solarPanels5_4294441362 sym = solarPanels5_4294441330 srfN = srfAttach,batteryBankMini_4293494534 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } ================================================ FILE: saves/RemoteTech KSP1_5 Testbed/Ships/VAB/Dumb Relay.craft ================================================ ship = Dumb Relay version = 1.5.1 description = type = VAB size = 0.813547969,3.71727753,0.813547969 steamPublishedFileId = 0 persistentId = 1251815637 rot = 0,0,0,0 missionFlag = Squad/Flags/default vesselType = Debris PART { part = probeCoreOcto.v2_4294232176 partName = Part persistentId = 398247333 pos = 0,15,0 attPos = 0,0,0 attPos0 = 0,15,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = solarPanels5_4294230226 link = solarPanels5_4294229838 link = solarPanels5_4294229806 link = solarPanels5_4294229774 link = solarPanels5_4294229742 link = solarPanels5_4294229710 link = solarPanels5_4294229678 link = solarPanels5_4294229646 link = batteryBankMini_4294226184 link = batteryBankMini_4294224434 attN = bottom,batteryBankMini_4294224434_0|-0.1870818|0 attN = top,batteryBankMini_4294226184_0|0.1870818|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = solarPanels5_4294230226 partName = Part persistentId = 2244991389 pos = -0.335660249,15.0329475,2.00069117E-08 attPos = 0,0,0 attPos0 = -0.335660249,0.0329475403,2.00069117E-08 rot = -3.96246804E-08,-0.707106948,-3.96246982E-08,0.70710659 attRot = 0,0,0,1 attRot0 = -3.96246804E-08,-0.707106948,-3.96246982E-08,0.70710659 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294229838 sym = solarPanels5_4294229806 sym = solarPanels5_4294229774 sym = solarPanels5_4294229742 sym = solarPanels5_4294229710 sym = solarPanels5_4294229678 sym = solarPanels5_4294229646 srfN = srfAttach,probeCoreOcto.v2_4294232176 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294229838 partName = Part persistentId = 2499859617 pos = -0.237347603,15.0329475,0.237347662 attPos = 0,0,0 attPos0 = -0.237347603,0.0329475403,0.237347662 rot = -5.17721475E-08,-0.382683635,-2.14447375E-08,0.923879445 attRot = 0,0,0,1 attRot0 = -5.17721475E-08,-0.382683635,-2.14447375E-08,0.923879445 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294230226 sym = solarPanels5_4294229806 sym = solarPanels5_4294229774 sym = solarPanels5_4294229742 sym = solarPanels5_4294229710 sym = solarPanels5_4294229678 sym = solarPanels5_4294229646 srfN = srfAttach,probeCoreOcto.v2_4294232176 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294229806 partName = Part persistentId = 1055890139 pos = 5.83851975E-16,15.0329475,0.335660219 attPos = 0,0,0 attPos0 = 5.83851975E-16,0.0329475403,0.335660219 rot = -5.60377771E-08,-2.52881108E-07,-1.25607405E-14,1 attRot = 0,0,0,1 attRot0 = -5.60377771E-08,-2.52881108E-07,-1.25607405E-14,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294230226 sym = solarPanels5_4294229838 sym = solarPanels5_4294229774 sym = solarPanels5_4294229742 sym = solarPanels5_4294229710 sym = solarPanels5_4294229678 sym = solarPanels5_4294229646 srfN = srfAttach,probeCoreOcto.v2_4294232176 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294229774 partName = Part persistentId = 111046990 pos = 0.237347633,15.0329475,0.237347618 attPos = 0,0,0 attPos0 = 0.237347633,0.0329475403,0.237347618 rot = -5.17721581E-08,0.382683218,2.14447162E-08,0.923879623 attRot = 0,0,0,1 attRot0 = -5.17721581E-08,0.382683218,2.14447162E-08,0.923879623 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294230226 sym = solarPanels5_4294229838 sym = solarPanels5_4294229806 sym = solarPanels5_4294229742 sym = solarPanels5_4294229710 sym = solarPanels5_4294229678 sym = solarPanels5_4294229646 srfN = srfAttach,probeCoreOcto.v2_4294232176 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294229742 partName = Part persistentId = 2167762978 pos = 0.335660249,15.0329475,-4.93512644E-08 attPos = 0,0,0 attPos0 = 0.335660249,0.0329475403,-4.93512644E-08 rot = -3.96246982E-08,0.70710665,3.96246804E-08,0.707106888 attRot = 0,0,0,1 attRot0 = -3.96246982E-08,0.70710665,3.96246804E-08,0.707106888 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294230226 sym = solarPanels5_4294229838 sym = solarPanels5_4294229806 sym = solarPanels5_4294229774 sym = solarPanels5_4294229710 sym = solarPanels5_4294229678 sym = solarPanels5_4294229646 srfN = srfAttach,probeCoreOcto.v2_4294232176 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294229710 partName = Part persistentId = 1667794061 pos = 0.237347603,15.0329475,-0.237347692 attPos = 0,0,0 attPos0 = 0.237347603,0.0329475403,-0.237347692 rot = -2.14447358E-08,0.923879504,5.1772151E-08,0.382683605 attRot = 0,0,0,1 attRot0 = -2.14447358E-08,0.923879504,5.1772151E-08,0.382683605 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294230226 sym = solarPanels5_4294229838 sym = solarPanels5_4294229806 sym = solarPanels5_4294229774 sym = solarPanels5_4294229742 sym = solarPanels5_4294229678 sym = solarPanels5_4294229646 srfN = srfAttach,probeCoreOcto.v2_4294232176 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294229678 partName = Part persistentId = 3905333023 pos = -4.00138198E-08,15.0329475,-0.335660219 attPos = 0,0,0 attPos0 = -4.00138198E-08,0.0329475403,-0.335660219 rot = -1.25607405E-14,1,5.60377771E-08,2.52881108E-07 attRot = 0,0,0,1 attRot0 = -1.25607405E-14,1,5.60377771E-08,2.52881108E-07 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294230226 sym = solarPanels5_4294229838 sym = solarPanels5_4294229806 sym = solarPanels5_4294229774 sym = solarPanels5_4294229742 sym = solarPanels5_4294229710 sym = solarPanels5_4294229646 srfN = srfAttach,probeCoreOcto.v2_4294232176 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294229646 partName = Part persistentId = 4159503183 pos = -0.237347722,15.0329475,-0.237347558 attPos = 0,0,0 attPos0 = -0.237347722,0.0329475403,-0.237347558 rot = 2.14447251E-08,0.923879564,5.17721546E-08,-0.382683367 attRot = 0,0,0,1 attRot0 = 2.14447251E-08,0.923879564,5.17721546E-08,-0.382683367 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294230226 sym = solarPanels5_4294229838 sym = solarPanels5_4294229806 sym = solarPanels5_4294229774 sym = solarPanels5_4294229742 sym = solarPanels5_4294229710 sym = solarPanels5_4294229678 srfN = srfAttach,probeCoreOcto.v2_4294232176 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = batteryBankMini_4294226184 partName = Part persistentId = 867543453 pos = 0,15.2870817,0 attPos = 0,0,0 attPos0 = 0,0.287081718,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = RTLongAntenna2_4294160256 attN = top,RTLongAntenna2_4294160256_0|0.1|0 attN = bottom,probeCoreOcto.v2_4294232176_0|-0.1|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = batteryBankMini_4294224434 partName = Part persistentId = 2938246958 pos = 0,14.7129183,0 attPos = 0,0,0 attPos0 = 0,-0.287081718,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = top,probeCoreOcto.v2_4294232176_0|0.1|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = RTLongAntenna2_4294160256 partName = Part persistentId = 2299103880 pos = 0,15.3870821,0 attPos = 0,0,0 attPos0 = 0,0.100000381,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = bottom,batteryBankMini_4294226184_0|0|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992752314 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ================================================ FILE: saves/RemoteTech KSP1_5 Testbed/Ships/VAB/Inner Dish.craft ================================================ ship = Inner Dish version = 1.5.1 description = type = VAB size = 6.31807232,1.82136536,6.31807518 steamPublishedFileId = 0 persistentId = 2559268266 rot = 0,0,0,0 missionFlag = Squad/Flags/default vesselType = Debris PART { part = probeCoreOcto.v2_4293649030 partName = Part persistentId = 931696781 pos = 0,15,0 attPos = 0,0,0 attPos0 = 0,15,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = sasModule_4293646672 link = RTLongDish2_4293644986 link = longAntenna_4293631848 attN = bottom,sasModule_4293646672_0|-0.1870818|0 attN = top,RTLongDish2_4293644986_0|0.1870818|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = sasModule_4293646672 partName = Part persistentId = 1039657448 pos = 0,14.7218075,0 attPos = 0,0,0 attPos0 = 0,-0.27819252,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = batteryBank_4293624368 attN = bottom,batteryBank_4293624368_0|-0.0911109|0 attN = top,probeCoreOcto.v2_4293649030_0|0.0911109|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = RTLongDish2_4293644986 partName = Part persistentId = 825598842 pos = 0,15.212081,0 attPos = 0,0,0 attPos0 = 0,0.212080956,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = bottom,probeCoreOcto.v2_4293649030_0|-0.025|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 0.99999993907651941 RTOmniRange = 0 RTDishRange = 0 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = longAntenna_4293631848 partName = Part persistentId = 2311615629 pos = -0.335593373,15.1195831,2.00029255E-08 attPos = 0,0,0 attPos0 = -0.335593373,0.11958313,2.00029255E-08 rot = 0.499999881,-0.500000179,0.500000119,0.49999994 attRot = 0,0,0,1 attRot0 = 0.499999881,-0.500000179,0.500000119,0.49999994 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,probeCoreOcto.v2_4293649030 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992794871 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 2500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = batteryBank_4293624368 partName = Part persistentId = 1468856764 pos = 0,14.5198412,0 attPos = 0,0,0 attPos0 = 0,-0.201966286,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = solarPanels4_4293616742 link = solarPanels4_4293614214 link = solarPanels4_4293614110 link = solarPanels4_4293614006 link = solarPanels4_4293613902 link = solarPanels4_4293613798 link = solarPanels4_4293613694 link = solarPanels4_4293613590 attN = top,sasModule_4293646672_0|0.1108553|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 1000 maxAmount = 1000 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = solarPanels4_4293616742 partName = Part persistentId = 2940824993 pos = -5.28038697E-08,14.5658875,-0.604005873 attPos = 0,0,0 attPos0 = -5.28038697E-08,0.046046257,-0.604005873 rot = 1.26440554E-07,0.707106829,-1.26440554E-07,-0.707106829 attRot = 0,0,0,1 attRot0 = 1.26440554E-07,0.707106829,-1.26440554E-07,-0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4293614214 sym = solarPanels4_4293614110 sym = solarPanels4_4293614006 sym = solarPanels4_4293613902 sym = solarPanels4_4293613798 sym = solarPanels4_4293613694 sym = solarPanels4_4293613590 srfN = srfAttach,batteryBank_4293624368 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 10 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4293614214 partName = Part persistentId = 337059107 pos = -0.427096725,14.5658875,-0.427096575 attPos = 0,0,0 attPos0 = -0.427096725,0.046046257,-0.427096575 rot = 6.84291308E-08,0.382683426,-1.6520255E-07,-0.923879564 attRot = 0,0,0,1 attRot0 = 6.84291308E-08,0.382683426,-1.6520255E-07,-0.923879564 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4293616742 sym = solarPanels4_4293614110 sym = solarPanels4_4293614006 sym = solarPanels4_4293613902 sym = solarPanels4_4293613798 sym = solarPanels4_4293613694 sym = solarPanels4_4293613590 srfN = srfAttach,batteryBank_4293624368 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4293614110 partName = Part persistentId = 3710325855 pos = -0.604005814,14.5658875,1.68023107E-08 attPos = 0,0,0 attPos0 = -0.604005814,0.046046257,1.68023107E-08 rot = 0,0,-1.78813949E-07,-1 attRot = 0,0,0,1 attRot0 = 0,0,-1.78813949E-07,-1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4293616742 sym = solarPanels4_4293614214 sym = solarPanels4_4293614006 sym = solarPanels4_4293613902 sym = solarPanels4_4293613798 sym = solarPanels4_4293613694 sym = solarPanels4_4293613590 srfN = srfAttach,batteryBank_4293624368 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4293614006 partName = Part persistentId = 2769305683 pos = -0.427096605,14.5658875,0.427096635 attPos = 0,0,0 attPos0 = -0.427096605,0.046046257,0.427096635 rot = -6.84291308E-08,-0.382683456,-1.65202536E-07,-0.923879564 attRot = 0,0,0,1 attRot0 = -6.84291308E-08,-0.382683456,-1.65202536E-07,-0.923879564 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4293616742 sym = solarPanels4_4293614214 sym = solarPanels4_4293614110 sym = solarPanels4_4293613902 sym = solarPanels4_4293613798 sym = solarPanels4_4293613694 sym = solarPanels4_4293613590 srfN = srfAttach,batteryBank_4293624368 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4293613902 partName = Part persistentId = 1402328952 pos = 1.05607739E-07,14.5658875,0.604005873 attPos = 0,0,0 attPos0 = 1.05607739E-07,0.046046257,0.604005873 rot = -1.26440554E-07,-0.707106888,-1.26440554E-07,-0.707106769 attRot = 0,0,0,1 attRot0 = -1.26440554E-07,-0.707106888,-1.26440554E-07,-0.707106769 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4293616742 sym = solarPanels4_4293614214 sym = solarPanels4_4293614110 sym = solarPanels4_4293614006 sym = solarPanels4_4293613798 sym = solarPanels4_4293613694 sym = solarPanels4_4293613590 srfN = srfAttach,batteryBank_4293624368 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4293613798 partName = Part persistentId = 3013591105 pos = 0.427096754,14.5658875,0.427096575 attPos = 0,0,0 attPos0 = 0.427096754,0.046046257,0.427096575 rot = -1.6520255E-07,-0.923879623,-6.84291237E-08,-0.382683367 attRot = 0,0,0,1 attRot0 = -1.6520255E-07,-0.923879623,-6.84291237E-08,-0.382683367 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4293616742 sym = solarPanels4_4293614214 sym = solarPanels4_4293614110 sym = solarPanels4_4293614006 sym = solarPanels4_4293613902 sym = solarPanels4_4293613694 sym = solarPanels4_4293613590 srfN = srfAttach,batteryBank_4293624368 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4293613694 partName = Part persistentId = 1601589387 pos = 0.604005814,14.5658875,-8.88054217E-08 attPos = 0,0,0 attPos0 = 0.604005814,0.046046257,-8.88054217E-08 rot = -1.78813949E-07,-1,0,0 attRot = 0,0,0,1 attRot0 = -1.78813949E-07,-1,0,0 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4293616742 sym = solarPanels4_4293614214 sym = solarPanels4_4293614110 sym = solarPanels4_4293614006 sym = solarPanels4_4293613902 sym = solarPanels4_4293613798 sym = solarPanels4_4293613590 srfN = srfAttach,batteryBank_4293624368 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4293613590 partName = Part persistentId = 645830957 pos = 0.427096486,14.5658875,-0.427096814 attPos = 0,0,0 attPos0 = 0.427096486,0.046046257,-0.427096814 rot = -1.65202536E-07,-0.923879504,6.84291663E-08,0.382683605 attRot = 0,0,0,1 attRot0 = -1.65202536E-07,-0.923879504,6.84291663E-08,0.382683605 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4293616742 sym = solarPanels4_4293614214 sym = solarPanels4_4293614110 sym = solarPanels4_4293614006 sym = solarPanels4_4293613902 sym = solarPanels4_4293613798 sym = solarPanels4_4293613694 srfN = srfAttach,batteryBank_4293624368 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } ================================================ FILE: saves/RemoteTech KSP1_5 Testbed/Ships/VAB/Omni 2_5Mm Limit.craft ================================================ ship = Omni 2_5Mm Limit version = 1.5.1 description = type = VAB size = 0.814156592,2.43113899,0.814156651 steamPublishedFileId = 0 persistentId = 152100838 rot = 0,0,0,0 missionFlag = Squad/Flags/default vesselType = Debris PART { part = probeCoreOcto.v2_4293497788 partName = Part persistentId = 1969501100 pos = 0,15,0 attPos = 0,0,0 attPos0 = 0,15,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = sasModule_4293496104 link = batteryBankMini_4293493832 link = solarPanels5_4293493084 link = solarPanels5_4293492698 link = solarPanels5_4293492666 link = solarPanels5_4293492634 link = solarPanels5_4293492602 link = solarPanels5_4293492570 link = solarPanels5_4293492538 link = solarPanels5_4293492506 attN = bottom,sasModule_4293496104_0|-0.1870818|0 attN = top,batteryBankMini_4293493832_0|0.1870818|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = sasModule_4293496104 partName = Part persistentId = 3505207257 pos = 0,14.7218075,0 attPos = 0,0,0 attPos0 = 0,-0.27819252,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = batteryBankMini_4293494534 attN = bottom,batteryBankMini_4293494534_0|-0.0911109|0 attN = top,probeCoreOcto.v2_4293497788_0|0.0911109|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = batteryBankMini_4293494534 partName = Part persistentId = 724617569 pos = 0,14.5306959,0 attPos = 0,0,0 attPos0 = 0,-0.191111565,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = top,sasModule_4293496104_0|0.1|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = batteryBankMini_4293493832 partName = Part persistentId = 3807729210 pos = 0,15.2870817,0 attPos = 0,0,0 attPos0 = 0,0.287081718,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = longAntenna_4293490094 attN = top,longAntenna_4293490094_0|0.1|0 attN = bottom,probeCoreOcto.v2_4293497788_0|-0.1|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = solarPanels5_4293493084 partName = Part persistentId = 1201573193 pos = -0.336090624,14.9830284,2.00325641E-08 attPos = 0,0,0 attPos0 = -0.336090624,-0.0169715881,2.00325641E-08 rot = -3.96246804E-08,-0.707106948,-3.96246982E-08,0.70710659 attRot = 0,0,0,1 attRot0 = -3.96246804E-08,-0.707106948,-3.96246982E-08,0.70710659 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4293492698 sym = solarPanels5_4293492666 sym = solarPanels5_4293492634 sym = solarPanels5_4293492602 sym = solarPanels5_4293492570 sym = solarPanels5_4293492538 sym = solarPanels5_4293492506 srfN = srfAttach,probeCoreOcto.v2_4293497788 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4293492698 partName = Part persistentId = 2632241663 pos = -0.237651929,14.9830284,0.237651989 attPos = 0,0,0 attPos0 = -0.237651929,-0.0169715881,0.237651989 rot = -5.17721475E-08,-0.382683635,-2.14447375E-08,0.923879445 attRot = 0,0,0,1 attRot0 = -5.17721475E-08,-0.382683635,-2.14447375E-08,0.923879445 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4293493084 sym = solarPanels5_4293492666 sym = solarPanels5_4293492634 sym = solarPanels5_4293492602 sym = solarPanels5_4293492570 sym = solarPanels5_4293492538 sym = solarPanels5_4293492506 srfN = srfAttach,probeCoreOcto.v2_4293497788 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4293492666 partName = Part persistentId = 2654877481 pos = 5.82322975E-16,14.9830284,0.336090595 attPos = 0,0,0 attPos0 = 5.82322975E-16,-0.0169715881,0.336090595 rot = -5.60377771E-08,-2.52881108E-07,-1.25607405E-14,1 attRot = 0,0,0,1 attRot0 = -5.60377771E-08,-2.52881108E-07,-1.25607405E-14,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4293493084 sym = solarPanels5_4293492698 sym = solarPanels5_4293492634 sym = solarPanels5_4293492602 sym = solarPanels5_4293492570 sym = solarPanels5_4293492538 sym = solarPanels5_4293492506 srfN = srfAttach,probeCoreOcto.v2_4293497788 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4293492634 partName = Part persistentId = 1959077176 pos = 0.237651944,14.9830284,0.237651944 attPos = 0,0,0 attPos0 = 0.237651944,-0.0169715881,0.237651944 rot = -5.17721581E-08,0.382683218,2.14447162E-08,0.923879623 attRot = 0,0,0,1 attRot0 = -5.17721581E-08,0.382683218,2.14447162E-08,0.923879623 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4293493084 sym = solarPanels5_4293492698 sym = solarPanels5_4293492666 sym = solarPanels5_4293492602 sym = solarPanels5_4293492570 sym = solarPanels5_4293492538 sym = solarPanels5_4293492506 srfN = srfAttach,probeCoreOcto.v2_4293497788 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4293492602 partName = Part persistentId = 2417738340 pos = 0.336090624,14.9830284,-4.94145382E-08 attPos = 0,0,0 attPos0 = 0.336090624,-0.0169715881,-4.94145382E-08 rot = -3.96246982E-08,0.70710665,3.96246804E-08,0.707106888 attRot = 0,0,0,1 attRot0 = -3.96246982E-08,0.70710665,3.96246804E-08,0.707106888 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4293493084 sym = solarPanels5_4293492698 sym = solarPanels5_4293492666 sym = solarPanels5_4293492634 sym = solarPanels5_4293492570 sym = solarPanels5_4293492538 sym = solarPanels5_4293492506 srfN = srfAttach,probeCoreOcto.v2_4293497788 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4293492570 partName = Part persistentId = 2037650623 pos = 0.237651914,14.9830284,-0.237652004 attPos = 0,0,0 attPos0 = 0.237651914,-0.0169715881,-0.237652004 rot = -2.14447358E-08,0.923879504,5.1772151E-08,0.382683605 attRot = 0,0,0,1 attRot0 = -2.14447358E-08,0.923879504,5.1772151E-08,0.382683605 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4293493084 sym = solarPanels5_4293492698 sym = solarPanels5_4293492666 sym = solarPanels5_4293492634 sym = solarPanels5_4293492602 sym = solarPanels5_4293492538 sym = solarPanels5_4293492506 srfN = srfAttach,probeCoreOcto.v2_4293497788 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4293492538 partName = Part persistentId = 2952017547 pos = -4.00651246E-08,14.9830284,-0.336090595 attPos = 0,0,0 attPos0 = -4.00651246E-08,-0.0169715881,-0.336090595 rot = -1.25607405E-14,1,5.60377771E-08,2.52881108E-07 attRot = 0,0,0,1 attRot0 = -1.25607405E-14,1,5.60377771E-08,2.52881108E-07 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4293493084 sym = solarPanels5_4293492698 sym = solarPanels5_4293492666 sym = solarPanels5_4293492634 sym = solarPanels5_4293492602 sym = solarPanels5_4293492570 sym = solarPanels5_4293492506 srfN = srfAttach,probeCoreOcto.v2_4293497788 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4293492506 partName = Part persistentId = 3974784551 pos = -0.237652048,14.9830284,-0.237651885 attPos = 0,0,0 attPos0 = -0.237652048,-0.0169715881,-0.237651885 rot = 2.14447251E-08,0.923879564,5.17721546E-08,-0.382683367 attRot = 0,0,0,1 attRot0 = 2.14447251E-08,0.923879564,5.17721546E-08,-0.382683367 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4293493084 sym = solarPanels5_4293492698 sym = solarPanels5_4293492666 sym = solarPanels5_4293492634 sym = solarPanels5_4293492602 sym = solarPanels5_4293492570 sym = solarPanels5_4293492538 srfN = srfAttach,probeCoreOcto.v2_4293497788 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = longAntenna_4293490094 partName = Part persistentId = 3952381594 pos = 0,15.3870821,0 attPos = 0,0,0 attPos0 = 0,0.100000381,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = bottom,batteryBankMini_4293493832_0|0|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.993339777 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 2500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ================================================ FILE: saves/RemoteTech KSP1_5 Testbed/Ships/VAB/Rocket 2.craft ================================================ ship = Rocket 2 version = 1.5.1 description = type = VAB size = 4.81503582,4.09576225,4.81500864 steamPublishedFileId = 0 persistentId = 4227668755 rot = 0,0,0,0 missionFlag = Squad/Flags/default vesselType = Debris PART { part = fuelTankSmall_4292646088 partName = Part persistentId = 2794932055 pos = -0.282711327,14.2617979,0.744570315 attPos = 0,0,0 attPos0 = -0.282711327,14.2617979,0.744570315 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = liquidEngine3_4292638150 link = RCSBlock_4292602662 link = RCSBlock_4292602596 link = RCSBlock_4292602532 link = RCSBlock_4292602468 link = radialRCSTank_4292574472 link = radialRCSTank_4292449500 link = radialRCSTank_4292449474 link = radialRCSTank_4292449448 link = radialRCSTank_4292449398 link = radialRCSTank_4292449370 link = radialRCSTank_4292449344 link = radialRCSTank_4292449318 link = probeCoreHex.v2_4292026878 link = solarPanels2_4292022912 link = solarPanels2_4292021278 attN = top,probeCoreHex.v2_4292026878_0|0.55525|0 attN = bottom,liquidEngine3_4292638150_0|-0.55525|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } RESOURCE { name = LiquidFuel amount = 90 maxAmount = 90 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 110 maxAmount = 110 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = liquidEngine3_4292638150 partName = Part persistentId = 216756540 pos = -0.282711327,13.4190474,0.744570315 attPos = 0,0,0 attPos0 = 0,-0.842750549,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 0 resPri = 0 dstg = 0 sidx = 0 sqor = 0 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = top,fuelTankSmall_4292646088_0|0.2875|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True gimbalActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } LockAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } FreeAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } TogglePitchAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleYawAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleRollAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateThrottle isEnabled = True animState = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleJettison isEnabled = True activejettisonName = fairing isJettisoned = True shroudHideOverride = False stagingEnabled = True EVENTS { } ACTIONS { JettisonAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleSurfaceFX isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = RCSBlock_4292602662 partName = Part persistentId = 596846200 pos = -0.943073094,13.7744894,0.745312631 attPos = 0,0,0 attPos0 = -0.660361767,-0.487308502,0.000742316246 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = RCSBlock_4292602596 sym = RCSBlock_4292602532 sym = RCSBlock_4292602468 srfN = srfAttach,fuelTankSmall_4292646088 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = RCSBlock_4292602596 partName = Part persistentId = 4292792391 pos = -0.28196907,13.7744894,1.40493202 attPos = 0,0,0 attPos0 = 0.000742271543,-0.487308502,0.660361707 rot = 0,0.707106829,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0,0.707106829,0,0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = RCSBlock_4292602662 sym = RCSBlock_4292602532 sym = RCSBlock_4292602468 srfN = srfAttach,fuelTankSmall_4292646088 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = RCSBlock_4292602532 partName = Part persistentId = 415166970 pos = 0.37765044,13.7744894,0.743827939 attPos = 0,0,0 attPos0 = 0.660361767,-0.487308502,-0.000742375851 rot = 0,1,0,-4.37113883E-08 attRot = 0,0,0,1 attRot0 = 0,1,0,-4.37113883E-08 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = RCSBlock_4292602662 sym = RCSBlock_4292602596 sym = RCSBlock_4292602468 srfN = srfAttach,fuelTankSmall_4292646088 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = RCSBlock_4292602468 partName = Part persistentId = 249258763 pos = -0.283453703,13.7744894,0.0842086077 attPos = 0,0,0 attPos0 = -0.00074236095,-0.487308502,-0.660361707 rot = 0,0.707106829,0,-0.707106829 attRot = 0,0,0,1 attRot0 = 0,0.707106829,0,-0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = RCSBlock_4292602662 sym = RCSBlock_4292602596 sym = RCSBlock_4292602532 srfN = srfAttach,fuelTankSmall_4292646088 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = radialRCSTank_4292574472 partName = Part persistentId = 1035387143 pos = -1.10641551,14.5950632,0.744570374 attPos = 0,0,0 attPos0 = -0.823704243,0.333265305,5.96046448E-08 rot = 0,0.707106829,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0,0.707106829,0,0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = radialRCSTank_4292449500 sym = radialRCSTank_4292449474 sym = radialRCSTank_4292449448 srfN = srfAttach,fuelTankSmall_4292646088 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 20 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = radialRCSTank_4292449500 partName = Part persistentId = 1475308493 pos = -0.282711327,14.5950632,1.5682745 attPos = 0,0,0 attPos0 = 1.49011612E-08,0.333265305,0.823704183 rot = 0,1,0,0 attRot = 0,0,0,1 attRot0 = 0,1,0,0 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = radialRCSTank_4292574472 sym = radialRCSTank_4292449474 sym = radialRCSTank_4292449448 srfN = srfAttach,fuelTankSmall_4292646088 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 20 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = radialRCSTank_4292449474 partName = Part persistentId = 943438484 pos = 0.540992916,14.5950632,0.744570196 attPos = 0,0,0 attPos0 = 0.823704243,0.333265305,-1.1920929E-07 rot = 0,0.707106769,0,-0.707106888 attRot = 0,0,0,1 attRot0 = 0,0.707106769,0,-0.707106888 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = radialRCSTank_4292574472 sym = radialRCSTank_4292449500 sym = radialRCSTank_4292449448 srfN = srfAttach,fuelTankSmall_4292646088 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 20 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = radialRCSTank_4292449448 partName = Part persistentId = 3733628109 pos = -0.282711446,14.5950632,-0.0791338682 attPos = 0,0,0 attPos0 = -1.04308128E-07,0.333265305,-0.823704183 rot = 0,0,0,-1 attRot = 0,0,0,1 attRot0 = 0,0,0,-1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = radialRCSTank_4292574472 sym = radialRCSTank_4292449500 sym = radialRCSTank_4292449474 srfN = srfAttach,fuelTankSmall_4292646088 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 20 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = radialRCSTank_4292449398 partName = Part persistentId = 714641942 pos = -0.87314719,14.1911192,0.154134452 attPos = 0,0,0 attPos0 = -0.590435863,-0.0706787109,-0.590435863 rot = 8.26012467E-08,-0.382683456,-3.42145547E-08,-0.923879564 attRot = 0,0,0,1 attRot0 = 8.26012467E-08,-0.382683456,-3.42145547E-08,-0.923879564 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = radialRCSTank_4292449370 sym = radialRCSTank_4292449344 sym = radialRCSTank_4292449318 srfN = srfAttach,fuelTankSmall_4292646088 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 20 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = radialRCSTank_4292449370 partName = Part persistentId = 618117823 pos = -0.87314719,14.1911192,1.33500612 attPos = 0,0,0 attPos0 = -0.590435863,-0.0706787109,0.590435803 rot = 3.42145583E-08,-0.923879564,-8.26012467E-08,-0.382683426 attRot = 0,0,0,1 attRot0 = 3.42145583E-08,-0.923879564,-8.26012467E-08,-0.382683426 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = radialRCSTank_4292449398 sym = radialRCSTank_4292449344 sym = radialRCSTank_4292449318 srfN = srfAttach,fuelTankSmall_4292646088 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 20 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = radialRCSTank_4292449344 partName = Part persistentId = 543712236 pos = 0.307724595,14.1911192,1.33500612 attPos = 0,0,0 attPos0 = 0.590435922,-0.0706787109,0.590435803 rot = -3.42145583E-08,-0.923879564,-8.26012467E-08,0.382683486 attRot = 0,0,0,1 attRot0 = -3.42145583E-08,-0.923879564,-8.26012467E-08,0.382683486 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = radialRCSTank_4292449398 sym = radialRCSTank_4292449370 sym = radialRCSTank_4292449318 srfN = srfAttach,fuelTankSmall_4292646088 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 20 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = radialRCSTank_4292449318 partName = Part persistentId = 180124764 pos = 0.307724476,14.1911192,0.154134452 attPos = 0,0,0 attPos0 = 0.590435803,-0.0706787109,-0.590435863 rot = -8.26012467E-08,-0.382683426,-3.42145583E-08,0.923879564 attRot = 0,0,0,1 attRot0 = -8.26012467E-08,-0.382683426,-3.42145583E-08,0.923879564 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = radialRCSTank_4292449398 sym = radialRCSTank_4292449370 sym = radialRCSTank_4292449344 srfN = srfAttach,fuelTankSmall_4292646088 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 20 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = probeCoreHex.v2_4292026878 partName = Part persistentId = 3502180007 pos = -0.282711327,15.0045481,0.744570315 attPos = 0,0,0 attPos0 = 0,0.742750168,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = batteryBankMini_4292709124 attN = bottom,fuelTankSmall_4292646088_0|-0.1875|0 attN = top,batteryBankMini_4292709124_0|0.1875|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = batteryBankMini_4292709124 partName = Part persistentId = 2075258849 pos = -0.282711327,15.2920485,0.744570315 attPos = 0,0,0 attPos0 = 0,0.287500381,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = sasModule_4292624612 attN = top,sasModule_4292624612_0|0.1|0 attN = bottom,probeCoreHex.v2_4292026878_0|-0.1|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = sasModule_4292624612 partName = Part persistentId = 611474695 pos = -0.282711327,15.48316,0.744570315 attPos = 0,0,0 attPos0 = 0,0.191111565,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = longAntenna_4292628480 link = RCSBlock_4292600636 link = RCSBlock_4292573974 link = RCSBlock_4292573910 link = RCSBlock_4292573846 link = SurfAntenna_4292566722 attN = bottom,batteryBankMini_4292709124_0|-0.0911109|0 attN = top,longAntenna_4292628480_0|0.0911109|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = longAntenna_4292628480 partName = Part persistentId = 1142454001 pos = -0.282711327,15.5742712,0.744570315 attPos = 0,0,0 attPos0 = 0,0.0911111832,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = bottom,sasModule_4292624612_0|0|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992984533 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 2500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = RCSBlock_4292600636 partName = Part persistentId = 3211938131 pos = -0.635999084,15.415906,0.745312631 attPos = 0,0,0 attPos0 = -0.353287727,-0.0672540665,0.000742316246 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = RCSBlock_4292573974 sym = RCSBlock_4292573910 sym = RCSBlock_4292573846 srfN = srfAttach,sasModule_4292624612 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = RCSBlock_4292573974 partName = Part persistentId = 1530574457 pos = -0.281969011,15.415906,1.09785795 attPos = 0,0,0 attPos0 = 0.000742301345,-0.0672540665,0.353287697 rot = 0,0.707106829,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0,0.707106829,0,0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = RCSBlock_4292600636 sym = RCSBlock_4292573910 sym = RCSBlock_4292573846 srfN = srfAttach,sasModule_4292624612 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = RCSBlock_4292573910 partName = Part persistentId = 3886986403 pos = 0.0705763996,15.415906,0.743827939 attPos = 0,0,0 attPos0 = 0.353287727,-0.0672540665,-0.000742346048 rot = 0,1,0,-4.37113883E-08 attRot = 0,0,0,1 attRot0 = 0,1,0,-4.37113883E-08 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = RCSBlock_4292600636 sym = RCSBlock_4292573974 sym = RCSBlock_4292573846 srfN = srfAttach,sasModule_4292624612 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = RCSBlock_4292573846 partName = Part persistentId = 3670610452 pos = -0.283453643,15.415906,0.391282618 attPos = 0,0,0 attPos0 = -0.000742331147,-0.0672540665,-0.353287697 rot = 0,0.707106829,0,-0.707106829 attRot = 0,0,0,1 attRot0 = 0,0.707106829,0,-0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = RCSBlock_4292600636 sym = RCSBlock_4292573974 sym = RCSBlock_4292573910 srfN = srfAttach,sasModule_4292624612 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = SurfAntenna_4292566722 partName = Part persistentId = 3723509207 pos = -0.282711327,15.6086559,0.535903633 attPos = 0,0,0 attPos0 = -1.49011612E-08,0.125495911,-0.208666682 rot = -1.68587405E-07,1.71790748E-09,-1.71790748E-09,1 attRot = 0,0,0,1 attRot0 = -1.68587405E-07,1.71790748E-09,-1.71790748E-09,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,sasModule_4292624612 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 1500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = solarPanels2_4292022912 partName = Part persistentId = 3744766146 pos = -0.720179439,14.7548761,0.307102263 attPos = 0,0,0 attPos0 = -0.437468112,0.493078232,-0.437468052 rot = 5.92613567E-08,0.382683396,-1.43069599E-07,-0.923879564 attRot = 0,0,0,1 attRot0 = 5.92613567E-08,0.382683396,-1.43069599E-07,-0.923879564 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels2_4292021278 srfN = srfAttach,fuelTankSmall_4292646088 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.707106829, 0, 0, 0.707106829) storedAnimationTime = 0 storedAnimationSpeed = 10 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels2_4292021278 partName = Part persistentId = 503394006 pos = 0.154756814,14.7548761,1.18203831 attPos = 0,0,0 attPos0 = 0.437468141,0.493078232,0.437467992 rot = -1.43069599E-07,-0.923879564,-5.92613496E-08,-0.382683367 attRot = 0,0,0,1 attRot0 = -1.43069599E-07,-0.923879564,-5.92613496E-08,-0.382683367 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels2_4292022912 srfN = srfAttach,fuelTankSmall_4292646088 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.707106829, 0, 0, 0.707106829) storedAnimationTime = 0 storedAnimationSpeed = 10 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } ================================================ FILE: saves/RemoteTech KSP1_5 Testbed/Ships/VAB/Rocket.craft ================================================ ship = Rocket version = 1.5.1 description = type = VAB size = 4.07618904,10.4018059,2.97475052 steamPublishedFileId = 0 persistentId = 1103325185 rot = 0,0,0,0 missionFlag = Squad/Flags/default vesselType = Debris PART { part = mk1pod.v2_4293180536 partName = Part persistentId = 3152689903 pos = -0.220430493,22.0573483,0.219820052 attPos = 0,0,0 attPos0 = -0.220430493,22.0573483,0.219820052 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = HeatShield1_4293159296 link = probeCoreOcto.v2_4292917092 attN = bottom,HeatShield1_4293159296_0|-0.4050379|0 attN = top,probeCoreOcto.v2_4292917092_0|0.6423756|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleColorChanger isEnabled = True animState = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = Light wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ResetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceContainer isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { CollectAllAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleConductionMultiplier isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleLiftingSurface isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FlagDecal isEnabled = True flagDisplayed = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 50 maxAmount = 50 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = MonoPropellant amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = HeatShield1_4293159296 partName = Part persistentId = 3034510152 pos = -0.220430493,21.6303101,0.219820052 attPos = 0,0,0 attPos0 = 0,-0.427038193,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 1 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = Decoupler.1_4293134334 attN = direct,Decoupler.1_4293134334_0|0|0 attN = top,mk1pod.v2_4293180536_0|0.022|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleJettison isEnabled = True activejettisonName = fairing isJettisoned = True shroudHideOverride = False stagingEnabled = False EVENTS { } ACTIONS { JettisonAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleAblator isEnabled = True nominalAmountRecip = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleColorChanger isEnabled = True animState = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleDecouple isEnabled = True ejectionForcePercent = 100 isDecoupled = False stagingEnabled = False EVENTS { } ACTIONS { DecoupleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleLiftingSurface isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } RESOURCE { name = Ablator amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = Decoupler.1_4293134334 partName = Part persistentId = 543145014 pos = -0.220430493,21.5803108,0.219820052 attPos = 0,0,0 attPos0 = 0,-0.0500001907,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 0 resPri = 0 dstg = 3 sidx = 0 sqor = 0 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = fuelTankSmall_4293118966 attN = top,HeatShield1_4293159296_0|0.05|0 attN = bottom,fuelTankSmall_4293118966_0|-0.05|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDecouple isEnabled = True ejectionForcePercent = 100 isDecoupled = False stagingEnabled = True EVENTS { } ACTIONS { DecoupleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleToggleCrossfeed isEnabled = True crossfeedStatus = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } EnableAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } DisableAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = fuelTankSmall_4293118966 partName = Part persistentId = 943777776 pos = -0.220430493,20.9750595,0.219820052 attPos = 0,0,0 attPos0 = 0,-0.605250359,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 0 resPri = 0 dstg = 4 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = liquidEngine3_4293109926 link = solarPanels3_4293095908 link = solarPanels3_4293095160 link = batteryPack_4293081708 link = batteryPack_4293081666 link = RTLongAntenna2_4292913452 attN = top,Decoupler.1_4293134334_0|0.55525|0 attN = bottom,liquidEngine3_4293109926_0|-0.55525|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } RESOURCE { name = LiquidFuel amount = 90 maxAmount = 90 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 110 maxAmount = 110 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = liquidEngine3_4293109926 partName = Part persistentId = 2056099807 pos = -0.220430493,20.132309,0.219820052 attPos = 0,0,0 attPos0 = 0,-0.842750549,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 1 resPri = 0 dstg = 4 sidx = 0 sqor = 1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = Decoupler.1_4293074526 attN = top,fuelTankSmall_4293118966_0|0.2875|0 attN = bottom,Decoupler.1_4293074526_0|-0.4728137|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True gimbalActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } LockAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } FreeAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } TogglePitchAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleYawAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleRollAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateThrottle isEnabled = True animState = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleJettison isEnabled = True activejettisonName = fairing isJettisoned = False shroudHideOverride = False stagingEnabled = True EVENTS { } ACTIONS { JettisonAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleSurfaceFX isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = solarPanels3_4293095908 partName = Part persistentId = 70577798 pos = -0.826801836,20.8166637,0.219820082 attPos = 0,0,0 attPos0 = -0.606371343,-0.158395767,3.61425521E-08 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 0 resPri = 0 dstg = 4 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels3_4293095160 srfN = srfAttach,fuelTankSmall_4293118966 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.707106829, 0, 0, 0.707106829) storedAnimationTime = 0 storedAnimationSpeed = 1 deployState = RETRACTED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels3_4293095160 partName = Part persistentId = 3110583823 pos = 0.38594085,20.8166637,0.219819963 attPos = 0,0,0 attPos0 = 0.606371343,-0.158395767,-8.91532181E-08 rot = 0,1,0,-4.37113883E-08 attRot = 0,0,0,1 attRot0 = 0,1,0,-4.37113883E-08 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 0 resPri = 0 dstg = 4 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels3_4293095908 srfN = srfAttach,fuelTankSmall_4293118966 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.707106829, 0, 0, 0.707106829) storedAnimationTime = 0 storedAnimationSpeed = 1 deployState = RETRACTED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = batteryPack_4293081708 partName = Part persistentId = 4277938563 pos = -0.824256718,21.2748756,0.219820082 attPos = 0,0,0 attPos0 = -0.603826225,0.299816132,3.59908512E-08 rot = 0,0.707106829,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0,0.707106829,0,0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 0 resPri = 0 dstg = 4 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = batteryPack_4293081666 srfN = srfAttach,fuelTankSmall_4293118966 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 100 maxAmount = 100 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = batteryPack_4293081666 partName = Part persistentId = 4201350557 pos = 0.383395731,21.2748756,0.219819963 attPos = 0,0,0 attPos0 = 0.603826225,0.299816132,-8.87790179E-08 rot = 0,0.707106769,0,-0.707106888 attRot = 0,0,0,1 attRot0 = 0,0.707106769,0,-0.707106888 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 0 resPri = 0 dstg = 4 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = batteryPack_4293081708 srfN = srfAttach,fuelTankSmall_4293118966 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 100 maxAmount = 100 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = Decoupler.1_4293074526 partName = Part persistentId = 434819575 pos = -0.220430493,19.6094971,0.219820052 attPos = 0,0,0 attPos0 = 0,-0.52281189,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 1 resPri = 0 dstg = 5 sidx = 1 sqor = 1 sepI = 1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = fuelTankSmall_4292977144 attN = top,liquidEngine3_4293109926_0|0.05|0 attN = bottom,fuelTankSmall_4292977144_0|-0.05|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDecouple isEnabled = True ejectionForcePercent = 100 isDecoupled = False stagingEnabled = True EVENTS { } ACTIONS { DecoupleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleToggleCrossfeed isEnabled = True crossfeedStatus = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } EnableAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } DisableAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = fuelTankSmall_4292977144 partName = Part persistentId = 857781445 pos = -0.220430493,19.0042477,0.219820052 attPos = 0,0,0 attPos0 = 0,-0.605249405,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 1 resPri = 0 dstg = 6 sidx = -1 sqor = -1 sepI = 1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = fuelTank_4293068158 attN = top,Decoupler.1_4293074526_0|0.55525|0 attN = bottom,fuelTank_4293068158_0|-0.55525|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } RESOURCE { name = LiquidFuel amount = 90 maxAmount = 90 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 110 maxAmount = 110 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = fuelTank_4293068158 partName = Part persistentId = 1513102436 pos = -0.220430493,17.4672718,0.219820052 attPos = 0,0,0 attPos0 = 0,-1.53697586,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 1 resPri = 0 dstg = 6 sidx = -1 sqor = -1 sepI = 1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = fuelTank_4293066646 attN = top,fuelTankSmall_4292977144_0|0.981725|0 attN = bottom,fuelTank_4293066646_0|-0.9125|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } RESOURCE { name = LiquidFuel amount = 180 maxAmount = 180 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 220 maxAmount = 220 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = fuelTank_4293066646 partName = Part persistentId = 3679380579 pos = -0.220430493,15.5730457,0.219820052 attPos = 0,0,0 attPos0 = 0,-1.89422607,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 1 resPri = 0 dstg = 6 sidx = -1 sqor = -1 sepI = 1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = liquidEngine2_4293057002 link = R8winglet_4293046448 link = R8winglet_4292989266 link = R8winglet_4292989222 link = R8winglet_4292989178 link = radialDecoupler_4293014140 link = radialDecoupler_4292983968 attN = top,fuelTank_4293068158_0|0.981725|0 attN = bottom,liquidEngine2_4293057002_0|-0.9125|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } RESOURCE { name = LiquidFuel amount = 180 maxAmount = 180 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 220 maxAmount = 220 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = liquidEngine2_4293057002 partName = Part persistentId = 424127819 pos = -0.220430493,13.7587194,0.219820052 attPos = 0,0,0 attPos0 = 0,-1.81432629,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 3 resPri = 0 dstg = 6 sidx = 1 sqor = 3 sepI = 1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = top,fuelTank_4293066646_0|0.9018263|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleJettison isEnabled = True activejettisonName = fairing isJettisoned = True shroudHideOverride = False stagingEnabled = True EVENTS { } ACTIONS { JettisonAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True gimbalActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } LockAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } FreeAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } TogglePitchAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleYawAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleRollAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateThrottle isEnabled = True animState = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleAlternator isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleSurfaceFX isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = R8winglet_4293046448 partName = Part persistentId = 1974214509 pos = -1.04163539,15.2201557,-0.601384878 attPos = 0,0,0 attPos0 = -0.821204901,-0.352890015,-0.821204901 rot = 3.42145619E-08,0.382683456,-8.26012538E-08,-0.923879623 attRot = 0,0,0,1 attRot0 = 3.42145619E-08,0.382683456,-8.26012538E-08,-0.923879623 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 1 resPri = 0 dstg = 6 sidx = -1 sqor = -1 sepI = 1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = R8winglet_4292989266 sym = R8winglet_4292989222 sym = R8winglet_4292989178 srfN = srfAttach,fuelTank_4293066646 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleControlSurface isEnabled = True mirrorDeploy = False usesMirrorDeploy = True ignorePitch = False ignoreYaw = False ignoreRoll = False deploy = False deployInvert = False partDeployInvert = False authorityLimiter = 100 stagingEnabled = True EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionExtend { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionRetract { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = R8winglet_4292989266 partName = Part persistentId = 2749721749 pos = -1.04163539,15.2201557,1.0410248 attPos = 0,0,0 attPos0 = -0.821204901,-0.352890015,0.821204782 rot = -3.42145583E-08,-0.382683456,-8.26012538E-08,-0.923879564 attRot = 0,0,0,1 attRot0 = -3.42145583E-08,-0.382683456,-8.26012538E-08,-0.923879564 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 1 resPri = 0 dstg = 6 sidx = -1 sqor = -1 sepI = 1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = R8winglet_4293046448 sym = R8winglet_4292989222 sym = R8winglet_4292989178 srfN = srfAttach,fuelTank_4293066646 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleControlSurface isEnabled = True mirrorDeploy = False usesMirrorDeploy = True ignorePitch = False ignoreYaw = False ignoreRoll = False deploy = False deployInvert = False partDeployInvert = False authorityLimiter = 100 stagingEnabled = True EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionExtend { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionRetract { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = R8winglet_4292989222 partName = Part persistentId = 240538567 pos = 0.600774467,15.2201557,1.04102492 attPos = 0,0,0 attPos0 = 0.82120496,-0.352890015,0.821204901 rot = -8.26012538E-08,-0.923879623,-3.42145583E-08,-0.382683426 attRot = 0,0,0,1 attRot0 = -8.26012538E-08,-0.923879623,-3.42145583E-08,-0.382683426 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 1 resPri = 0 dstg = 6 sidx = -1 sqor = -1 sepI = 1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = R8winglet_4293046448 sym = R8winglet_4292989266 sym = R8winglet_4292989178 srfN = srfAttach,fuelTank_4293066646 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleControlSurface isEnabled = True mirrorDeploy = False usesMirrorDeploy = True ignorePitch = False ignoreYaw = False ignoreRoll = False deploy = False deployInvert = False partDeployInvert = False authorityLimiter = 100 stagingEnabled = True EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionExtend { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionRetract { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = R8winglet_4292989178 partName = Part persistentId = 919718632 pos = 0.600774288,15.2201557,-0.601384878 attPos = 0,0,0 attPos0 = 0.821204782,-0.352890015,-0.821204901 rot = -8.26012538E-08,-0.923879564,3.42145583E-08,0.382683456 attRot = 0,0,0,1 attRot0 = -8.26012538E-08,-0.923879564,3.42145583E-08,0.382683456 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 1 resPri = 0 dstg = 6 sidx = -1 sqor = -1 sepI = 1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = R8winglet_4293046448 sym = R8winglet_4292989266 sym = R8winglet_4292989222 srfN = srfAttach,fuelTank_4293066646 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleControlSurface isEnabled = True mirrorDeploy = False usesMirrorDeploy = True ignorePitch = False ignoreYaw = False ignoreRoll = False deploy = False deployInvert = False partDeployInvert = False authorityLimiter = 100 stagingEnabled = True EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionExtend { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionRetract { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = radialDecoupler_4293014140 partName = Part persistentId = 3190334068 pos = -0.83833003,15.1972599,0.219820082 attPos = 0,0,0 attPos0 = -0.617899537,-0.375785828,2.98023224E-08 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 2 resPri = 0 dstg = 7 sidx = 0 sqor = 2 sepI = 2 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 link = solidBooster.v2_4293014074 sym = radialDecoupler_4292983968 srfN = srfAttach,fuelTank_4293066646 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnchoredDecoupler isEnabled = True ejectionForcePercent = 100 isDecoupled = False stagingEnabled = True EVENTS { } ACTIONS { DecoupleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleToggleCrossfeed isEnabled = True crossfeedStatus = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } EnableAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } DisableAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = solidBooster.v2_4293014074 partName = Part persistentId = 2284912901 pos = -1.62501562,14.8232632,0.219820097 attPos = 0,0,0 attPos0 = -0.786685228,-0.373996854,1.49011612E-08 rot = 2.1073415E-08,-0.707106769,2.10734115E-08,0.707106888 attRot = 0,0,0,1 attRot0 = 2.1073415E-08,-0.707106769,2.10734115E-08,0.707106888 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 3 resPri = 0 dstg = 8 sidx = 0 sqor = 3 sepI = 2 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 link = pointyNoseConeB_4292989876 sym = solidBooster.v2_4292983896 srfN = srfAttach,radialDecoupler_4293014140 attN = top,pointyNoseConeB_4292989876_0|1.281837|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 40.5 manuallyOverridden = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateThrottle isEnabled = True animState = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleSurfaceFX isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleJettison isEnabled = True activejettisonName = shroud isJettisoned = True shroudHideOverride = False stagingEnabled = True EVENTS { } ACTIONS { JettisonAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } RESOURCE { name = SolidFuel amount = 375 maxAmount = 375 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = pointyNoseConeB_4292989876 partName = Part persistentId = 3928448720 pos = -1.62501562,16.7301006,0.219820097 attPos = 0,0,0 attPos0 = -6.21724894E-15,1.90683758,-1.13656306E-07 rot = 0,-0.707106829,-4.28850325E-15,0.707106829 attRot = 0,0,0,1 attRot0 = -2.98023046E-08,-1.1920929E-07,2.66453526E-15,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 3 resPri = 0 dstg = 8 sidx = -1 sqor = -1 sepI = 2 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 sym = pointyNoseConeB_4292983746 attN = bottom01,solidBooster.v2_4293014074_0|-0.625|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateHeat isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = radialDecoupler_4292983968 partName = Part persistentId = 4094496863 pos = 0.397469044,15.1972599,0.219819963 attPos = 0,0,0 attPos0 = 0.617899537,-0.375785828,-8.94069672E-08 rot = 0,1,0,-4.37113883E-08 attRot = 0,0,0,1 attRot0 = 0,1,0,-4.37113883E-08 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 2 resPri = 0 dstg = 7 sidx = 0 sqor = 2 sepI = 2 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 link = solidBooster.v2_4292983896 sym = radialDecoupler_4293014140 srfN = srfAttach,fuelTank_4293066646 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnchoredDecoupler isEnabled = True ejectionForcePercent = 100 isDecoupled = False stagingEnabled = True EVENTS { } ACTIONS { DecoupleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleToggleCrossfeed isEnabled = True crossfeedStatus = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } EnableAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } DisableAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = solidBooster.v2_4292983896 partName = Part persistentId = 3056732269 pos = 1.18415463,14.8232632,0.219819874 attPos = 0,0,0 attPos0 = -0.786685228,-0.373996854,1.49011612E-08 rot = 2.10734097E-08,0.707106948,-2.10734168E-08,0.707106709 attRot = 0,0,0,1 attRot0 = 2.1073415E-08,-0.707106769,2.10734115E-08,0.707106888 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 3 resPri = 0 dstg = 8 sidx = 0 sqor = 3 sepI = 2 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 link = pointyNoseConeB_4292983746 sym = solidBooster.v2_4293014074 srfN = srfAttach,radialDecoupler_4292983968 attN = top,pointyNoseConeB_4292983746_0|1.281837|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 40.5 manuallyOverridden = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateThrottle isEnabled = True animState = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleSurfaceFX isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleJettison isEnabled = True activejettisonName = shroud isJettisoned = True shroudHideOverride = False stagingEnabled = True EVENTS { } ACTIONS { JettisonAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } RESOURCE { name = SolidFuel amount = 375 maxAmount = 375 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = pointyNoseConeB_4292983746 partName = Part persistentId = 1121574403 pos = 1.18415463,16.7301006,0.219819874 attPos = 0,0,0 attPos0 = -6.21724894E-15,1.90683758,-1.13656306E-07 rot = -4.28850325E-15,0.707106888,1.87456436E-22,0.707106769 attRot = 0,0,0,1 attRot0 = -2.98023046E-08,-1.1920929E-07,2.66453526E-15,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 3 resPri = 0 dstg = 8 sidx = -1 sqor = -1 sepI = 2 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 sym = pointyNoseConeB_4292989876 attN = bottom01,solidBooster.v2_4292983896_0|-0.625|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateHeat isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = probeCoreOcto.v2_4292917092 partName = Part persistentId = 1354227971 pos = -0.220430493,22.8868065,0.219820052 attPos = 0,0,0 attPos0 = 0,0.829458237,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = parachuteSingle_4293176874 link = SurfAntenna_4293084296 attN = bottom,mk1pod.v2_4293180536_0|-0.1870818|0 attN = top,parachuteSingle_4293176874_0|0.1870818|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = parachuteSingle_4293176874 partName = Part persistentId = 287293951 pos = -0.220430493,23.0889702,0.219820052 attPos = 0,0,0 attPos0 = 0,0.202163696,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 0 resPri = 0 dstg = 0 sidx = 1 sqor = 0 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = bottom,probeCoreOcto.v2_4292917092_0|-0.01508113|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleParachute isEnabled = True persistentState = STOWED animTime = 0 minAirPressureToOpen = 0.0399999991 deployAltitude = 1000 spreadAngle = 7 automateSafeDeploy = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } CutAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleDragModifier isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleDragModifier isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = SurfAntenna_4293084296 partName = Part persistentId = 189426973 pos = -0.220430478,22.8874092,0.607588887 attPos = 0,0,0 attPos0 = 1.49011612E-08,0.000602722168,0.387768835 rot = 0.707106829,8.60294662E-08,-8.60294662E-08,0.707106829 attRot = 0,0,0,1 attRot0 = 0.707106829,8.60294662E-08,-8.60294662E-08,0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,probeCoreOcto.v2_4292917092 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 1500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = RTLongAntenna2_4292913452 partName = Part persistentId = 2472841460 pos = -0.220430493,21.2266483,0.823701501 attPos = 0,0,0 attPos0 = 0,0.251588821,0.603881478 rot = 0.707106709,0,0,0.707106948 attRot = 0,0,0,1 attRot0 = 0.707106709,0,0,0.707106948 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 0 resPri = 0 dstg = 4 sidx = -1 sqor = -1 sepI = 0 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,fuelTankSmall_4293118966 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = True animTime = 0 animSpeed = 1 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ================================================ FILE: saves/RemoteTech KSP1_5 Testbed/Ships/VAB/Science Toy.craft ================================================ ship = Science Toy version = 1.5.1 description = type = VAB size = 1.26068449,5.12704849,2.53989029 steamPublishedFileId = 0 persistentId = 1167014933 rot = 0,0,0,0 missionFlag = Squad/Flags/default vesselType = Debris PART { part = probeCoreOcto.v2_4293298564 partName = Part persistentId = 3746993482 pos = 0,15,0 attPos = 0,0,0 attPos0 = 0,15,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = sasModule_4293294506 link = solarPanels3_4293286102 link = solarPanels3_4293285354 link = batteryBankMini_4293281946 link = GooExperiment_4293267310 link = GooExperiment_4293267256 link = sensorThermometer_4293265846 link = sensorBarometer_4293264460 attN = bottom,sasModule_4293294506_0|-0.1870818|0 attN = top,batteryBankMini_4293281946_0|0.1870818|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = sasModule_4293294506 partName = Part persistentId = 1932173931 pos = 0,14.7218075,0 attPos = 0,0,0 attPos0 = 0,-0.27819252,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = batteryBankMini_4293279134 attN = bottom,batteryBankMini_4293279134_0|-0.0911109|0 attN = top,probeCoreOcto.v2_4293298564_0|0.0911109|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels3_4293286102 partName = Part persistentId = 193822615 pos = -2.93519893E-08,14.9433079,-0.335747629 attPos = 0,0,0 attPos0 = -2.93519893E-08,-0.0566921234,-0.335747629 rot = 3.1962891E-08,0.707106888,-3.19628874E-08,-0.707106769 attRot = 0,0,0,1 attRot0 = 3.1962891E-08,0.707106888,-3.19628874E-08,-0.707106769 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels3_4293285354 srfN = srfAttach,probeCoreOcto.v2_4293298564 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.707106829, 0, 0, 0.707106829) storedAnimationTime = 0 storedAnimationSpeed = 10 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels3_4293285354 partName = Part persistentId = 1778832439 pos = 5.87039786E-08,14.9433079,0.335747629 attPos = 0,0,0 attPos0 = 5.87039786E-08,-0.0566921234,0.335747629 rot = -3.19628874E-08,-0.707106829,-3.1962891E-08,-0.707106829 attRot = 0,0,0,1 attRot0 = -3.19628874E-08,-0.707106829,-3.1962891E-08,-0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels3_4293286102 srfN = srfAttach,probeCoreOcto.v2_4293298564 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.707106829, 0, 0, 0.707106829) storedAnimationTime = 0 storedAnimationSpeed = 10 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = batteryBankMini_4293281946 partName = Part persistentId = 2709839398 pos = 0,15.2870817,0 attPos = 0,0,0 attPos0 = 0,0.287081718,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = RTLongAntenna2_4293272550 attN = top,RTLongAntenna2_4293272550_0|0.1|0 attN = bottom,probeCoreOcto.v2_4293298564_0|-0.1|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = batteryBankMini_4293279134 partName = Part persistentId = 3050596952 pos = 0,14.5306959,0 attPos = 0,0,0 attPos0 = 0,-0.191111565,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = Decoupler.1_4293242406 attN = top,sasModule_4293294506_0|0.1|0 attN = bottom,Decoupler.1_4293242406_0|-0.1|0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = RTLongAntenna2_4293272550 partName = Part persistentId = 1233110037 pos = 0,15.3870821,0 attPos = 0,0,0 attPos0 = 0,0.100000381,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = bottom,batteryBankMini_4293281946_0|0|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.993425965 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = GooExperiment_4293267310 partName = Part persistentId = 668522118 pos = -0.24601385,14.8760509,6.83077488E-08 attPos = 0,0,0 attPos0 = -0.24601385,-0.123949051,6.83077488E-08 rot = 3.96246982E-08,0.70710659,-3.96246804E-08,0.707106948 attRot = 0,0,0,1 attRot0 = 3.96246982E-08,0.70710659,-3.96246804E-08,0.707106948 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = GooExperiment_4293267256 srfN = srfAttach,probeCoreOcto.v2_4293298564 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = True animTime = 0 animSpeed = 1 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ResetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = GooExperiment_4293267256 partName = Part persistentId = 67528335 pos = 0.24601385,14.8760509,-8.98149608E-08 attPos = 0,0,0 attPos0 = 0.24601385,-0.123949051,-8.98149608E-08 rot = -3.96246804E-08,0.707106888,-3.96246982E-08,-0.70710665 attRot = 0,0,0,1 attRot0 = -3.96246804E-08,0.707106888,-3.96246982E-08,-0.70710665 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 sym = GooExperiment_4293267310 srfN = srfAttach,probeCoreOcto.v2_4293298564 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = True animTime = 0 animSpeed = 1 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ResetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = sensorThermometer_4293265846 partName = Part persistentId = 519185223 pos = -0.237538412,15.0364666,0.237538368 attPos = 0,0,0 attPos0 = -0.237538412,0.0364665985,0.237538368 rot = -2.14445848E-08,0.923879266,5.17716927E-08,0.382684141 attRot = 0,0,0,1 attRot0 = -2.14445848E-08,0.923879266,5.17716927E-08,0.382684141 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,probeCoreOcto.v2_4293298564 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ResetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = sensorBarometer_4293264460 partName = Part persistentId = 1868882946 pos = -0.238269895,15.0032949,-0.238269866 attPos = 0,0,0 attPos0 = -0.238269895,0.00329494476,-0.238269866 rot = 0,-0.382683605,0,-0.923879504 attRot = 0,0,0,1 attRot0 = 0,-0.382683605,0,-0.923879504 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,probeCoreOcto.v2_4293298564 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ResetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = Decoupler.1_4293242406 partName = Part persistentId = 1532863574 pos = 0,14.3806953,0 attPos = 0,0,0 attPos0 = 0,-0.150000572,0 rot = -1,0,0,0 attRot = -0.99999994,0,0,0 attRot0 = -1,0,0,0 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 0 resPri = 0 dstg = 1 sidx = 0 sqor = 1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 link = science.module_4293269222 attN = top,science.module_4293269222_0|0.05|0 attN = bottom,batteryBankMini_4293279134_0|-0.05|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDecouple isEnabled = True ejectionForcePercent = 100 isDecoupled = False stagingEnabled = True EVENTS { } ACTIONS { DecoupleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleToggleCrossfeed isEnabled = True crossfeedStatus = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } EnableAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } DisableAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = science.module_4293269222 partName = Part persistentId = 4124516147 pos = 0,13.718195,0 attPos = 0,0,0 attPos0 = 0,0.662500381,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 1,0,0,0 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 0 resPri = 0 dstg = 2 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = 0,0,0 attN = top,Decoupler.1_4293242406_0|0.6125|0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = True animTime = 0 animSpeed = 1 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ResetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } ================================================ FILE: saves/RemoteTech KSP1_5 Testbed/persistent.sfs ================================================ GAME { version = 1.5.1 Title = RT190Career (CAREER) Description = No description available. linkURL = linkCaption = Mode = CAREER Status = 1 Seed = 6307111 scene = 5 editor = None flag = Squad/Flags/default launchID = 25 defaultVABLaunchSite = LaunchPad defaultSPHLaunchSite = Runway modded = True envInfo = - Environment Info - Win32NT 7FFFFFFFFFFFFFFF Args: KSP_x64.exe - versionFull = 1.5.1.2335 (WindowsPlayer x64) versionCreated = 1.5.1.2335 (WindowsPlayer x64) PARAMETERS { preset = Normal FLIGHT { CanQuickSave = True CanQuickLoad = True CanAutoSave = True CanUseMap = True CanSwitchVesselsNear = True CanSwitchVesselsFar = True CanTimeWarpHigh = True CanTimeWarpLow = True CanEVA = True CanIVA = True CanBoard = True CanRestart = True CanLeaveToEditor = True CanLeaveToTrackingStation = True CanLeaveToSpaceCenter = True CanLeaveToMainMenu = True } EDITOR { CanSave = True CanLoad = True CanStartNew = True CanLaunch = True CanLeaveToSpaceCenter = True CanLeaveToMainMenu = False startUpMode = 0 craftFileToLoad = } TRACKINGSTATION { CanFlyVessel = True CanAbortVessel = True CanLeaveToSpaceCenter = True CanLeaveToMainMenu = False } SPACECENTER { CanGoInVAB = True CanGoInSPH = True CanGoInTrackingStation = True CanLaunchAtPad = True CanLaunchAtRunway = True CanGoToAdmin = True CanGoToAstronautC = True CanGoToMissionControl = True CanGoToRnD = True CanSelectFlag = True CanLeaveToMainMenu = True } DIFFICULTY { AutoHireCrews = False MissingCrewsRespawn = True RespawnTimer = 7200 BypassEntryPurchaseAfterResearch = True AllowStockVessels = False IndestructibleFacilities = False ResourceAbundance = 1 ReentryHeatScale = 1 EnableCommNet = False AllowOtherLaunchSites = False } CAREER { TechTreeUrl = GameData\ModuleManager.TechTree StartingFunds = 25000 StartingScience = 0 StartingReputation = 0 FundsGainMultiplier = 1 RepGainMultiplier = 1 ScienceGainMultiplier = 1 FundsLossMultiplier = 1 RepLossMultiplier = 1 RepLossDeclined = 1 } CommNetParams { requireSignalForControl = False plasmaBlackout = False rangeModifier = 1 DSNModifier = 1 occlusionMultiplierVac = 0.9 occlusionMultiplierAtm = 0.75 enableGroundStations = True } AdvancedParams { EnableKerbalExperience = True ImmediateLevelUp = False AllowNegativeCurrency = False PressurePartLimits = False GPartLimits = False GKerbalLimits = False KerbalGToleranceMult = 1 ResourceTransferObeyCrossfeed = False ActionGroupsAlways = False BuildingImpactDamageMult = 0.05 PartUpgradesInSandbox = False PartUpgradesInCareer = True PartUpgradesInMission = False } MissionParamsGeneral { enableFunding = False startingFunds = 100000 spacer = enableKerbalLevels = False kerbalLevelPilot = 4 kerbalLevelScientist = 4 kerbalLevelEngineer = 4 spacer2 = preventVesselRecovery = False } MissionParamsExtras { facilityOpenAC = False astronautHiresAreFree = True spacer = facilityOpenEditor = False launchSitesOpen = True spacer2 = cheatsEnabled = False } MissionParamsFacilities { facilityLevelAdmin = 3 facilityLevelAC = 3 facilityLevelLaunchpad = 3 facilityLevelMC = 3 facilityLevelRD = 3 facilityLevelRunway = 3 facilityLevelSPH = 3 facilityLevelTS = 3 facilityLevelVAB = 3 } } SCENARIO { name = CommNetScenario scene = 7, 8, 5, 6 } SCENARIO { name = PartUpgradeManager scene = 6, 5, 7 UPGRADES { Unlocks { } Enableds { } } } SCENARIO { name = ResourceScenario scene = 7, 8, 5, 6, 21 RESOURCE_SETTINGS { GameSeed = 1462736663 MaxDeltaTime = 21600 } } SCENARIO { name = ContractSystem scene = 7, 8, 5, 6 update = 341169.46012872661 version = 1.5.1 WEIGHTS { TourismContract = 30 SurveyContract = 30 StationContract = 27 SentinelContract = 30 SatelliteContract = 10 ISRUContract = 30 ExplorationContract = 30 BaseContract = 28 ARMContract = 30 RecoverAsset = 30 PlantFlag = 30 PartTest = 29 GrandTour = 30 CollectScience = 19 Eeloo = 30 Dres = 30 Pol = 30 Gilly = 30 Tylo = 30 Bop = 30 Vall = 30 Laythe = 30 Jool = 30 Ike = 30 Duna = 30 Eve = 28 Moho = 30 Minmus = 29 Mun = 10 Kerbin = 10 Sun = 30 } CONTRACTS { CONTRACT { guid = d3d689ad-4228-4578-816f-f7e1b9630bc3 type = SatelliteContract prestige = 1 seed = -2033530558 state = Offered viewed = Seen agent = Experimental Engineering Group agentName = Experimental Engineering Group deadlineType = Floating expiryType = Floating values = 127058.823680878,90211764.8134232,44981.9991588593,126791.610377195,48510.0010514259,14,12.72727,8,346183.627877825,0,0,0 targetBody = 2 deviation = 5 orbitType = 3 placementMode = 0 PARAM { name = VesselSystemsParameter state = Incomplete values = 0,0,0,0,0 typeString = probe mannedStatus = 1 requireNew = True checkModuleTypes = Antenna|Generator checkModuleDescriptions = has an antenna|can generate power launchID = 0 } PARAM { name = SpecificOrbitParameter state = Incomplete values = 0,0,0,0,0 TargetBody = 2 deviationWindow = 5 orbitType = 3 inclination = 0 eccentricity = 0.2384346812317773 sma = 482954.56883128243 lan = 250.67228918086789 argumentOfPeriapsis = 79.823593193597517 meanAnomalyAtEpoch = -1.0375042353443302 epoch = 0 } PARAM { name = PartRequestParameter state = Incomplete values = 0,0,0,0,0 article = a partDescription = materials bay vesselDescription = satellite partNames = science_module } PARAM { name = PartRequestParameter state = Incomplete values = 0,0,0,0,0 article = a partDescription = thermometer vesselDescription = satellite partNames = sensorThermometer } PARAM { name = StabilityParameter state = Incomplete values = 0,0,0,0,0 holdSeconds = 10 } } CONTRACT { guid = 1286dd5a-071c-44ea-ab72-699104c10617 type = SatelliteContract prestige = 1 seed = -509300922 state = Offered viewed = Unseen agent = Goliath National Products agentName = Goliath National Products deadlineType = Floating expiryType = Floating values = 64800,230040000,30000,84562.5018328428,33000.0007152557,0,3.636364,2,366700.872653213,0,0,0 targetBody = 5 deviation = 5 orbitType = 6 placementMode = 1 PARAM { name = SpecificVesselParameter state = Incomplete values = 0,0,0,0,0 TargetBody = 5 targetVesselID = 4b1a1a19932247ae9fd6df80d2d4c269 targetVesselPartCount = 13 targetVesselName = Science Toy targetVesselSituation = ORBITING partIDs = 241794028|876262229|2197061538|2110055208|91317808|1900480522|2081274878|511733575|3721461578|3215988418|4196308497|706792592|4181289178 } PARAM { name = VesselSystemsParameter state = Incomplete values = 0,0,0,0,0 typeString = probe mannedStatus = 1 requireNew = False checkModuleTypes = Antenna|Generator checkModuleDescriptions = has an antenna|can generate power } PARAM { name = SpecificOrbitParameter state = Incomplete values = 0,0,0,0,0 TargetBody = 5 deviationWindow = 5 orbitType = 6 inclination = 10.027934335767261 eccentricity = 0.064053533340490243 sma = 2900934.8716797838 lan = 169.39075386233253 argumentOfPeriapsis = 1.9956982145741495 meanAnomalyAtEpoch = -1.5886845107732905 epoch = 256907.74622724522 } PARAM { name = StabilityParameter state = Incomplete values = 0,0,0,0,0 holdSeconds = 10 } } CONTRACT { guid = 4d17bf75-203f-4e42-8530-58b758765e11 type = CollectScience prestige = 0 seed = -448727463 state = Offered viewed = Unseen agent = C7 Aerospace Division agentName = C7 Aerospace Division deadlineType = Floating expiryType = Floating values = 21600,230040000,38250,98174.9955415726,40162.4981760979,3,4.761905,3,345957.954879775,0,0,0 body = 5 location = Space PARAM { name = CollectScience state = Incomplete values = 0,0,0,0,0 body = 5 location = Space } } CONTRACT { guid = 3337fc29-0b20-4f2c-a792-f91da5dbb9ec type = SurveyContract prestige = 0 seed = -448727455 state = Offered viewed = Unseen agent = WinterOwl Aircraft Emporium agentName = WinterOwl Aircraft Emporium deadlineType = Floating expiryType = Floating values = 42146.3424682617,44885854.7286987,28169.013261795,52253.5172276374,31499.9985694885,0,9.084259,8.737864,366504.297348037,0,0,0 targetBody = 1 centerLatitude = 33.168800466436245 centerLongitude = 59.238056726398895 dataName = observational anomalyName = inconsistencies reportName = reports locationName = Kerbin near Area F18Z focusedSurvey = False targetBand = GROUND contextual = False PARAM { name = SurveyWaypointParameter state = Incomplete values = 8000,0,3,3,0 targetBody = 1 actionDescription = Take a surface sample experiment = surfaceSample flightThreshold = 18700 band = 1 clusterState = FULL verified = True contextual = False wpSeed = -1024239777 wpIndex = 0 wpTexture = sample wpLatitude = 33.171604226177386 wpLongitude = 59.339096377248758 wpLandlocked = True wpNavigationId = 560ad20a-7759-47c3-948a-209445b57236 } PARAM { name = SurveyWaypointParameter state = Incomplete values = 7200,0,3,3,0 targetBody = 1 actionDescription = Take an EVA report experiment = evaReport flightThreshold = 16900 band = 1 clusterState = FULL verified = True contextual = False wpSeed = -1024239777 wpIndex = 1 wpTexture = eva wpLatitude = 33.159329969838076 wpLongitude = 59.087358775948019 wpLandlocked = True wpNavigationId = 380812c8-098e-4019-ba31-0fabd8d7fd7d } PARAM { name = SurveyWaypointParameter state = Incomplete values = 8000,0,3,3,0 targetBody = 1 actionDescription = Take a surface sample experiment = surfaceSample flightThreshold = 19400 band = 1 clusterState = FULL verified = True contextual = False wpSeed = -1024239777 wpIndex = 2 wpTexture = sample wpLatitude = 33.18793022822689 wpLongitude = 59.437943027563669 wpLandlocked = True wpNavigationId = 61de2a50-af3b-4670-89d5-6d47b411d541 } } CONTRACT { guid = 35a4bb58-1d25-4bb2-b93f-648f7f904873 type = SurveyContract prestige = 0 seed = -379187917 state = Offered viewed = Unseen agent = O.M.B. Demolition Enterprises agentName = O.M.B. Demolition Enterprises deadlineType = Floating expiryType = Floating values = 108000,230040000,150000,278249.987363815,157499.992847443,0,8.571429,9,445456.633493057,0,0,0 targetBody = 5 centerLatitude = -4.0110196294840508 centerLongitude = -152.13576099469128 dataName = temperature anomalyName = fluctuations reportName = measurements locationName = Eve^N focusedSurvey = False targetBand = LOW contextual = False PARAM { name = SurveyWaypointParameter state = Incomplete values = 44000,0,3,3,0 targetBody = 5 actionDescription = Measure the temperature experiment = temperatureScan flightThreshold = 20700 band = 2 clusterState = MIXED verified = True contextual = False wpSeed = -1300432052 wpIndex = 0 wpTexture = thermometer wpLatitude = -2.4939537642465606 wpLongitude = -154.22698095780325 wpLandlocked = False wpNavigationId = df442ec9-8d83-434f-8ed9-cc4936a800aa } PARAM { name = SurveyWaypointParameter state = Incomplete values = 44000,0,3,3,0 targetBody = 5 actionDescription = Measure the temperature experiment = temperatureScan flightThreshold = 20900 band = 2 clusterState = MIXED verified = True contextual = False wpSeed = -1300432052 wpIndex = 1 wpTexture = thermometer wpLatitude = -1.841969230148331 wpLongitude = -152.93859469591948 wpLandlocked = False wpNavigationId = bc6d27f5-ba32-404e-94af-3d0457e30310 } } CONTRACT { guid = bed00cb1-276b-4c17-862c-5cde81c09e62 type = SatelliteContract prestige = 0 seed = -379187909 state = Offered viewed = Unseen agent = Research & Development Department agentName = Research & Development Department deadlineType = Floating expiryType = Floating values = 43200,115020000,8000,20500,8000,0,2,1,380656.633493057,0,0,0 targetBody = 3 deviation = 7 orbitType = 6 placementMode = 1 PARAM { name = SpecificVesselParameter state = Incomplete values = 0,0,0,0,0 TargetBody = 3 targetVesselID = 7651b4e97e5c4cc89629dce9221decee targetVesselPartCount = 13 targetVesselName = Inner Dish targetVesselSituation = ORBITING partIDs = 3434468873|3499344192|3621432688|2070440885|340860778|2757042988|344603868|1651657883|3338687416|544778952|880830187|1668065736|4202086443 } PARAM { name = VesselSystemsParameter state = Incomplete values = 0,0,0,0,0 typeString = probe mannedStatus = 1 requireNew = False checkModuleTypes = Antenna|Generator checkModuleDescriptions = has an antenna|can generate power } PARAM { name = SpecificOrbitParameter state = Incomplete values = 0,0,0,0,0 TargetBody = 3 deviationWindow = 7 orbitType = 6 inclination = 10.227817909572188 eccentricity = 2.7941773289853826E-12 sma = 2224954.1040147087 lan = 180.55314598620657 argumentOfPeriapsis = 314.51662036255732 meanAnomalyAtEpoch = -2.3571343468094752 epoch = 254160.95395192452 } PARAM { name = StabilityParameter state = Incomplete values = 0,0,0,0,0 holdSeconds = 10 } } CONTRACT { guid = f2b1b586-4f5b-40f7-ac14-4be41903aabe type = StationContract prestige = 0 seed = -379187908 state = Offered viewed = Unseen agent = Periapsis Rocket Supplies Co agentName = Periapsis Rocket Supplies Co deadlineType = Floating expiryType = Floating values = 64800,64411200,33600,87150,33600,0,19,9,402256.633493057,0,0,0 targetBody = 1 capacity = 5 contextual = False PARAM { name = VesselSystemsParameter state = Incomplete values = 0,0,0,0,0 typeString = station mannedStatus = 2 requireNew = True checkModuleTypes = Antenna|Generator|Dock checkModuleDescriptions = has an antenna|has a docking port|can generate power launchID = 0 } PARAM { name = CrewCapacityParameter state = Incomplete values = 0,0,0,0,0 targetCapacity = 5 } PARAM { name = CrewTraitParameter state = Incomplete values = 0,0,0,0,0 targetTrait = Pilot targetCount = 1 vesselDescription = station } PARAM { name = StabilityParameter state = Incomplete values = 0,0,0,0,0 holdSeconds = 10 } PARAM { name = LocationAndSituationParameter state = Incomplete values = 0,0,0,0,0 targetBody = 1 targetSituation = ORBITING noun = station finalObjective = False } } CONTRACT { guid = 7bd23a0c-8728-45e3-a09c-3152a3612446 type = SurveyContract prestige = 0 seed = -379187904 state = Offered viewed = Unseen agent = StrutCo agentName = StrutCo deadlineType = Floating expiryType = Floating values = 21600,230040000,150000,278249.987363815,157499.992847443,0,8.571429,9,359056.633493057,0,0,0 targetBody = 5 centerLatitude = -25.254003234993398 centerLongitude = 52.989698943211579 dataName = temperature anomalyName = fluctuations reportName = measurements locationName = Eve^N focusedSurvey = False targetBand = HIGH contextual = False PARAM { name = SurveyWaypointParameter state = Incomplete values = 44000,0,3,3,0 targetBody = 5 actionDescription = Measure the temperature experiment = temperatureScan flightThreshold = 22600 band = 3 clusterState = MIXED verified = True contextual = False wpSeed = 484754348 wpIndex = 0 wpTexture = thermometer wpLatitude = -26.665774384683658 wpLongitude = 55.374645272597604 wpLandlocked = False wpNavigationId = 0e54c913-af84-4684-a6a7-fea83fe55928 } PARAM { name = SurveyWaypointParameter state = Incomplete values = 44000,0,3,3,0 targetBody = 5 actionDescription = Measure the temperature experiment = temperatureScan flightThreshold = 20600 band = 3 clusterState = MIXED verified = True contextual = False wpSeed = 484754348 wpIndex = 1 wpTexture = thermometer wpLatitude = -26.767317757607785 wpLongitude = 46.318132657165748 wpLandlocked = False wpNavigationId = 2c20cc77-1cc5-4fe9-8cac-ed158c317bc1 } } CONTRACT { guid = b01f949f-201c-47c2-b308-0b8bd2fa4c45 type = TourismContract prestige = 0 seed = -379187902 state = Offered viewed = Unseen agent = Jebediah Kerman's Junkyard and Spacecraft Parts Co agentName = Jebediah Kerman's Junkyard and Spacecraft Parts Co deadlineType = Floating expiryType = Floating values = 61132.0705890656,43403770.1182365,0,0,0,0,21.37815,9.803922,398588.704082122,0,0,0 preposition = right here on Kerbin homeDestinations = True isGeeAdventure = False tourists = Bilgan Kerman PARAM { name = KerbalTourParameter state = Incomplete allowPartialFailure = True values = 19500,0,0,0,0 kerbalName = Bilgan Kerman kerbalGender = Male PARAM { name = KerbalDestinationParameter state = Incomplete values = 3250,0,0,0,0 targetBody = 1 targetType = Suborbit kerbalName = Bilgan Kerman } PARAM { name = KerbalDestinationParameter state = Incomplete values = 3250,0,0,0,0 targetBody = 1 targetType = Orbit kerbalName = Bilgan Kerman } } } CONTRACT { guid = 212de2d9-7377-4537-807a-1ff544038ad0 type = CollectScience prestige = 1 seed = -379187900 state = Offered viewed = Unseen agent = Maxo Construction Toys agentName = Maxo Construction Toys deadlineType = Floating expiryType = Floating values = 64800,115020000,32344,79062,32344,4,9,4,402256.633493057,0,0,0 body = 3 location = Surface PARAM { name = CollectScience state = Incomplete values = 0,0,0,0,0 body = 3 location = Surface } } } } SCENARIO { name = ScenarioContractEvents scene = 7, 8, 5 id = 1292600870 } SCENARIO { name = Funding scene = 7, 8, 5, 6 funds = 1317978 } SCENARIO { name = ProgressTracking scene = 7, 8, 5 Progress { FirstLaunch { completedManned = 256990.94622720164 } RecordsAltitude { completed = 34.079999999999728 record = 70000 } RecordsSpeed { reached = 257299.20237941068 record = 2287.916520608359 } RecordsDistance { completed = 34.079999999999728 record = 100000 } ReachedSpace { completedManned = 257212.7446255369 vessel { name = Rocket flag = Squad/Flags/default } crew { crews = Jebediah Kerman } } Kerbin { reached = 34.059999999999725 Orbit { completed = 34.059999999999725 vessel { name = Untitled Space Craft flag = Squad/Flags/default } } Escape { completedUnmanned = 249365.87819524194 } Landing { completedUnmanned = 340740.15694361081 vessel { name = Rover flag = Squad/Flags/default } } } Minmus { reached = 254139.01395193601 Orbit { completedUnmanned = 254205.81395190101 vessel { name = Inner Dish flag = Squad/Flags/default } } Flyby { completedUnmanned = 254139.01395193601 } } Eve { reached = 249365.87819524194 Orbit { completedUnmanned = 249365.91819524192 vessel { name = Inner Dish flag = Squad/Flags/default } } Escape { completedUnmanned = 249413.21819521714 } Science { completedUnmanned = 256862.52703780725 vessel { name = Science Toy flag = Squad/Flags/default } } Flyby { completedUnmanned = 249365.87819524194 } } } } SCENARIO { name = ResearchAndDevelopment scene = 7, 8, 5, 6 sci = 7923 Tech { id = start state = Available cost = 0 part = RTShortAntenna1 part = basicFin part = mk1pod part = mk1pod.v2 part = solidBooster.sm.v2 part = solidBooster.sm part = GooExperiment part = trussPiece1x part = parachuteSingle part = kv1Pod } Tech { id = engineering101 state = Available cost = 5 part = SurfAntenna part = stackDecoupler part = longAntenna part = sensorThermometer part = Decoupler.1 } Tech { id = basicRocketry state = Available cost = 5 part = fuelTankSmallFlat part = solidBooster part = solidBooster.v2 part = liquidEngine2 } Tech { id = survivability state = Available cost = 15 part = ServiceBay.125 part = parachuteRadial part = radialDrogue part = miniLandingLeg part = radPanelSm part = sensorBarometer part = HeatShield1 part = HeatShield0 } Tech { id = stability state = Available cost = 18 part = radialDecoupler part = winglet part = noseCone } Tech { id = generalRocketry state = Available cost = 20 part = fuelTankSmall part = solidBooster1-1 part = liquidEngine } Tech { id = basicScience state = Available cost = 45 part = HighGainAntenna5 part = radPanelLg part = radPanelEdge part = ScienceBox part = science.module part = batteryPack part = probeCoreSphere.v2 part = probeCoreSphere } Tech { id = electrics state = Available cost = 90 part = spotLight2 part = spotLight1 part = foldingRadSmall part = batteryBankMini part = solarPanels5 part = probeCoreOcto.v2 part = probeCoreOcto part = RTShortDish2 } Tech { id = advRocketry state = Available cost = 45 part = Size1p5.Tank.01 part = Size1p5.Size1.Adapter.02 part = fuelTank part = radialLiquidEngine1-2 part = liquidEngine3 } Tech { id = generalConstruction state = Available cost = 45 part = Decoupler.1p5 part = launchClamp1 part = largeAdapter part = decoupler1-2 part = Mk1FuselageStructural part = Decoupler.2 part = strutConnector part = MK1CrewCabin } Tech { id = aviation state = Available cost = 45 part = GearFree part = GearFixed part = MK1Fuselage part = miniFuselage part = miniJetEngine part = Mark1Cockpit part = structuralWing3 part = StandardCtrlSrf part = wingConnector5 part = wingConnector2 part = miniIntake part = airplaneTail part = tailfin part = sweptWing } Tech { id = flightControl state = Available cost = 45 part = kv2Pod part = sasModule part = winglet3 part = R8winglet } Tech { id = advConstruction state = Available cost = 90 part = Tube4 part = Tube3 part = Tube2 part = Tube1p5 part = Tube1 part = ServiceModule18 part = Size1to0ServiceModule part = fairingSize1p5 part = Size1p5.Strut.Decoupler part = Separator.1p5 part = EnginePlate4 part = EnginePlate3 part = EnginePlate2 part = EnginePlate1p5 part = stackTriCoupler part = largeAdapter2 part = radialDecoupler2 part = radialDecoupler1-2 part = Separator.1 part = rocketNoseCone part = fairingSize1 part = pointyNoseConeA } Tech { id = advElectrics state = Available cost = 160 part = foldingRadMed part = LgRadialSolarPanel part = ksp.r.largeBatteryPack part = solarPanels3 part = solarPanels1 part = solarPanels4 part = solarPanels2 } Tech { id = specializedConstruction state = Available cost = 160 part = stackBiCoupler part = stackPoint1 part = dockingPort2 part = stackSeparator part = trussAdapter part = Separator.2 part = fairingSize2 part = pointyNoseConeB } Tech { id = heavyRocketry state = Available cost = 90 part = LiquidEngineRE-J10 part = MassiveBooster part = engineLargeSkipper part = liquidEngine2-2 } Tech { id = fuelSystems state = Available cost = 90 part = Size1p5.Tank.05 part = Size1p5.Tank.03 part = Size1p5.Tank.02 part = Size1p5.Size2.Adapter.01 part = Size1p5.Size1.Adapter.01 part = Size1p5.Size0.Adapter.01 part = fuelTank.long part = Rockomax8BW part = Rockomax32.BW part = Rockomax16.BW part = fuelTank4-2 part = fuelTank1-2 part = fuelTank2-2 part = fuelLine } Tech { id = advFlightControl state = Available cost = 90 part = Mk2Pod part = kv3Pod part = RCSBlock part = linearRcs part = radialRCSTank part = landerCabinSmall part = advSasModule } Tech { id = spaceExploration state = Available cost = 90 part = roverWheel2 part = ladder1 part = crewCabin } Tech { id = largeElectrics state = Available cost = 300 part = foldingRadLarge part = FuelCell part = batteryBank part = largeSolarPanel part = RTLongDish2 part = RTLongAntenna2 } Tech { id = advExploration state = Available cost = 160 part = telescopicLadderBay part = telescopicLadder part = Large.Crewed.Lab } Tech { id = fieldScience state = Available cost = 300 part = roverWheelM1-F part = roverWheel1 part = roverBody.v2 part = roverBody part = seatExternalCmd } Tech { id = miniaturization state = Available cost = 90 part = dockingPort3 part = stackSeparatorMini part = adapterSmallMiniTall part = adapterSmallMiniShort part = Separator.0 } Tech { id = precisionEngineering state = Available cost = 160 part = RelayAntenna5 part = stackDecouplerMini part = mediumDishAntenna part = strutOcto part = strutCube part = structuralMiniNode part = Decoupler.0 part = probeCoreHex.v2 part = probeCoreHex } Science { id = temperatureScan@EveInSpaceHigh title = Temperature Scan while in space high over Eve dsc = 1 scv = 0.5 sbv = 5 sci = 20 cap = 40 } Science { id = barometerScan@EveInSpaceHigh title = Atmospheric Pressure Scan while in space high over Eve dsc = 1 scv = 0.5 sbv = 5 sci = 30 cap = 60 } Science { id = barometerScan@MinmusInSpaceHigh title = Atmospheric Pressure Scan while in space high over Minmus dsc = 1 scv = 1 sbv = 2.5 sci = 0 cap = 30 } } SCENARIO { name = VesselRecovery scene = 5, 7, 8, 6 } SCENARIO { name = Reputation scene = 7, 8, 5, 6 rep = 30.9994316 } SCENARIO { name = StrategySystem scene = 7, 8, 5, 6 STRATEGIES { } } SCENARIO { name = ScenarioAchievements scene = 7, 8, 5, 6 } SCENARIO { name = ScenarioCustomWaypoints scene = 7, 8, 21 } SCENARIO { name = ScenarioDestructibles scene = 5, 7, 6, 8 SpaceCenter/VehicleAssemblyBuilding/Facility/ksp_pad_cylTank { intact = True } SpaceCenter/VehicleAssemblyBuilding/Facility/Tank { intact = True } SpaceCenter/VehicleAssemblyBuilding/Facility/mainBuilding { intact = True } SpaceCenter/VehicleAssemblyBuilding/Facility/PodMemorial { intact = True } SpaceCenter/TrackingStation/Facility/dish_array/dish_south { intact = True } SpaceCenter/TrackingStation/Facility/dish_array/dish_north { intact = True } SpaceCenter/TrackingStation/Facility/dish_array/dish_east { intact = True } SpaceCenter/TrackingStation/Facility/MainBuilding { intact = True } SpaceCenter/SpaceplaneHangar/Facility/Tank { intact = True } SpaceCenter/SpaceplaneHangar/Facility/ksp_pad_cylTank { intact = True } SpaceCenter/SpaceplaneHangar/Facility/ksp_pad_waterTower { intact = True } SpaceCenter/SpaceplaneHangar/Facility/mainBuilding { intact = True } SpaceCenter/Runway/Facility/model_runway_new_v43/runway_light_SE { intact = True } SpaceCenter/Runway/Facility/model_runway_new_v43/runway_light_NE { intact = True } SpaceCenter/Runway/Facility/model_runway_new_v43/runway_light_NW { intact = True } SpaceCenter/Runway/Facility/model_runway_new_v43/runway_light_SW { intact = True } SpaceCenter/Runway/Facility/End09 { intact = True } SpaceCenter/Runway/Facility/End27 { intact = True } SpaceCenter/Runway/Facility/Section1 { intact = True } SpaceCenter/Runway/Facility/Section2 { intact = True } SpaceCenter/Runway/Facility/Section3 { intact = True } SpaceCenter/Runway/Facility/Section4 { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/ksp_pad_cylTank { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/SmallLab { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/CentralBuilding { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/MainBuilding { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/CornerLab { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/WindTunnel { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/Observatory { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/SideLab { intact = True } SpaceCenter/MissionControl/Facility/building { intact = True } SpaceCenter/LaunchPad/Facility/LaunchPadMedium/ksp_pad_cylTank { intact = True } SpaceCenter/LaunchPad/Facility/LaunchPadMedium/ksp_pad_launchPad { intact = True } SpaceCenter/LaunchPad/Facility/LaunchPadMedium/ksp_pad_sphereTank { intact = True } SpaceCenter/LaunchPad/Facility/LaunchPadMedium/ksp_pad_waterTower { intact = True } SpaceCenter/LaunchPad/Facility/LaunchPadMedium/KSCFlagPoleLaunchPad { intact = True } SpaceCenter/FlagPole/Facility { intact = True } SpaceCenter/AstronautComplex/Facility/building { intact = True } SpaceCenter/Administration/Facility/mainBuilding { intact = True } SpaceCenter/VehicleAssemblyBuilding/Facility/VAB2 { intact = True } SpaceCenter/TrackingStation/Facility/building { intact = True } SpaceCenter/TrackingStation/Facility/OuterDish { intact = True } SpaceCenter/SpaceplaneHangar/Facility/Building { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/mainBuilding { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/ForeverAlone { intact = True } SpaceCenter/MissionControl/Facility/mainBuilding { intact = True } SpaceCenter/LaunchPad/Facility/Flag { intact = True } SpaceCenter/AstronautComplex/Facility/mainBuilding { intact = True } SpaceCenter/Administration/Facility/Building { intact = True } SpaceCenter/TrackingStation/Facility/building/Antenna_South { intact = True } SpaceCenter/TrackingStation/Facility/building/Antenna_North { intact = True } SpaceCenter/TrackingStation/Facility/building/Antenna_East { intact = True } SpaceCenter/TrackingStation/Facility/building/Building { intact = True } SpaceCenter/MissionControl/Facility/Antenna { intact = True } SpaceCenter/VehicleAssemblyBuilding/Facility/VAB3 { intact = True } SpaceCenter/VehicleAssemblyBuilding/Facility/SouthComplex { intact = True } } SCENARIO { name = ScenarioDiscoverableObjects scene = 7, 8, 5 lastSeed = 808442548 sizeCurve { key = 0 0 1.5 1.5 key = 0.3 0.45 0.875 0.875 key = 0.7 0.55 0.875 0.875 key = 1 1 1.5 1.5 } } SCENARIO { name = ScenarioUpgradeableFacilities scene = 5, 6, 7, 8 SpaceCenter/LaunchPad { lvl = 0 } SpaceCenter/Runway { lvl = 0 } SpaceCenter/VehicleAssemblyBuilding { lvl = 0.5 } SpaceCenter/SpaceplaneHangar { lvl = 0 } SpaceCenter/TrackingStation { lvl = 1 } SpaceCenter/AstronautComplex { lvl = 0 } SpaceCenter/MissionControl { lvl = 0.5 } SpaceCenter/ResearchAndDevelopment { lvl = 0.5 } SpaceCenter/Administration { lvl = 0 } SpaceCenter/FlagPole { lvl = 0 } } SCENARIO { name = SentinelScenario scene = 7, 8, 5 NextSpawnTime = 344859.22844017833 } FLIGHTSTATE { version = 1.5.1 UT = 341173.94012873078 activeVessel = 0 mapViewFiltering = -1026 commNetUIModeTracking = Network commNetUIModeFlight = Path VESSEL { pid = 1794827cd1a84a23b2f0d8147b0ccc2d persistentId = 152100838 name = Omni 2.5Mm Limit type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 91202.841371492948 lct = 45057.157626941109 lastUT = 136259.99899843405 distanceTraveled = 254966.91601874804 root = 0 lat = -1.1928121965457546E-06 lon = -102.03336647956901 alt = 2586750.0010411977 hgt = -1 nrm = 0.996215463,0.0118615665,-0.0861076266 rot = -0.594533205,-0.0281656049,0.80339855,-0.0169689469 CoM = 3.82191502E-07,-0.066495128,-4.26545739E-07 stg = 0 prst = False ref = 3178889891 ctrl = True PQSMin = 2 PQSMax = 9 cPch = 0.2 cHdg = 0.3 cMod = 0 ORBIT { SMA = 3186750.0001540678 ECC = 5.3400635076853088E-11 INC = 0 LPE = 247.8404025542763 LAN = 90.960051498875544 MNA = 2.1903187852705832 EPH = 136259.99899843405 REF = 1 } PART { name = probeCoreOcto.v2 cid = 4293497788 uid = 3178889891 mid = 4058079277 persistentId = 3449198583 launchID = 3 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 1 attN = top, 3 mass = 0.100000001 shielded = False temp = 205.11258278912482 tempExt = 204.2917729952606 tempExtUnexp = 4 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = probeCoreOcto.v2 (Omni 2.5Mm Limit) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 136259.99899843405 ExtraDelayScheduledTimeStamp = 0 ExtraDelay = 0 CmdGuid = 1b93f659-263d-440b-a3b7-b2da88e647e6 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = sasModule cid = 4293496104 uid = 65184499 mid = 4058079277 persistentId = 2737989541 launchID = 3 parent = 0 position = 0,-0.27819252014160156,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 2 attN = top, 0 mass = 0.0500000007 shielded = False temp = 205.13418985193874 tempExt = 204.38016479576771 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = sasModule modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4293494534 uid = 1750294811 mid = 4058079277 persistentId = 3453838612 launchID = 3 parent = 1 position = 0,-0.46930408477783203,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 1 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 204.74558871185411 tempExt = 204.36961697845612 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryBankMini cid = 4293493832 uid = 2545258627 mid = 4058079277 persistentId = 4013465972 launchID = 3 parent = 0 position = 0,0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 4 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 204.67305972424779 tempExt = 204.11578637686952 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = longAntenna cid = 4293490094 uid = 2876099044 mid = 4058079277 persistentId = 3952381594 launchID = 3 parent = 3 position = 0,0.38708209991455078,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 3 mass = 0.00499999989 shielded = False temp = 205.01604905156358 tempExt = 204.46149559741104 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = longAntenna modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.993339777 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 2500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4293493084 uid = 3281517466 mid = 4058079277 persistentId = 4255474737 launchID = 3 parent = 0 position = -0.33609062433242798,-0.016971588134765625,2.0032564052030466E-08 rotation = -3.96246804E-08,-0.707106948,-3.96246982E-08,0.70710659 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 sym = 11 sym = 12 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 204.78469309457677 tempExt = 204.20455720142041 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 45057.157626941109 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4293492698 uid = 3365326495 mid = 4058079277 persistentId = 744023244 launchID = 3 parent = 0 position = -0.23765192925930023,-0.016971588134765625,0.23765198886394501 rotation = -5.17721475E-08,-0.382683635,-2.14447375E-08,0.923879445 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 5 sym = 7 sym = 8 sym = 9 sym = 10 sym = 11 sym = 12 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 204.93257049372127 tempExt = 204.76593899913965 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 45057.157626941109 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4293492666 uid = 1935064612 mid = 4058079277 persistentId = 2551032830 launchID = 3 parent = 0 position = 5.823229751387147E-16,-0.016971588134765625,0.33609059453010559 rotation = -5.60377771E-08,-2.52881108E-07,-1.25607405E-14,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 5 sym = 6 sym = 8 sym = 9 sym = 10 sym = 11 sym = 12 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 204.88877359486582 tempExt = 204.59526806090693 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 45057.157626941109 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4293492634 uid = 22090183 mid = 4058079277 persistentId = 2046921360 launchID = 3 parent = 0 position = 0.23765194416046143,-0.016971588134765625,0.23765194416046143 rotation = -5.17721581E-08,0.382683218,2.14447162E-08,0.923879623 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 5 sym = 6 sym = 7 sym = 9 sym = 10 sym = 11 sym = 12 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 204.84392138340277 tempExt = 204.43187999880689 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 45057.157626941109 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4293492602 uid = 2157278796 mid = 4058079277 persistentId = 2801283308 launchID = 3 parent = 0 position = 0.33609062433242798,-0.016971588134765625,-4.94145382390343E-08 rotation = -3.96246982E-08,0.70710665,3.96246804E-08,0.707106888 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 5 sym = 6 sym = 7 sym = 8 sym = 10 sym = 11 sym = 12 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 204.78379782008048 tempExt = 204.20127286065119 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 45057.157626941109 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4293492570 uid = 1243831627 mid = 4058079277 persistentId = 470035104 launchID = 3 parent = 0 position = 0.23765191435813904,-0.016971588134765625,-0.2376520037651062 rotation = -2.14447358E-08,0.923879504,5.1772151E-08,0.382683605 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 11 sym = 12 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 204.78380407688229 tempExt = 204.20127529760347 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 45057.157626941109 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4293492538 uid = 365306476 mid = 4058079277 persistentId = 2958715313 launchID = 3 parent = 0 position = -4.0065124551347253E-08,-0.016971588134765625,-0.33609059453010559 rotation = -1.25607405E-14,1,5.60377771E-08,2.52881108E-07 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 sym = 12 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 204.7838023657778 tempExt = 204.20127463114801 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 45057.157626941109 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4293492506 uid = 1859281196 mid = 4058079277 persistentId = 316917016 launchID = 3 parent = 0 position = -0.23765204846858978,-0.016971588134765625,-0.23765188455581665 rotation = 2.14447251E-08,0.923879564,5.17721546E-08,-0.382683367 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 204.78422450955409 tempExt = 204.20281800190261 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 45057.157626941109 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = True, 57303.4987157992 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = 850f65a0501f4f32a864996fabeacf9d persistentId = 152100838 name = Dish 20Mm Limit type = Relay sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 65525.271460579199 lct = 65207.706069310632 lastUT = 130732.97752988983 distanceTraveled = 54279.403106987222 root = 0 lat = 1.4360894131318119E-07 lon = -113.98933974823053 alt = 20586749.998760305 hgt = -1 nrm = -0.786888361,0.0232286938,-0.616658211 rot = 0.614984155,-0.0107130818,0.788450539,-0.00505011901 CoM = 3.41155101E-07,0.0531190522,8.83592293E-08 stg = 0 prst = False ref = 1891958043 ctrl = True PQSMin = 2 PQSMax = 9 cPch = 0.2 cHdg = 0.3 cMod = 0 ORBIT { SMA = 21186749.999993913 ECC = 6.8546665645760375E-13 INC = 0 LPE = 176.38715210094594 LAN = 93.775002184929065 MNA = 1.5680933848111054 EPH = 130732.97752988983 REF = 1 } PART { name = probeCoreOcto.v2 cid = 4293497788 uid = 1891958043 mid = 1347670818 persistentId = 2110094273 launchID = 4 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 1 attN = top, 3 mass = 0.100000001 shielded = False temp = 206.40101807266484 tempExt = 206.42713988248812 tempExtUnexp = 4 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = probeCoreOcto.v2 (Dish 20Mm Limit) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 130732.97752988983 ExtraDelayScheduledTimeStamp = 0 ExtraDelay = 0 CmdGuid = 21b1e455-659f-420f-8148-a31d90dc889a } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = sasModule cid = 4293496104 uid = 3692957482 mid = 1347670818 persistentId = 2470162518 launchID = 4 parent = 0 position = 0,-0.27819252014160156,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 2 attN = top, 0 mass = 0.0500000007 shielded = False temp = 206.39413253864879 tempExt = 206.35528632200413 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = sasModule modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4293494534 uid = 3515021298 mid = 1347670818 persistentId = 660580775 launchID = 4 parent = 1 position = 0,-0.46930408477783203,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 1 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 206.40116397083574 tempExt = 206.46337094957332 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryBankMini cid = 4293493832 uid = 2558568843 mid = 1347670818 persistentId = 3433985735 launchID = 4 parent = 0 position = 0,0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 4 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 206.42694116516424 tempExt = 206.485677166915 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = HighGainAntenna5 cid = 4293434240 uid = 1888554984 mid = 1347670818 persistentId = 2586054081 launchID = 4 parent = 3 position = 0,0.38708209991455078,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 3 mass = 0.0700000003 shielded = False temp = 206.44999199781822 tempExt = 206.73676083829534 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = HighGainAntenna5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.995825052 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 0.70710678118654757 RTOmniRange = 0 RTDishRange = 20000000 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 5105f5a9-d628-41c6-ad4b-21154e8fc488 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } } PART { name = SurfAntenna cid = 4293391962 uid = 2348034393 mid = 1347670818 persistentId = 3730426048 launchID = 4 parent = 3 position = -0.35866978764533997,0.28048324584960938,1.839815411130985E-08 rotation = 0.50000006,-0.5,0.50000006,0.5 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 srfN = srfAttach, 3 mass = 0.0149999997 shielded = False temp = 206.45412154126086 tempExt = 206.69008283452607 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = SurfAntenna modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 1500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4293493084 uid = 987940359 mid = 1347670818 persistentId = 2854259956 launchID = 4 parent = 0 position = -0.33609062433242798,-0.016971588134765625,2.0032564052030466E-08 rotation = -3.96246804E-08,-0.707106948,-3.96246982E-08,0.70710659 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 7 sym = 8 sym = 9 sym = 10 sym = 11 sym = 12 sym = 13 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 206.40097129931888 tempExt = 206.36624443842425 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 65207.706069310632 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4293492698 uid = 2415245677 mid = 1347670818 persistentId = 957695967 launchID = 4 parent = 0 position = -0.23765192925930023,-0.016971588134765625,0.23765198886394501 rotation = -5.17721475E-08,-0.382683635,-2.14447375E-08,0.923879445 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 6 sym = 8 sym = 9 sym = 10 sym = 11 sym = 12 sym = 13 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 206.40097129931888 tempExt = 206.36624443842425 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 65207.706069310632 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4293492666 uid = 1405384011 mid = 1347670818 persistentId = 1297954542 launchID = 4 parent = 0 position = 5.823229751387147E-16,-0.016971588134765625,0.33609059453010559 rotation = -5.60377771E-08,-2.52881108E-07,-1.25607405E-14,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 6 sym = 7 sym = 9 sym = 10 sym = 11 sym = 12 sym = 13 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 206.40097129931888 tempExt = 206.36624443842425 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 65207.706069310632 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4293492634 uid = 537130899 mid = 1347670818 persistentId = 4044219688 launchID = 4 parent = 0 position = 0.23765194416046143,-0.016971588134765625,0.23765194416046143 rotation = -5.17721581E-08,0.382683218,2.14447162E-08,0.923879623 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 6 sym = 7 sym = 8 sym = 10 sym = 11 sym = 12 sym = 13 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 206.40097143099226 tempExt = 206.36624451859444 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 65207.706069310632 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4293492602 uid = 3790454852 mid = 1347670818 persistentId = 1005022375 launchID = 4 parent = 0 position = 0.33609062433242798,-0.016971588134765625,-4.94145382390343E-08 rotation = -3.96246982E-08,0.70710665,3.96246804E-08,0.707106888 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 6 sym = 7 sym = 8 sym = 9 sym = 11 sym = 12 sym = 13 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 206.40097138033491 tempExt = 206.36624448774899 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 65207.706069310632 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4293492570 uid = 2651706982 mid = 1347670818 persistentId = 3459212490 launchID = 4 parent = 0 position = 0.23765191435813904,-0.016971588134765625,-0.2376520037651062 rotation = -2.14447358E-08,0.923879504,5.1772151E-08,0.382683605 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 sym = 12 sym = 13 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 206.40097129931888 tempExt = 206.36624443842425 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 65207.706069310632 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4293492538 uid = 116693091 mid = 1347670818 persistentId = 106202123 launchID = 4 parent = 0 position = -4.0065124551347253E-08,-0.016971588134765625,-0.33609059453010559 rotation = -1.25607405E-14,1,5.60377771E-08,2.52881108E-07 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 sym = 11 sym = 13 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 206.40097129931888 tempExt = 206.36624443842425 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 65207.706069310632 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4293492506 uid = 2905187010 mid = 1347670818 persistentId = 3960663838 launchID = 4 parent = 0 position = -0.23765204846858978,-0.016971588134765625,-0.23765188455581665 rotation = 2.14447251E-08,0.923879564,5.17721546E-08,-0.382683367 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 sym = 11 sym = 12 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 206.40096607994545 tempExt = 206.36623426865813 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 65207.706069310632 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = True, 111706.432898522 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = 9ea65741077346648d6c664d147837bb persistentId = 751359642 name = Ast. HSJ-227 type = SpaceObject sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = True launchedFrom = landedAt = displaylandedAt = splashed = False met = 65293.906069296834 lct = 65293.906069296834 lastUT = -1 distanceTraveled = 0 root = 0 lat = -2.8378603963232494 lon = 129.18364379699523 alt = 14565185048.894478 hgt = -1 nrm = 0,1,0 rot = -0.298433661,0.402898014,-0.817398846,0.283672005 CoM = 0,0,0 stg = 0 prst = False ref = 0 ctrl = False PQSMin = 0 PQSMax = 0 ORBIT { SMA = 15193135647.333261 ECC = 0.10651961854444401 INC = 2.8754498594343367 LPE = 2.2162710921286277 LAN = 264.31304261532875 MNA = -0.05715531305210126 EPH = 2108879.6421532813 REF = 0 } PART { name = PotatoRoid cid = 0 uid = 559298752 mid = 559298752 persistentId = 685110096 launchID = 0 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 0 sqor = 0 sepI = 0 sidx = 0 attm = 0 srfN = None, -1 mass = 150 shielded = False temp = -1 tempExt = 0 tempExtUnexp = 0 expt = 1 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = rTrf = modCost = 0 } ACTIONGROUPS { } DISCOVERY { state = 1 lastObservedTime = 65293.906069296834 lifetime = 586354.71038818359 refTime = 1728000 size = 4 } FLIGHTPLAN { } CTRLSTATE { } VESSELMODULES { FlightIntegrator { } } } VESSEL { pid = 915958e0cd1a492c8201ee9b8ede05e7 persistentId = 860026889 name = Ast. IDX-141 type = SpaceObject sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = True launchedFrom = landedAt = displaylandedAt = splashed = False met = 80773.2562481286 lct = 80773.2562481286 lastUT = -1 distanceTraveled = 0 root = 0 lat = -0.67537460182739484 lon = 118.10566329344307 alt = 13874333377.568998 hgt = -1 nrm = 0,1,0 rot = 0.719713092,0.431156635,0.195191741,0.507954061 CoM = 0,0,0 stg = 0 prst = False ref = 0 ctrl = False PQSMin = 0 PQSMax = 0 ORBIT { SMA = 13966813341.444984 ECC = 0.024862861689481961 INC = 0.72833101679761969 LPE = 8.3986099182862777 LAN = 297.40142886129917 MNA = -0.2495654646002739 EPH = 2837315.3827129724 REF = 0 } PART { name = PotatoRoid cid = 0 uid = 714139957 mid = 714139957 persistentId = 3645303863 launchID = 0 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 0 sqor = 0 sepI = 0 sidx = 0 attm = 0 srfN = None, -1 mass = 150 shielded = False temp = -1 tempExt = 0 tempExtUnexp = 0 expt = 1 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = rTrf = modCost = 0 } ACTIONGROUPS { } DISCOVERY { state = 1 lastObservedTime = 80773.2562481286 lifetime = 369757.82318115234 refTime = 1728000 size = 2 } FLIGHTPLAN { } CTRLSTATE { } VESSELMODULES { FlightIntegrator { } } } VESSEL { pid = a7462d25e8b34e65a72b958f33e4d6a9 persistentId = 1315016845 name = Ast. RFY-606 type = SpaceObject sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = True launchedFrom = landedAt = displaylandedAt = splashed = False met = 81047.369895589538 lct = 81047.369895589538 lastUT = -1 distanceTraveled = 0 root = 0 lat = 0.048509842318832735 lon = 119.92056820679099 alt = 14688767369.524166 hgt = -1 nrm = 0,1,0 rot = 0.795966387,-0.0480787419,0.341004729,0.497837067 CoM = 0,0,0 stg = 0 prst = False ref = 0 ctrl = False PQSMin = 0 PQSMax = 0 ORBIT { SMA = 14264143566.601318 ECC = 0.06130234892660414 INC = 0.74855189344347384 LPE = 320.1112386722973 LAN = 11.175484322584964 MNA = 0.68496956855707714 EPH = 4990254.474387777 REF = 0 } PART { name = PotatoRoid cid = 0 uid = 1739057347 mid = 1739057347 persistentId = 471905133 launchID = 0 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 0 sqor = 0 sepI = 0 sidx = 0 attm = 0 srfN = None, -1 mass = 150 shielded = False temp = -1 tempExt = 0 tempExtUnexp = 0 expt = 1 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = rTrf = modCost = 0 } ACTIONGROUPS { } DISCOVERY { state = 1 lastObservedTime = 81047.369895589538 lifetime = 740307.40356445313 refTime = 1728000 size = 0 } FLIGHTPLAN { } CTRLSTATE { } VESSELMODULES { FlightIntegrator { } } } VESSEL { pid = 534dd9ff9d5644a3b557bd0c33fc57d0 persistentId = 48935526 name = Ast. LWQ-854 type = SpaceObject sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = True launchedFrom = landedAt = displaylandedAt = splashed = False met = 81593.446921956725 lct = 81593.446921956725 lastUT = -1 distanceTraveled = 0 root = 0 lat = -0.015487295965278222 lon = 115.01357333701525 alt = 13528364105.590693 hgt = -1 nrm = 0,1,0 rot = -0.919212222,0.339820176,0.189857736,0.0593729839 CoM = 0,0,0 stg = 0 prst = False ref = 0 ctrl = False PQSMin = 0 PQSMax = 0 ORBIT { SMA = 13700117590.233419 ECC = 0.011161498792247544 INC = 0.14143943092656067 LPE = 312.78642521739295 LAN = 356.72176264851925 MNA = 0.85946282396686557 EPH = 4597625.9054180505 REF = 0 } PART { name = PotatoRoid cid = 0 uid = 780395062 mid = 780395062 persistentId = 2187620279 launchID = 0 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 0 sqor = 0 sepI = 0 sidx = 0 attm = 0 srfN = None, -1 mass = 150 shielded = False temp = -1 tempExt = 0 tempExtUnexp = 0 expt = 1 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = rTrf = modCost = 0 } ACTIONGROUPS { } DISCOVERY { state = 1 lastObservedTime = 81593.446921956725 lifetime = 666366.02325439453 refTime = 1728000 size = 3 } FLIGHTPLAN { } CTRLSTATE { } VESSELMODULES { FlightIntegrator { } } } VESSEL { pid = 8641078cc6cf451cadb80b8bdceead5b persistentId = 921475658 name = Ast. QCZ-205 type = SpaceObject sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = True launchedFrom = landedAt = displaylandedAt = splashed = False met = 81693.446921956725 lct = 81693.446921956725 lastUT = -1 distanceTraveled = 0 root = 0 lat = -0.39359081441959581 lon = 116.30534959821809 alt = 13598603625.81986 hgt = -1 nrm = 0,1,0 rot = 0.205207765,-0.657739341,0.486704826,0.537016988 CoM = 0,0,0 stg = 0 prst = False ref = 0 ctrl = False PQSMin = 0 PQSMax = 0 ORBIT { SMA = 13809675534.14736 ECC = 0.01299448605826199 INC = 0.53669568748675767 LPE = 334.23638808186814 LAN = 317.21529082019595 MNA = 0.49843858759289283 EPH = 3592230.0191875817 REF = 0 } PART { name = PotatoRoid cid = 0 uid = 128050 mid = 128050 persistentId = 1209452294 launchID = 0 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 0 sqor = 0 sepI = 0 sidx = 0 attm = 0 srfN = None, -1 mass = 150 shielded = False temp = -1 tempExt = 0 tempExtUnexp = 0 expt = 1 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = rTrf = modCost = 0 } ACTIONGROUPS { } DISCOVERY { state = 1 lastObservedTime = 81693.446921956725 lifetime = 1376684.7473144531 refTime = 1728000 size = 2 } FLIGHTPLAN { } CTRLSTATE { } VESSELMODULES { FlightIntegrator { } } } VESSEL { pid = cc46b7ca07e140bfb2c89f9536f5a6d1 persistentId = 1249683513 name = Ast. FKN-090 type = SpaceObject sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = True launchedFrom = landedAt = displaylandedAt = splashed = False met = 82233.446921956725 lct = 82233.446921956725 lastUT = -1 distanceTraveled = 0 root = 0 lat = -0.19305202534335023 lon = 148.02521994504755 alt = 17285735336.013107 hgt = -1 nrm = 0,1,0 rot = 0.206969932,-0.681456387,0.213038549,0.668876171 CoM = 0,0,0 stg = 0 prst = False ref = 0 ctrl = False PQSMin = 0 PQSMax = 0 ORBIT { SMA = 15595233870.809568 ECC = 0.13057859104451874 INC = 0.41946820702182469 LPE = 12.871195579142558 LAN = 9.151534135320162 MNA = -0.17107194494169425 EPH = 4839106.7623516442 REF = 0 } PART { name = PotatoRoid cid = 0 uid = 1847304655 mid = 1847304655 persistentId = 206054527 launchID = 0 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 0 sqor = 0 sepI = 0 sidx = 0 attm = 0 srfN = None, -1 mass = 150 shielded = False temp = -1 tempExt = 0 tempExtUnexp = 0 expt = 1 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = rTrf = modCost = 0 } ACTIONGROUPS { } DISCOVERY { state = 1 lastObservedTime = 82233.446921956725 lifetime = 1060400.6927490234 refTime = 1728000 size = 4 } FLIGHTPLAN { } CTRLSTATE { } VESSELMODULES { FlightIntegrator { } } } VESSEL { pid = 2bf114ff56c143c1ac875e3d9228b451 persistentId = 3599341864 name = Ast. FOK-487 type = SpaceObject sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = True launchedFrom = landedAt = displaylandedAt = splashed = False met = 83173.446921956725 lct = 83173.446921956725 lastUT = -1 distanceTraveled = 0 root = 0 lat = 2.0753143215037717 lon = 116.19933787318928 alt = 14440317680.937578 hgt = -1 nrm = 0,1,0 rot = -0.91962111,-0.365701526,0.0792368352,0.119503237 CoM = 0,0,0 stg = 0 prst = False ref = 0 ctrl = False PQSMin = 0 PQSMax = 0 ORBIT { SMA = 14532079500.811764 ECC = 0.065973628010983359 INC = 2.2970511274050773 LPE = 168.52884256885878 LAN = 120.90458026274507 MNA = 0.086171360364080241 EPH = 2947155.6002422692 REF = 0 } PART { name = PotatoRoid cid = 0 uid = 808442548 mid = 808442548 persistentId = 1415825854 launchID = 0 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 0 sqor = 0 sepI = 0 sidx = 0 attm = 0 srfN = None, -1 mass = 150 shielded = False temp = -1 tempExt = 0 tempExtUnexp = 0 expt = 1 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = rTrf = modCost = 0 } ACTIONGROUPS { } DISCOVERY { state = 1 lastObservedTime = 83173.446921956725 lifetime = 333895.72906494141 refTime = 1728000 size = 4 } FLIGHTPLAN { } CTRLSTATE { } VESSELMODULES { FlightIntegrator { } } } VESSEL { pid = 2e51f914b46340a8b6084063b997038e persistentId = 152100838 name = Dish 75Mm Limit type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 37.23999998049112 lct = 148971.24838684787 lastUT = 149008.48838682837 distanceTraveled = 7532.9137263945213 root = 0 lat = -4.3700940188494585E-11 lon = -59.302582939487209 alt = 75586750.033115834 hgt = -1 nrm = 0.274118036,0.961691856,0.00288534164 rot = -0.701607287,-0.0893041342,-0.0926876515,0.700843215 CoM = -1.16415322E-08,-0.0344243869,1.49011612E-08 stg = 0 prst = False ref = 2634066985 ctrl = True PQSMin = 2 PQSMax = 9 cPch = 0.3032103 cHdg = -2.282823 cMod = 0 ORBIT { SMA = 76186750.000031441 ECC = 4.0847273634921803E-13 INC = 0 LPE = 134.27333209170646 LAN = 178.81150044104584 MNA = 0.81883714086040971 EPH = 149008.48838682837 REF = 1 } PART { name = probeCoreOcto.v2 cid = 4293497788 uid = 2634066985 mid = 300382953 persistentId = 3706990297 launchID = 5 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 1 attN = top, 11 mass = 0.100000001 shielded = False temp = 309.79641849231058 tempExt = 308.96285013101959 tempExtUnexp = 4 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = probeCoreOcto.v2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 149008.48838682837 ExtraDelayScheduledTimeStamp = 0 ExtraDelay = 0 CmdGuid = 2fd6444c-b2ea-4746-8b4e-a2e40af2c364 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 9.7674580519400624 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = sasModule cid = 4293496104 uid = 2070753470 mid = 300382953 persistentId = 889962277 launchID = 5 parent = 0 position = 0,-0.27819252014160156,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 2 attN = top, 0 mass = 0.0500000007 shielded = False temp = 309.74465235350391 tempExt = 308.86522128329369 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = sasModule modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4293494534 uid = 1028806749 mid = 300382953 persistentId = 2901717673 launchID = 5 parent = 1 position = 0,-0.46930408477783203,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 1 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 309.6227609254438 tempExt = 308.75668277204386 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 195.34916103879371 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = solarPanels5 cid = 4294441748 uid = 948587474 mid = 300382953 persistentId = 2326319443 launchID = 5 parent = 2 position = -0.30870884656906128,-0.52589607238769531,1.8400482915126304E-08 rotation = 4.36340422E-08,-0.707106829,4.36340422E-08,0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 2 mass = 0.00499999989 shielded = False temp = 309.59825216524456 tempExt = 308.74284588723464 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 148971.24838684787 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294441490 uid = 3412418199 mid = 300382953 persistentId = 1585359947 launchID = 5 parent = 2 position = -0.21829009056091309,-0.52589607238769531,0.21829015016555786 rotation = 5.70106238E-08,-0.382683426,2.36145716E-08,0.923879564 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 2 mass = 0.00499999989 shielded = False temp = 309.59825223150148 tempExt = 308.74284717273827 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 148971.24838684787 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294441458 uid = 1345639268 mid = 300382953 persistentId = 1653360431 launchID = 5 parent = 2 position = 6.7960259154850296E-16,-0.52589607238769531,0.30870881676673889 rotation = 6.17078513E-08,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 2 mass = 0.00499999989 shielded = False temp = 309.59825207355914 tempExt = 308.74284410838408 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 148971.24838684787 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294441426 uid = 1848671702 mid = 300382953 persistentId = 1335877001 launchID = 5 parent = 2 position = 0.21829010546207428,-0.52589607238769531,0.21829010546207428 rotation = 5.70106202E-08,0.382683456,-2.36145716E-08,0.923879564 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 2 mass = 0.00499999989 shielded = False temp = 309.59825218462402 tempExt = 308.74284626318018 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 148971.24838684787 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294441394 uid = 3111324251 mid = 300382953 persistentId = 3564861238 launchID = 5 parent = 2 position = 0.30870884656906128,-0.52589607238769531,-4.5388667047063791E-08 rotation = 4.36340386E-08,0.707106888,-4.36340457E-08,0.707106769 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 2 mass = 0.00499999989 shielded = False temp = 309.5982521652428 tempExt = 308.74284588719706 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 148971.24838684787 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294441362 uid = 2887179385 mid = 300382953 persistentId = 4172833398 launchID = 5 parent = 2 position = 0.21829009056091309,-0.52589607238769531,-0.21829016506671906 rotation = 2.36145681E-08,0.923879623,-5.70106273E-08,0.382683367 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 9 sym = 10 srfN = srfAttach, 2 mass = 0.00499999989 shielded = False temp = 309.59825215137175 tempExt = 308.74284561797521 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 148971.24838684787 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294441330 uid = 1229935730 mid = 300382953 persistentId = 4170146733 launchID = 5 parent = 2 position = -3.6800962277538929E-08,-0.52589607238769531,-0.30870881676673889 rotation = 0,1,-6.17078513E-08,0 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 10 srfN = srfAttach, 2 mass = 0.00499999989 shielded = False temp = 309.5982520794156 tempExt = 308.7428442220168 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 148971.24838684787 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294441298 uid = 1597965445 mid = 300382953 persistentId = 309275440 launchID = 5 parent = 2 position = -0.21829019486904144,-0.52589607238769531,-0.2182900458574295 rotation = -2.36145823E-08,0.923879504,-5.70106167E-08,-0.382683605 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 srfN = srfAttach, 2 mass = 0.00499999989 shielded = False temp = 309.59825223440384 tempExt = 308.74284722905514 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 148971.24838684787 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4293493832 uid = 2342469969 mid = 300382953 persistentId = 574504084 launchID = 5 parent = 0 position = 0,0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 13 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 309.84165112512744 tempExt = 309.30164557664546 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 195.34916103879371 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = SurfAntenna cid = 4293391962 uid = 3440009308 mid = 300382953 persistentId = 3394263665 launchID = 5 parent = 11 position = -0.35866978764533997,0.28048324584960938,1.839815411130985E-08 rotation = 0.50000006,-0.5,0.50000006,0.5 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 srfN = srfAttach, 11 mass = 0.0149999997 shielded = False temp = 309.89199043070874 tempExt = 309.17855579368586 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = SurfAntenna modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 1500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = RTShortDish2 cid = 4294446452 uid = 509643074 mid = 300382953 persistentId = 2436626627 launchID = 5 parent = 11 position = 0,0.38708209991455078,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 11 mass = 0.0500000007 shielded = False temp = 309.89639404585267 tempExt = 309.81281353112672 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 0.97629600711993336 RTOmniRange = 0 RTDishRange = 90000000 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 5105f5a9-d628-41c6-ad4b-21154e8fc488 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4293493084 uid = 3482765888 mid = 300382953 persistentId = 1997781910 launchID = 5 parent = 0 position = -0.33712401986122131,-0.032010078430175781,2.009415922543667E-08 rotation = -3.96246804E-08,-0.707106948,-3.96246982E-08,0.70710659 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 15 sym = 16 sym = 17 sym = 18 sym = 19 sym = 20 sym = 21 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 309.77210915211668 tempExt = 308.93453444389212 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 148971.24838684787 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294442088 uid = 2760228064 mid = 300382953 persistentId = 1194958593 launchID = 5 parent = 0 position = -0.23838265240192413,-0.032010078430175781,0.23838271200656891 rotation = -5.17721475E-08,-0.382683635,-2.14447375E-08,0.923879445 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 14 sym = 16 sym = 17 sym = 18 sym = 19 sym = 20 sym = 21 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 309.77210920058377 tempExt = 308.93453553014353 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 148971.24838684787 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294442056 uid = 1879075564 mid = 300382953 persistentId = 2479595944 launchID = 5 parent = 0 position = 5.7865161670795934E-16,-0.032010078430175781,0.33712399005889893 rotation = -5.60377771E-08,-2.52881108E-07,-1.25607405E-14,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 14 sym = 15 sym = 17 sym = 18 sym = 19 sym = 20 sym = 21 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 309.77210915211668 tempExt = 308.93453444389212 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 148971.24838684787 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294442024 uid = 2117951935 mid = 300382953 persistentId = 2404112271 launchID = 5 parent = 0 position = 0.23838266730308533,-0.032010078430175781,0.23838266730308533 rotation = -5.17721581E-08,0.382683218,2.14447162E-08,0.923879623 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 14 sym = 15 sym = 16 sym = 18 sym = 19 sym = 20 sym = 21 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 309.77210915211668 tempExt = 308.93453444389212 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 148971.24838684787 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294441992 uid = 914136817 mid = 300382953 persistentId = 2187635785 launchID = 5 parent = 0 position = 0.33712401986122131,-0.032010078430175781,-4.9566477144935561E-08 rotation = -3.96246982E-08,0.70710665,3.96246804E-08,0.707106888 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 14 sym = 15 sym = 16 sym = 17 sym = 19 sym = 20 sym = 21 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 309.77210915211668 tempExt = 308.93453444389212 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 148971.24838684787 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294441960 uid = 539623831 mid = 300382953 persistentId = 2830297156 launchID = 5 parent = 0 position = 0.23838263750076294,-0.032010078430175781,-0.2383827269077301 rotation = -2.14447358E-08,0.923879504,5.1772151E-08,0.382683605 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 14 sym = 15 sym = 16 sym = 17 sym = 18 sym = 20 sym = 21 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 309.77210915211668 tempExt = 308.93453444389212 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 148971.24838684787 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294441928 uid = 167644308 mid = 300382953 persistentId = 1530030161 launchID = 5 parent = 0 position = -4.0188314898159661E-08,-0.032010078430175781,-0.33712399005889893 rotation = -1.25607405E-14,1,5.60377771E-08,2.52881108E-07 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 14 sym = 15 sym = 16 sym = 17 sym = 18 sym = 19 sym = 21 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 309.77210915211668 tempExt = 308.93453444389212 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 148971.24838684787 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294441896 uid = 3726209794 mid = 300382953 persistentId = 1030905298 launchID = 5 parent = 0 position = -0.23838277161121368,-0.032010078430175781,-0.23838260769844055 rotation = 2.14447251E-08,0.923879564,5.17721546E-08,-0.382683367 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 14 sym = 15 sym = 16 sym = 17 sym = 18 sym = 19 sym = 20 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 309.77210920674452 tempExt = 308.93453566813128 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 148971.24838684787 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = ff7ad0a681784f56976d23297838cf34 persistentId = 1251815637 name = Dumb Relay type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 105043.62556515317 lct = 149172.92838674222 lastUT = 254216.55395189539 distanceTraveled = 87373.963078103698 root = 0 lat = -2.8425160132739513E-07 lon = 103.95168688194829 alt = 3586749.997576341 hgt = -1 nrm = -0.470482707,0.000118854565,-0.882409275 rot = 0.000194368244,-0.933526337,-8.3945044E-05,-0.358509094 CoM = -1.08109361E-08,0.0168871731,-8.45238901E-09 stg = 0 prst = False ref = 4082690485 ctrl = True PQSMin = 2 PQSMax = 9 cPch = 0.2 cHdg = 0.3 cMod = 0 ORBIT { SMA = 4186749.9989748313 ECC = 9.6926638492626246E-10 INC = 0 LPE = 200.20515620963647 LAN = 210.76105132819765 MNA = 1.2194932820873501 EPH = 254216.55395189539 REF = 1 } PART { name = probeCoreOcto.v2 cid = 4294232176 uid = 4082690485 mid = 1791245469 persistentId = 398247333 launchID = 6 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 11 attN = top, 9 mass = 0.100000001 shielded = False temp = 274.23336028605178 tempExt = 274.03170026345305 tempExtUnexp = 4 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = probeCoreOcto.v2 (Dumb Relay) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = NormalPlus Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 254216.55395189539 ExtraDelayScheduledTimeStamp = 212066.75035662166 ExtraDelay = 0 CmdGuid = 8c1f5db1-10d4-42a9-84ba-d7449e65c344 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 9.9997073170680828 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = solarPanels5 cid = 4294230226 uid = 4152627433 mid = 1791245469 persistentId = 2244991389 launchID = 6 parent = 0 position = -0.33566024899482727,0.032947540283203125,2.0006911682912687E-08 rotation = -3.96246804E-08,-0.707106948,-3.96246982E-08,0.70710659 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 274.22485440046427 tempExt = 273.91245462425496 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 149172.92838674222 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229838 uid = 2751437512 mid = 1791245469 persistentId = 2499859617 launchID = 6 parent = 0 position = -0.23734760284423828,0.032947540283203125,0.23734766244888306 rotation = -5.17721475E-08,-0.382683635,-2.14447375E-08,0.923879445 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 274.22485440046427 tempExt = 273.91245462425496 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 149172.92838674222 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229806 uid = 3377733485 mid = 1791245469 persistentId = 1055890139 launchID = 6 parent = 0 position = 5.8385197548762712E-16,0.032947540283203125,0.33566021919250488 rotation = -5.60377771E-08,-2.52881108E-07,-1.25607405E-14,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 274.22485684876676 tempExt = 273.91251339199846 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 149172.92838674222 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229774 uid = 2796433720 mid = 1791245469 persistentId = 111046990 launchID = 6 parent = 0 position = 0.23734763264656067,0.032947540283203125,0.23734761774539948 rotation = -5.17721581E-08,0.382683218,2.14447162E-08,0.923879623 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 274.22485440046427 tempExt = 273.91245462425496 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 149172.92838674222 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229742 uid = 183192882 mid = 1791245469 persistentId = 2167762978 launchID = 6 parent = 0 position = 0.33566024899482727,0.032947540283203125,-4.9351264408414863E-08 rotation = -3.96246982E-08,0.70710665,3.96246804E-08,0.707106888 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 4 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 274.22485440046427 tempExt = 273.91245462425496 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 149172.92838674222 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229710 uid = 4049477539 mid = 1791245469 persistentId = 1667794061 launchID = 6 parent = 0 position = 0.23734760284423828,0.032947540283203125,-0.23734769225120544 rotation = -2.14447358E-08,0.923879504,5.1772151E-08,0.382683605 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 274.22485440046427 tempExt = 273.91245462425496 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 149172.92838674222 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229678 uid = 1147939220 mid = 1791245469 persistentId = 3905333023 launchID = 6 parent = 0 position = -4.0013819813111695E-08,0.032947540283203125,-0.33566021919250488 rotation = -1.25607405E-14,1,5.60377771E-08,2.52881108E-07 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 274.22485440046427 tempExt = 273.91245462425496 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 149172.92838674222 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229646 uid = 242652064 mid = 1791245469 persistentId = 4159503183 launchID = 6 parent = 0 position = -0.23734772205352783,0.032947540283203125,-0.2373475581407547 rotation = 2.14447251E-08,0.923879564,5.17721546E-08,-0.382683367 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 274.22485440046427 tempExt = 273.91245462425496 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 149172.92838674222 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294226184 uid = 4212945808 mid = 1791245469 persistentId = 867543453 launchID = 6 parent = 0 position = 0,0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 10 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 274.23262074832411 tempExt = 274.11076697139521 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 199.99414634136164 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongAntenna2 cid = 4294160256 uid = 3570859086 mid = 1791245469 persistentId = 2299103880 launchID = 6 parent = 9 position = 0,0.38708209991455078,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 9 mass = 0.00999999978 shielded = False temp = 274.24367206642029 tempExt = 274.28378625361006 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992752314 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294224434 uid = 1652973709 mid = 1791245469 persistentId = 2938246958 launchID = 6 parent = 0 position = 0,-0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 274.22961652018114 tempExt = 274.06110650315367 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 199.99414634136164 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = 1c9898548f1d49c7982135fee2bf8f21 persistentId = 1251815637 name = Dumb Relay type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 94864.197518306377 lct = 159341.03643359494 lastUT = 254205.25395190131 distanceTraveled = 63911.060389759397 root = 0 lat = -2.8424929795440328E-07 lon = 19.080540579233052 alt = 3586750.0022114259 hgt = -1 nrm = 0.221360594,0.000251323625,-0.97519207 rot = 2.89779855E-05,-0.744845092,-0.000159875548,0.66723752 CoM = -7.35690264E-09,0.01688716,2.13481144E-09 stg = 0 prst = False ref = 1081513994 ctrl = True PQSMin = 2 PQSMax = 9 cPch = 0.546 cHdg = 0.868 cMod = 0 ORBIT { SMA = 4186750.0060468405 ECC = 1.0985853819302315E-09 INC = 0 LPE = 236.45944233589898 LAN = 125.72171390007321 MNA = 0.58637152814592663 EPH = 254205.23395190132 REF = 1 } PART { name = probeCoreOcto.v2 cid = 4294232176 uid = 1081513994 mid = 3967959701 persistentId = 3398369824 launchID = 7 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 11 attN = top, 9 mass = 0.100000001 shielded = False temp = 205.34803582081346 tempExt = 205.30598426707951 tempExtUnexp = 4 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = probeCoreOcto.v2 (Dumb Relay) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = NormalPlus Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 254205.25395190131 ExtraDelayScheduledTimeStamp = 226243.5202906873 ExtraDelay = 0 CmdGuid = 2bed5231-524e-4774-a77e-e5ffaa7f4d8f } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 9.9997073170680828 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = solarPanels5 cid = 4294230226 uid = 1918687396 mid = 3967959701 persistentId = 2745060643 launchID = 7 parent = 0 position = -0.33566024899482727,0.032947540283203125,2.0006911682912687E-08 rotation = -3.96246804E-08,-0.707106948,-3.96246982E-08,0.70710659 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 205.34465326174924 tempExt = 205.25792864293581 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 159341.03643359494 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229838 uid = 103517020 mid = 3967959701 persistentId = 1962638421 launchID = 7 parent = 0 position = -0.23734760284423828,0.032947540283203125,0.23734766244888306 rotation = -5.17721475E-08,-0.382683635,-2.14447375E-08,0.923879445 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 205.3448035841935 tempExt = 205.2618566378097 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 159341.03643359494 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229806 uid = 3260569651 mid = 3967959701 persistentId = 3017853450 launchID = 7 parent = 0 position = 5.8385197548762712E-16,0.032947540283203125,0.33566021919250488 rotation = -5.60377771E-08,-2.52881108E-07,-1.25607405E-14,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 205.34475308259599 tempExt = 205.26053628467486 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 159341.03643359494 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229774 uid = 3777300219 mid = 3967959701 persistentId = 2529259978 launchID = 7 parent = 0 position = 0.23734763264656067,0.032947540283203125,0.23734761774539948 rotation = -5.17721581E-08,0.382683218,2.14447162E-08,0.923879623 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 205.34465326174924 tempExt = 205.25792864293581 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 159341.03643359494 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229742 uid = 905133585 mid = 3967959701 persistentId = 2017484014 launchID = 7 parent = 0 position = 0.33566024899482727,0.032947540283203125,-4.9351264408414863E-08 rotation = -3.96246982E-08,0.70710665,3.96246804E-08,0.707106888 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 4 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 205.34465326174924 tempExt = 205.25792864293581 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 159341.03643359494 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229710 uid = 3484323026 mid = 3967959701 persistentId = 2938550948 launchID = 7 parent = 0 position = 0.23734760284423828,0.032947540283203125,-0.23734769225120544 rotation = -2.14447358E-08,0.923879504,5.1772151E-08,0.382683605 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 205.34465326174924 tempExt = 205.25792864293581 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 159341.03643359494 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229678 uid = 716150607 mid = 3967959701 persistentId = 1835060888 launchID = 7 parent = 0 position = -4.0013819813111695E-08,0.032947540283203125,-0.33566021919250488 rotation = -1.25607405E-14,1,5.60377771E-08,2.52881108E-07 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 205.35993204898867 tempExt = 205.66864764688546 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 159341.03643359494 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229646 uid = 885828181 mid = 3967959701 persistentId = 3388281016 launchID = 7 parent = 0 position = -0.23734772205352783,0.032947540283203125,-0.2373475581407547 rotation = 2.14447251E-08,0.923879564,5.17721546E-08,-0.382683367 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 205.36332007932441 tempExt = 205.76007809546581 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 159341.03643359494 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294226184 uid = 919653192 mid = 3967959701 persistentId = 2162824427 launchID = 7 parent = 0 position = 0,0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 10 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 205.35126973367636 tempExt = 205.38298719327952 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 199.99414634136164 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongAntenna2 cid = 4294160256 uid = 2581045315 mid = 3967959701 persistentId = 3745838495 launchID = 7 parent = 9 position = 0,0.38708209991455078,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 9 mass = 0.00999999978 shielded = False temp = 205.35558448746895 tempExt = 205.59105859794161 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992752314 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294224434 uid = 1051870677 mid = 3967959701 persistentId = 2917749284 launchID = 7 parent = 0 position = 0,-0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 205.34858552368399 tempExt = 205.35478344793137 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 199.99414634136164 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = 0172be4ac1264daa95b59e496ced9a2e persistentId = 1251815637 name = Dumb Relay type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 42570.209755756747 lct = 169483.16060087192 lastUT = 212053.39035662866 distanceTraveled = 44276.345059428306 root = 0 lat = -2.3097143075931547E-07 lon = 102.91997150105108 alt = 3586749.997482352 hgt = -1 nrm = 0.117899418,0.00018486788,-0.993025601 rot = -0.000124954211,-0.998560607,-0.000115503011,-0.0536351837 CoM = 6.94763003E-09,0.0168867353,-4.4421995E-09 stg = 0 prst = False ref = 1166199078 ctrl = True PQSMin = 2 PQSMax = 9 cPch = 0.462 cHdg = 2.282 cMod = 0 ORBIT { SMA = 4186749.9937217389 ECC = 1.2097855477679493E-09 INC = 0 LPE = 35.33496165145052 LAN = 322.10814963102229 MNA = 2.4084539104822564 EPH = 212053.37035662867 REF = 1 } PART { name = probeCoreOcto.v2 cid = 4294232176 uid = 1166199078 mid = 366116149 persistentId = 2709246022 launchID = 8 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 11 attN = top, 9 mass = 0.100000001 shielded = False temp = 177.34323901588746 tempExt = 177.50247167037969 tempExtUnexp = 4 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = probeCoreOcto.v2 (Dumb Relay) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = NormalPlus Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 212053.39035662866 ExtraDelayScheduledTimeStamp = 212045.75035663266 ExtraDelay = 0 CmdGuid = 6323ac63-da84-4db5-9b73-a5b2ea55d0e9 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 9.8676154957451914 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = solarPanels5 cid = 4294230226 uid = 252029417 mid = 366116149 persistentId = 2588878193 launchID = 8 parent = 0 position = -0.33566024899482727,0.032947540283203125,2.0006911682912687E-08 rotation = -3.96246804E-08,-0.707106948,-3.96246982E-08,0.70710659 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 177.34499179393126 tempExt = 177.41579987405098 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 169483.16060087192 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229838 uid = 195479881 mid = 366116149 persistentId = 1644070835 launchID = 8 parent = 0 position = -0.23734760284423828,0.032947540283203125,0.23734766244888306 rotation = -5.17721475E-08,-0.382683635,-2.14447375E-08,0.923879445 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 177.34543464298338 tempExt = 177.40949176469471 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 169483.16060087192 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229806 uid = 4214927380 mid = 366116149 persistentId = 2833808580 launchID = 8 parent = 0 position = 5.8385197548762712E-16,0.032947540283203125,0.33566021919250488 rotation = -5.60377771E-08,-2.52881108E-07,-1.25607405E-14,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 177.34349225862431 tempExt = 177.40540089245442 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 169483.16060087192 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229774 uid = 2244379330 mid = 366116149 persistentId = 1759811104 launchID = 8 parent = 0 position = 0.23734763264656067,0.032947540283203125,0.23734761774539948 rotation = -5.17721581E-08,0.382683218,2.14447162E-08,0.923879623 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 177.34345259148054 tempExt = 177.40476216327724 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 169483.16060087192 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229742 uid = 3323055013 mid = 366116149 persistentId = 2839835958 launchID = 8 parent = 0 position = 0.33566024899482727,0.032947540283203125,-4.9351264408414863E-08 rotation = -3.96246982E-08,0.70710665,3.96246804E-08,0.707106888 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 4 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 177.34341140252442 tempExt = 177.40395962227987 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 169483.16060087192 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229710 uid = 1428854762 mid = 366116149 persistentId = 2349868358 launchID = 8 parent = 0 position = 0.23734760284423828,0.032947540283203125,-0.23734769225120544 rotation = -2.14447358E-08,0.923879504,5.1772151E-08,0.382683605 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 177.34341140252442 tempExt = 177.40395962227987 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 169483.16060087192 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229678 uid = 3980855378 mid = 366116149 persistentId = 211902956 launchID = 8 parent = 0 position = -4.0013819813111695E-08,0.032947540283203125,-0.33566021919250488 rotation = -1.25607405E-14,1,5.60377771E-08,2.52881108E-07 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 177.34341141906773 tempExt = 177.40395965808347 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 169483.16060087192 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229646 uid = 2412385756 mid = 366116149 persistentId = 2929183344 launchID = 8 parent = 0 position = -0.23734772205352783,0.032947540283203125,-0.2373475581407547 rotation = 2.14447251E-08,0.923879564,5.17721546E-08,-0.382683367 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 177.34503734429677 tempExt = 177.40679674017937 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 169483.16060087192 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294226184 uid = 4241637796 mid = 366116149 persistentId = 966945314 launchID = 8 parent = 0 position = 0,0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 10 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 177.34896486659267 tempExt = 177.40893993624886 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 197.35230991490155 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongAntenna2 cid = 4294160256 uid = 2363200474 mid = 366116149 persistentId = 292999685 launchID = 8 parent = 9 position = 0,0.38708209991455078,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 9 mass = 0.00999999978 shielded = False temp = 177.35680254996495 tempExt = 177.71584721937421 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992752314 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294224434 uid = 3367211139 mid = 366116149 persistentId = 4236540739 launchID = 8 parent = 0 position = 0,-0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 177.34611887044787 tempExt = 177.42072251176526 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 197.35230991490155 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = 8874ab2d02774b6b93d7cbcfa6e19cbc persistentId = 1251815637 name = Dumb Relay type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 32152.566489161982 lct = 179907.22386746333 lastUT = 212059.8103566253 distanceTraveled = 51009.636940966418 root = 0 lat = -2.3102566325173506E-07 lon = 9.2403505208128163 alt = 3586750.0035431897 hgt = -1 nrm = -0.319219112,-0.00639750017,0.947659314 rot = -0.00224577519,0.76252526,0.00247080019,0.646949887 CoM = 2.29203579E-07,0.0168870892,-1.76078174E-09 stg = 0 prst = False ref = 3849235877 ctrl = True PQSMin = 2 PQSMax = 9 cPch = 0.148 cHdg = 2.36 cMod = 0 ORBIT { SMA = 4186750.0063201408 ECC = 7.8983219719432954E-10 INC = 0 LPE = 208.51893880047334 LAN = 222.60084129492242 MNA = -0.51059248274959368 EPH = 212059.79035662531 REF = 1 } PART { name = probeCoreOcto.v2 cid = 4294232176 uid = 3849235877 mid = 2106017278 persistentId = 2779498650 launchID = 9 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 11 attN = top, 9 mass = 0.100000001 shielded = False temp = 104.56512153371746 tempExt = 104.65553883388263 tempExtUnexp = 4 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = probeCoreOcto.v2 (Dumb Relay) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Running stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = NormalPlus Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 212059.8103566253 ExtraDelayScheduledTimeStamp = 212054.67035662799 ExtraDelay = 0 CmdGuid = 642cf1d7-dc5a-4d15-9bda-a41e5b0e6f82 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 9.7982445327748486 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = solarPanels5 cid = 4294230226 uid = 3007512066 mid = 2106017278 persistentId = 3440502805 launchID = 9 parent = 0 position = -0.33566024899482727,0.032947540283203125,2.0006911682912687E-08 rotation = -3.96246804E-08,-0.707106948,-3.96246982E-08,0.70710659 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 104.56479192944443 tempExt = 104.61089405740789 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 179907.22386746333 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229838 uid = 3090970033 mid = 2106017278 persistentId = 580687180 launchID = 9 parent = 0 position = -0.23734760284423828,0.032947540283203125,0.23734766244888306 rotation = -5.17721475E-08,-0.382683635,-2.14447375E-08,0.923879445 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 104.56496082074237 tempExt = 104.61233579308187 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 179907.22386746333 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229806 uid = 801414205 mid = 2106017278 persistentId = 2233546082 launchID = 9 parent = 0 position = 5.8385197548762712E-16,0.032947540283203125,0.33566021919250488 rotation = -5.60377771E-08,-2.52881108E-07,-1.25607405E-14,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 104.57333386843644 tempExt = 104.88633726878277 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 179907.22386746333 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229774 uid = 1667558214 mid = 2106017278 persistentId = 3974631844 launchID = 9 parent = 0 position = 0.23734763264656067,0.032947540283203125,0.23734761774539948 rotation = -5.17721581E-08,0.382683218,2.14447162E-08,0.923879623 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 104.57858345364127 tempExt = 105.04074687066343 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 179907.22386746333 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229742 uid = 3060721208 mid = 2106017278 persistentId = 1392892892 launchID = 9 parent = 0 position = 0.33566024899482727,0.032947540283203125,-4.9351264408414863E-08 rotation = -3.96246982E-08,0.70710665,3.96246804E-08,0.707106888 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 4 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 104.56495066214168 tempExt = 104.61200727862274 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 179907.22386746333 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229710 uid = 1761830453 mid = 2106017278 persistentId = 2528823193 launchID = 9 parent = 0 position = 0.23734760284423828,0.032947540283203125,-0.23734769225120544 rotation = -2.14447358E-08,0.923879504,5.1772151E-08,0.382683605 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 104.56496056518567 tempExt = 104.61493704329376 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 179907.22386746333 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229678 uid = 1153596035 mid = 2106017278 persistentId = 232242856 launchID = 9 parent = 0 position = -4.0013819813111695E-08,0.032947540283203125,-0.33566021919250488 rotation = -1.25607405E-14,1,5.60377771E-08,2.52881108E-07 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 104.56487469980941 tempExt = 104.613331104938 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 179907.22386746333 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229646 uid = 2483612239 mid = 2106017278 persistentId = 112146165 launchID = 9 parent = 0 position = -0.23734772205352783,0.032947540283203125,-0.2373475581407547 rotation = 2.14447251E-08,0.923879564,5.17721546E-08,-0.382683367 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 104.5647924451557 tempExt = 104.61089864403804 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 179907.22386746333 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294226184 uid = 37882806 mid = 2106017278 persistentId = 2580538930 launchID = 9 parent = 0 position = 0,0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 10 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 104.56727691379641 tempExt = 104.6348456583502 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 195.96489065549426 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongAntenna2 cid = 4294160256 uid = 1532241375 mid = 2106017278 persistentId = 4090224408 launchID = 9 parent = 9 position = 0,0.38708209991455078,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 9 mass = 0.00999999978 shielded = False temp = 104.57144724173126 tempExt = 104.95257241164104 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992752314 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294224434 uid = 2005386059 mid = 2106017278 persistentId = 2952118234 launchID = 9 parent = 0 position = 0,-0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 104.57257209356487 tempExt = 104.68799340351005 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 195.96489065549426 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0.00310192397 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = dd9237b460f6457dbe84fb1607be714f persistentId = 1251815637 name = Dumb Relay type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 7234.9213769154157 lct = 204806.64897971944 lastUT = 212041.57035663485 distanceTraveled = 59158.25748334988 root = 0 lat = -2.3109407929234258E-07 lon = 58.613818375701634 alt = 3586750.0005931682 hgt = -1 nrm = 0.780378342,-6.92201647E-05,-0.6253075 rot = 0.000202307914,0.750795007,3.69758652E-07,-0.660535276 CoM = 1.99443548E-07,0.0168868881,-1.39516487E-09 stg = 0 prst = False ref = 1639502200 ctrl = True PQSMin = 2 PQSMax = 9 cPch = 0.5100001 cHdg = 2.264 cMod = 0 ORBIT { SMA = 4186750.0015877164 ECC = 3.2938693541042381E-08 INC = 0 LPE = 269.57621774660868 LAN = 270.94422966084767 MNA = -1.5635771107395586 EPH = 212041.57035663485 REF = 1 } PART { name = probeCoreOcto.v2 cid = 4294232176 uid = 1639502200 mid = 1427772128 persistentId = 3564803791 launchID = 10 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 11 attN = top, 9 mass = 0.100000001 shielded = False temp = 190.21628964171069 tempExt = 190.35017757600932 tempExtUnexp = 4 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = probeCoreOcto.v2 (Dumb Relay) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = NormalPlus Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 212041.57035663485 ExtraDelayScheduledTimeStamp = 212029.23035664132 ExtraDelay = 0 CmdGuid = 0f66657f-d686-4d27-9c31-65176736591b } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 0.69874137362560818 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = solarPanels5 cid = 4294230226 uid = 2897056791 mid = 1427772128 persistentId = 3137503652 launchID = 10 parent = 0 position = -0.33566024899482727,0.032947540283203125,2.0006911682912687E-08 rotation = -3.96246804E-08,-0.707106948,-3.96246982E-08,0.70710659 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 190.21637970468217 tempExt = 190.25236354912019 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 204806.64897971944 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229838 uid = 364377640 mid = 1427772128 persistentId = 3608402000 launchID = 10 parent = 0 position = -0.23734760284423828,0.032947540283203125,0.23734766244888306 rotation = -5.17721475E-08,-0.382683635,-2.14447375E-08,0.923879445 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 190.21640285026024 tempExt = 190.25237537035187 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 204806.64897971944 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229806 uid = 1919347073 mid = 1427772128 persistentId = 2529330171 launchID = 10 parent = 0 position = 5.8385197548762712E-16,0.032947540283203125,0.33566021919250488 rotation = -5.60377771E-08,-2.52881108E-07,-1.25607405E-14,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 190.21640661774484 tempExt = 190.252377638723 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 204806.64897971944 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229774 uid = 259056577 mid = 1427772128 persistentId = 2088824858 launchID = 10 parent = 0 position = 0.23734763264656067,0.032947540283203125,0.23734761774539948 rotation = -5.17721581E-08,0.382683218,2.14447162E-08,0.923879623 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 190.21640294625379 tempExt = 190.252376393162 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 204806.64897971944 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229742 uid = 575252780 mid = 1427772128 persistentId = 3587691148 launchID = 10 parent = 0 position = 0.33566024899482727,0.032947540283203125,-4.9351264408414863E-08 rotation = -3.96246982E-08,0.70710665,3.96246804E-08,0.707106888 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 4 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 190.21639363809527 tempExt = 190.25237156814541 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 204806.64897971944 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229710 uid = 2197121347 mid = 1427772128 persistentId = 3171064587 launchID = 10 parent = 0 position = 0.23734760284423828,0.032947540283203125,-0.23734769225120544 rotation = -2.14447358E-08,0.923879504,5.1772151E-08,0.382683605 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 190.21639128411067 tempExt = 190.25237156532529 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 204806.64897971944 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229678 uid = 3583268735 mid = 1427772128 persistentId = 3941435580 launchID = 10 parent = 0 position = -4.0013819813111695E-08,0.032947540283203125,-0.33566021919250488 rotation = -1.25607405E-14,1,5.60377771E-08,2.52881108E-07 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 190.21718176152831 tempExt = 190.26299964044128 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 204806.64897971944 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229646 uid = 839899634 mid = 1427772128 persistentId = 106186303 launchID = 10 parent = 0 position = -0.23734772205352783,0.032947540283203125,-0.2373475581407547 rotation = 2.14447251E-08,0.923879564,5.17721546E-08,-0.382683367 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 190.21643431079639 tempExt = 190.25239927082333 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 204806.64897971944 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294226184 uid = 150081424 mid = 1427772128 persistentId = 3266590824 launchID = 10 parent = 0 position = 0,0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 10 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 190.2226744133572 tempExt = 190.26366746215669 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 13.974827472512093 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongAntenna2 cid = 4294160256 uid = 3500793448 mid = 1427772128 persistentId = 3145150412 launchID = 10 parent = 9 position = 0,0.38708209991455078,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 9 mass = 0.00999999978 shielded = False temp = 190.23144415373613 tempExt = 190.59766143927624 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992752314 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294224434 uid = 101649384 mid = 1427772128 persistentId = 1259142781 launchID = 10 parent = 0 position = 0,-0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 190.21781406331229 tempExt = 190.26384320058611 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 13.974827472512093 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 212029.290356641 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = 90ffafe7a79e40f29ea1c7e946a1b39c persistentId = 1251815637 name = Dumb Relay type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 75.991259726579301 lct = 211988.89909689606 lastUT = 212064.91035662263 distanceTraveled = 9425.6075018592874 root = 0 lat = -2.308554806208913E-07 lon = -31.754717858069 alt = 3586749.9967062762 hgt = -1 nrm = 0.733796597,0.0264262855,-0.678855181 rot = -0.0200525504,-0.0961822122,-0.00134605751,0.995160878 CoM = -3.45491571E-07,0.016887309,-1.97906047E-09 stg = 0 prst = False ref = 2440613916 ctrl = True PQSMin = 2 PQSMax = 9 cPch = 0.2 cHdg = 0.3 cMod = 0 ORBIT { SMA = 4186749.9934832328 ECC = 1.1133071784044147E-09 INC = 0 LPE = 37.793890188568504 LAN = 181.24036929771054 MNA = 2.4769862367110793 EPH = 212064.89035662264 REF = 1 } PART { name = probeCoreOcto.v2 cid = 4294232176 uid = 2440613916 mid = 3016385760 persistentId = 2991725102 launchID = 11 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 11 attN = top, 9 mass = 0.100000001 shielded = False temp = 296.10512601319709 tempExt = 291.56718326210836 tempExtUnexp = 4 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = probeCoreOcto.v2 (Dumb Relay) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Running stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = NormalPlus Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 212064.91035662263 ExtraDelayScheduledTimeStamp = 212061.37035662448 ExtraDelay = 0 CmdGuid = de5eb7cc-9264-46ed-b069-3d2a9412e0a8 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 9.9997073170680828 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = solarPanels5 cid = 4294230226 uid = 2082045655 mid = 3016385760 persistentId = 1056003917 launchID = 11 parent = 0 position = -0.33566024899482727,0.032947540283203125,2.0006911682912687E-08 rotation = -3.96246804E-08,-0.707106948,-3.96246982E-08,0.70710659 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 295.94820196176562 tempExt = 291.43898774869825 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 211988.89909689606 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229838 uid = 1026016317 mid = 3016385760 persistentId = 388193276 launchID = 11 parent = 0 position = -0.23734760284423828,0.032947540283203125,0.23734766244888306 rotation = -5.17721475E-08,-0.382683635,-2.14447375E-08,0.923879445 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 295.94823512885807 tempExt = 291.43913039977485 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 211988.89909689606 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229806 uid = 1876957343 mid = 3016385760 persistentId = 3523259329 launchID = 11 parent = 0 position = 5.8385197548762712E-16,0.032947540283203125,0.33566021919250488 rotation = -5.60377771E-08,-2.52881108E-07,-1.25607405E-14,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 295.94819580225794 tempExt = 291.43890480651203 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 211988.89909689606 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229774 uid = 3006378567 mid = 3016385760 persistentId = 3067032813 launchID = 11 parent = 0 position = 0.23734763264656067,0.032947540283203125,0.23734761774539948 rotation = -5.17721581E-08,0.382683218,2.14447162E-08,0.923879623 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 295.95285680589029 tempExt = 291.46836720075891 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 211988.89909689606 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229742 uid = 1103121040 mid = 3016385760 persistentId = 4276330405 launchID = 11 parent = 0 position = 0.33566024899482727,0.032947540283203125,-4.9351264408414863E-08 rotation = -3.96246982E-08,0.70710665,3.96246804E-08,0.707106888 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 4 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 295.94955851094062 tempExt = 291.45458199684811 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 211988.89909689606 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229710 uid = 1061518072 mid = 3016385760 persistentId = 2491158619 launchID = 11 parent = 0 position = 0.23734760284423828,0.032947540283203125,-0.23734769225120544 rotation = -2.14447358E-08,0.923879504,5.1772151E-08,0.382683605 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 295.95407498508484 tempExt = 291.48065801309355 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 211988.89909689606 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229678 uid = 3222881969 mid = 3016385760 persistentId = 3446791978 launchID = 11 parent = 0 position = -4.0013819813111695E-08,0.032947540283203125,-0.33566021919250488 rotation = -1.25607405E-14,1,5.60377771E-08,2.52881108E-07 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 295.94834269531492 tempExt = 291.4405322795098 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 211988.89909689606 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229646 uid = 3022657660 mid = 3016385760 persistentId = 1659818722 launchID = 11 parent = 0 position = -0.23734772205352783,0.032947540283203125,-0.2373475581407547 rotation = 2.14447251E-08,0.923879564,5.17721546E-08,-0.382683367 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 295.94823193841347 tempExt = 291.43909044546268 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 211988.89909689606 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294226184 uid = 1945226815 mid = 3016385760 persistentId = 2334994440 launchID = 11 parent = 0 position = 0,0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 10 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 295.83701623242649 tempExt = 291.57292226353172 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 199.99414634136164 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongAntenna2 cid = 4294160256 uid = 951269288 mid = 3016385760 persistentId = 4230229213 launchID = 11 parent = 9 position = 0,0.38708209991455078,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 9 mass = 0.00999999978 shielded = False temp = 296.01025333176364 tempExt = 291.82580482328007 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992752314 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294224434 uid = 4162112430 mid = 3016385760 persistentId = 2732641101 launchID = 11 parent = 0 position = 0,-0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 295.88568300462225 tempExt = 291.41978825198231 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 199.99414634136164 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0.0187134575 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = 164e30306e414c54a236ca729723f3ea persistentId = 1251815637 name = Dumb Relay type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 8.6999999954423402 lct = 226233.36029069262 lastUT = 226242.08029068806 distanceTraveled = 7044.7049485987418 root = 0 lat = -2.3109335798579843E-07 lon = 90.558802874195933 alt = 3586750.0000247755 hgt = -1 nrm = 0.374337792,-0.00124383776,0.927291632 rot = -0.000647027511,-0.195451409,-7.44289355E-05,0.980713189 CoM = -3.32056516E-09,0.0168871619,2.07364792E-10 stg = 0 prst = False ref = 1293649025 ctrl = True PQSMin = 2 PQSMax = 9 cPch = 0.3128825 cHdg = 0.7285007 cMod = 0 ORBIT { SMA = 4186749.9997254303 ECC = 7.9959845377057172E-11 INC = 0 LPE = 213.82429571129956 LAN = 0.039204748836937142 MNA = 2.5524715623191039 EPH = 226242.06029068807 REF = 1 } PART { name = probeCoreOcto.v2 cid = 4294232176 uid = 1293649025 mid = 2998260452 persistentId = 10435905 launchID = 12 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 11 attN = top, 9 mass = 0.100000001 shielded = False temp = 301.72318767155843 tempExt = 301.10650638551112 tempExtUnexp = 4 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = probeCoreOcto.v2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Running stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = NormalPlus Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 226242.08029068806 ExtraDelayScheduledTimeStamp = 226235.00029069177 ExtraDelay = 0 CmdGuid = 08ba1b8e-d287-48ec-ad19-3f879ed8b4b5 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 9.9442948128789972 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = solarPanels5 cid = 4294230226 uid = 2087410994 mid = 2998260452 persistentId = 3297973427 launchID = 12 parent = 0 position = -0.33566024899482727,0.032947540283203125,2.0006911682912687E-08 rotation = -3.96246804E-08,-0.707106948,-3.96246982E-08,0.70710659 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 301.70666642247244 tempExt = 301.05543713600343 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 226233.36029069262 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229838 uid = 3944683258 mid = 2998260452 persistentId = 3448212495 launchID = 12 parent = 0 position = -0.23734760284423828,0.032947540283203125,0.23734766244888306 rotation = -5.17721475E-08,-0.382683635,-2.14447375E-08,0.923879445 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 301.70680233832582 tempExt = 301.05614242767956 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 226233.36029069262 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229806 uid = 21000875 mid = 2998260452 persistentId = 3440390106 launchID = 12 parent = 0 position = 5.8385197548762712E-16,0.032947540283203125,0.33566021919250488 rotation = -5.60377771E-08,-2.52881108E-07,-1.25607405E-14,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 301.71747860635844 tempExt = 301.35272324819528 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 226233.36029069262 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229774 uid = 1010488683 mid = 2998260452 persistentId = 2731075409 launchID = 12 parent = 0 position = 0.23734763264656067,0.032947540283203125,0.23734761774539948 rotation = -5.17721581E-08,0.382683218,2.14447162E-08,0.923879623 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 301.72312977782559 tempExt = 301.4937819175214 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 226233.36029069262 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229742 uid = 2524361737 mid = 2998260452 persistentId = 2445753173 launchID = 12 parent = 0 position = 0.33566024899482727,0.032947540283203125,-4.9351264408414863E-08 rotation = -3.96246982E-08,0.70710665,3.96246804E-08,0.707106888 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 4 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 301.70672533705584 tempExt = 301.05570153395519 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 226233.36029069262 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229710 uid = 10942139 mid = 2998260452 persistentId = 3887362942 launchID = 12 parent = 0 position = 0.23734760284423828,0.032947540283203125,-0.23734769225120544 rotation = -2.14447358E-08,0.923879504,5.1772151E-08,0.382683605 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 301.70669239274082 tempExt = 301.05550154149546 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 226233.36029069262 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229678 uid = 811781428 mid = 2998260452 persistentId = 80745593 launchID = 12 parent = 0 position = -4.0013819813111695E-08,0.032947540283203125,-0.33566021919250488 rotation = -1.25607405E-14,1,5.60377771E-08,2.52881108E-07 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 301.70668904855546 tempExt = 301.05573135137087 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 226233.36029069262 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229646 uid = 3751253109 mid = 2998260452 persistentId = 2075496680 launchID = 12 parent = 0 position = -0.23734772205352783,0.032947540283203125,-0.2373475581407547 rotation = 2.14447251E-08,0.923879564,5.17721546E-08,-0.382683367 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 301.70668269480768 tempExt = 301.05552450735848 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 226233.36029069262 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294226184 uid = 4249104753 mid = 2998260452 persistentId = 4007566767 launchID = 12 parent = 0 position = 0,0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 10 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 301.69691154586224 tempExt = 301.08218153022119 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 198.88589625757834 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongAntenna2 cid = 4294160256 uid = 1777311960 mid = 2998260452 persistentId = 3197158531 launchID = 12 parent = 9 position = 0,0.38708209991455078,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 9 mass = 0.00999999978 shielded = False temp = 301.72334211176951 tempExt = 301.41991055633412 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992752314 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294224434 uid = 1510563680 mid = 2998260452 persistentId = 2509410973 launchID = 12 parent = 0 position = 0,-0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 301.70791731850852 tempExt = 301.08575507884706 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 198.88589625757834 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0.00102418044 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = d9af566e900144db9df24f7f58583c3e persistentId = 1251815637 name = Dumb Relay type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 6192.4557559505338 lct = 248016.93819594861 lastUT = 254209.39395189914 distanceTraveled = 11038.152175678701 root = 0 lat = -2.842507025687998E-07 lon = 61.064838027075744 alt = 3586749.999653717 hgt = -1 nrm = 0.800357997,0.000116781972,0.599522471 rot = 0.000104928491,-0.209867239,3.15773541E-05,0.977729917 CoM = 2.3476457E-07,0.0168871675,-1.9981303E-07 stg = 0 prst = False ref = 1704039418 ctrl = True PQSMin = 2 PQSMax = 9 cPch = 0.2 cHdg = 0.3 cMod = 0 ORBIT { SMA = 4186749.9995693536 ECC = 1.0850185688843573E-10 INC = 0 LPE = 11.003592054411016 LAN = 167.79279003927786 MNA = -1.7621685112487693 EPH = 254209.39395189914 REF = 1 } PART { name = probeCoreOcto.v2 cid = 4294232176 uid = 1704039418 mid = 3846423236 persistentId = 2147734581 launchID = 13 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 11 attN = top, 9 mass = 0.100000001 shielded = False temp = 272.11792259250956 tempExt = 271.97025138511731 tempExtUnexp = 4 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = probeCoreOcto.v2 (Dumb Relay) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = NormalPlus Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 254209.39395189914 ExtraDelayScheduledTimeStamp = 248020.03819594698 ExtraDelay = 0 CmdGuid = afb7ae4e-567d-48a7-bbbb-82b84f4328eb } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 9.9870821927508633 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = solarPanels5 cid = 4294230226 uid = 1725936154 mid = 3846423236 persistentId = 3893755600 launchID = 13 parent = 0 position = -0.33566024899482727,0.032947540283203125,2.0006911682912687E-08 rotation = -3.96246804E-08,-0.707106948,-3.96246982E-08,0.70710659 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 272.11206671778018 tempExt = 271.8590230740806 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 248016.93819594861 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229838 uid = 3014103487 mid = 3846423236 persistentId = 3472103397 launchID = 13 parent = 0 position = -0.23734760284423828,0.032947540283203125,0.23734766244888306 rotation = -5.17721475E-08,-0.382683635,-2.14447375E-08,0.923879445 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 272.11206671778018 tempExt = 271.8590230740806 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 248016.93819594861 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229806 uid = 580184179 mid = 3846423236 persistentId = 1628845977 launchID = 13 parent = 0 position = 5.8385197548762712E-16,0.032947540283203125,0.33566021919250488 rotation = -5.60377771E-08,-2.52881108E-07,-1.25607405E-14,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 272.11206671778018 tempExt = 271.8590230740806 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 248016.93819594861 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229774 uid = 3731797182 mid = 3846423236 persistentId = 858568480 launchID = 13 parent = 0 position = 0.23734763264656067,0.032947540283203125,0.23734761774539948 rotation = -5.17721581E-08,0.382683218,2.14447162E-08,0.923879623 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 272.11206671778018 tempExt = 271.8590230740806 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 248016.93819594861 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229742 uid = 603101690 mid = 3846423236 persistentId = 1918853606 launchID = 13 parent = 0 position = 0.33566024899482727,0.032947540283203125,-4.9351264408414863E-08 rotation = -3.96246982E-08,0.70710665,3.96246804E-08,0.707106888 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 4 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 272.11358402984223 tempExt = 271.90480172954773 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 248016.93819594861 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229710 uid = 3602125226 mid = 3846423236 persistentId = 670121410 launchID = 13 parent = 0 position = 0.23734760284423828,0.032947540283203125,-0.23734769225120544 rotation = -2.14447358E-08,0.923879504,5.1772151E-08,0.382683605 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 272.11206671778018 tempExt = 271.8590230740806 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 248016.93819594861 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229678 uid = 320803724 mid = 3846423236 persistentId = 1094404030 launchID = 13 parent = 0 position = -4.0013819813111695E-08,0.032947540283203125,-0.33566021919250488 rotation = -1.25607405E-14,1,5.60377771E-08,2.52881108E-07 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 272.11206671778018 tempExt = 271.8590230740806 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 248016.93819594861 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229646 uid = 2025259738 mid = 3846423236 persistentId = 2013924830 launchID = 13 parent = 0 position = -0.23734772205352783,0.032947540283203125,-0.2373475581407547 rotation = 2.14447251E-08,0.923879564,5.17721546E-08,-0.382683367 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 272.11206671778018 tempExt = 271.8590230740806 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 248016.93819594861 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294226184 uid = 1716684744 mid = 3846423236 persistentId = 2761153328 launchID = 13 parent = 0 position = 0,0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 10 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 272.11427700565974 tempExt = 271.95148761107635 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 199.74164385501686 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongAntenna2 cid = 4294160256 uid = 792859347 mid = 3846423236 persistentId = 2076704868 launchID = 13 parent = 9 position = 0,0.38708209991455078,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 9 mass = 0.00999999978 shielded = False temp = 272.12090557968173 tempExt = 272.17705847975492 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992752314 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294224434 uid = 3742750039 mid = 3846423236 persistentId = 1208326253 launchID = 13 parent = 0 position = 0,-0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 272.11472976908658 tempExt = 271.96486115141079 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 199.74164385501686 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = ec43e6e5bb9e4be7b0e1c99ad078aada persistentId = 2559268266 name = Inner Dish type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 2616.7211276244198 lct = 248949.75819545993 lastUT = 251566.47932308435 distanceTraveled = 74043.951291821402 root = 0 lat = 2.5243835666081998E-11 lon = 27.550035873121082 alt = 4486750.1032605553 hgt = -1 nrm = -0.000165779144,1,0.000187575817 rot = 0.423428506,0.11366336,-0.566302359,0.697918832 CoM = -5.424954E-08,-0.103260882,7.4505806E-08 stg = 0 prst = False ref = 2042103928 ctrl = True PQSMin = 2 PQSMax = 9 cPch = 0.586 cHdg = 1.848 cMod = 0 ORBIT { SMA = 5086750.0000040699 ECC = 1.7001155167733682E-11 INC = 0 LPE = 85.105068054237051 LAN = 187.96443547202341 MNA = 1.5200997863902066 EPH = 251566.47932308435 REF = 1 } PART { name = probeCoreOcto.v2 cid = 4293649030 uid = 2042103928 mid = 1545847247 persistentId = 931696781 launchID = 14 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 1 attN = top, 11 mass = 0.100000001 shielded = False temp = 220.47744195326658 tempExt = 220.7967949282548 tempExtUnexp = 4 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = probeCoreOcto.v2 (Inner Dish) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = RadialPlus Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 251566.47932308435 ExtraDelayScheduledTimeStamp = 248958.69819545525 ExtraDelay = 0 CmdGuid = 9022f7fd-bb97-4de0-b0c4-b327c9094ad0 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 9.9997900990141204 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = sasModule cid = 4293646672 uid = 4149687926 mid = 1545847247 persistentId = 1039657448 launchID = 14 parent = 0 position = 0,-0.27819252014160156,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 2 attN = top, 0 mass = 0.0500000007 shielded = False temp = 220.26169460090853 tempExt = 220.1565502850801 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = sasModule modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = batteryBank cid = 4293624368 uid = 1157009625 mid = 1545847247 persistentId = 1468856764 launchID = 14 parent = 1 position = 0,-0.48015880584716797,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = top, 1 attN = bottom, -1 mass = 0.0500000007 shielded = False temp = 220.2057223562156 tempExt = 219.62944504312429 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 999.97900990141204 maxAmount = 1000 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = solarPanels4 cid = 4293616742 uid = 1640215011 mid = 1545847247 persistentId = 2940824993 launchID = 14 parent = 2 position = -5.2803869721174124E-08,-0.434112548828125,-0.60400587320327759 rotation = 1.26440554E-07,0.707106829,-1.26440554E-07,-0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 220.08966681177154 tempExt = 219.42312805480182 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 248949.75819545993 currentRotation = (-0.468683958, -0.468692362, -0.529468417, 0.529458344) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4293614214 uid = 4287580544 mid = 1545847247 persistentId = 337059107 launchID = 14 parent = 2 position = -0.42709672451019287,-0.434112548828125,-0.42709657549858093 rotation = 6.84291308E-08,0.382683426,-1.6520255E-07,-0.923879564 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 220.1171874402205 tempExt = 219.81159873270073 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 248949.75819545993 currentRotation = (0.456234187, 0.456233442, 0.540233791, -0.540230453) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4293614110 uid = 1803030059 mid = 1545847247 persistentId = 3710325855 launchID = 14 parent = 2 position = -0.60400581359863281,-0.434112548828125,1.6802310653929453E-08 rotation = 0,0,-1.78813949E-07,-1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 220.08571149072799 tempExt = 219.50938971277114 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 248949.75819545993 currentRotation = (-0.469812185, -0.469819844, -0.528463364, 0.528462291) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4293614006 uid = 2185479103 mid = 1545847247 persistentId = 2769305683 launchID = 14 parent = 2 position = -0.42709660530090332,-0.434112548828125,0.42709663510322571 rotation = -6.84291308E-08,-0.382683456,-1.65202536E-07,-0.923879564 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 220.05724196373015 tempExt = 219.40780486995669 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 248949.75819545993 currentRotation = (-0.500765979, -0.500763714, -0.499236077, 0.499231964) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4293613902 uid = 1723041461 mid = 1545847247 persistentId = 1402328952 launchID = 14 parent = 2 position = 1.0560773944234825E-07,-0.434112548828125,0.60400587320327759 rotation = -1.26440554E-07,-0.707106888,-1.26440554E-07,-0.707106769 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 220.0833171912837 tempExt = 219.54398486569585 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 248949.75819545993 currentRotation = (-0.529459178, -0.52946794, -0.468693942, 0.468681931) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4293613798 uid = 515905204 mid = 1545847247 persistentId = 3013591105 launchID = 14 parent = 2 position = 0.42709675431251526,-0.434112548828125,0.42709657549858093 rotation = -1.6520255E-07,-0.923879623,-6.84291237E-08,-0.382683367 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 9 sym = 10 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 220.10356783107267 tempExt = 219.52538231774545 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 248949.75819545993 currentRotation = (0.540231526, 0.540232956, 0.45623374, -0.456233472) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4293613694 uid = 1494085089 mid = 1545847247 persistentId = 1601589387 launchID = 14 parent = 2 position = 0.60400581359863281,-0.434112548828125,-8.8805421682991437E-08 rotation = -1.78813949E-07,-1,0,0 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 10 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 220.0884320880061 tempExt = 219.45408127118796 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 248949.75819545993 currentRotation = (-0.528462648, -0.528463304, -0.469821513, 0.469810188) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4293613590 uid = 2260170352 mid = 1545847247 persistentId = 645830957 launchID = 14 parent = 2 position = 0.42709648609161377,-0.434112548828125,-0.42709681391716003 rotation = -1.65202536E-07,-0.923879504,6.84291663E-08,0.382683605 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 220.07623785442846 tempExt = 219.31880933366202 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 248949.75819545993 currentRotation = (-0.499233425, -0.499235243, -0.500765562, 0.500763476) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = RTLongDish2 cid = 4293644986 uid = 4019405786 mid = 1545847247 persistentId = 825598842 launchID = 14 parent = 0 position = 0,0.21208095550537109,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 0 mass = 0.200000003 shielded = False temp = 220.69861637428838 tempExt = 221.30965511834441 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 0.99999993907651941 RTOmniRange = 0 RTDishRange = 6.0000002E+10 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 45766545-7665-4576-6545-766545766545 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = longAntenna cid = 4293631848 uid = 3735135811 mid = 1545847247 persistentId = 2311615629 launchID = 14 parent = 0 position = -0.33559337258338928,0.1195831298828125,2.0002925538165073E-08 rotation = 0.499999881,-0.500000179,0.500000119,0.49999994 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 srfN = srfAttach, 0 attN = bottom, -1 mass = 0.00499999989 shielded = False temp = 220.40210913403516 tempExt = 220.57642143209165 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = longAntenna modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992794871 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 2500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = 18a34da0392e4a31bc015633e0dfd1db persistentId = 2559268266 name = Inner Dish type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 4818.6357566702354 lct = 249365.87819524194 lastUT = 254184.51395191217 distanceTraveled = 211221.99646409389 root = 0 lat = -1.7888777342324025E-08 lon = 150.09483780548354 alt = 1086750.1829006916 hgt = -1 nrm = 0.0130918026,0.999899387,0.00548201799 rot = 0.49491927,-0.684173644,-0.504181147,-0.181005016 CoM = -5.43892384E-07,-0.103261098,-2.20537186E-06 stg = 0 prst = False ref = 237468247 ctrl = True PQSMin = 2 PQSMax = 9 cPch = 0.3900001 cHdg = -0.8379993 cMod = 0 ORBIT { SMA = 1786750.1563974619 ECC = 4.3477382550424954E-08 INC = 0 LPE = 280.99052154625753 LAN = 276.92803180600259 MNA = 0.15537026433487194 EPH = 254184.51395191217 REF = 5 } PART { name = probeCoreOcto.v2 cid = 4293649030 uid = 237468247 mid = 4007456781 persistentId = 4124866328 launchID = 15 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 1 attN = top, 11 mass = 0.100000001 shielded = False temp = 125.84971442604574 tempExt = 125.83378564219868 tempExtUnexp = 4 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = probeCoreOcto.v2 (Inner Dish) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Running stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = RadialPlus Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 254184.51395191217 ExtraDelayScheduledTimeStamp = 254180.17395191445 ExtraDelay = 0 CmdGuid = f6d12bd2-4d6a-462a-b38d-6e5d0da38c02 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Eve 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 9.8146948025769447 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = sasModule cid = 4293646672 uid = 3650205659 mid = 4007456781 persistentId = 1953863255 launchID = 15 parent = 0 position = 0,-0.27819252014160156,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 2 attN = top, 0 mass = 0.0500000007 shielded = False temp = 125.85008714379627 tempExt = 125.86638082831729 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = sasModule modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Running stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = batteryBank cid = 4293624368 uid = 1422754672 mid = 4007456781 persistentId = 1588695294 launchID = 15 parent = 1 position = 0,-0.48015880584716797,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = top, 1 attN = bottom, -1 mass = 0.0500000007 shielded = False temp = 125.85317478025151 tempExt = 125.90155706186898 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 981.46948025769166 maxAmount = 1000 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = solarPanels4 cid = 4293616742 uid = 2675619860 mid = 4007456781 persistentId = 923970874 launchID = 15 parent = 2 position = -5.2803869721174124E-08,-0.434112548828125,-0.60400587320327759 rotation = 1.26440554E-07,0.707106829,-1.26440554E-07,-0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 125.85564199565695 tempExt = 125.98919906189268 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 249365.87819524194 currentRotation = (0.355148852, 0.355141371, -0.611460328, 0.611441135) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4293614214 uid = 3753072618 mid = 4007456781 persistentId = 1702821737 launchID = 15 parent = 2 position = -0.42709672451019287,-0.434112548828125,-0.42709657549858093 rotation = 6.84291308E-08,0.382683426,-1.6520255E-07,-0.923879564 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 125.85425181246175 tempExt = 125.93532828167825 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 249365.87819524194 currentRotation = (-0.493181646, -0.49329862, 0.506700575, -0.506638825) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4293614110 uid = 1680738431 mid = 4007456781 persistentId = 2564722736 launchID = 15 parent = 2 position = -0.60400581359863281,-0.434112548828125,1.6802310653929453E-08 rotation = 0,0,-1.78813949E-07,-1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 125.85359907553357 tempExt = 125.94412362599995 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 249365.87819524194 currentRotation = (-0.576480508, -0.576526999, 0.409318447, -0.409567297) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4293614006 uid = 1001869397 mid = 4007456781 persistentId = 2369751742 launchID = 15 parent = 2 position = -0.42709660530090332,-0.434112548828125,0.42709663510322571 rotation = -6.84291308E-08,-0.382683456,-1.65202536E-07,-0.923879564 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 125.85381935666841 tempExt = 125.97731007566551 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 249365.87819524194 currentRotation = (-0.610846102, -0.610830069, 0.356162727, -0.356232733) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4293613902 uid = 1814835889 mid = 4007456781 persistentId = 1699578616 launchID = 15 parent = 2 position = 1.0560773944234825E-07,-0.434112548828125,0.60400587320327759 rotation = -1.26440554E-07,-0.707106888,-1.26440554E-07,-0.707106769 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 125.85244298699662 tempExt = 125.93979710882881 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 249365.87819524194 currentRotation = (-0.611459017, -0.611443937, 0.355148226, -0.355139464) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4293613798 uid = 1354138733 mid = 4007456781 persistentId = 1567607136 launchID = 15 parent = 2 position = 0.42709675431251526,-0.434112548828125,0.42709657549858093 rotation = -1.6520255E-07,-0.923879623,-6.84291237E-08,-0.382683367 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 9 sym = 10 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 125.84940043390851 tempExt = 125.87150857101317 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 249365.87819524194 currentRotation = (0.506646872, 0.506694853, -0.493291616, 0.493186176) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4293613694 uid = 3889603249 mid = 4007456781 persistentId = 4047484154 launchID = 15 parent = 2 position = 0.60400581359863281,-0.434112548828125,-8.8805421682991437E-08 rotation = -1.78813949E-07,-1,0,0 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 10 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 125.85083425354958 tempExt = 125.89663729629993 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 249365.87819524194 currentRotation = (0.409563541, 0.40932858, -0.576507747, 0.576495111) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4293613590 uid = 2720079896 mid = 4007456781 persistentId = 2184683841 launchID = 15 parent = 2 position = 0.42709648609161377,-0.434112548828125,-0.42709681391716003 rotation = -1.65202536E-07,-0.923879504,6.84291663E-08,0.382683605 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 125.85150885744653 tempExt = 125.9000311698647 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 249365.87819524194 currentRotation = (0.356244832, 0.356151134, -0.610837042, 0.61083895) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = RTLongDish2 cid = 4293644986 uid = 1965273064 mid = 4007456781 persistentId = 1833429875 launchID = 15 parent = 0 position = 0,0.21208095550537109,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 0 mass = 0.200000003 shielded = False temp = 125.85045131207703 tempExt = 125.83463992992606 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 0.99999993907651941 RTOmniRange = 0 RTDishRange = 6.0000002E+10 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = ec43e6e5-bb9e-4be7-b0e1-c99ad078aada EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = longAntenna cid = 4293631848 uid = 3432391394 mid = 4007456781 persistentId = 467481270 launchID = 15 parent = 0 position = -0.33559337258338928,0.1195831298828125,2.0002925538165073E-08 rotation = 0.499999881,-0.500000179,0.500000119,0.49999994 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 srfN = srfAttach, 0 attN = bottom, -1 mass = 0.00499999989 shielded = False temp = 125.84773105830769 tempExt = 125.83128287589189 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = longAntenna modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992794871 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 2500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0.00331647159 yaw = -0.0080226073 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = 7651b4e97e5c4cc89629dce9221decee persistentId = 2559268266 name = Inner Dish type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 2538.4146288695338 lct = 251622.53932305498 lastUT = 254160.95395192452 distanceTraveled = 77694.031927508768 root = 0 lat = -4.5692502707638089E-09 lon = 25.215334150078743 alt = 2164954.084530931 hgt = -1 nrm = 0.982008517,-0.188727617,0.00641536713 rot = -0.70187521,-0.0857551396,-0.0907218009,0.70127517 CoM = 1.3038516E-08,-0.103260815,-9.31322575E-09 stg = 0 prst = False ref = 4202086443 ctrl = True PQSMin = 2 PQSMax = 9 cPch = 0.6306595 cHdg = 3.511055 cMod = 0 ORBIT { SMA = 2224954.1040147087 ECC = 2.7941773289853826E-12 INC = 0 LPE = 314.51662036255732 LAN = 180.55314598620657 MNA = -2.3571343468094752 EPH = 254160.95395192452 REF = 3 } PART { name = probeCoreOcto.v2 cid = 4293649030 uid = 4202086443 mid = 2711973714 persistentId = 1881223048 launchID = 16 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 1 attN = top, 11 mass = 0.100000001 shielded = False temp = 251.29634049118894 tempExt = 251.13203033401447 tempExtUnexp = 4 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = probeCoreOcto.v2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 254160.95395192452 ExtraDelayScheduledTimeStamp = 0 ExtraDelay = 0 CmdGuid = be37a8f9-4098-40c3-9967-39fd0e540dc4 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Eve 0 = Orbit,Minmus } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = sasModule cid = 4293646672 uid = 1668065736 mid = 2711973714 persistentId = 1365911233 launchID = 16 parent = 0 position = 0,-0.27819252014160156,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 2 attN = top, 0 mass = 0.0500000007 shielded = False temp = 250.98048547883715 tempExt = 250.92533931218856 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = sasModule modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = batteryBank cid = 4293624368 uid = 880830187 mid = 2711973714 persistentId = 2676922445 launchID = 16 parent = 1 position = 0,-0.48015880584716797,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = top, 1 attN = bottom, -1 mass = 0.0500000007 shielded = False temp = 250.77760214771536 tempExt = 250.41446264319728 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 1000 maxAmount = 1000 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = solarPanels4 cid = 4293616742 uid = 544778952 mid = 2711973714 persistentId = 3227163939 launchID = 16 parent = 2 position = -5.2803869721174124E-08,-0.434112548828125,-0.60400587320327759 rotation = 1.26440554E-07,0.707106829,-1.26440554E-07,-0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 250.42992871810264 tempExt = 251.4272878713823 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 251622.53932305498 currentRotation = (-0.695304453, -0.695283294, 0.128713831, -0.128707573) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4293614214 uid = 3338687416 mid = 2711973714 persistentId = 1738437902 launchID = 16 parent = 2 position = -0.42709672451019287,-0.434112548828125,-0.42709657549858093 rotation = 6.84291308E-08,0.382683426,-1.6520255E-07,-0.923879564 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 249.80870454098752 tempExt = 249.91731896239131 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 251622.53932305498 currentRotation = (-0.685209692, -0.685178995, 0.174687892, -0.174647212) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4293614110 uid = 1651657883 mid = 2711973714 persistentId = 2096536873 launchID = 16 parent = 2 position = -0.60400581359863281,-0.434112548828125,1.6802310653929453E-08 rotation = 0,0,-1.78813949E-07,-1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 250.08516871034922 tempExt = 250.32281666431118 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 251622.53932305498 currentRotation = (0.495937973, 0.495953649, -0.504005611, 0.504037619) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4293614006 uid = 344603868 mid = 2711973714 persistentId = 2601842281 launchID = 16 parent = 2 position = -0.42709660530090332,-0.434112548828125,0.42709663510322571 rotation = -6.84291308E-08,-0.382683456,-1.65202536E-07,-0.923879564 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 250.06196903744649 tempExt = 250.11360279370115 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 251622.53932305498 currentRotation = (0.172896847, 0.172860548, -0.685666859, 0.685628831) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4293613902 uid = 2757042988 mid = 2711973714 persistentId = 1773477666 launchID = 16 parent = 2 position = 1.0560773944234825E-07,-0.434112548828125,0.60400587320327759 rotation = -1.26440554E-07,-0.707106888,-1.26440554E-07,-0.707106769 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 249.86149823376283 tempExt = 249.74810743855215 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 251622.53932305498 currentRotation = (0.128714606, 0.128707513, -0.695301831, 0.695285678) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4293613798 uid = 340860778 mid = 2711973714 persistentId = 3992147990 launchID = 16 parent = 2 position = 0.42709675431251526,-0.434112548828125,0.42709657549858093 rotation = -1.6520255E-07,-0.923879623,-6.84291237E-08,-0.382683367 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 9 sym = 10 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 251.10592359803539 tempExt = 251.94626286468539 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 251622.53932305498 currentRotation = (0.174665377, 0.174683452, -0.685188711, 0.685196459) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4293613694 uid = 2070440885 mid = 2711973714 persistentId = 579968688 launchID = 16 parent = 2 position = 0.60400581359863281,-0.434112548828125,-8.8805421682991437E-08 rotation = -1.78813949E-07,-1,0,0 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 10 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 251.08828338087093 tempExt = 251.45272867996937 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 251622.53932305498 currentRotation = (-0.504037559, -0.50400573, 0.495953202, -0.495938361) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4293613590 uid = 3621432688 mid = 2711973714 persistentId = 1768201767 launchID = 16 parent = 2 position = 0.42709648609161377,-0.434112548828125,-0.42709681391716003 rotation = -1.65202536E-07,-0.923879504,6.84291663E-08,0.382683605 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 srfN = srfAttach, 2 mass = 0.0175000001 shielded = False temp = 250.80620040816348 tempExt = 251.69262375885015 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 251622.53932305498 currentRotation = (-0.685644925, -0.685643911, 0.172879606, -0.172905073) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = RTLongDish2 cid = 4293644986 uid = 3499344192 mid = 2711973714 persistentId = 3918981 launchID = 16 parent = 0 position = 0,0.21208095550537109,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 0 mass = 0.200000003 shielded = False temp = 251.46634304988325 tempExt = 251.30187089549398 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongDish2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 0.99999993907651941 RTOmniRange = 0 RTDishRange = 6.0000002E+10 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 5105f5a9-d628-41c6-ad4b-21154e8fc488 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = longAntenna cid = 4293631848 uid = 3434468873 mid = 2711973714 persistentId = 2647068985 launchID = 16 parent = 0 position = -0.33559337258338928,0.1195831298828125,2.0002925538165073E-08 rotation = 0.499999881,-0.500000179,0.500000119,0.49999994 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 srfN = srfAttach, 0 attN = bottom, -1 mass = 0.00499999989 shielded = False temp = 251.46156407921595 tempExt = 251.11760500282222 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = longAntenna modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992794871 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 2500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = 4b1a1a19932247ae9fd6df80d2d4c269 persistentId = 1167014933 name = Science Toy type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 2672.2522753597586 lct = 254235.49395188547 lastUT = 256907.74622724522 distanceTraveled = 99117.030801000728 root = 0 lat = -1.7771623991490314E-08 lon = 11.457321081931831 alt = 2386749.5958970631 hgt = -1 nrm = 0.672233224,-0.740332186,0.00332294405 rot = -0.673262298,0.222395495,0.218162581,0.67056936 CoM = 1.34110451E-07,-0.545793653,-5.96046448E-08 stg = 1 prst = False ref = 4181289178 ctrl = True PQSMin = 2 PQSMax = 9 cPch = 0.6179624 cHdg = -2.883313 cMod = 0 ORBIT { SMA = 3086749.9999614102 ECC = 7.778573196380842E-11 INC = 0 LPE = 1.9956982145741495 LAN = 169.39075386233253 MNA = -1.5886845107732905 EPH = 256907.74622724522 REF = 5 } PART { name = probeCoreOcto.v2 cid = 4293298564 uid = 4181289178 mid = 2728520997 persistentId = 3746993482 launchID = 17 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 1 attN = top, 7 mass = 0.100000001 shielded = False temp = 286.04253565309375 tempExt = 284.96857739060096 tempExtUnexp = 4 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = probeCoreOcto.v2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 256907.74622724522 ExtraDelayScheduledTimeStamp = 0 ExtraDelay = 0 CmdGuid = 1963ac5d-fb40-4d44-9a7d-9f6ca1c718d0 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Eve } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 9.6215273786984685 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = sasModule cid = 4293294506 uid = 706792592 mid = 2728520997 persistentId = 1932173931 launchID = 17 parent = 0 position = 0,-0.27819252014160156,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 2 attN = top, 0 mass = 0.0500000007 shielded = False temp = 286.15742907148007 tempExt = 285.48904431587704 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = sasModule modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4293279134 uid = 4196308497 mid = 2728520997 persistentId = 3050596952 launchID = 17 parent = 1 position = 0,-0.46930408477783203,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 1 attN = bottom, 3 mass = 0.00999999978 shielded = False temp = 286.2571762654706 tempExt = 285.86328484635976 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 192.43054757396791 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = Decoupler.1 cid = 4293242406 uid = 3215988418 mid = 2728520997 persistentId = 1532863574 launchID = 17 parent = 2 position = 0,-0.61930465698242188,0 rotation = -1,0,0,0 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 1 sqor = 0 sepI = 0 sidx = 0 attm = 0 srfN = , -1 attN = top, 4 attN = bottom, 2 mass = 0.0399999991 shielded = False temp = 286.36304511996883 tempExt = 286.27839619752848 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = Decoupler.1 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDecouple isEnabled = True ejectionForcePercent = 100 isDecoupled = False stagingEnabled = True EVENTS { } ACTIONS { DecoupleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleToggleCrossfeed isEnabled = True crossfeedStatus = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } EnableAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } DisableAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = science.module cid = 4293269222 uid = 3721461578 mid = 2728520997 persistentId = 4124516147 launchID = 17 parent = 3 position = 0,-1.2818050384521484,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 2 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 3 attN = bottom, -1 mass = 0.200000003 shielded = False temp = 286.38643117543978 tempExt = 286.37956413559522 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = science.module modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = True animTime = 0 animSpeed = 1 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ResetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels3 cid = 4293286102 uid = 511733575 mid = 2728520997 persistentId = 193822615 launchID = 17 parent = 0 position = -2.9351989283554758E-08,-0.056692123413085938,-0.33574762940406799 rotation = 3.1962891E-08,0.707106888,-3.19628874E-08,-0.707106769 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 6 srfN = srfAttach, 0 mass = 0.0175000001 shielded = False temp = 284.7548004233858 tempExt = 284.42643402826485 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels3 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 254235.49395188547 currentRotation = (-0.507307589, -0.492584795, 0.492584616, 0.507306337) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels3 cid = 4293285354 uid = 2081274878 mid = 2728520997 persistentId = 1778832439 launchID = 17 parent = 0 position = 5.8703978567109516E-08,-0.056692123413085938,0.33574762940406799 rotation = -3.19628874E-08,-0.707106829,-3.1962891E-08,-0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 5 srfN = srfAttach, 0 mass = 0.0175000001 shielded = False temp = 284.94735973184123 tempExt = 285.04609790624056 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels3 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 254235.49395188547 currentRotation = (-0.507306695, 0.492583662, -0.492586076, 0.507306874) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4293281946 uid = 1900480522 mid = 2728520997 persistentId = 2709839398 launchID = 17 parent = 0 position = 0,0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 8 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 286.0079010163094 tempExt = 285.42982706558973 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 192.43054757396791 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongAntenna2 cid = 4293272550 uid = 91317808 mid = 2728520997 persistentId = 1233110037 launchID = 17 parent = 7 position = 0,0.38708209991455078,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 7 mass = 0.00999999978 shielded = False temp = 285.79076631605597 tempExt = 285.70440753666907 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.993425965 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = GooExperiment cid = 4293267310 uid = 2110055208 mid = 2728520997 persistentId = 668522118 launchID = 17 parent = 0 position = -0.24601384997367859,-0.12394905090332031,6.8307748790630285E-08 rotation = 3.96246982E-08,0.70710659,-3.96246804E-08,0.707106948 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 10 srfN = srfAttach, 0 mass = 0.0500000007 shielded = False temp = 286.13344981788219 tempExt = 285.32760976304399 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = GooExperiment modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = True animTime = 0 animSpeed = 1 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ResetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = GooExperiment cid = 4293267256 uid = 2197061538 mid = 2728520997 persistentId = 67528335 launchID = 17 parent = 0 position = 0.24601384997367859,-0.12394905090332031,-8.9814960801959387E-08 rotation = -3.96246804E-08,0.707106888,-3.96246982E-08,-0.70710665 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 9 srfN = srfAttach, 0 mass = 0.0500000007 shielded = False temp = 286.15083519896285 tempExt = 285.50767225082825 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = GooExperiment modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = True animTime = 0 animSpeed = 1 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ResetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = sensorThermometer cid = 4293265846 uid = 876262229 mid = 2728520997 persistentId = 519185223 launchID = 17 parent = 0 position = -0.2375384122133255,0.036466598510742188,0.23753836750984192 rotation = -2.14445848E-08,0.923879266,5.17716927E-08,0.382684141 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 286.11002352659608 tempExt = 285.23499150617982 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = sensorThermometer modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ResetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = sensorBarometer cid = 4293264460 uid = 241794028 mid = 2728520997 persistentId = 1868882946 launchID = 17 parent = 0 position = -0.23826989531517029,0.0032949447631835938,-0.2382698655128479 rotation = 0,-0.382683605,0,-0.923879504 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 286.00431760280878 tempExt = 285.23485498853114 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = sensorBarometer modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ResetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = cfd9fb2c3943420585bede184c27b699 persistentId = 1103325185 name = Rocket type = Ship sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 309.29615220849519 lct = 256989.90622720218 lastUT = 257299.20237941068 distanceTraveled = 286935.88684643205 root = 0 lat = -0.47300439973635255 lon = -46.533850208324168 alt = 75386.99385162408 hgt = -1 nrm = -0.353604108,-0.00203676522,0.935392976 rot = -0.603304923,-0.688923061,-0.375680834,-0.142380431 CoM = -7.07805157E-08,-0.589908719,-5.96046448E-08 stg = 1 prst = False ref = 2803682202 ctrl = True PQSMin = 2 PQSMax = 9 cPch = -0.03800093 cHdg = -3.252001 cMod = 0 ORBIT { SMA = 676105.88942502567 ECC = 0.0039376539804392412 INC = 0.74961890854172164 LPE = 293.67544789006411 LAN = 162.7287085465972 MNA = -1.2935802456121113 EPH = 257299.20237941068 REF = 1 } PART { name = mk1pod.v2 cid = 4293180536 uid = 2803682202 mid = 3939094839 persistentId = 3152689903 launchID = 18 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 1 attN = top, 10 mass = 0.800000012 shielded = False temp = 324.39928691720104 tempExt = 323.5931731418346 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = mk1pod.v2 modCost = 0 crew = Jebediah Kerman EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleColorChanger isEnabled = True animState = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = Light wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ResetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceContainer isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { CollectAllAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleConductionMultiplier isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleLiftingSurface isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FlagDecal isEnabled = True flagDisplayed = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Flight,Kerbin 0 = Suborbit,Kerbin 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 50 maxAmount = 50 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = MonoPropellant amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = HeatShield1 cid = 4293159296 uid = 109993630 mid = 3939094839 persistentId = 3034510152 launchID = 18 parent = 0 position = 0,-0.42703819274902344,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 1 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = direct, 2 attN = bottom, -1 attN = top, 0 mass = 0.100000001 shielded = False temp = 324.01685890431855 tempExt = 323.46170928134381 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = HeatShield1 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleJettison isEnabled = True activejettisonName = fairing isJettisoned = True shroudHideOverride = False stagingEnabled = False EVENTS { } ACTIONS { JettisonAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleAblator isEnabled = True nominalAmountRecip = 0.0050000000000000001 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleColorChanger isEnabled = True animState = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleDecouple isEnabled = True ejectionForcePercent = 100 isDecoupled = False stagingEnabled = False EVENTS { } ACTIONS { DecoupleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleLiftingSurface isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } RESOURCE { name = Ablator amount = 199.9990399563145 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = Decoupler.1 cid = 4293134334 uid = 3091265436 mid = 3939094839 persistentId = 543145014 launchID = 18 parent = 1 position = 0,-0.47703742980957031,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 3 sqor = 0 sepI = 0 sidx = 0 attm = 0 srfN = , -1 attN = top, 1 attN = bottom, 3 mass = 0.0399999991 shielded = False temp = 323.94674868085286 tempExt = 323.20548825901989 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = Decoupler.1 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDecouple isEnabled = True ejectionForcePercent = 100 isDecoupled = False stagingEnabled = True EVENTS { } ACTIONS { DecoupleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleToggleCrossfeed isEnabled = True crossfeedStatus = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } EnableAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } DisableAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = fuelTankSmall cid = 4293118966 uid = 2456666205 mid = 3939094839 persistentId = 943777776 launchID = 18 parent = 2 position = 0,-1.0822887420654297,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 4 sqor = -1 sepI = 0 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 2 attN = bottom, 4 mass = 0.125 shielded = False temp = 321.86664551939293 tempExt = 323.65168521744323 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = fuelTankSmall modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } RESOURCE { name = LiquidFuel amount = 20.570945531947434 maxAmount = 90 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 25.142262674052304 maxAmount = 110 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = liquidEngine3 cid = 4293109926 uid = 759023041 mid = 3939094839 persistentId = 2056099807 launchID = 18 parent = 3 position = 0,-1.9250392913818359,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 1 resPri = 0 dstg = 4 sqor = 1 sepI = 0 sidx = 0 attm = 0 srfN = , -1 attN = top, 3 attN = bottom, -1 mass = 0.5 shielded = False temp = 333.37978607623626 tempExt = 329.38603567078229 tempExtUnexp = 4 expt = 0.5 state = 1 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = liquidEngine3 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True staged = True flameout = False EngineIgnited = True engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True gimbalActive = True stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } LockAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } FreeAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } TogglePitchAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleYawAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleRollAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateThrottle isEnabled = True animState = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleJettison isEnabled = True activejettisonName = fairing isJettisoned = True shroudHideOverride = False stagingEnabled = True EVENTS { } ACTIONS { JettisonAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleSurfaceFX isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = solarPanels3 cid = 4293095908 uid = 2775114491 mid = 3939094839 persistentId = 70577798 launchID = 18 parent = 3 position = -0.60637134313583374,-1.2406845092773438,2.9802322387695313E-08 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 4 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 6 srfN = srfAttach, 3 mass = 0.0175000001 shielded = False temp = 317.74079111885936 tempExt = 320.686434662225 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels3 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 256989.92622720217 currentRotation = (-0.445245415, 0.549323022, -0.549320102, 0.44525072) storedAnimationTime = 0 storedAnimationSpeed = 1 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels3 cid = 4293095160 uid = 4223193135 mid = 3939094839 persistentId = 3110583823 launchID = 18 parent = 3 position = 0.60637134313583374,-1.2406845092773438,-8.9406967163085938E-08 rotation = 0,1,0,-4.37113883E-08 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 4 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 5 srfN = srfAttach, 3 mass = 0.0175000001 shielded = False temp = 318.059958458089 tempExt = 320.73964610571028 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels3 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 256989.92622720217 currentRotation = (-0.44524464, -0.549326003, 0.549319744, 0.445248187) storedAnimationTime = 0 storedAnimationSpeed = 1 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = batteryPack cid = 4293081708 uid = 4110690682 mid = 3939094839 persistentId = 4277938563 launchID = 18 parent = 3 position = -0.60382622480392456,-0.78247261047363281,2.9802322387695313E-08 rotation = 0,0.707106829,0,0.707106829 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 4 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 8 srfN = srfAttach, 3 mass = 0.00499999989 shielded = False temp = 321.39552578255018 tempExt = 322.44799803915839 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 99.993599999909108 maxAmount = 100 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryPack cid = 4293081666 uid = 1936875508 mid = 3939094839 persistentId = 4201350557 launchID = 18 parent = 3 position = 0.60382622480392456,-0.78247261047363281,-8.9406967163085938E-08 rotation = 0,0.707106769,0,-0.707106888 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 4 sqor = -1 sepI = 0 sidx = -1 attm = 1 sym = 7 srfN = srfAttach, 3 mass = 0.00499999989 shielded = False temp = 321.39552578254961 tempExt = 322.44799803915811 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryPack modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 99.993599999909108 maxAmount = 100 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongAntenna2 cid = 4292913452 uid = 1277296538 mid = 3939094839 persistentId = 2472841460 launchID = 18 parent = 3 position = 0,-0.83069992065429688,0.60388147830963135 rotation = 0.707106709,0,0,0.707106948 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 4 sqor = -1 sepI = 0 sidx = -1 attm = 1 srfN = srfAttach, 3 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 320.7851396591692 tempExt = 322.4225915061815 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.994385779 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = probeCoreOcto.v2 cid = 4292917092 uid = 1583093869 mid = 3939094839 persistentId = 1354227971 launchID = 18 parent = 0 position = 0,0.82945823669433594,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 0 attN = top, 11 mass = 0.100000001 shielded = False temp = 324.68364661130738 tempExt = 323.76184829196166 tempExtUnexp = 4 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = probeCoreOcto.v2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = Prograde Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 257299.20237941068 ExtraDelayScheduledTimeStamp = 257243.22237944001 ExtraDelay = 0 CmdGuid = 2fe116bf-be29-4f71-8691-071c90f9b0c5 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Flight,Kerbin 0 = Suborbit,Kerbin 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = parachuteSingle cid = 4293176874 uid = 1186482646 mid = 3939094839 persistentId = 287293951 launchID = 18 parent = 10 position = 0,1.0316219329833984,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 0 sqor = 0 sepI = -1 sidx = 1 attm = 0 srfN = srfAttach, -1 attN = bottom, 10 mass = 0.100000001 shielded = False temp = 325.16497049930086 tempExt = 323.8589058720662 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = parachuteSingle modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleParachute isEnabled = True persistentState = STOWED animTime = 0 minAirPressureToOpen = 0.0399999991 deployAltitude = 1000 spreadAngle = 7 automateSafeDeploy = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } CutAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleDragModifier isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleDragModifier isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = SurfAntenna cid = 4293084296 uid = 3400881784 mid = 3939094839 persistentId = 189426973 launchID = 18 parent = 10 position = 1.4901161193847656E-08,0.83006095886230469,0.38776883482933044 rotation = 0.707106829,8.60294662E-08,-8.60294662E-08,0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 srfN = srfAttach, 10 mass = 0.0149999997 shielded = False temp = 325.07468165929339 tempExt = 324.18071561103056 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = SurfAntenna modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 1500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = True, 257128.36622713 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 257243.26237944 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = KerbalFull canComm = True } } } VESSEL { pid = 06c50f00b27b4682bfcb87bcfdb2572e persistentId = 4227668755 name = Rocket 2 type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 13481.837002138403 lct = 258143.08368796835 lastUT = 271624.92069010675 distanceTraveled = 119301.08667430874 root = 0 lat = -5.3026823078273438E-09 lon = -122.19407993583928 alt = 1386750.742975832 hgt = -1 nrm = 0.0680300891,0.997680306,0.00246030092 rot = -0.67391932,0.221896425,0.216236562,0.670698583 CoM = 3.55392694E-06,-0.691027045,4.76837158E-07 stg = 1 prst = False ref = 3512957326 ctrl = True PQSMin = 2 PQSMax = 9 cPch = 0.458 cHdg = 3.078 cMod = 0 ORBIT { SMA = 2086750.091768224 ECC = 2.0035392265722136E-08 INC = 0 LPE = 66.18062512650738 LAN = 282.41924070315855 MNA = 0.41759091183620095 EPH = 271624.92069010675 REF = 5 } PART { name = probeCoreOcto.v2 cid = 4292712532 uid = 3512957326 mid = 390916712 persistentId = 105852059 launchID = 19 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 9 attN = top, 1 mass = 0.100000001 shielded = False temp = 219.45301904015827 tempExt = 207.2233578686388 tempExtUnexp = 4 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = probeCoreOcto.v2 (Rocket 2) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 271624.92069010675 ExtraDelayScheduledTimeStamp = 0 ExtraDelay = 0 CmdGuid = e5ad2c6d-e8fa-465e-8ed4-2c012961edfd } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Eve } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryBankMini cid = 4292709124 uid = 2869281744 mid = 390916712 persistentId = 2075258849 launchID = 19 parent = 0 position = 0,0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 2 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 218.84077443935658 tempExt = 210.0073312113739 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = sasModule cid = 4292624612 uid = 262430140 mid = 390916712 persistentId = 611474695 launchID = 19 parent = 1 position = 0,0.47819328308105469,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 1 attN = top, 3 mass = 0.0500000007 shielded = False temp = 219.28046742481919 tempExt = 210.15598431825674 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = sasModule modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = longAntenna cid = 4292628480 uid = 2599740491 mid = 390916712 persistentId = 1142454001 launchID = 19 parent = 2 position = 0,0.56930446624755859,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 2 mass = 0.00499999989 shielded = False temp = 218.88903997302054 tempExt = 210.24376837875189 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = longAntenna modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992984533 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 2500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = RCSBlock cid = 4292600636 uid = 4114422992 mid = 390916712 persistentId = 3211938131 launchID = 19 parent = 2 position = -0.35328772664070129,0.41093921661376953,0.00074231624603271484 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 5 sym = 6 sym = 7 srfN = srfAttach, 2 mass = 0.0500000007 shielded = False temp = 219.36948134172724 tempExt = 210.14235162153076 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = RCSBlock cid = 4292573974 uid = 1984582814 mid = 390916712 persistentId = 1530574457 launchID = 19 parent = 2 position = 0.000742301344871521,0.41093921661376953,0.35328769683837891 rotation = 0,0.707106829,0,0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 6 sym = 7 srfN = srfAttach, 2 mass = 0.0500000007 shielded = False temp = 219.39767961443229 tempExt = 210.57436974463351 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = RCSBlock cid = 4292573910 uid = 732522520 mid = 390916712 persistentId = 3886986403 launchID = 19 parent = 2 position = 0.35328772664070129,0.41093921661376953,-0.00074234604835510254 rotation = 0,1,0,-4.37113883E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 7 srfN = srfAttach, 2 mass = 0.0500000007 shielded = False temp = 219.37169189808009 tempExt = 210.33359955276345 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = RCSBlock cid = 4292573846 uid = 1570815530 mid = 390916712 persistentId = 3670610452 launchID = 19 parent = 2 position = -0.00074233114719390869,0.41093921661376953,-0.35328769683837891 rotation = 0,0.707106829,0,-0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 sym = 5 sym = 6 srfN = srfAttach, 2 mass = 0.0500000007 shielded = False temp = 219.36948134172724 tempExt = 210.14235162153076 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = SurfAntenna cid = 4292566722 uid = 3230115261 mid = 390916712 persistentId = 3723509207 launchID = 19 parent = 2 position = -1.4901161193847656E-08,0.60368919372558594,-0.20866668224334717 rotation = -1.68587405E-07,1.71790748E-09,-1.71790748E-09,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 srfN = srfAttach, 2 mass = 0.0149999997 shielded = False temp = 219.20878006381528 tempExt = 210.43886892479463 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = SurfAntenna modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 1500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = fuelTankSmall cid = 4292646088 uid = 1512801978 mid = 390916712 persistentId = 2794932055 launchID = 19 parent = 0 position = 0,-0.74233150482177734,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 0 attN = bottom, 10 mass = 0.125 shielded = False temp = 220.14040230502331 tempExt = 211.2258217056222 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = fuelTankSmall modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } RESOURCE { name = LiquidFuel amount = 90 maxAmount = 90 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 110 maxAmount = 110 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = liquidEngine3 cid = 4292638150 uid = 426562090 mid = 390916712 persistentId = 216756540 launchID = 19 parent = 9 position = 0,-1.5850820541381836,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 0 sqor = 0 sepI = -1 sidx = 0 attm = 0 srfN = , -1 attN = top, 9 attN = bottom, -1 mass = 0.5 shielded = False temp = 219.8964242114306 tempExt = 214.14592945165779 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = liquidEngine3 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True gimbalActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } LockAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } FreeAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } TogglePitchAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleYawAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleRollAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateThrottle isEnabled = True animState = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleJettison isEnabled = True activejettisonName = fairing isJettisoned = True shroudHideOverride = False stagingEnabled = True EVENTS { } ACTIONS { JettisonAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleSurfaceFX isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = RCSBlock cid = 4292602662 uid = 4167292671 mid = 390916712 persistentId = 596846200 launchID = 19 parent = 9 position = -0.66036176681518555,-1.229640007019043,0.00074231624603271484 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 12 sym = 13 sym = 14 srfN = srfAttach, 9 mass = 0.0500000007 shielded = False temp = 220.06584555065291 tempExt = 210.97788749300543 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = RCSBlock cid = 4292602596 uid = 577588601 mid = 390916712 persistentId = 4292792391 launchID = 19 parent = 9 position = 0.0007422715425491333,-1.229640007019043,0.66036170721054077 rotation = 0,0.707106829,0,0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 11 sym = 13 sym = 14 srfN = srfAttach, 9 mass = 0.0500000007 shielded = False temp = 220.0661277803575 tempExt = 210.97739872175816 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = RCSBlock cid = 4292602532 uid = 2215393567 mid = 390916712 persistentId = 415166970 launchID = 19 parent = 9 position = 0.66036176681518555,-1.229640007019043,-0.00074237585067749023 rotation = 0,1,0,-4.37113883E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 11 sym = 12 sym = 14 srfN = srfAttach, 9 mass = 0.0500000007 shielded = False temp = 220.06619947393568 tempExt = 210.97419080572362 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = RCSBlock cid = 4292602468 uid = 2721673563 mid = 390916712 persistentId = 249258763 launchID = 19 parent = 9 position = -0.00074236094951629639,-1.229640007019043,-0.66036170721054077 rotation = 0,0.707106829,0,-0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 11 sym = 12 sym = 13 srfN = srfAttach, 9 mass = 0.0500000007 shielded = False temp = 220.06603657300428 tempExt = 210.97756635975412 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = radialRCSTank cid = 4292574472 uid = 170365486 mid = 390916712 persistentId = 1035387143 launchID = 19 parent = 9 position = -0.82370424270629883,-0.40906620025634766,5.9604644775390625E-08 rotation = 0,0.707106829,0,0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 16 sym = 17 sym = 18 srfN = srfAttach, 9 mass = 0.0199999996 shielded = False temp = 220.15023133299354 tempExt = 210.96471719944128 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 20 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = radialRCSTank cid = 4292449500 uid = 796444441 mid = 390916712 persistentId = 1475308493 launchID = 19 parent = 9 position = 1.4901161193847656E-08,-0.40906620025634766,0.82370418310165405 rotation = 0,1,0,0 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 15 sym = 17 sym = 18 srfN = srfAttach, 9 mass = 0.0199999996 shielded = False temp = 220.15023133299354 tempExt = 210.96471719944128 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 20 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = radialRCSTank cid = 4292449474 uid = 1355364802 mid = 390916712 persistentId = 943438484 launchID = 19 parent = 9 position = 0.82370424270629883,-0.40906620025634766,-1.1920928955078125E-07 rotation = 0,0.707106769,0,-0.707106888 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 15 sym = 16 sym = 18 srfN = srfAttach, 9 mass = 0.0199999996 shielded = False temp = 220.15191133752523 tempExt = 210.97332919791694 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 20 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = radialRCSTank cid = 4292449448 uid = 2976561768 mid = 390916712 persistentId = 3733628109 launchID = 19 parent = 9 position = -1.0430812835693359E-07,-0.40906620025634766,-0.82370418310165405 rotation = 0,0,0,-1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 15 sym = 16 sym = 17 srfN = srfAttach, 9 mass = 0.0199999996 shielded = False temp = 220.15023133299354 tempExt = 210.96471719944128 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 20 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = radialRCSTank cid = 4292449398 uid = 2921300751 mid = 390916712 persistentId = 714641942 launchID = 19 parent = 9 position = -0.59043586254119873,-0.81301021575927734,-0.59043586254119873 rotation = 8.26012467E-08,-0.382683456,-3.42145547E-08,-0.923879564 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 20 sym = 21 sym = 22 srfN = srfAttach, 9 mass = 0.0199999996 shielded = False temp = 220.15133813658375 tempExt = 210.98146373978375 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 20 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = radialRCSTank cid = 4292449370 uid = 2188252170 mid = 390916712 persistentId = 618117823 launchID = 19 parent = 9 position = -0.59043586254119873,-0.81301021575927734,0.59043580293655396 rotation = 3.42145583E-08,-0.923879564,-8.26012467E-08,-0.382683426 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 19 sym = 21 sym = 22 srfN = srfAttach, 9 mass = 0.0199999996 shielded = False temp = 220.15110324178357 tempExt = 210.98126531889952 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 20 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = radialRCSTank cid = 4292449344 uid = 2872818632 mid = 390916712 persistentId = 543712236 launchID = 19 parent = 9 position = 0.59043592214584351,-0.81301021575927734,0.59043580293655396 rotation = -3.42145583E-08,-0.923879564,-8.26012467E-08,0.382683486 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 19 sym = 20 sym = 22 srfN = srfAttach, 9 mass = 0.0199999996 shielded = False temp = 220.15184377121562 tempExt = 210.97916931724015 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 20 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = radialRCSTank cid = 4292449318 uid = 399249271 mid = 390916712 persistentId = 180124764 launchID = 19 parent = 9 position = 0.59043580293655396,-0.81301021575927734,-0.59043586254119873 rotation = -8.26012467E-08,-0.382683426,-3.42145583E-08,0.923879564 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 19 sym = 20 sym = 21 srfN = srfAttach, 9 mass = 0.0199999996 shielded = False temp = 220.15174178624682 tempExt = 210.97921988027619 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 20 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = sensorThermometer cid = 4292564118 uid = 2818457519 mid = 390916712 persistentId = 4217303513 launchID = 19 parent = 0 position = 0.33599838614463806,0.001010894775390625,2.9802322387695313E-08 rotation = -1.82494908E-08,0.707106948,-1.82494979E-08,-0.70710659 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 219.23170755907699 tempExt = 206.89045787099766 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = sensorThermometer modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ResetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = sensorBarometer cid = 4292563508 uid = 3992682790 mid = 390916712 persistentId = 1074744019 launchID = 19 parent = 0 position = 0.23779375851154327,0.056915283203125,0.23779374361038208 rotation = 7.68932917E-09,0.923879743,1.85637052E-08,-0.382683069 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 218.97904808303892 tempExt = 209.91822890459687 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = sensorBarometer modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ResetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4292453394 uid = 2489636973 mid = 390916712 persistentId = 849196317 launchID = 19 parent = 0 position = -0.33634582161903381,0.016598701477050781,2.9802322387695313E-08 rotation = -1,5.60377771E-08,-2.52881108E-07,1.25607405E-14 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 26 sym = 27 sym = 28 srfN = srfAttach, 0 mass = 0.0175000001 shielded = False temp = 216.87710987014395 tempExt = 199.99747554412841 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 258143.08368796835 currentRotation = (-0.504300654, -0.504325092, 0.495655447, -0.495643735) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4292450142 uid = 3603427035 mid = 390916712 persistentId = 830036409 launchID = 19 parent = 0 position = 1.4901161193847656E-08,0.016598701477050781,0.33634579181671143 rotation = -0.707106948,3.96247017E-08,0.70710659,-3.9624684E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 25 sym = 27 sym = 28 srfN = srfAttach, 0 mass = 0.0175000001 shielded = False temp = 217.85787469783972 tempExt = 202.39079792980502 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 258143.08368796835 currentRotation = (-0.591514945, -0.591511071, 0.387442529, -0.387444288) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4292450038 uid = 1131241185 mid = 390916712 persistentId = 3685999808 launchID = 19 parent = 0 position = 0.33634582161903381,0.016598701477050781,-5.9604644775390625E-08 rotation = -2.09169713E-07,1.01112517E-14,1,-5.60377771E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 25 sym = 26 sym = 28 srfN = srfAttach, 0 mass = 0.0175000001 shielded = False temp = 216.96630829553811 tempExt = 200.18999249358819 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 258143.08368796835 currentRotation = (0.495644301, 0.495654792, -0.50432682, 0.504299104) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4292449934 uid = 2436643340 mid = 390916712 persistentId = 2708276047 launchID = 19 parent = 0 position = -4.4703483581542969E-08,0.016598701477050781,-0.33634579181671143 rotation = 0.70710659,-3.9624684E-08,0.707106948,-3.96247017E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 25 sym = 26 sym = 27 srfN = srfAttach, 0 mass = 0.0175000001 shielded = False temp = 217.88626278643181 tempExt = 202.42211095135815 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 258143.08368796835 currentRotation = (0.387444347, 0.387442648, -0.59151125, 0.591514647) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = 4cff5a0f9dd241f4a1858fdf7bb4d2ae persistentId = 4227668755 name = Rocket 2 type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 28.980000026989728 lct = 340420.87694331346 lastUT = 340449.85694334045 distanceTraveled = 603.63331416765141 root = 0 lat = 4.8345064707225991E-08 lon = -23.676688348043992 alt = 1526750.0027073806 hgt = -1 nrm = 0.843875051,0.53650099,0.00644543767 rot = -0.705409229,-0.0516781881,-0.0564419962,0.704657018 CoM = 5.58793545E-08,0.0401502326,-1.67638063E-08 stg = 1 prst = False ref = 146935628 ctrl = True PQSMin = 2 PQSMax = 9 cPch = -0.09600001 cHdg = -1.96 cMod = 0 ORBIT { SMA = 1586750.0485099666 ECC = 2.8395845846207903E-08 INC = 0 LPE = 147.40268473613739 LAN = 270.05268484526277 MNA = -1.0021760830233704 EPH = 340449.85694334045 REF = 3 } PART { name = fuelTankSmall cid = 4292646088 uid = 2281145540 mid = 632570365 persistentId = 3683431172 launchID = 21 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 14 attN = bottom, 1 mass = 0.125 shielded = False temp = 298.96741047546868 tempExt = 297.91711824248296 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = fuelTankSmall (Rocket 2) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } RESOURCE { name = LiquidFuel amount = 90 maxAmount = 90 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 110 maxAmount = 110 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = liquidEngine3 cid = 4292638150 uid = 221086011 mid = 632570365 persistentId = 4046451963 launchID = 21 parent = 0 position = 0,-0.84275054931640625,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 0 sqor = 0 sepI = -1 sidx = 0 attm = 0 srfN = , -1 attN = top, 0 attN = bottom, -1 mass = 0.5 shielded = False temp = 298.93361901233334 tempExt = 298.22603764865607 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = liquidEngine3 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True gimbalActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } LockAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } FreeAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } TogglePitchAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleYawAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleRollAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateThrottle isEnabled = True animState = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleJettison isEnabled = True activejettisonName = fairing isJettisoned = True shroudHideOverride = False stagingEnabled = True EVENTS { } ACTIONS { JettisonAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleSurfaceFX isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = RCSBlock cid = 4292602662 uid = 1071779166 mid = 632570365 persistentId = 4046848501 launchID = 21 parent = 0 position = -0.66036176681518555,-0.48730850219726563,0.00074231624603271484 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 sym = 4 sym = 5 srfN = srfAttach, 0 mass = 0.0500000007 shielded = False temp = 298.9524675406127 tempExt = 298.13211067305366 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = RCSBlock cid = 4292602596 uid = 2239301515 mid = 632570365 persistentId = 2794176719 launchID = 21 parent = 0 position = 0.00074225664138793945,-0.48730850219726563,0.66036170721054077 rotation = 0,0.707106829,0,0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 2 sym = 4 sym = 5 srfN = srfAttach, 0 mass = 0.0500000007 shielded = False temp = 298.95246774698546 tempExt = 298.13211435354486 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = RCSBlock cid = 4292602532 uid = 3583689093 mid = 632570365 persistentId = 3789792908 launchID = 21 parent = 0 position = 0.66036176681518555,-0.48730850219726563,-0.00074237585067749023 rotation = 0,1,0,-4.37113883E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 2 sym = 3 sym = 5 srfN = srfAttach, 0 mass = 0.0500000007 shielded = False temp = 298.95861331744464 tempExt = 298.23728372421766 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = RCSBlock cid = 4292602468 uid = 508174802 mid = 632570365 persistentId = 1536682415 launchID = 21 parent = 0 position = -0.00074237585067749023,-0.48730850219726563,-0.66036170721054077 rotation = 0,0.707106829,0,-0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 2 sym = 3 sym = 4 srfN = srfAttach, 0 mass = 0.0500000007 shielded = False temp = 298.9524675406127 tempExt = 298.13211067305366 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = radialRCSTank cid = 4292574472 uid = 2853291288 mid = 632570365 persistentId = 447699245 launchID = 21 parent = 0 position = -0.82370418310165405,0.33326530456542969,5.9604644775390625E-08 rotation = 0,0.707106829,0,0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 7 sym = 8 sym = 9 srfN = srfAttach, 0 mass = 0.0199999996 shielded = False temp = 298.96053869590645 tempExt = 298.13446032975162 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 20 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = radialRCSTank cid = 4292449500 uid = 3109144113 mid = 632570365 persistentId = 3311481925 launchID = 21 parent = 0 position = 0,0.33326530456542969,0.82370418310165405 rotation = 0,1,0,0 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 6 sym = 8 sym = 9 srfN = srfAttach, 0 mass = 0.0199999996 shielded = False temp = 298.96053903707235 tempExt = 298.13446791562887 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 20 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = radialRCSTank cid = 4292449474 uid = 2881622105 mid = 632570365 persistentId = 3345588073 launchID = 21 parent = 0 position = 0.82370424270629883,0.33326530456542969,-1.1920928955078125E-07 rotation = 0,0.707106769,0,-0.707106888 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 6 sym = 7 sym = 9 srfN = srfAttach, 0 mass = 0.0199999996 shielded = False temp = 298.96534629310713 tempExt = 298.2564492826678 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 20 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = radialRCSTank cid = 4292449448 uid = 2370224503 mid = 632570365 persistentId = 2014467644 launchID = 21 parent = 0 position = -1.1920928955078125E-07,0.33326530456542969,-0.82370418310165405 rotation = 0,0,0,-1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.0199999996 shielded = False temp = 298.96411414375052 tempExt = 298.21552918435873 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 20 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = radialRCSTank cid = 4292449398 uid = 2960133763 mid = 632570365 persistentId = 2740856539 launchID = 21 parent = 0 position = -0.59043586254119873,-0.0706787109375,-0.59043586254119873 rotation = 8.26012467E-08,-0.382683456,-3.42145547E-08,-0.923879564 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 11 sym = 12 sym = 13 srfN = srfAttach, 0 mass = 0.0199999996 shielded = False temp = 298.96057568583802 tempExt = 298.13447793153125 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 20 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = radialRCSTank cid = 4292449370 uid = 337000374 mid = 632570365 persistentId = 696169075 launchID = 21 parent = 0 position = -0.59043586254119873,-0.0706787109375,0.59043580293655396 rotation = 3.42145583E-08,-0.923879564,-8.26012467E-08,-0.382683426 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 10 sym = 12 sym = 13 srfN = srfAttach, 0 mass = 0.0199999996 shielded = False temp = 298.96057963147905 tempExt = 298.13456514924275 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 20 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = radialRCSTank cid = 4292449344 uid = 3066428795 mid = 632570365 persistentId = 2671362148 launchID = 21 parent = 0 position = 0.59043592214584351,-0.0706787109375,0.59043580293655396 rotation = -3.42145583E-08,-0.923879564,-8.26012467E-08,0.382683486 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 10 sym = 11 sym = 13 srfN = srfAttach, 0 mass = 0.0199999996 shielded = False temp = 298.96057536057583 tempExt = 298.13447199300288 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 20 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = radialRCSTank cid = 4292449318 uid = 3243093350 mid = 632570365 persistentId = 2828281869 launchID = 21 parent = 0 position = 0.59043580293655396,-0.0706787109375,-0.59043586254119873 rotation = -8.26012467E-08,-0.382683426,-3.42145583E-08,0.923879564 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 10 sym = 11 sym = 12 srfN = srfAttach, 0 mass = 0.0199999996 shielded = False temp = 298.96752099609535 tempExt = 298.33976586260616 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = MonoPropellant amount = 20 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = probeCoreHex.v2 cid = 4292026878 uid = 146935628 mid = 632570365 persistentId = 3502180007 launchID = 21 parent = 0 position = 0,0.74275016784667969,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 0 attN = top, 15 mass = 0.100000001 shielded = False temp = 298.93828496952881 tempExt = 298.13192295346693 tempExtUnexp = 4 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = probeCoreHex.v2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 340449.85694334045 ExtraDelayScheduledTimeStamp = 0 ExtraDelay = 0 CmdGuid = 9c36985c-1c96-40c4-bafb-d818fa5270f0 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Minmus } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryBankMini cid = 4292709124 uid = 245203085 mid = 632570365 persistentId = 1070283044 launchID = 21 parent = 14 position = 0,1.0302505493164063,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 16 attN = bottom, 14 mass = 0.00999999978 shielded = False temp = 298.90654447437066 tempExt = 298.15137188936825 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = sasModule cid = 4292624612 uid = 1096228277 mid = 632570365 persistentId = 323564652 launchID = 21 parent = 15 position = 0,1.2213621139526367,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 15 attN = top, 17 mass = 0.0500000007 shielded = False temp = 298.93570928916347 tempExt = 298.21156332714008 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = sasModule modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = longAntenna cid = 4292628480 uid = 1286544790 mid = 632570365 persistentId = 2444673177 launchID = 21 parent = 16 position = 0,1.3124732971191406,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 16 mass = 0.00499999989 shielded = False temp = 298.89317461280115 tempExt = 298.38920351654957 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = longAntenna modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992984533 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 2500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = RCSBlock cid = 4292600636 uid = 2781370352 mid = 632570365 persistentId = 2743525950 launchID = 21 parent = 16 position = -0.35328775644302368,1.1541080474853516,0.00074231624603271484 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 19 sym = 20 sym = 21 srfN = srfAttach, 16 mass = 0.0500000007 shielded = False temp = 298.94958857688431 tempExt = 298.1837856687024 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = RCSBlock cid = 4292573974 uid = 3148495527 mid = 632570365 persistentId = 3850900327 launchID = 21 parent = 16 position = 0.00074231624603271484,1.1541080474853516,0.35328763723373413 rotation = 0,0.707106829,0,0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 18 sym = 20 sym = 21 srfN = srfAttach, 16 mass = 0.0500000007 shielded = False temp = 298.954200083741 tempExt = 298.34658295002168 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = RCSBlock cid = 4292573910 uid = 4151075655 mid = 632570365 persistentId = 233098077 launchID = 21 parent = 16 position = 0.35328772664070129,1.1541080474853516,-0.00074237585067749023 rotation = 0,1,0,-4.37113883E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 18 sym = 19 sym = 21 srfN = srfAttach, 16 mass = 0.0500000007 shielded = False temp = 298.95752281800497 tempExt = 298.4396086918851 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = RCSBlock cid = 4292573846 uid = 3540151594 mid = 632570365 persistentId = 3695103724 launchID = 21 parent = 16 position = -0.00074231624603271484,1.1541080474853516,-0.35328769683837891 rotation = 0,0.707106829,0,-0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 18 sym = 19 sym = 20 srfN = srfAttach, 16 mass = 0.0500000007 shielded = False temp = 298.94985265065793 tempExt = 298.22839620956091 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RCSBlock modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = SurfAntenna cid = 4292566722 uid = 2934575711 mid = 632570365 persistentId = 1524787680 launchID = 21 parent = 16 position = 0,1.346858024597168,-0.20866668224334717 rotation = -1.68587405E-07,1.71790748E-09,-1.71790748E-09,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 srfN = srfAttach, 16 mass = 0.0149999997 shielded = False temp = 298.92820693164083 tempExt = 298.33863297648287 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = SurfAntenna modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 1500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = solarPanels2 cid = 4292022912 uid = 3809507067 mid = 632570365 persistentId = 3744766146 launchID = 21 parent = 0 position = -0.43746811151504517,0.49307823181152344,-0.43746805191040039 rotation = 5.92613567E-08,0.382683396,-1.43069599E-07,-0.923879564 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 24 srfN = srfAttach, 0 mass = 0.0250000004 shielded = False temp = 298.84346778812363 tempExt = 297.12622752836859 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 340420.87694331346 currentRotation = (-0.600754678, -0.372955203, 0.372952044, 0.600753725) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels2 cid = 4292021278 uid = 3391126987 mid = 632570365 persistentId = 503394006 launchID = 21 parent = 0 position = 0.43746814131736755,0.49307823181152344,0.43746799230575562 rotation = -1.43069599E-07,-0.923879564,-5.92613496E-08,-0.382683367 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 23 srfN = srfAttach, 0 mass = 0.0250000004 shielded = False temp = 298.89696165132926 tempExt = 297.73213244766464 tempExtUnexp = 4 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 340420.87694331346 currentRotation = (-0.600753605, 0.37295118, -0.372951895, 0.60075736) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = 89af82b41e954e33807a7162272aba04 persistentId = 4257638165 name = Rover type = Probe sit = LANDED landed = True skipGroundPositioning = True vesselSpawning = False launchedFrom = Runway landedAt = KSC displaylandedAt = #autoLOC_300900 splashed = False met = 497.02318517887034 lct = 340672.41694354772 lastUT = 341169.44012872659 distanceTraveled = 21.973725032623054 root = 0 lat = -0.1153803327961085 lon = -74.55872942829221 alt = 65.539685412542894 hgt = 0.740169227 nrm = -0.0021700561,0.0575035512,-0.99834311 rot = 0.135228097,0.0392654836,-0.986533761,-0.0832033753 CoM = 1.04308128E-07,0.00321111362,0.0449863784 stg = 0 prst = False ref = 3110986365 ctrl = True PQSMin = 2 PQSMax = 9 cPch = 0.4 cHdg = 1.288 cMod = 0 ORBIT { SMA = NaN ECC = 1 INC = 0.096909898496460353 LPE = 90 LAN = 224.90190724143861 MNA = 0 EPH = 341169.44012872659 REF = 1 } PART { name = roverBody.v2 cid = 4291866260 uid = 3110986365 mid = 3699055025 persistentId = 3319947879 launchID = 23 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = right, -1 attN = left, -1 attN = back, -1 attN = front, 9 attN = bottom, 8 attN = top, 6 mass = 0.150000006 shielded = False temp = 306.69727609830591 tempExt = 306.7958401183547 tempExtUnexp = 306.79584780711014 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = roverBody.v2 (Rover) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FlagDecal isEnabled = True flagDisplayed = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 341169.44012872659 ExtraDelayScheduledTimeStamp = 0 ExtraDelay = 0 CmdGuid = 61972219-8763-45e5-b49d-3b1c03b542a3 } TargetCommand { TimeStamp = 341169.44012872659 ExtraDelayScheduledTimeStamp = 341015.22012858297 ExtraDelay = 0 CmdGuid = 9a24cb1f-890a-4520-970d-5161adcc5da5 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Land,Kerbin 0 = Flight,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 24.937566788555262 maxAmount = 120 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = roverWheel1 cid = 4291861282 uid = 2345787413 mid = 3699055025 persistentId = 1562408628 launchID = 23 parent = 0 position = -0.89019417762756348,0.64700663089752197,0.40249967575073242 rotation = 0.707106888,2.10734328E-07,2.95028059E-07,-0.707107067 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 2 srfN = srfAttach, 0 mass = 0.075000003 shielded = False temp = 306.71281245854863 tempExt = 307.01881008990387 tempExtUnexp = 307.01869798641036 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = ForceHeaviest rigidAttachment = False flag = Squad/Flags/default rTrf = roverWheel1 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = True autoFriction = True frictionMultiplier = 1.00040996 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1.00048769 autoSpringDamper = True suspensionPos = (-0.31099999, 0.0588295162, 9.53673691E-08) autoBoost = 0.833994925 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100.017082 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 100 brakeInput = 1 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = roverWheel1 cid = 4291861074 uid = 1497424273 mid = 3699055025 persistentId = 2991696497 launchID = 23 parent = 0 position = 0.89019417762756348,0.64700651168823242,0.40249967575073242 rotation = -2.64119365E-07,0.707107067,-0.707106888,-2.41642908E-07 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 srfN = srfAttach, 0 mass = 0.075000003 shielded = False temp = 306.69159009970787 tempExt = 306.73773343142983 tempExtUnexp = 306.73773788235832 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = ForceHeaviest rigidAttachment = False flag = Squad/Flags/default rTrf = roverWheel1 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = True autoFriction = True frictionMultiplier = 1.00040996 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1.00048769 autoSpringDamper = True suspensionPos = (-0.311000198, 0.0632735416, -2.38418369E-08) autoBoost = 0.787999451 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100.017082 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 100 brakeInput = 1 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = roverWheel1 cid = 4291860070 uid = 1988094022 mid = 3699055025 persistentId = 3457942484 launchID = 23 parent = 0 position = -0.88996291160583496,-0.63838422298431396,0.40249979496002197 rotation = 0.707106888,2.10734328E-07,2.95028059E-07,-0.707107067 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 4 srfN = srfAttach, 0 mass = 0.075000003 shielded = False temp = 306.71182655595641 tempExt = 307.02385851044608 tempExtUnexp = 307.02379931587251 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = ForceHeaviest rigidAttachment = False flag = Squad/Flags/default rTrf = roverWheel1 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = True autoFriction = True frictionMultiplier = 1.00040996 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1.00048769 autoSpringDamper = True suspensionPos = (-0.311000079, 0.118077174, 5.96046057E-08) autoBoost = 0.459992826 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100.017082 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 100 brakeInput = 1 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = roverWheel1 cid = 4291859672 uid = 1782643439 mid = 3699055025 persistentId = 3564612432 launchID = 23 parent = 0 position = 0.88996291160583496,-0.63838416337966919,0.40249985456466675 rotation = -2.64119365E-07,0.707107067,-0.707106888,-2.41642908E-07 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 3 srfN = srfAttach, 0 mass = 0.075000003 shielded = False temp = 306.68949616984332 tempExt = 306.73666711285125 tempExtUnexp = 306.73666561184274 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = ForceHeaviest rigidAttachment = False flag = Squad/Flags/default rTrf = roverWheel1 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = True autoFriction = True frictionMultiplier = 1.00040996 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1.00048769 autoSpringDamper = True suspensionPos = (-0.311000198, 0.122531079, -4.76836739E-08) autoBoost = 0.3799977 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100.017082 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 100 brakeInput = 1 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = SurfAntenna cid = 4291855006 uid = 1523313452 mid = 3699055025 persistentId = 370015909 launchID = 23 parent = 0 position = 4.6802277609003795E-08,-0.65364181995391846,-0.25169846415519714 rotation = 2.06257994E-07,0.707106769,-0.707107186,2.06257837E-07 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 srfN = srfAttach, 0 mass = 0.0149999997 shielded = False temp = 306.67380234249833 tempExt = 306.74677954501033 tempExtUnexp = 306.74680367044959 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = SurfAntenna modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 1500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4291847672 uid = 2232768277 mid = 3699055025 persistentId = 51851936 launchID = 23 parent = 0 position = 0,0.84628641605377197,-1.1920928955078125E-07 rotation = 0,0,0,1.00000024 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 7 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 306.70330026379884 tempExt = 306.7407954627713 tempExtUnexp = 306.74077529292566 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 41.562611314300526 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = strutOcto cid = 4291833778 uid = 3587258220 mid = 3699055025 persistentId = 113222753 launchID = 23 parent = 6 position = 0,1.0750210285186768,-1.1920928955078125E-07 rotation = 0,0,0,1.00000024 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, -1 attN = bottom, 6 mass = 0.00100000005 shielded = False temp = 306.72258021683467 tempExt = 306.800822584115 tempExtUnexp = 306.80078613336866 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = strutOcto modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } } PART { name = batteryBankMini cid = 4291844186 uid = 3919386882 mid = 3699055025 persistentId = 21930936 launchID = 23 parent = 0 position = 0,-0.84628641605377197,1.1920928955078125E-07 rotation = 0,0,0,1.00000024 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 306.70805781984075 tempExt = 306.87222950718683 tempExtUnexp = 306.87215909738751 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 41.562611314300526 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = advSasModule cid = 4291759910 uid = 2164737452 mid = 3699055025 persistentId = 1467420384 launchID = 23 parent = 0 position = 0,-2.9802322387695313E-08,-0.42309671640396118 rotation = 0.707106948,0,0,0.707106948 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = top, 0 attN = bottom, -1 mass = 0.100000001 shielded = False temp = 306.70274745648015 tempExt = 306.773352946366 tempExtUnexp = 306.77327814386098 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = advSasModule modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Disabled stagingEnabled = True WheelState = Disabled EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = LgRadialSolarPanel cid = 4291849418 uid = 4091502795 mid = 3699055025 persistentId = 3746175898 launchID = 23 parent = 9 position = 0.41414162516593933,-5.9604644775390625E-08,-0.60597521066665649 rotation = -1.00000036,0,0,-1.6858742E-07 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 11 srfN = srfAttach, 9 mass = 0.0399999991 shielded = False temp = 306.70492543774344 tempExt = 306.75387605641328 tempExtUnexp = 306.7542055488027 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = LgRadialSolarPanel modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 340672.41694354772 currentRotation = (0, 0, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = BROKEN stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = LgRadialSolarPanel cid = 4291758804 uid = 2639090294 mid = 3699055025 persistentId = 1348833200 launchID = 23 parent = 9 position = -0.41414162516593933,0,-0.60597521066665649 rotation = -1.00000036,0,0,-1.6858742E-07 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 10 srfN = srfAttach, 9 mass = 0.0399999991 shielded = False temp = 306.71093960836083 tempExt = 306.94082139948216 tempExtUnexp = 306.94080609416972 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = LgRadialSolarPanel modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 340672.41694354772 currentRotation = (0, 0, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = BROKEN stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = True, 340772.056943641 Brakes = True, 341162.68012872 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = -0.121756576 yaw = -0.176745698 roll = -0.373635173 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = 7be834dccc3f4a5b840d426b343de793 persistentId = 1251815637 name = Dumb Relay type = Probe sit = LANDED landed = True skipGroundPositioning = True vesselSpawning = False launchedFrom = LaunchPad landedAt = LaunchPad displaylandedAt = #autoLOC_300898 splashed = False met = 176.18000016408041 lct = 340993.26012856251 lastUT = 341169.44012872659 distanceTraveled = 1.8351289322551325 root = 0 lat = -0.099000920990845467 lon = -74.556027321746882 alt = 68.019034719327465 hgt = 0.407856882 nrm = 0.707117438,-1.49011612E-07,0.707096398 rot = 0.162401095,-0.852098942,-0.0420678742,-0.495765746 CoM = 1.87079422E-06,0.0168812796,-1.96299516E-06 stg = 0 prst = False ref = 4146783846 ctrl = True PQSMin = 2 PQSMax = 9 cPch = 0 cHdg = 0 cMod = 0 ORBIT { SMA = NaN ECC = 1 INC = 0.096909898496460353 LPE = 90 LAN = 224.90190724143861 MNA = 0 EPH = 341169.44012872659 REF = 1 } PART { name = probeCoreOcto.v2 cid = 4294232176 uid = 4146783846 mid = 4282706219 persistentId = 1314672750 launchID = 24 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = , -1 attN = bottom, 11 attN = top, 9 mass = 0.100000001 shielded = False temp = 305.2983033988711 tempExt = 305.48961163524621 tempExtUnexp = 305.48950840000481 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = probeCoreOcto.v2 (Dumb Relay) modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 341169.44012872659 ExtraDelayScheduledTimeStamp = 0 ExtraDelay = 0 CmdGuid = c452fc91-fce5-4d0c-a1ac-1379a3af56c7 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Land,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 9.9997073170680828 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = solarPanels5 cid = 4294230226 uid = 3592592937 mid = 4282706219 persistentId = 3403644099 launchID = 24 parent = 0 position = -0.33566024899482727,0.032947540283203125,2.0006911682912687E-08 rotation = -3.96246804E-08,-0.707106948,-3.96246982E-08,0.70710659 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 305.30300581067269 tempExt = 305.45744767593743 tempExtUnexp = 305.45736758483093 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 340993.26012856251 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229838 uid = 2640787138 mid = 4282706219 persistentId = 3224165976 launchID = 24 parent = 0 position = -0.23734760284423828,0.032947540283203125,0.23734766244888306 rotation = -5.17721475E-08,-0.382683635,-2.14447375E-08,0.923879445 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 305.31359550713728 tempExt = 305.67905475438511 tempExtUnexp = 305.67770566878426 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 340993.26012856251 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229806 uid = 311929986 mid = 4282706219 persistentId = 450822555 launchID = 24 parent = 0 position = 5.8385197548762712E-16,0.032947540283203125,0.33566021919250488 rotation = -5.60377771E-08,-2.52881108E-07,-1.25607405E-14,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 305.31113348886657 tempExt = 305.640040363465 tempExtUnexp = 305.63944369274515 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 340993.26012856251 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229774 uid = 2849036933 mid = 4282706219 persistentId = 3273480915 launchID = 24 parent = 0 position = 0.23734763264656067,0.032947540283203125,0.23734761774539948 rotation = -5.17721581E-08,0.382683218,2.14447162E-08,0.923879623 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 305.30359503084685 tempExt = 305.47459067970789 tempExtUnexp = 305.47450771582504 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 340993.26012856251 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229742 uid = 3681450661 mid = 4282706219 persistentId = 4041296052 launchID = 24 parent = 0 position = 0.33566024899482727,0.032947540283203125,-4.9351264408414863E-08 rotation = -3.96246982E-08,0.70710665,3.96246804E-08,0.707106888 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 4 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 305.30300581067269 tempExt = 305.45744767593743 tempExtUnexp = 305.45736758483093 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 340993.26012856251 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229710 uid = 4267701722 mid = 4282706219 persistentId = 509101273 launchID = 24 parent = 0 position = 0.23734760284423828,0.032947540283203125,-0.23734769225120544 rotation = -2.14447358E-08,0.923879504,5.1772151E-08,0.382683605 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 305.30300581067269 tempExt = 305.45744767593743 tempExtUnexp = 305.45736758483093 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 340993.26012856251 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229678 uid = 1065957489 mid = 4282706219 persistentId = 1023755744 launchID = 24 parent = 0 position = -4.0013819813111695E-08,0.032947540283203125,-0.33566021919250488 rotation = -1.25607405E-14,1,5.60377771E-08,2.52881108E-07 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 305.30300581067269 tempExt = 305.45744767593743 tempExtUnexp = 305.45736758483093 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 340993.26012856251 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229646 uid = 3342799925 mid = 4282706219 persistentId = 2196007334 launchID = 24 parent = 0 position = -0.23734772205352783,0.032947540283203125,-0.2373475581407547 rotation = 2.14447251E-08,0.923879564,5.17721546E-08,-0.382683367 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 305.30300581067269 tempExt = 305.45744767593743 tempExtUnexp = 305.45736758483093 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 340993.26012856251 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294226184 uid = 547722739 mid = 4282706219 persistentId = 500612084 launchID = 24 parent = 0 position = 0,0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 10 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 305.30725239275574 tempExt = 305.48281518871818 tempExtUnexp = 305.48272369708832 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 199.99414634136164 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongAntenna2 cid = 4294160256 uid = 854310571 mid = 4282706219 persistentId = 2849665525 launchID = 24 parent = 9 position = 0,0.38708209991455078,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = bottom, 9 mass = 0.00999999978 shielded = False temp = 305.31271670551689 tempExt = 305.68364992583355 tempExtUnexp = 305.68285742947245 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992752314 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294224434 uid = 3712806927 mid = 4282706219 persistentId = 3880453389 launchID = 24 parent = 0 position = 0,-0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 srfN = srfAttach, -1 attN = top, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 305.309663613346 tempExt = 305.6082254884783 tempExtUnexp = 305.60796562598347 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { } PARTDATA { } RESOURCE { name = ElectricCharge amount = 199.99414634136164 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } CommNetVessel { controlState = ProbeFull canComm = True } } } } LoaderInfo { ModuleManager v3.1.0.0 = True RemoteTech v1.9.0.0 / v1.9.0 = True RemoteTech = True ModuleManager.3.1.0.dll = True ModuleManager.ConfigCache = True ModuleManager.ConfigSHA = True ModuleManager.Physics = True ModuleManager.TechTree = True } ROSTER { KERBAL { name = Jebediah Kerman gender = Male type = Crew trait = Pilot brave = 0.5 dumb = 0.5 badS = True veteran = True tour = False state = Assigned inactive = False inactiveTimeEnd = 0 gExperienced = 0 outDueToG = False ToD = 0 idx = 0 extraXP = 0 suit = Default hero = True CAREER_LOG { flight = 0 } FLIGHT_LOG { flight = 0 0 = Flight,Kerbin 0 = Suborbit,Kerbin 0 = Orbit,Kerbin } } KERBAL { name = Bill Kerman gender = Male type = Crew trait = Engineer brave = 0.5 dumb = 0.800000012 badS = False veteran = True tour = False state = Available inactive = False inactiveTimeEnd = 0 gExperienced = 0 outDueToG = False ToD = 0 idx = -1 extraXP = 0 suit = Default hero = True CAREER_LOG { flight = 0 } FLIGHT_LOG { flight = 0 } } KERBAL { name = Bob Kerman gender = Male type = Crew trait = Scientist brave = 0.300000012 dumb = 0.100000001 badS = False veteran = True tour = False state = Available inactive = False inactiveTimeEnd = 0 gExperienced = 0 outDueToG = False ToD = 0 idx = -1 extraXP = 0 suit = Default hero = True CAREER_LOG { flight = 0 } FLIGHT_LOG { flight = 0 } } KERBAL { name = Valentina Kerman gender = Female type = Crew trait = Pilot brave = 0.550000012 dumb = 0.400000006 badS = True veteran = True tour = False state = Available inactive = False inactiveTimeEnd = 0 gExperienced = 0 outDueToG = False ToD = 0 idx = -1 extraXP = 0 suit = Default hero = True CAREER_LOG { flight = 0 } FLIGHT_LOG { flight = 0 } } KERBAL { name = Bilgan Kerman gender = Male type = Unowned trait = Tourist brave = 0.662962794 dumb = 0.0202752613 badS = False veteran = False tour = False state = Assigned inactive = False inactiveTimeEnd = 0 gExperienced = 0 outDueToG = False ToD = 0 idx = -1 extraXP = 0 suit = Default hero = False CAREER_LOG { flight = 0 } FLIGHT_LOG { flight = 0 } } } MESSAGESYSTEM { flash = False } } ================================================ FILE: saves/RemoteTech KSP1_8 Testbed/RemoteTech_Settings.cfg ================================================ RemoteTechSettings { RemoteTechEnabled = True CommNetEnabled = False ConsumptionMultiplier = 1 RangeMultiplier = 1 MissionControlRangeMultiplier = 1 OmniRangeClampFactor = 100 DishRangeClampFactor = 1000 ActiveVesselGuid = 35b89a0d664c43c6bec8d0840afc97b2 NoTargetGuid = 00000000-0000-0000-0000-000000000000 SpeedOfLight = 300000000 MapFilter = Omni, Dish, MultiPath EnableSignalDelay = True RangeModelType = Standard MultipleAntennaMultiplier = 0 ThrottleTimeWarp = True ThrottleZeroOnNoConnection = True HideGroundStationsBehindBody = True ControlAntennaWithoutConnection = False UpgradeableMissionControlAntennas = True HideGroundStationsOnDistance = True ShowMouseOverInfoGroundStations = True AutoInsertKaCAlerts = True FCLeadTime = 180 FCOffAfterExecute = False DistanceToHideGroundStations = 30000000 DishConnectionColor = 0.996078372,0.701960802,0.0313725509,1 OmniConnectionColor = 0.552941203,0.517647088,0.407843113,1 ActiveConnectionColor = 0.65882349,1,0.0156862792,1 RemoteStationColorDot = 0.996078014,0,0,1 DirectConnectionColor = 0,0.749000013,0.952000022,1 SignalRelayEnabled = False IgnoreLineOfSight = False FCWinPosX = 100 FCWinPosY = 100 FlightTermP = 2 FlightTermI = 0.80000000000000004 FlightTermD = 1 GroundStations { STATION { Guid = 5105f5a9-d628-41c6-ad4b-21154e8fc488 Name = Mission Control Latitude = -0.13133150339126601 Longitude = -74.594841003417997 Height = 75 Body = 1 MarkColor = 0.996078014,0,0,1 Antennas { ANTENNA { Omni = 75000000 Dish = 0 CosAngle = 1 UpgradeableOmni = 4E+06;3.0E+07;7.5E+07 UpgradeableDish = UpgradeableCosAngle = } } } } PreSets { PRESETS = RemoteTech/Default_Settings/RemoteTechSettings } } ================================================ FILE: saves/RemoteTech KSP1_8 Testbed/Ships/SPH/Rover (Original).craft ================================================ ship = Rover (Original) version = 1.8.1 description = type = SPH size = 2.86754107,1.3399229,2.22747803 steamPublishedFileId = 0 persistentId = 193290358 rot = 0,0,0,0 missionFlag = Squad/Flags/default vesselType = Debris OverrideDefault = False,False,False,False OverrideActionControl = 0,0,0,0 OverrideAxisControl = 0,0,0,0 OverrideGroupNames = ,,, PART { part = roverBody.v2_4294276440 partName = Part persistentId = 2972925997 pos = 0,5,0 attPos = 0,0,0 attPos0 = 0,5,0 rot = 0.707106829,0,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0.707106769,0,0,0.707106769 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = roverWheel1_4294272788 link = roverWheel1_4294272580 link = roverWheel1_4294272150 link = roverWheel1_4294271752 link = batteryBankMini_4294269054 link = batteryBankMini_4294268776 link = sasModule_4294263446 link = batteryBankMini_4294262868 link = seatExternalCmd_4294261846 link = LgRadialSolarPanel_4294261058 link = SurfAntenna_4294188096 attN = right,batteryBankMini_4294268776_0.510226011|0|0_1|0|0_0.510226011|0|0_1|0|0 attN = left,batteryBankMini_4294269054_-0.510226011|0|0_-1|0|0_-0.510226011|0|0_-1|0|0 attN = back,Null_0_0|0|0.224069998_0|0|1_0|0|0.224069998_0|0|1 attN = front,Null_0_0|0|-0.224069998_0|0|-1_0|0|-0.224069998_0|0|-1 attN = bottom,batteryBankMini_4294262868_0|-0.746285021|0_0|-1|0_0|-0.746285021|0_0|-1|0 attN = top,sasModule_4294263446_0|0.746285021|0_0|1|0_0|0.746285021|0_0|1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False activeControlPointName = _default stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FlagDecal isEnabled = True flagDisplayed = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 120 maxAmount = 120 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = roverWheel1_4294272788 partName = Part persistentId = 2172886316 pos = -0.890599847,4.59750032,0.642272711 attPos = 0,0,0 attPos0 = -0.890599847,0.642271996,0.402499676 rot = -1.1920929E-07,-5.96046732E-08,3.57627954E-07,-1.00000012 attRot = -0.707106769,0,0,0.707106769 attRot0 = 0.707106769,2.10734271E-07,2.95028002E-07,-0.707106888 mir = 1,1,1 symMethod = Mirror autostrutMode = ForceHeaviest rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = roverWheel1_4294272580 srfN = srfAttach,roverBody.v2_4294276440,collider.collider,0.386656851|0.402500004|0,1.25|0|0,0.386656851|0.402500004|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = False autoFriction = True frictionMultiplier = 1 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 autoSpringDamper = True suspensionPos = (-1, -1, -1) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorEnable { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorDisable { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 50 brakeInput = 0 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = roverWheel1_4294272580 partName = Part persistentId = 32297510 pos = 0.890599847,4.59750032,0.642272711 attPos = 0,0,0 attPos0 = 0.890599847,0.642271996,0.402499676 rot = -3.57627869E-07,1.00000012,1.1920929E-07,1.58932494E-08 attRot = -0.707106769,0,0,0.707106769 attRot0 = -2.64119308E-07,0.707106888,-0.707106769,-2.41642852E-07 mir = 1,1,1 symMethod = Mirror autostrutMode = ForceHeaviest rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = roverWheel1_4294272788 srfN = srfAttach,roverBody.v2_4294276440,collider.collider,0.386656851|0.402500004|0,1.25|0|0,0.386656851|0.402500004|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = False autoFriction = True frictionMultiplier = 1 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 autoSpringDamper = True suspensionPos = (-1, -1, -1) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorEnable { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorDisable { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 50 brakeInput = 0 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = roverWheel1_4294272150 partName = Part persistentId = 3181211801 pos = -0.89180553,4.59750032,-0.638064981 attPos = 0,0,0 attPos0 = -0.89180553,-0.638064146,0.402499795 rot = -1.1920929E-07,-5.96046732E-08,3.57627954E-07,-1.00000012 attRot = -0.707106769,0,0,0.707106769 attRot0 = 0.707106769,2.10734271E-07,2.95028002E-07,-0.707106888 mir = 1,1,1 symMethod = Mirror autostrutMode = ForceHeaviest rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = roverWheel1_4294271752 srfN = srfAttach,roverBody.v2_4294276440,collider.collider,0.386656851|0.402500004|0,1.25|0|0,0.386656851|0.402500004|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = False autoFriction = True frictionMultiplier = 1 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 autoSpringDamper = True suspensionPos = (-1, -1, -1) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorEnable { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorDisable { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 50 brakeInput = 0 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = roverWheel1_4294271752 partName = Part persistentId = 865255589 pos = 0.89180553,4.59750032,-0.63806504 attPos = 0,0,0 attPos0 = 0.89180553,-0.638064206,0.402499855 rot = -3.57627869E-07,1.00000012,1.1920929E-07,1.58932494E-08 attRot = -0.707106769,0,0,0.707106769 attRot0 = -2.64119308E-07,0.707106888,-0.707106769,-2.41642852E-07 mir = 1,1,1 symMethod = Mirror autostrutMode = ForceHeaviest rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = roverWheel1_4294272150 srfN = srfAttach,roverBody.v2_4294276440,collider.collider,0.386656851|0.402500004|0,1.25|0|0,0.386656851|0.402500004|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = False autoFriction = True frictionMultiplier = 1 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 autoSpringDamper = True suspensionPos = (-1, -1, -1) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorEnable { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorDisable { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 50 brakeInput = 0 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = batteryBankMini_4294269054 partName = Part persistentId = 2038843760 pos = -0.610225976,5,0 attPos = 0,0,0 attPos0 = -0.610225976,0,0 rot = 0.50000006,0.50000006,-0.50000006,0.50000006 attRot = 0,0,-0.707106709,0.707106709 attRot0 = 0,0,-0.707106829,0.707106829 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 attN = top,roverBody.v2_4294276440_0|0.100000001|0_0|1|0_0|0.100000001|0_0|1|0 attN = bottom,Null_0_0|-0.100000001|0_0|-1|0_0|-0.100000001|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = batteryBankMini_4294268776 partName = Part persistentId = 777144777 pos = 0.610225976,5,0 attPos = 0,0,0 attPos0 = 0.610225976,0,0 rot = 0.50000006,0.50000006,-0.50000006,0.50000006 attRot = 0,0,-0.707106769,0.707106769 attRot0 = 0,0,-0.707106829,0.707106829 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 attN = top,Null_0_0|0.100000001|0_0|1|0_0|0.100000001|0_0|1|0 attN = bottom,roverBody.v2_4294276440_0|-0.100000001|0_0|-1|0_0|-0.100000001|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = sasModule_4294263446 partName = Part persistentId = 3777922077 pos = 0,5,0.837398112 attPos = 0,0,0 attPos0 = 0,0.837396085,-1.1920929E-07 rot = 0.707106829,0,0,0.707106829 attRot = 0,0,0,0.99999994 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 attN = bottom,roverBody.v2_4294276440_0|-0.0911109|0_0|-0.5|0_0|-0.0911109|0_0|-0.5|0 attN = top,Null_0_0|0.0911109|0_0|0.5|0_0|0.0911109|0_0|0.5|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = batteryBankMini_4294262868 partName = Part persistentId = 3290375398 pos = 0,5,-0.846287191 attPos = 0,0,0 attPos0 = 0,-0.846285164,1.1920929E-07 rot = 0.707106829,0,0,0.707106829 attRot = 0,0,0,0.99999994 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 attN = top,roverBody.v2_4294276440_0|0.100000001|0_0|1|0_0|0.100000001|0_0|1|0 attN = bottom,Null_0_0|-0.100000001|0_0|-1|0_0|-0.100000001|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = seatExternalCmd_4294261846 partName = Part persistentId = 645454162 pos = 9.84285151E-08,5.40167189,0.475294918 attPos = 0,0,0 attPos0 = 9.84285151E-08,0.475294203,-0.401672035 rot = -0.70710659,2.0516562E-07,2.0516579E-07,-0.707107067 attRot = 0,0,0,1 attRot0 = 3.27825518E-07,2.90148108E-07,1.13686824E-13,-1 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,roverBody.v2_4294276440,collider.collider,0|0|0.200000003,0|0|-1,0|0|0.200000003 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = KerbalSeat isEnabled = True ejectionForcePercentage = 0 stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } LeaveSeat { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } } PART { part = LgRadialSolarPanel_4294261058 partName = Part persistentId = 1271514461 pos = 1.7614795E-08,5.20148993,-0.231240094 attPos = 0,0,0 attPos0 = 1.7614795E-08,-0.231239796,-0.201489925 rot = -0.50000006,0.500000358,0.499999732,0.50000006 attRot = 0,0,-0.707106709,0.707106709 attRot0 = -0.707106829,0.707106829,-4.47034836E-07,-2.98023224E-08 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,roverBody.v2_4294276440,collider.collider,0|0|0,0|0|1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, 0, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = SurfAntenna_4294188096 partName = Part persistentId = 1025716237 pos = 4.66264112E-08,5.25145483,-0.643113256 attPos = 0,0,0 attPos0 = 4.66264112E-08,-0.643112898,-0.2514548 rot = 2.90146772E-07,1.00000012,-3.27825546E-07,-1.70530257E-13 attRot = 0,0,0,1 attRot0 = 2.05164852E-07,0.70710659,-0.707107067,2.05164625E-07 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,roverBody.v2_4294276440,collider.collider,0|-0.0500000007|0,0|-1|0,0|-0.0500000007|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 1500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ================================================ FILE: saves/RemoteTech KSP1_8 Testbed/Ships/SPH/Rover (Original).loadmeta ================================================ shipName = Rover (Original) description = version = 1.8.1 partCount = 12 stageCount = 1 totalCost = 5380 totalMass = 0.63499999 shipSize = 2.86754107,1.3399229,2.22747803 type = SPH duplicatedParts = False steamPublishedFileId = 0 partNames = roverBody.v2 partNames = roverWheel1 partNames = batteryBankMini partNames = sasModule partNames = seatExternalCmd partNames = LgRadialSolarPanel partNames = SurfAntenna partModules = ModuleCommand partModules = ModuleSAS partModules = ModuleKerbNetAccess partModules = FlagDecal partModules = ModulePartVariants partModules = ModuleSPU partModules = ModuleRTAntennaPassive partModules = ModuleTripLogger partModules = ModuleWheelBase partModules = ModuleWheelSuspension partModules = ModuleWheelSteering partModules = ModuleWheelMotor partModules = ModuleWheelBrakes partModules = ModuleWheelDamage partModules = FXModuleLookAtConstraint partModules = ModuleTestSubject partModules = ModuleReactionWheel partModules = KerbalSeat partModules = ModuleDeployableSolarPanel partModules = ModuleRTAntenna partModules = ModuleSPUPassive partModules = ModuleRTDataTransmitter saveMD5 = 28d3c76d4e62856a2fd9e4037b366821 ================================================ FILE: saves/RemoteTech KSP1_8 Testbed/Ships/SPH/Rover (RT).craft ================================================ ship = Rover (RT) version = 1.8.1 description = type = SPH size = 2.8669467,1.33996201,2.28858995 steamPublishedFileId = 0 persistentId = 193290358 rot = 0,0,0,0 missionFlag = Squad/Flags/default vesselType = Debris OverrideDefault = False,False,False,False OverrideActionControl = 0,0,0,0 OverrideAxisControl = 0,0,0,0 OverrideGroupNames = ,,, PART { part = roverBody.v2_4294276440 partName = Part persistentId = 66693451 pos = -0.0727455467,5.06244993,0.00783211458 attPos = 0,0,0 attPos0 = -0.0727455467,5.06244993,0.00783211458 rot = 0,-0.707106769,-0.707106769,0 attRot = 0,-0.999999881,0,0 attRot0 = 0.707106769,0,0,0.707106769 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = batteryBankMini_4294269054 link = batteryBankMini_4294268776 link = sasModule_4294263446 link = batteryBankMini_4294262868 link = seatExternalCmd_4294261846 link = SurfAntenna_4294188096 link = LgRadialSolarPanel_4294261058 link = roverWheel1_4294272580 link = roverWheel1_4293414126 link = roverWheel1_4294272150 link = roverWheel1_4293413170 attN = right,batteryBankMini_4294268776_0.510226011|0|0_1|0|0_0.510226011|0|0_1|0|0 attN = left,batteryBankMini_4294269054_-0.510226011|0|0_-1|0|0_-0.510226011|0|0_-1|0|0 attN = back,Null_0_0|0|0.224069998_0|0|1_0|0|0.224069998_0|0|1 attN = front,Null_0_0|0|-0.224069998_0|0|-1_0|0|-0.224069998_0|0|-1 attN = bottom,batteryBankMini_4294262868_0|-0.746285021|0_0|-1|0_0|-0.746285021|0_0|-1|0 attN = top,sasModule_4294263446_0|0.746285021|0_0|1|0_0|0.746285021|0_0|1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False activeControlPointName = _default stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FlagDecal isEnabled = True flagDisplayed = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 120 maxAmount = 120 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = batteryBankMini_4294269054 partName = Part persistentId = 1622126489 pos = 0.537480295,5.06244993,0.00783211458 attPos = 0,0,0 attPos0 = -0.610225976,0,0 rot = 0.5,-0.5,-0.5,-0.5 attRot = 0,0,-0.707106709,0.707106709 attRot0 = 0,0,-0.707106829,0.707106829 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 attN = top,roverBody.v2_4294276440_0|0.100000001|0_0|1|0_0|0.100000001|0_0|1|0 attN = bottom,Null_0_0|-0.100000001|0_0|-1|0_0|-0.100000001|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = batteryBankMini_4294268776 partName = Part persistentId = 1824699853 pos = -0.682971418,5.06244993,0.00783211458 attPos = 0,0,0 attPos0 = 0.610225976,0,0 rot = 0.5,-0.5,-0.5,-0.5 attRot = 0,0,-0.707106769,0.707106769 attRot0 = 0,0,-0.707106829,0.707106829 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 attN = top,Null_0_0|0.100000001|0_0|1|0_0|0.100000001|0_0|1|0 attN = bottom,roverBody.v2_4294276440_0|-0.100000001|0_0|-1|0_0|-0.100000001|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = sasModule_4294263446 partName = Part persistentId = 559141092 pos = -0.0727455467,5.06244993,0.84523052 attPos = 0,0,0 attPos0 = 0,0.837396085,-1.1920929E-07 rot = 0,-0.707106769,-0.707106769,0 attRot = 0,0,0,0.99999994 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 attN = bottom,roverBody.v2_4294276440_0|-0.0911109|0_0|-0.5|0_0|-0.0911109|0_0|-0.5|0 attN = top,Null_0_0|0.0911109|0_0|0.5|0_0|0.0911109|0_0|0.5|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = batteryBankMini_4294262868 partName = Part persistentId = 4084239638 pos = -0.0727455467,5.06244993,-0.838455379 attPos = 0,0,0 attPos0 = 0,-0.846285164,1.1920929E-07 rot = 0,-0.707106769,-0.707106769,0 attRot = 0,0,0,0.99999994 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 attN = top,roverBody.v2_4294276440_0|0.100000001|0_0|1|0_0|0.100000001|0_0|1|0 attN = bottom,Null_0_0|-0.100000001|0_0|-1|0_0|-0.100000001|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = seatExternalCmd_4294261846 partName = Part persistentId = 3390202673 pos = -0.0727454275,5.46415997,0.412194192 attPos = 0,0,0 attPos0 = -1.19209275E-07,0.404362082,0.401710033 rot = -0.707107008,2.06853841E-07,2.0685367E-07,-0.707106531 attRot = 0,0,0,1 attRot0 = -1.27897692E-13,-1,3.27825546E-07,-2.9253539E-07 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,roverBody.v2_4294276440,collider.collider,0|0|0.200000003,0|0|-1,0|0|0.200000003 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = KerbalSeat isEnabled = True ejectionForcePercentage = 0 stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } LeaveSeat { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } } PART { part = SurfAntenna_4294188096 partName = Part persistentId = 1587311934 pos = -0.0727455169,5.31406116,-0.555247247 attPos = 0,0,0 attPos0 = -2.98023188E-08,-0.563079476,0.25161159 rot = 2.9253539E-07,1,3.27825546E-07,1.27897692E-13 attRot = 0,0,0,1 attRot0 = -0.70710659,2.06853841E-07,-2.0685367E-07,-0.707107067 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,roverBody.v2_4294276440,collider.collider,0|-0.0500000007|0,0|-1|0,0|-0.0500000007|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 1500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = LgRadialSolarPanel_4294261058 partName = Part persistentId = 4144163608 pos = -0.0727455467,5.26393652,-0.21830909 attPos = 0,0,0 attPos0 = 0,-0.226141214,0.201486543 rot = -0.499999672,0.49999997,0.5,0.500000298 attRot = 0,0,-0.707106709,0.707106709 attRot0 = 2.98023224E-08,4.47034836E-07,0.707106829,-0.707106829 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,roverBody.v2_4294276440,collider.collider,0|0|0,0|0|1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, 0, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = roverWheel1_4294272580 partName = Part persistentId = 2266149752 pos = 0.818762302,4.65994978,0.646018744 attPos = 0,0,0 attPos0 = -0.891507983,0.638186693,-0.402500093 rot = -2.98023252E-07,-1,0,0 attRot = -0.707106709,0,0,-0.707106709 attRot0 = 0.707106829,-2.10734257E-07,2.10734257E-07,0.707106829 mir = 1,1,1 symMethod = Mirror autostrutMode = ForceHeaviest rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = roverWheel1_4293414126 srfN = srfAttach,roverBody.v2_4294276440,collider.collider,0.386656851|0.402500004|0,1.25|0|0,0.386656851|0.402500004|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = False autoFriction = True frictionMultiplier = 1 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 autoSpringDamper = True suspensionPos = (-1, -1, -1) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorEnable { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorDisable { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 50 brakeInput = 0 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = roverWheel1_4293414126 partName = Part persistentId = 1718355322 pos = -0.964253426,4.65994978,0.646018624 attPos = 0,0,0 attPos0 = 0.891507983,0.638186574,-0.402500093 rot = -1.49011612E-07,-4.37114664E-08,-2.9802311E-07,-1 attRot = -0.707106709,0,0,-0.707106709 attRot0 = -1.79825506E-07,-0.707106888,-0.70710665,2.41642852E-07 mir = 1,1,1 symMethod = Mirror autostrutMode = ForceHeaviest rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = roverWheel1_4294272580 srfN = srfAttach,roverBody.v2_4294276440,collider.collider,0.386656851|0.402500004|0,1.25|0|0,0.386656851|0.402500004|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = False autoFriction = True frictionMultiplier = 1 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 autoSpringDamper = True suspensionPos = (-1, -1, -1) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorEnable { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorDisable { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 50 brakeInput = 0 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = roverWheel1_4294272150 partName = Part persistentId = 586383473 pos = 0.817274094,4.65994978,-0.695430934 attPos = 0,0,0 attPos0 = -0.890019774,-0.703263044,-0.402500182 rot = -2.98023252E-07,-1,0,0 attRot = -0.707106709,0,0,-0.707106709 attRot0 = 0.707106829,-2.10734257E-07,2.10734257E-07,0.707106829 mir = 1,1,1 symMethod = Mirror autostrutMode = ForceHeaviest rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = roverWheel1_4293413170 srfN = srfAttach,roverBody.v2_4294276440,collider.collider,0.386656851|0.402500004|0,1.25|0|0,0.386656851|0.402500004|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = False autoFriction = True frictionMultiplier = 1 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 autoSpringDamper = True suspensionPos = (-1, -1, -1) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorEnable { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorDisable { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 50 brakeInput = 0 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = roverWheel1_4293413170 partName = Part persistentId = 873168535 pos = -0.962765217,4.65994978,-0.695431173 attPos = 0,0,0 attPos0 = 0.890019774,-0.703263283,-0.402500182 rot = -1.49011612E-07,-4.37114664E-08,-2.9802311E-07,-1 attRot = -0.707106709,0,0,-0.707106709 attRot0 = -1.79825506E-07,-0.707106888,-0.70710665,2.41642852E-07 mir = 1,1,1 symMethod = Mirror autostrutMode = ForceHeaviest rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = roverWheel1_4294272150 srfN = srfAttach,roverBody.v2_4294276440,collider.collider,0.386656851|0.402500004|0,1.25|0|0,0.386656851|0.402500004|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = False autoFriction = True frictionMultiplier = 1 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 autoSpringDamper = True suspensionPos = (-1, -1, -1) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorEnable { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorDisable { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 50 brakeInput = 0 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ================================================ FILE: saves/RemoteTech KSP1_8 Testbed/Ships/SPH/Rover (RT).loadmeta ================================================ shipName = Rover (RT) description = version = 1.8.1 partCount = 12 stageCount = 1 totalCost = 5380 totalMass = 0.63499999 shipSize = 2.8669467,1.33996201,2.28858995 type = SPH duplicatedParts = False steamPublishedFileId = 0 partNames = roverBody.v2 partNames = batteryBankMini partNames = sasModule partNames = seatExternalCmd partNames = SurfAntenna partNames = LgRadialSolarPanel partNames = roverWheel1 partModules = ModuleCommand partModules = ModuleSAS partModules = ModuleKerbNetAccess partModules = FlagDecal partModules = ModulePartVariants partModules = ModuleSPU partModules = ModuleRTAntennaPassive partModules = ModuleTripLogger partModules = ModuleReactionWheel partModules = KerbalSeat partModules = ModuleRTAntenna partModules = ModuleSPUPassive partModules = ModuleRTDataTransmitter partModules = ModuleDeployableSolarPanel partModules = ModuleWheelBase partModules = ModuleWheelSuspension partModules = ModuleWheelSteering partModules = ModuleWheelMotor partModules = ModuleWheelBrakes partModules = ModuleWheelDamage partModules = FXModuleLookAtConstraint partModules = ModuleTestSubject saveMD5 = 2648c40e27c067117154bbfb4915dff0 ================================================ FILE: saves/RemoteTech KSP1_8 Testbed/Ships/SPH/Rover 2.craft ================================================ ship = Rover 2 version = 1.8.1 description = type = SPH size = 3.08393002,2.02934837,4.92659855 steamPublishedFileId = 0 persistentId = 3636214346 rot = 0,0,0,0 missionFlag = Squad/Flags/default vesselType = Debris OverrideDefault = False,False,False,False OverrideActionControl = 0,0,0,0 OverrideAxisControl = 0,0,0,0 OverrideGroupNames = ,,, PART { part = mk1pod.v2_4293343322 partName = Part persistentId = 455798222 pos = 1.54247737,5.66203547,0.536751032 attPos = 0,0,0 attPos0 = 1.54247737,5.66203547,0.536751032 rot = 0.707106829,0,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0.707106769,0,0,0.707106769 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = batteryBank_4293334410 attN = bottom,batteryBank_4293334410_0|-0.40503791|0_0|-1|0_0|-0.40503791|0_0|-1|0 attN = top,Null_0_0|0.642375588|0_0|1|0_0|0.642375588|0_0|1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False activeControlPointName = _default stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleColorChanger isEnabled = True animState = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = Light wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ResetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceContainer isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { CollectAllAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleConductionMultiplier isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleLiftingSurface isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FlagDecal isEnabled = True flagDisplayed = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 50 maxAmount = 50 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = MonoPropellant amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = batteryBank_4293334410 partName = Part persistentId = 1941761120 pos = 1.54247737,5.66203547,0.0208576322 attPos = 0,0,0 attPos0 = 0,-0.51589334,5.96046448E-08 rot = 0.707106829,0,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = ServiceBay.125.v2_4294513824 link = roverWheel1_4293337834 link = roverWheel1_4294504996 attN = top,mk1pod.v2_4293343322_0|0.110855304|0_0|1|0_0|0.110855304|0_0|1|0 attN = bottom,ServiceBay.125.v2_4294513824_0|-0.110855304|0_0|-1|0_0|-0.110855304|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 1000 maxAmount = 1000 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = ServiceBay.125.v2_4294513824 partName = Part persistentId = 2116481487 pos = 1.54247737,5.66203547,-0.389998078 attPos = 0,0,0 attPos0 = 0,-0.410855085,5.96045631E-08 rot = 0.707106829,0,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = probeCoreOcto.v2_4293332840 link = Mk1FuselageStructural_4293339798 link = SurfAntenna_4293331470 attN = top2,probeCoreOcto.v2_4293332840_0|0.25|0_0|-1|0_0|0.25|0_0|-1|0 attN = bottom2,Null_0_0|-0.25|0_0|1|0_0|-0.25|0_0|1|0 attN = top,batteryBank_4293334410_0|0.300000012|0_0|1|0_0|0.300000012|0_0|1|0 attN = bottom,Mk1FuselageStructural_4293339798_0|-0.300000012|0_0|-1|0_0|-0.300000012|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = True animTime = 0 animSpeed = -10 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { deployPercent { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } } UPGRADESAPPLIED { } } MODULE { name = ModuleCargoBay isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleConductionMultiplier isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = probeCoreOcto.v2_4293332840 partName = Part persistentId = 2183811907 pos = 1.54247737,5.66203547,-0.327079892 attPos = 0,0,0 attPos0 = 0,0.0629181564,0 rot = 0.707106829,0,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 attN = bottom,Null_0_0|-0.187081799|0_0|-1|0_0|-0.187081799|0_0|-1|0 attN = top,ServiceBay.125.v2_4294513824_0|0.187081799|0_0|1|0_0|0.187081799|0_0|1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False activeControlPointName = _default stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = Mk1FuselageStructural_4293339798 partName = Part persistentId = 824991627 pos = 1.54247737,5.66203547,-1.6274991 attPos = 0,0,0 attPos0 = 0,-1.237499,1.19209133E-07 rot = 0.707106829,0,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = roverWheel1_4293331068 link = roverWheel1_4293330670 link = LgRadialSolarPanel_4293333480 link = LgRadialSolarPanel_4294521676 link = roverWheel1_4294504174 link = roverWheel1_4294503556 link = advSasModule_4293253062 attN = top,ServiceBay.125.v2_4294513824_0|0.9375|0_0|1|0_0|0.9375|0_0|1|0 attN = bottom,advSasModule_4293253062_0|-0.9375|0_0|-1|0_0|-0.9375|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } } PART { part = roverWheel1_4293331068 partName = Part persistentId = 2357548680 pos = 2.54247737,4.86203432,-1.02750111 attPos = -0.0038022995,0.438980728,0.397500217 attPos0 = 1.0038023,0.161016554,0.402499616 rot = -2.98023188E-08,1.00000012,0,2.98023046E-08 attRot = -0.707106709,0,0,-0.707106709 attRot0 = 4.21468478E-08,-0.707106829,0.707106829,0 mir = 1,1,1 symMethod = Mirror autostrutMode = ForceHeaviest rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = roverWheel1_4293330670 srfN = srfAttach,Mk1FuselageStructural_4293339798,BoxCOL,0.386656851|0.402500004|0,1.25|0|0,0.386656851|0.402500004|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = False autoFriction = True frictionMultiplier = 1 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 autoSpringDamper = True suspensionPos = (-1, -1, -1) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorEnable { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorDisable { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 50 brakeInput = 0 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = roverWheel1_4293330670 partName = Part persistentId = 544133363 pos = 0.542477369,4.8620348,-1.02750039 attPos = 0.0038022995,0.438981444,0.397500098 attPos0 = -1.0038023,0.161016554,0.402499497 rot = 0,-7.35136965E-08,2.98023206E-08,-1.00000012 attRot = -0.707106709,0,0,-0.707106709 attRot0 = 0.707106769,-3.09086232E-08,7.30554603E-08,-0.707106888 mir = 1,1,1 symMethod = Mirror autostrutMode = ForceHeaviest rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = roverWheel1_4293331068 srfN = srfAttach,Mk1FuselageStructural_4293339798,BoxCOL,0.386656851|0.402500004|0,1.25|0|0,0.386656851|0.402500004|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = False autoFriction = True frictionMultiplier = 1 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 autoSpringDamper = True suspensionPos = (-1, -1, -1) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorEnable { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorDisable { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 50 brakeInput = 0 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = LgRadialSolarPanel_4293333480 partName = Part persistentId = 4234358737 pos = 1.23748732,6.19029522,-1.59337592 attPos = 0,0,0 attPos0 = -0.304990053,0.0341228247,-0.528257549 rot = -0.183012813,0.683012903,0.683012545,-0.183012664 attRot = 0,0,0,1 attRot0 = -1.04308114E-07,0.965925813,-2.38418551E-07,-0.258819073 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = LgRadialSolarPanel_4294521676 srfN = srfAttach,Mk1FuselageStructural_4293339798,BoxCOL,0|0|0,0|0|1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, 0, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = LgRadialSolarPanel_4294521676 partName = Part persistentId = 3458905517 pos = 1.84746742,6.19029522,-1.59337592 attPos = 0,0,0 attPos0 = 0.304990053,0.0341228247,-0.528257549 rot = 0.183012798,0.683012843,0.683012605,0.18301259 attRot = 0,0,0,1 attRot0 = 1.49011598E-07,0.965925813,-2.08616228E-07,0.258819014 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = LgRadialSolarPanel_4293333480 srfN = srfAttach,Mk1FuselageStructural_4293339798,BoxCOL,0|0|0,0|0|1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, 0, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = roverWheel1_4293337834 partName = Part persistentId = 3909996284 pos = 0.542477369,4.8620348,0.0208572745 attPos = -0.00717258453,0.0233221333,0.397499532 attPos0 = -0.992827415,-0.0233223122,0.402499646 rot = 0,2.98023224E-08,-2.98023224E-08,-1.00000012 attRot = -0.707106769,0,0,0.707106769 attRot0 = 0.707106829,0,-4.21468478E-08,-0.707106829 mir = 1,1,1 symMethod = Mirror autostrutMode = ForceHeaviest rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = roverWheel1_4294504996 srfN = srfAttach,batteryBank_4293334410,collider,0.386656851|0.402500004|0,1.25|0|0,0.386656851|0.402500004|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = False autoFriction = True frictionMultiplier = 1 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 autoSpringDamper = True suspensionPos = (-1, -1, -1) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorEnable { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorDisable { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 50 brakeInput = 0 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = roverWheel1_4294504996 partName = Part persistentId = 1791302932 pos = 2.54247737,4.8620348,0.0208570361 attPos = 0.00717258453,0.0233219545,0.397500008 attPos0 = 0.992827415,-0.0233223718,0.402499646 rot = 2.98023259E-08,1.00000012,0,-7.35137178E-08 attRot = -0.707106769,0,0,0.707106769 attRot0 = 7.30554603E-08,0.707106888,-0.707106769,-3.09086232E-08 mir = 1,1,1 symMethod = Mirror autostrutMode = ForceHeaviest rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = roverWheel1_4293337834 srfN = srfAttach,batteryBank_4293334410,collider,0.386656851|0.402500004|0,1.25|0|0,0.386656851|0.402500004|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = False autoFriction = True frictionMultiplier = 1 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 autoSpringDamper = True suspensionPos = (-1, -1, -1) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorEnable { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorDisable { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 50 brakeInput = 0 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = roverWheel1_4294504174 partName = Part persistentId = 816385511 pos = 0.542477369,4.86203432,-2.2275002 attPos = 0.00163030624,-0.397183418,0.397500247 attPos0 = -1.00163031,-0.202816725,0.402499586 rot = -2.08616257E-07,-1.78813963E-07,0,-1.00000012 attRot = 0.707106709,0,0,-0.707106709 attRot0 = 0.707106709,-1.26440554E-07,1.26440554E-07,-0.707106948 mir = 1,1,1 symMethod = Mirror autostrutMode = ForceHeaviest rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = roverWheel1_4294503556 srfN = srfAttach,Mk1FuselageStructural_4293339798,BoxCOL,0.386656851|0.402500004|0,1.25|0|0,0.386656851|0.402500004|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = False autoFriction = True frictionMultiplier = 1 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 autoSpringDamper = True suspensionPos = (-1, -1, -1) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorEnable { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorDisable { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 50 brakeInput = 0 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = roverWheel1_4294503556 partName = Part persistentId = 675845900 pos = 2.54247737,4.86203384,-2.22750115 attPos = -0.00163030624,-0.397184372,0.397500485 attPos0 = 1.00163031,-0.202816725,0.402499586 rot = -1.42108547E-14,1.00000012,2.38418579E-07,1.35102582E-07 attRot = 0.707106709,0,0,-0.707106709 attRot0 = -9.55319166E-08,0.707106888,-0.707106769,9.55319024E-08 mir = 1,1,1 symMethod = Mirror autostrutMode = ForceHeaviest rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = roverWheel1_4294504174 srfN = srfAttach,Mk1FuselageStructural_4293339798,BoxCOL,0.386656851|0.402500004|0,1.25|0|0,0.386656851|0.402500004|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = False autoFriction = True frictionMultiplier = 1 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 autoSpringDamper = True suspensionPos = (-1, -1, -1) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorEnable { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorDisable { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 50 brakeInput = 0 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = advSasModule_4293253062 partName = Part persistentId = 3640838567 pos = 1.54247737,5.66203594,-2.76402831 attPos = 0,0,0 attPos0 = 0,-1.13652754,-2.38418266E-07 rot = 0.707106829,0,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = adapterSmallMiniShort_4293324888 attN = top,Mk1FuselageStructural_4293339798_0|0.199026704|0_0|1|0_0|0.199026704|0_0|1|0 attN = bottom,adapterSmallMiniShort_4293324888_0|-0.199026704|0_0|-1|0_0|-0.199026704|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = adapterSmallMiniShort_4293324888 partName = Part persistentId = 854427704 pos = 1.54247737,5.66203594,-2.96305919 attPos = 0,0,0 attPos0 = 0,-0.19902809,0 rot = -0.707106829,0,0,0.707106829 attRot = -0.99999994,0,0,0 attRot0 = -1,0,0,0 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = RTLongAntenna2_4294520546 attN = top,Null_0_0|0.1875|0_0|1|0_0|0.1875|0_0|1|0 attN = bottom,advSasModule_4293253062_0|0|0_0|-1|0_0|0|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = RTLongAntenna2_4294520546 partName = Part persistentId = 1673281816 pos = 1.54247737,6.1420083,-3.04797721 attPos = 0,0,0 attPos0 = 0,0.0849175751,0.479970604 rot = 0.512825727,-2.07766182E-09,3.47809803E-09,-0.858492851 attRot = 0,0,0,1 attRot0 = -0.244423509,-3.92851529E-09,9.90257987E-10,-0.969668627 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,adapterSmallMiniShort_4293324888,node_collider,0|0|0,0|-1|0,0|0|0 attN = bottom,Null_0_0|0|0_0|-1|0_0|0|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = True animTime = 0 animSpeed = 1 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { deployPercent { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = SurfAntenna_4293331470 partName = Part persistentId = 831454684 pos = 1.54247737,6.32538033,-0.345605671 attPos = 0,0,0 attPos0 = 0,0.0443922877,-0.663343549 rot = 2.38014675E-09,1.00000012,-1.07288361E-06,-2.77555756E-15 attRot = 0,0,0,1 attRot0 = 1.68301983E-09,0.707106054,-0.707107604,1.68301584E-09 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,ServiceBay.125.v2_4294513824,COL_Back,0|-0.0500000007|0,0|-1|0,0|-0.0500000007|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 1500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ================================================ FILE: saves/RemoteTech KSP1_8 Testbed/Ships/SPH/Rover 2.loadmeta ================================================ shipName = Rover 2 description = version = 1.8.1 partCount = 15 stageCount = 1 totalCost = 7810 totalMass = 1.77500021 shipSize = 3.08392954,1.89594269,4.1091609 type = SPH duplicatedParts = False steamPublishedFileId = 0 partNames = mk1pod.v2 partNames = batteryBank partNames = Mk1FuselageStructural partNames = roverWheel1 partNames = LgRadialSolarPanel partNames = probeCoreOcto.v2 partNames = SurfAntenna partNames = advSasModule partNames = adapterSmallMiniShort partModules = ModuleCommand partModules = ModuleReactionWheel partModules = ModuleColorChanger partModules = ModuleScienceExperiment partModules = ModuleScienceContainer partModules = ModuleConductionMultiplier partModules = ModuleLiftingSurface partModules = FlagDecal partModules = ModulePartVariants partModules = ModuleTripLogger partModules = ModuleWheelBase partModules = ModuleWheelSuspension partModules = ModuleWheelSteering partModules = ModuleWheelMotor partModules = ModuleWheelBrakes partModules = ModuleWheelDamage partModules = FXModuleLookAtConstraint partModules = ModuleTestSubject partModules = ModuleDeployableSolarPanel partModules = ModuleSAS partModules = ModuleKerbNetAccess partModules = ModuleSPU partModules = ModuleRTAntennaPassive partModules = ModuleRTAntenna partModules = ModuleSPUPassive partModules = ModuleRTDataTransmitter saveMD5 = 999318bf93dc081a3fba206b33d0732a ================================================ FILE: saves/RemoteTech KSP1_8 Testbed/Ships/VAB/Dish 20Mm Limit.craft ================================================ ship = Dish 20Mm Limit version = 1.8.1 description = type = VAB size = 0.819168627,1.94655991,1.19644904 steamPublishedFileId = 0 persistentId = 152100838 rot = 0,0,0,0 missionFlag = Squad/Flags/default vesselType = Debris OverrideDefault = False,False,False,False OverrideActionControl = 0,0,0,0 OverrideAxisControl = 0,0,0,0 OverrideGroupNames = ,,, PART { part = probeCoreOcto.v2_4293497788 partName = Part persistentId = 3449198583 pos = 0,15,0 attPos = 0,0,0 attPos0 = 0,15,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = batteryBankMini_4293493832 link = solarPanels5_4293492538 link = solarPanels5_4294564562 link = solarPanels5_4294564530 link = solarPanels5_4294564498 link = solarPanels5_4294564466 link = solarPanels5_4294564434 link = solarPanels5_4294564402 link = solarPanels5_4294564370 attN = bottom,Null_0_0|-0.187081799|0_0|-1|0_0|-0.187081799|0_0|-1|0 attN = top,batteryBankMini_4293493832_0|0.187081799|0_0|1|0_0|0.187081799|0_0|1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False activeControlPointName = _default stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = batteryBankMini_4293493832 partName = Part persistentId = 4013465972 pos = 0,15.2870817,0 attPos = 0,0,0 attPos0 = 0,0.287081718,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = HighGainAntenna5_4293434240 link = SurfAntenna_4293391962 attN = top,HighGainAntenna5_4293434240_0|0.100000001|0_0|1|0_0|0.100000001|0_0|1|0 attN = bottom,probeCoreOcto.v2_4293497788_0|-0.100000001|0_0|-1|0_0|-0.100000001|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = HighGainAntenna5_4293434240 partName = Part persistentId = 2586054081 pos = 0,15.3870821,0 attPos = 0,0,0 attPos0 = 0,0.100000381,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 attN = bottom,batteryBankMini_4293493832_0|0|0_0|-1|0_0|0|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.995825052 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { deployPercent { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 0.70710678118654757 RTOmniRange = 0 RTDishRange = 20000000 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = SurfAntenna_4293391962 partName = Part persistentId = 3730426048 pos = 0.158271328,15.4308319,-3.27131389E-08 attPos = 0,0,0 attPos0 = 0.158271328,0.143750191,-3.27131389E-08 rot = -2.98023281E-07,0.707106829,-2.98023281E-07,0.707106829 attRot = 0,0.707106709,0,0.707106709 attRot0 = -2.98023281E-07,0.707106829,-2.98023281E-07,0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,batteryBankMini_4293493832,node_collider,0|-0.0500000007|0,0|-1|0,0|-0.0500000007|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 1500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4293492538 partName = Part persistentId = 2958715313 pos = -2.96918099E-08,15.1185751,-0.339634717 attPos = 0,0,0 attPos0 = -2.96918099E-08,0.118575096,-0.339634717 rot = -2.56182516E-22,1,4.83449603E-15,5.29905329E-08 attRot = 0,0,0,1 attRot0 = -2.56182516E-22,1,4.83449603E-15,5.29905329E-08 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294564562 sym = solarPanels5_4294564530 sym = solarPanels5_4294564498 sym = solarPanels5_4294564466 sym = solarPanels5_4294564434 sym = solarPanels5_4294564402 sym = solarPanels5_4294564370 srfN = srfAttach,probeCoreOcto.v2_4293497788,collider.collider,0|0|0,0|0|1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294564562 partName = Part persistentId = 1130883278 pos = -0.240158051,15.1185751,-0.240157977 attPos = 0,0,0 attPos0 = -0.240158051,0.118575096,-0.240157977 rot = 1.85008153E-15,0.923879564,4.4664924E-15,-0.382683426 attRot = 0,0,0,1 attRot0 = 1.85008153E-15,0.923879564,4.4664924E-15,-0.382683426 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294564530 sym = solarPanels5_4294564498 sym = solarPanels5_4294564466 sym = solarPanels5_4294564434 sym = solarPanels5_4294564402 sym = solarPanels5_4294564370 sym = solarPanels5_4293492538 srfN = srfAttach,probeCoreOcto.v2_4293497788,collider.collider,0|0|0,0|0|1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294564530 partName = Part persistentId = 3145267175 pos = -0.339634687,15.1185751,9.44800149E-09 attPos = 0,0,0 attPos0 = -0.339634687,0.118575096,9.44800149E-09 rot = 3.4185047E-15,0.707106829,3.41850512E-15,-0.707106709 attRot = 0,0,0,1 attRot0 = 3.4185047E-15,0.707106829,3.41850512E-15,-0.707106709 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294564498 sym = solarPanels5_4294564466 sym = solarPanels5_4294564434 sym = solarPanels5_4294564402 sym = solarPanels5_4294564370 sym = solarPanels5_4293492538 sym = solarPanels5_4294564562 srfN = srfAttach,probeCoreOcto.v2_4293497788,collider.collider,0|0|0,0|0|1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294564498 partName = Part persistentId = 881397924 pos = -0.240157992,15.1185751,0.240158007 attPos = 0,0,0 attPos0 = -0.240157992,0.118575096,0.240158007 rot = 4.46649155E-15,0.382683486,1.85008174E-15,-0.923879504 attRot = 0,0,0,1 attRot0 = 4.46649155E-15,0.382683486,1.85008174E-15,-0.923879504 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294564466 sym = solarPanels5_4294564434 sym = solarPanels5_4294564402 sym = solarPanels5_4294564370 sym = solarPanels5_4293492538 sym = solarPanels5_4294564562 sym = solarPanels5_4294564530 srfN = srfAttach,probeCoreOcto.v2_4293497788,collider.collider,0|0|0,0|0|1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294564466 partName = Part persistentId = 2122093748 pos = 5.93836198E-08,15.1185751,0.339634717 attPos = 0,0,0 attPos0 = 5.93836198E-08,0.118575096,0.339634717 rot = 4.83449603E-15,9.27914456E-09,4.48599827E-23,-1 attRot = 0,0,0,1 attRot0 = 4.83449603E-15,9.27914456E-09,4.48599827E-23,-1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294564434 sym = solarPanels5_4294564402 sym = solarPanels5_4294564370 sym = solarPanels5_4293492538 sym = solarPanels5_4294564562 sym = solarPanels5_4294564530 sym = solarPanels5_4294564498 srfN = srfAttach,probeCoreOcto.v2_4293497788,collider.collider,0|0|0,0|0|1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294564434 partName = Part persistentId = 638928950 pos = 0.240158066,15.1185751,0.240157962 attPos = 0,0,0 attPos0 = 0.240158066,0.118575096,0.240157962 rot = 4.46649198E-15,-0.382683456,-1.85008174E-15,-0.923879504 attRot = 0,0,0,1 attRot0 = 4.46649198E-15,-0.382683456,-1.85008174E-15,-0.923879504 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294564402 sym = solarPanels5_4294564370 sym = solarPanels5_4293492538 sym = solarPanels5_4294564562 sym = solarPanels5_4294564530 sym = solarPanels5_4294564498 sym = solarPanels5_4294564466 srfN = srfAttach,probeCoreOcto.v2_4293497788,collider.collider,0|0|0,0|0|1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294564402 partName = Part persistentId = 1470788434 pos = 0.339634687,15.1185751,-4.99356148E-08 attPos = 0,0,0 attPos0 = 0.339634687,0.118575096,-4.99356148E-08 rot = 3.41850512E-15,-0.707106709,-3.4185047E-15,-0.707106829 attRot = 0,0,0,1 attRot0 = 3.41850512E-15,-0.707106709,-3.4185047E-15,-0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294564370 sym = solarPanels5_4293492538 sym = solarPanels5_4294564562 sym = solarPanels5_4294564530 sym = solarPanels5_4294564498 sym = solarPanels5_4294564466 sym = solarPanels5_4294564434 srfN = srfAttach,probeCoreOcto.v2_4293497788,collider.collider,0|0|0,0|0|1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294564370 partName = Part persistentId = 3501354804 pos = 0.240157932,15.1185751,-0.240158111 attPos = 0,0,0 attPos0 = 0.240157932,0.118575096,-0.240158111 rot = 1.8500811E-15,-0.923879623,-4.4664924E-15,-0.382683337 attRot = 0,0,0,1 attRot0 = 1.8500811E-15,-0.923879623,-4.4664924E-15,-0.382683337 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4293492538 sym = solarPanels5_4294564562 sym = solarPanels5_4294564530 sym = solarPanels5_4294564498 sym = solarPanels5_4294564466 sym = solarPanels5_4294564434 sym = solarPanels5_4294564402 srfN = srfAttach,probeCoreOcto.v2_4293497788,collider.collider,0|0|0,0|0|1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } ================================================ FILE: saves/RemoteTech KSP1_8 Testbed/Ships/VAB/Dish 20Mm Limit.loadmeta ================================================ shipName = Dish 20Mm Limit description = version = 1.8.1 partCount = 12 stageCount = 1 totalCost = 2310 totalMass = 0.23499997 shipSize = 0.819168627,1.94655991,1.19644904 type = VAB duplicatedParts = False steamPublishedFileId = 0 partNames = probeCoreOcto.v2 partNames = batteryBankMini partNames = HighGainAntenna5 partNames = SurfAntenna partNames = solarPanels5 partModules = ModuleCommand partModules = ModuleReactionWheel partModules = ModuleSAS partModules = ModuleKerbNetAccess partModules = ModuleSPU partModules = ModuleRTAntennaPassive partModules = ModuleTripLogger partModules = ModuleAnimateGeneric partModules = ModuleRTAntenna partModules = ModuleSPUPassive partModules = ModuleRTDataTransmitter partModules = ModuleDeployableSolarPanel saveMD5 = fbcd996d4aad740887ec7ac1c8c2ec06 ================================================ FILE: saves/RemoteTech KSP1_8 Testbed/Ships/VAB/Dish 75Mm Limit.craft ================================================ ship = Dish 75Mm Limit version = 1.8.1 description = type = VAB size = 1.25999999,1.09934616,1.25999999 steamPublishedFileId = 0 persistentId = 152100838 rot = 0,0,0,0 missionFlag = Squad/Flags/default vesselType = Debris OverrideDefault = False,False,False,False OverrideActionControl = 0,0,0,0 OverrideAxisControl = 0,0,0,0 OverrideGroupNames = ,,, PART { part = probeCoreOcto.v2_4293497788 partName = Part persistentId = 1248887579 pos = 0,15,0 attPos = 0,0,0 attPos0 = 0,15,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = batteryBankMini_4293493832 link = solarPanels4_4294555626 link = solarPanels4_4294510292 link = solarPanels4_4294510188 link = solarPanels4_4294510084 attN = bottom,Null_0_0|-0.187081799|0_0|-1|0_0|-0.187081799|0_0|-1|0 attN = top,batteryBankMini_4293493832_0|0.187081799|0_0|1|0_0|0.187081799|0_0|1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False activeControlPointName = _default stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = batteryBankMini_4293493832 partName = Part persistentId = 4255170676 pos = 0,15.2870817,0 attPos = 0,0,0 attPos0 = 0,0.287081718,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = SurfAntenna_4293391962 link = RTShortDish2_4294446452 attN = top,RTShortDish2_4294446452_0|0.100000001|0_0|1|0_0|0.100000001|0_0|1|0 attN = bottom,probeCoreOcto.v2_4293497788_0|-0.100000001|0_0|-1|0_0|-0.100000001|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = SurfAntenna_4293391962 partName = Part persistentId = 4029096396 pos = -0.358669788,15.2804832,1.83981541E-08 attPos = 0,0,0 attPos0 = -0.358669788,-0.0065984726,1.83981541E-08 rot = 0.50000006,-0.5,0.50000006,0.5 attRot = 0,0,0,1 attRot0 = 0.50000006,-0.5,0.50000006,0.5 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,batteryBankMini_4293493832,,0|-0.0500000007|0,0|-1|0,0|-0.0500000007|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 1500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = RTShortDish2_4294446452 partName = Part persistentId = 2436626627 pos = 0,15.3870821,0 attPos = 0,0,0 attPos0 = 0,0.100000381,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 attN = bottom,batteryBankMini_4293493832_0|0|0_0|-0.125|0_0|0|0_0|-0.125|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 0.97629600711993336 RTOmniRange = 0 RTDishRange = 0 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4294555626 partName = Part persistentId = 4024372385 pos = 2.98473743E-08,15.0102701,-0.341414183 attPos = 0,0,0 attPos0 = 2.98473743E-08,0.0102701187,-0.341414183 rot = 0.49999997,-0.50000006,0.50000006,0.49999997 attRot = -0.707106709,0,0,-0.707106709 attRot0 = 0.49999997,-0.50000006,0.50000006,0.49999997 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4294510292 sym = solarPanels4_4294510188 sym = solarPanels4_4294510084 srfN = srfAttach,probeCoreOcto.v2_4293497788,collider.collider,0|0|0,1|0|0,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = -10 deployState = RETRACTED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4294510292 partName = Part persistentId = 1269206364 pos = -0.341414154,15.0102701,-5.01972437E-08 attPos = 0,0,0 attPos0 = -0.341414154,0.0102701187,-5.01972437E-08 rot = 0.707106829,-6.3220277E-08,6.3220277E-08,0.707106829 attRot = -0.707106709,0,0,-0.707106709 attRot0 = 0.707106829,-6.3220277E-08,6.3220277E-08,0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4294510188 sym = solarPanels4_4294510084 sym = solarPanels4_4294555626 srfN = srfAttach,probeCoreOcto.v2_4293497788,collider.collider,0|0|0,1|0|0,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = -10 deployState = RETRACTED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4294510188 partName = Part persistentId = 1190877467 pos = 1.52263363E-15,15.0102701,0.341414183 attPos = 0,0,0 attPos0 = 1.52263363E-15,0.0102701187,0.341414183 rot = 0.50000006,0.5,-0.5,0.50000006 attRot = -0.707106709,0,0,-0.707106709 attRot0 = 0.50000006,0.5,-0.5,0.50000006 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4294510084 sym = solarPanels4_4294555626 sym = solarPanels4_4294510292 srfN = srfAttach,probeCoreOcto.v2_4293497788,collider.collider,0|0|0,1|0|0,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = -10 deployState = RETRACTED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4294510084 partName = Part persistentId = 2858940435 pos = 0.341414154,15.0102701,9.49750145E-09 attPos = 0,0,0 attPos0 = 0.341414154,0.0102701187,9.49750145E-09 rot = 6.3220277E-08,0.707106829,-0.707106829,6.3220277E-08 attRot = -0.707106709,0,0,-0.707106709 attRot0 = 6.3220277E-08,0.707106829,-0.707106829,6.3220277E-08 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4294555626 sym = solarPanels4_4294510292 sym = solarPanels4_4294510188 srfN = srfAttach,probeCoreOcto.v2_4293497788,collider.collider,0|0|0,1|0|0,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = -10 deployState = RETRACTED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } ================================================ FILE: saves/RemoteTech KSP1_8 Testbed/Ships/VAB/Dish 75Mm Limit.loadmeta ================================================ shipName = Dish 75Mm Limit description = version = 1.8.1 partCount = 8 stageCount = 1 totalCost = 3430 totalMass = 0.24499999 shipSize = 1.25999999,1.09934616,1.25999999 type = VAB duplicatedParts = False steamPublishedFileId = 0 partNames = probeCoreOcto.v2 partNames = batteryBankMini partNames = SurfAntenna partNames = RTShortDish2 partNames = solarPanels4 partModules = ModuleCommand partModules = ModuleReactionWheel partModules = ModuleSAS partModules = ModuleKerbNetAccess partModules = ModuleSPU partModules = ModuleRTAntennaPassive partModules = ModuleTripLogger partModules = ModuleRTAntenna partModules = ModuleSPUPassive partModules = ModuleRTDataTransmitter partModules = ModuleDeployableSolarPanel saveMD5 = 41d955d86c09c34249c8f9f42e16bd80 ================================================ FILE: saves/RemoteTech KSP1_8 Testbed/Ships/VAB/Dish Gateway M.craft ================================================ ship = Dish Gateway M version = 1.8.1 description = type = VAB size = 5.78911304,1.10231018,5.78911161 steamPublishedFileId = 0 persistentId = 3933205611 rot = 0,0,0,0 missionFlag = Squad/Flags/default vesselType = Debris OverrideDefault = False,False,False,False OverrideActionControl = 0,0,0,0 OverrideAxisControl = 0,0,0,0 OverrideGroupNames = ,,, PART { part = probeCoreOcto.v2_4294049416 partName = Part persistentId = 1610702328 pos = 0,15,0 attPos = 0,0,0 attPos0 = 0,15,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = batteryBankMini_4293799066 link = solarPanels4_4294036484 link = solarPanels4_4293798134 link = solarPanels4_4293798030 link = solarPanels4_4293797926 attN = bottom,Null_0_0|-0.187081799|0_0|-1|0_0|-0.187081799|0_0|-1|0 attN = top,batteryBankMini_4293799066_0|0.187081799|0_0|1|0_0|0.187081799|0_0|1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False activeControlPointName = _default stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = batteryBankMini_4293799066 partName = Part persistentId = 179228724 pos = 0,15.2870817,0 attPos = 0,0,0 attPos0 = 0,0.287081718,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = RTShortDish2_4293801434 link = RTLongAntenna2_4294047590 attN = top,RTShortDish2_4293801434_0|0.100000001|0_0|1|0_0|0.100000001|0_0|1|0 attN = bottom,probeCoreOcto.v2_4294049416_0|-0.100000001|0_0|-1|0_0|-0.100000001|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = RTShortDish2_4293801434 partName = Part persistentId = 3598055450 pos = 0,15.3870821,0 attPos = 0,0,0 attPos0 = 0,0.100000381,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 attN = bottom,batteryBankMini_4293799066_0|0|0_0|-0.125|0_0|0|0_0|-0.125|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 0.97629600711993336 RTOmniRange = 0 RTDishRange = 0 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = RTLongAntenna2_4294047590 partName = Part persistentId = 3351865970 pos = 2.69649423E-08,15.299962,-0.30844298 attPos = 0,0,0 attPos0 = 2.69649423E-08,0.0128803253,-0.30844298 rot = 2.3423377E-08,0.70710665,-0.707107008,2.34233664E-08 attRot = 0,0,0,1 attRot0 = 2.3423377E-08,0.70710665,-0.707107008,2.34233664E-08 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,batteryBankMini_4293799066,node_collider,0|0|0,0|-1|0,0|0|0 attN = bottom,Null_0_0|0|0_0|-1|0_0|0|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = MOVING animSwitch = False animTime = 0.638635755 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { deployPercent { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4294036484 partName = Part persistentId = 2680436736 pos = -0.339529127,14.9508362,2.02375148E-08 attPos = 0,0,0 attPos0 = -0.339529127,-0.0491638184,2.02375148E-08 rot = 2.5121481E-14,-2.52881108E-07,-9.12332041E-08,1 attRot = 0,0,0,1 attRot0 = 2.5121481E-14,-2.52881108E-07,-9.12332041E-08,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4293798134 sym = solarPanels4_4293798030 sym = solarPanels4_4293797926 srfN = srfAttach,probeCoreOcto.v2_4294049416,collider.collider,0|0|0,1|0|0,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 1 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4293798134 partName = Part persistentId = 4099518530 pos = 5.7010696E-16,14.9508362,0.339529097 attPos = 0,0,0 attPos0 = 5.7010696E-16,-0.0491638184,0.339529097 rot = -6.45115961E-08,0.70710659,-6.45116316E-08,0.707106948 attRot = 0,0,0,1 attRot0 = -6.45115961E-08,0.70710659,-6.45116316E-08,0.707106948 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4293798030 sym = solarPanels4_4293797926 sym = solarPanels4_4294036484 srfN = srfAttach,probeCoreOcto.v2_4294049416,collider.collider,0|0|0,1|0|0,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4293798030 partName = Part persistentId = 307741682 pos = 0.339529127,14.9508362,-4.99200929E-08 attPos = 0,0,0 attPos0 = 0.339529127,-0.0491638184,-4.99200929E-08 rot = -9.12332041E-08,1,-2.11335517E-14,2.09169713E-07 attRot = 0,0,0,1 attRot0 = -9.12332041E-08,1,-2.11335517E-14,2.09169713E-07 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4293797926 sym = solarPanels4_4294036484 sym = solarPanels4_4293798134 srfN = srfAttach,probeCoreOcto.v2_4294049416,collider.collider,0|0|0,1|0|0,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4293797926 partName = Part persistentId = 765337028 pos = -4.0475026E-08,14.9508362,-0.339529097 attPos = 0,0,0 attPos0 = -4.0475026E-08,-0.0491638184,-0.339529097 rot = -6.45116316E-08,0.707106948,6.45115961E-08,-0.70710659 attRot = 0,0,0,1 attRot0 = -6.45116316E-08,0.707106948,6.45115961E-08,-0.70710659 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4294036484 sym = solarPanels4_4293798134 sym = solarPanels4_4293798030 srfN = srfAttach,probeCoreOcto.v2_4294049416,collider.collider,0|0|0,1|0|0,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } ================================================ FILE: saves/RemoteTech KSP1_8 Testbed/Ships/VAB/Dish Gateway M.loadmeta ================================================ shipName = Dish Gateway M description = version = 1.8.1 partCount = 8 stageCount = 1 totalCost = 3730 totalMass = 0.239999995 shipSize = 5.78911304,1.10231018,5.78911161 type = VAB duplicatedParts = False steamPublishedFileId = 0 partNames = probeCoreOcto.v2 partNames = batteryBankMini partNames = RTShortDish2 partNames = RTLongAntenna2 partNames = solarPanels4 partModules = ModuleCommand partModules = ModuleReactionWheel partModules = ModuleSAS partModules = ModuleKerbNetAccess partModules = ModuleSPU partModules = ModuleRTAntennaPassive partModules = ModuleTripLogger partModules = ModuleRTAntenna partModules = ModuleSPUPassive partModules = ModuleRTDataTransmitter partModules = ModuleAnimateGeneric partModules = ModuleDeployableSolarPanel saveMD5 = d506999ed5054eaca8b4521dff84fb13 ================================================ FILE: saves/RemoteTech KSP1_8 Testbed/Ships/VAB/Dish Gateway.craft ================================================ ship = Dish Gateway version = 1.8.1 description = type = VAB size = 5.78984976,1.64530754,6.43571568 steamPublishedFileId = 0 persistentId = 3933205611 rot = 0,0,0,0 missionFlag = Squad/Flags/default vesselType = Debris OverrideDefault = False,False,False,False OverrideActionControl = 0,0,0,0 OverrideAxisControl = 0,0,0,0 OverrideGroupNames = ,,, PART { part = probeCoreOcto.v2_4294049416 partName = Part persistentId = 1610702328 pos = 0,15,0 attPos = 0,0,0 attPos0 = 0,15,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = batteryBank_4294048696 link = solarPanels4_4294044122 link = solarPanels4_4294036692 link = solarPanels4_4294036588 link = solarPanels4_4294036484 link = solarPanels4_4294036380 link = solarPanels4_4294036276 link = solarPanels4_4294036172 link = solarPanels4_4294036068 attN = bottom,Null_0_0|-0.187081799|0_0|-1|0_0|-0.187081799|0_0|-1|0 attN = top,batteryBank_4294048696_0|0.187081799|0_0|1|0_0|0.187081799|0_0|1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False activeControlPointName = _default stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = batteryBank_4294048696 partName = Part persistentId = 3872188826 pos = 0,15.2979364,0 attPos = 0,0,0 attPos0 = 0,0.29793644,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = RTLongDish2_4294049052 link = RTLongAntenna2_4294047590 link = RTLongAntenna2_4294035236 attN = top,RTLongDish2_4294049052_0|0.110855304|0_0|1|0_0|0.110855304|0_0|1|0 attN = bottom,probeCoreOcto.v2_4294049416_0|-0.110855304|0_0|-1|0_0|-0.110855304|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 1000 maxAmount = 1000 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = RTLongDish2_4294049052 partName = Part persistentId = 159480776 pos = 0,15.4337912,0 attPos = 0,0,0 attPos0 = 0,0.135854721,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 attN = bottom,batteryBank_4294048696_0|-0.0250000004|0_0|-0.125|0_0|-0.0250000004|0_0|-0.125|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 0.99999993907651941 RTOmniRange = 0 RTDishRange = 0 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4294044122 partName = Part persistentId = 2204752275 pos = 0.339897275,14.9691019,2.02594581E-08 attPos = 0,0,0 attPos0 = 0.339897275,-0.0308980942,2.02594581E-08 rot = 2.90069618E-14,1,5.98942781E-21,2.52881108E-07 attRot = 0,0,0,1 attRot0 = 2.90069618E-14,1,5.98942781E-21,2.52881108E-07 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4294036692 sym = solarPanels4_4294036588 sym = solarPanels4_4294036484 sym = solarPanels4_4294036380 sym = solarPanels4_4294036276 sym = solarPanels4_4294036172 sym = solarPanels4_4294036068 srfN = srfAttach,probeCoreOcto.v2_4294049416,collider.collider,0|0|0,1|0|0,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 10 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4294036692 partName = Part persistentId = 2329555586 pos = 0.240343675,14.9691019,-0.240343675 attPos = 0,0,0 attPos0 = 0.240343675,-0.0308980942,-0.240343675 rot = 2.679894E-14,0.923879623,-1.11004786E-14,-0.382683218 attRot = 0,0,0,1 attRot0 = 2.679894E-14,0.923879623,-1.11004786E-14,-0.382683218 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4294036588 sym = solarPanels4_4294036484 sym = solarPanels4_4294036380 sym = solarPanels4_4294036276 sym = solarPanels4_4294036172 sym = solarPanels4_4294036068 sym = solarPanels4_4294044122 srfN = srfAttach,probeCoreOcto.v2_4294049416,collider.collider,0|0|0,1|0|0,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 10 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4294036588 partName = Part persistentId = 2553965002 pos = 4.05189127E-08,14.9691019,-0.339897245 attPos = 0,0,0 attPos0 = 4.05189127E-08,-0.0308980942,-0.339897245 rot = 2.05110231E-14,0.707106948,-2.05110146E-14,-0.70710659 attRot = 0,0,0,1 attRot0 = 2.05110231E-14,0.707106948,-2.05110146E-14,-0.70710659 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4294036484 sym = solarPanels4_4294036380 sym = solarPanels4_4294036276 sym = solarPanels4_4294036172 sym = solarPanels4_4294036068 sym = solarPanels4_4294044122 sym = solarPanels4_4294036692 srfN = srfAttach,probeCoreOcto.v2_4294049416,collider.collider,0|0|0,1|0|0,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 10 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4294036484 partName = Part persistentId = 2680436736 pos = -0.24034363,14.9691019,-0.240343675 attPos = 0,0,0 attPos0 = -0.24034363,-0.0308980942,-0.240343675 rot = 1.11004896E-14,0.382683694,-2.67989366E-14,-0.923879445 attRot = 0,0,0,1 attRot0 = 1.11004896E-14,0.382683694,-2.67989366E-14,-0.923879445 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4294036380 sym = solarPanels4_4294036276 sym = solarPanels4_4294036172 sym = solarPanels4_4294036068 sym = solarPanels4_4294044122 sym = solarPanels4_4294036692 sym = solarPanels4_4294036588 srfN = srfAttach,probeCoreOcto.v2_4294049416,collider.collider,0|0|0,1|0|0,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 10 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4294036380 partName = Part persistentId = 3383566716 pos = -0.339897275,14.9691019,9.45530498E-09 attPos = 0,0,0 attPos0 = -0.339897275,-0.0308980942,9.45530498E-09 rot = 4.72149322E-21,2.09169713E-07,-2.90069618E-14,-1 attRot = 0,0,0,1 attRot0 = 4.72149322E-21,2.09169713E-07,-2.90069618E-14,-1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4294036276 sym = solarPanels4_4294036172 sym = solarPanels4_4294036068 sym = solarPanels4_4294044122 sym = solarPanels4_4294036692 sym = solarPanels4_4294036588 sym = solarPanels4_4294036484 srfN = srfAttach,probeCoreOcto.v2_4294049416,collider.collider,0|0|0,1|0|0,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 10 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4294036276 partName = Part persistentId = 1884329352 pos = -0.24034366,14.9691019,0.24034369 attPos = 0,0,0 attPos0 = -0.24034366,-0.0308980942,0.24034369 rot = -1.11004803E-14,-0.382683277,-2.679894E-14,-0.923879623 attRot = 0,0,0,1 attRot0 = -1.11004803E-14,-0.382683277,-2.679894E-14,-0.923879623 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4294036172 sym = solarPanels4_4294036068 sym = solarPanels4_4294044122 sym = solarPanels4_4294036692 sym = solarPanels4_4294036588 sym = solarPanels4_4294036484 sym = solarPanels4_4294036380 srfN = srfAttach,probeCoreOcto.v2_4294049416,collider.collider,0|0|0,1|0|0,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 10 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4294036172 partName = Part persistentId = 2740730345 pos = -5.68799035E-16,14.9691019,0.339897245 attPos = 0,0,0 attPos0 = -5.68799035E-16,-0.0308980942,0.339897245 rot = -2.05110146E-14,-0.70710659,-2.05110231E-14,-0.707106948 attRot = 0,0,0,1 attRot0 = -2.05110146E-14,-0.70710659,-2.05110231E-14,-0.707106948 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4294036068 sym = solarPanels4_4294044122 sym = solarPanels4_4294036692 sym = solarPanels4_4294036588 sym = solarPanels4_4294036484 sym = solarPanels4_4294036380 sym = solarPanels4_4294036276 srfN = srfAttach,probeCoreOcto.v2_4294049416,collider.collider,0|0|0,1|0|0,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 10 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels4_4294036068 partName = Part persistentId = 4025412029 pos = 0.240343735,14.9691019,0.240343615 attPos = 0,0,0 attPos0 = 0.240343735,-0.0308980942,0.240343615 rot = -2.67989383E-14,-0.923879504,-1.11004845E-14,-0.382683516 attRot = 0,0,0,1 attRot0 = -2.67989383E-14,-0.923879504,-1.11004845E-14,-0.382683516 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels4_4294044122 sym = solarPanels4_4294036692 sym = solarPanels4_4294036588 sym = solarPanels4_4294036484 sym = solarPanels4_4294036380 sym = solarPanels4_4294036276 sym = solarPanels4_4294036172 srfN = srfAttach,probeCoreOcto.v2_4294049416,collider.collider,0|0|0,1|0|0,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.5, -0.5, -0.5, 0.5) storedAnimationTime = 0 storedAnimationSpeed = 10 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = RTLongAntenna2_4294047590 partName = Part persistentId = 3351865970 pos = 5.27944337E-08,15.3021202,-0.603897929 attPos = 0,0,0 attPos0 = 5.27944337E-08,0.00418376923,-0.603897929 rot = 0,0.707106709,-0.707106948,0 attRot = 0,0,0,1 attRot0 = 0,0.707106709,-0.707106948,0 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = RTLongAntenna2_4294035236 srfN = srfAttach,batteryBank_4294048696,collider,0|0|0,0|-1|0,0|0|0 attN = bottom,Null_0_0|0|0_0|-1|0_0|0|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = True animTime = 0.00719412602 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { deployPercent { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = RTLongAntenna2_4294035236 partName = Part persistentId = 3594471222 pos = 2.32578307E-17,15.3021202,0.603897929 attPos = 0,0,0 attPos0 = 2.32578307E-17,0.00418376923,0.603897929 rot = -0.707106948,-3.09086161E-08,3.09086268E-08,-0.707106709 attRot = 0,0,0,1 attRot0 = -0.707106948,-3.09086161E-08,3.09086268E-08,-0.707106709 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = RTLongAntenna2_4294047590 srfN = srfAttach,batteryBank_4294048696,collider,0|0|0,0|-1|0,0|0|0 attN = bottom,Null_0_0|0|0_0|-1|0_0|0|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992852509 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { deployPercent { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ================================================ FILE: saves/RemoteTech KSP1_8 Testbed/Ships/VAB/Dish Gateway.loadmeta ================================================ shipName = Dish Gateway description = version = 1.8.1 partCount = 13 stageCount = 1 totalCost = 7570 totalMass = 0.51000011 shipSize = 5.78984976,1.64530754,6.43571568 type = VAB duplicatedParts = False steamPublishedFileId = 0 partNames = probeCoreOcto.v2 partNames = batteryBank partNames = RTLongDish2 partNames = solarPanels4 partNames = RTLongAntenna2 partModules = ModuleCommand partModules = ModuleReactionWheel partModules = ModuleSAS partModules = ModuleKerbNetAccess partModules = ModuleSPU partModules = ModuleRTAntennaPassive partModules = ModuleTripLogger partModules = ModuleRTAntenna partModules = ModuleSPUPassive partModules = ModuleRTDataTransmitter partModules = ModuleDeployableSolarPanel partModules = ModuleAnimateGeneric saveMD5 = 918931d81fa07d724cd0f5e62e522ff5 ================================================ FILE: saves/RemoteTech KSP1_8 Testbed/Ships/VAB/Dumb Relay.craft ================================================ ship = Dumb Relay version = 1.8.1 description = type = VAB size = 0.813547969,3.71727753,0.813547969 steamPublishedFileId = 0 persistentId = 1251815637 rot = 0,0,0,0 missionFlag = Squad/Flags/default vesselType = Debris OverrideDefault = False,False,False,False OverrideActionControl = 0,0,0,0 OverrideAxisControl = 0,0,0,0 OverrideGroupNames = ,,, PART { part = probeCoreOcto.v2_4294232176 partName = Part persistentId = 398247333 pos = 0,15,0 attPos = 0,0,0 attPos0 = 0,15,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = solarPanels5_4294230226 link = solarPanels5_4294229838 link = solarPanels5_4294229806 link = solarPanels5_4294229774 link = solarPanels5_4294229742 link = solarPanels5_4294229710 link = solarPanels5_4294229678 link = solarPanels5_4294229646 link = batteryBankMini_4294226184 link = batteryBankMini_4294224434 attN = bottom,batteryBankMini_4294224434_0|-0.187081799|0_0|-1|0_0|-0.187081799|0_0|-1|0 attN = top,batteryBankMini_4294226184_0|0.187081799|0_0|1|0_0|0.187081799|0_0|1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False activeControlPointName = _default stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = solarPanels5_4294230226 partName = Part persistentId = 2244991389 pos = -0.335660249,15.0329475,2.00069117E-08 attPos = 0,0,0 attPos0 = -0.335660249,0.0329475403,2.00069117E-08 rot = -3.96246804E-08,-0.707106948,-3.96246982E-08,0.70710659 attRot = 0,0,0,1 attRot0 = -3.96246804E-08,-0.707106948,-3.96246982E-08,0.70710659 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294229838 sym = solarPanels5_4294229806 sym = solarPanels5_4294229774 sym = solarPanels5_4294229742 sym = solarPanels5_4294229710 sym = solarPanels5_4294229678 sym = solarPanels5_4294229646 srfN = srfAttach,probeCoreOcto.v2_4294232176,,0|0|0,0|0|1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294229838 partName = Part persistentId = 2499859617 pos = -0.237347603,15.0329475,0.237347662 attPos = 0,0,0 attPos0 = -0.237347603,0.0329475403,0.237347662 rot = -5.17721475E-08,-0.382683635,-2.14447375E-08,0.923879445 attRot = 0,0,0,1 attRot0 = -5.17721475E-08,-0.382683635,-2.14447375E-08,0.923879445 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294230226 sym = solarPanels5_4294229806 sym = solarPanels5_4294229774 sym = solarPanels5_4294229742 sym = solarPanels5_4294229710 sym = solarPanels5_4294229678 sym = solarPanels5_4294229646 srfN = srfAttach,probeCoreOcto.v2_4294232176,,0|0|0,0|0|1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294229806 partName = Part persistentId = 1055890139 pos = 5.83851975E-16,15.0329475,0.335660219 attPos = 0,0,0 attPos0 = 5.83851975E-16,0.0329475403,0.335660219 rot = -5.60377771E-08,-2.52881108E-07,-1.25607405E-14,1 attRot = 0,0,0,1 attRot0 = -5.60377771E-08,-2.52881108E-07,-1.25607405E-14,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294230226 sym = solarPanels5_4294229838 sym = solarPanels5_4294229774 sym = solarPanels5_4294229742 sym = solarPanels5_4294229710 sym = solarPanels5_4294229678 sym = solarPanels5_4294229646 srfN = srfAttach,probeCoreOcto.v2_4294232176,,0|0|0,0|0|1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294229774 partName = Part persistentId = 111046990 pos = 0.237347633,15.0329475,0.237347618 attPos = 0,0,0 attPos0 = 0.237347633,0.0329475403,0.237347618 rot = -5.17721581E-08,0.382683218,2.14447162E-08,0.923879623 attRot = 0,0,0,1 attRot0 = -5.17721581E-08,0.382683218,2.14447162E-08,0.923879623 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294230226 sym = solarPanels5_4294229838 sym = solarPanels5_4294229806 sym = solarPanels5_4294229742 sym = solarPanels5_4294229710 sym = solarPanels5_4294229678 sym = solarPanels5_4294229646 srfN = srfAttach,probeCoreOcto.v2_4294232176,,0|0|0,0|0|1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294229742 partName = Part persistentId = 2167762978 pos = 0.335660249,15.0329475,-4.93512644E-08 attPos = 0,0,0 attPos0 = 0.335660249,0.0329475403,-4.93512644E-08 rot = -3.96246982E-08,0.70710665,3.96246804E-08,0.707106888 attRot = 0,0,0,1 attRot0 = -3.96246982E-08,0.70710665,3.96246804E-08,0.707106888 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294230226 sym = solarPanels5_4294229838 sym = solarPanels5_4294229806 sym = solarPanels5_4294229774 sym = solarPanels5_4294229710 sym = solarPanels5_4294229678 sym = solarPanels5_4294229646 srfN = srfAttach,probeCoreOcto.v2_4294232176,,0|0|0,0|0|1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294229710 partName = Part persistentId = 1667794061 pos = 0.237347603,15.0329475,-0.237347692 attPos = 0,0,0 attPos0 = 0.237347603,0.0329475403,-0.237347692 rot = -2.14447358E-08,0.923879504,5.1772151E-08,0.382683605 attRot = 0,0,0,1 attRot0 = -2.14447358E-08,0.923879504,5.1772151E-08,0.382683605 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294230226 sym = solarPanels5_4294229838 sym = solarPanels5_4294229806 sym = solarPanels5_4294229774 sym = solarPanels5_4294229742 sym = solarPanels5_4294229678 sym = solarPanels5_4294229646 srfN = srfAttach,probeCoreOcto.v2_4294232176,,0|0|0,0|0|1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294229678 partName = Part persistentId = 3905333023 pos = -4.00138198E-08,15.0329475,-0.335660219 attPos = 0,0,0 attPos0 = -4.00138198E-08,0.0329475403,-0.335660219 rot = -1.25607405E-14,1,5.60377771E-08,2.52881108E-07 attRot = 0,0,0,1 attRot0 = -1.25607405E-14,1,5.60377771E-08,2.52881108E-07 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294230226 sym = solarPanels5_4294229838 sym = solarPanels5_4294229806 sym = solarPanels5_4294229774 sym = solarPanels5_4294229742 sym = solarPanels5_4294229710 sym = solarPanels5_4294229646 srfN = srfAttach,probeCoreOcto.v2_4294232176,,0|0|0,0|0|1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294229646 partName = Part persistentId = 4159503183 pos = -0.237347722,15.0329475,-0.237347558 attPos = 0,0,0 attPos0 = -0.237347722,0.0329475403,-0.237347558 rot = 2.14447251E-08,0.923879564,5.17721546E-08,-0.382683367 attRot = 0,0,0,1 attRot0 = 2.14447251E-08,0.923879564,5.17721546E-08,-0.382683367 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294230226 sym = solarPanels5_4294229838 sym = solarPanels5_4294229806 sym = solarPanels5_4294229774 sym = solarPanels5_4294229742 sym = solarPanels5_4294229710 sym = solarPanels5_4294229678 srfN = srfAttach,probeCoreOcto.v2_4294232176,,0|0|0,0|0|1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = batteryBankMini_4294226184 partName = Part persistentId = 867543453 pos = 0,15.2870817,0 attPos = 0,0,0 attPos0 = 0,0.287081718,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = RTLongAntenna2_4294160256 attN = top,RTLongAntenna2_4294160256_0|0.100000001|0_0|1|0_0|0.100000001|0_0|1|0 attN = bottom,probeCoreOcto.v2_4294232176_0|-0.100000001|0_0|-1|0_0|-0.100000001|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = RTLongAntenna2_4294160256 partName = Part persistentId = 2299103880 pos = 0,15.3870821,0 attPos = 0,0,0 attPos0 = 0,0.100000381,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 attN = bottom,batteryBankMini_4294226184_0|0|0_0|-1|0_0|0|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992752314 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { deployPercent { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = batteryBankMini_4294224434 partName = Part persistentId = 2938246958 pos = 0,14.7129183,0 attPos = 0,0,0 attPos0 = 0,-0.287081718,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 attN = top,probeCoreOcto.v2_4294232176_0|0.100000001|0_0|1|0_0|0.100000001|0_0|1|0 attN = bottom,Null_0_0|-0.100000001|0_0|-1|0_0|-0.100000001|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } ================================================ FILE: saves/RemoteTech KSP1_8 Testbed/Ships/VAB/Dumb Relay.loadmeta ================================================ shipName = Dumb Relay description = version = 1.8.1 partCount = 12 stageCount = 1 totalCost = 2370 totalMass = 0.170000017 shipSize = 0.813547969,3.71727753,0.813547969 type = VAB duplicatedParts = False steamPublishedFileId = 0 partNames = probeCoreOcto.v2 partNames = solarPanels5 partNames = batteryBankMini partNames = RTLongAntenna2 partModules = ModuleCommand partModules = ModuleReactionWheel partModules = ModuleSAS partModules = ModuleKerbNetAccess partModules = ModuleSPU partModules = ModuleRTAntennaPassive partModules = ModuleTripLogger partModules = ModuleDeployableSolarPanel partModules = ModuleAnimateGeneric partModules = ModuleRTAntenna partModules = ModuleSPUPassive partModules = ModuleRTDataTransmitter saveMD5 = 8e14219dbd3904011c15e6075abec26a ================================================ FILE: saves/RemoteTech KSP1_8 Testbed/Ships/VAB/Maneuver Rocket.craft ================================================ ship = Maneuver Rocket version = 1.8.1 description = type = VAB size = 3.07945251,3.36061478,4.38200426 steamPublishedFileId = 0 persistentId = 3317374556 rot = 0,0,0,0 missionFlag = Squad/Flags/default vesselType = Debris OverrideDefault = False,False,False,False OverrideActionControl = 0,0,0,0 OverrideAxisControl = 0,0,0,0 OverrideGroupNames = ,,, PART { part = probeCoreOcto.v2_4294063330 partName = Part persistentId = 3086761452 pos = 0,15,0 attPos = 0,0,0 attPos0 = 0,15,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = fuelTank_4294062234 link = sasModule_4294061316 link = ksp.r.largeBatteryPack_4294059282 link = ksp.r.largeBatteryPack_4294059254 link = RTLongAntenna2_4294053842 attN = bottom,fuelTank_4294062234_0|-0.187081799|0_0|-1|0_0|-0.187081799|0_0|-1|0 attN = top,sasModule_4294061316_0|0.187081799|0_0|1|0_0|0.187081799|0_0|1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False activeControlPointName = _default stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = fuelTank_4294062234 partName = Part persistentId = 140982397 pos = 0,13.8311939,0 attPos = 0,0,0 attPos0 = 0,-1.16880608,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = liquidEngine3.v2_4294057442 link = solarPanels3_4294055832 link = solarPanels3_4294055398 link = radialRCSTank_4294051820 link = radialRCSTank_4294051792 link = radialRCSTank_4294051730 link = radialRCSTank_4294051702 link = RCSBlock.v2_4294050896 link = RCSBlock.v2_4294050796 link = RCSBlock.v2_4294050706 link = RCSBlock.v2_4294050616 link = RCSBlock.v2_4294051624 link = RCSBlock.v2_4294050476 link = RCSBlock.v2_4294050386 link = RCSBlock.v2_4294050296 link = solarPanels5_4294049998 link = solarPanels5_4294049960 link = solarPanels5_4294049888 link = solarPanels5_4294049850 attN = top,probeCoreOcto.v2_4294063330_0|0.981724977|0_0|1|0_0|0.981724977|0_0|1|0 attN = bottom,liquidEngine3.v2_4294057442_0|-0.912500024|0_0|-1|0_0|-0.912500024|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } RESOURCE { name = LiquidFuel amount = 180 maxAmount = 180 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 220 maxAmount = 220 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = sasModule_4294061316 partName = Part persistentId = 399426845 pos = 0,15.2781925,0 attPos = 0,0,0 attPos0 = 0,0.27819252,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 attN = bottom,probeCoreOcto.v2_4294063330_0|-0.0911109|0_0|-0.5|0_0|-0.0911109|0_0|-0.5|0 attN = top,Null_0_0|0.0911109|0_0|0.5|0_0|0.0911109|0_0|0.5|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = ksp.r.largeBatteryPack_4294059282 partName = Part persistentId = 1666848145 pos = -0.340984166,15.156498,2.03242418E-08 attPos = 0,0,0 attPos0 = -0.340984166,0.156497955,2.03242418E-08 rot = 6.45116316E-08,0.70710659,-6.45115961E-08,0.707106948 attRot = 0,0,0,0.99999994 attRot0 = 6.45116316E-08,0.70710659,-6.45115961E-08,0.707106948 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = ksp.r.largeBatteryPack_4294059254 srfN = srfAttach,probeCoreOcto.v2_4294063330,collider.collider,0|0|0,0|0|-1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 400 maxAmount = 400 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = ksp.r.largeBatteryPack_4294059254 partName = Part persistentId = 3333645465 pos = 0.340984166,15.156498,-5.01340232E-08 attPos = 0,0,0 attPos0 = 0.340984166,0.156497955,-5.01340232E-08 rot = -6.45115961E-08,0.707106888,-6.45116316E-08,-0.70710665 attRot = 0,0,0,0.99999994 attRot0 = -6.45115961E-08,0.707106888,-6.45116316E-08,-0.70710665 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = ksp.r.largeBatteryPack_4294059282 srfN = srfAttach,probeCoreOcto.v2_4294063330,collider.collider,0|0|0,0|0|-1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 400 maxAmount = 400 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = liquidEngine3.v2_4294057442 partName = Part persistentId = 2749684688 pos = 0,12.9186935,0 attPos = 0,0,0 attPos0 = 0,-0.912500381,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 0 resPri = 0 dstg = 0 sidx = 0 sqor = 0 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 attN = top,fuelTank_4294062234_0|0|0_0|1|0_0|0|0_0|1|0 attN = bottom,Null_0_0|-0.817809999|0_0|-1|0_0|-0.817809999|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True independentThrottle = False independentThrottlePercentage = 0 staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False includeinDVCalcs = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleThrottle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { independentThrottlePercentage { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } thrustPercentage { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } } UPGRADESAPPLIED { } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True gimbalActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } LockAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } FreeAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } TogglePitchAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleYawAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleRollAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleJettison isEnabled = True activejettisonName = ShortShroud isJettisoned = True shroudHideOverride = False stagingEnabled = True EVENTS { } ACTIONS { JettisonAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleSurfaceFX isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateThrottle isEnabled = True animState = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = solarPanels3_4294055832 partName = Part persistentId = 695122334 pos = -0.605529368,13.9763832,3.60923664E-08 attPos = 0,0,0 attPos0 = -0.605529368,0.145189285,3.60923664E-08 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels3_4294055398 srfN = srfAttach,fuelTank_4294062234,COL3,0|0|0,1|0|0,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.707106829, 0, 0, 0.707106829) storedAnimationTime = 0 storedAnimationSpeed = 10 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels3_4294055398 partName = Part persistentId = 2176333197 pos = 0.605529368,13.9763832,-8.90294274E-08 attPos = 0,0,0 attPos0 = 0.605529368,0.145189285,-8.90294274E-08 rot = 0,1,0,-4.37113883E-08 attRot = 0,0,0,1 attRot0 = 0,1,0,-4.37113883E-08 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels3_4294055832 srfN = srfAttach,fuelTank_4294062234,COL3,0|0|0,1|0|0,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.707106829, 0, 0, 0.707106829) storedAnimationTime = 0 storedAnimationSpeed = 10 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = RTLongAntenna2_4294053842 partName = Part persistentId = 4139932610 pos = -2.96852214E-08,15.0105658,-0.339559346 attPos = 0,0,0 attPos0 = -2.96852214E-08,0.0105657578,-0.339559346 rot = 3.74699667E-08,0.707106829,-0.707106829,3.74699667E-08 attRot = 0,0,0,1 attRot0 = 3.74699667E-08,0.707106829,-0.707106829,3.74699667E-08 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,probeCoreOcto.v2_4294063330,collider.collider,0|0|0,0|-1|0,0|0|0 attN = bottom,Null_0_0|0|0_0|-1|0_0|0|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.993255496 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { deployPercent { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = radialRCSTank_4294051820 partName = Part persistentId = 1456260573 pos = 0,14.5202093,0.825160146 attPos = 0,0,0 attPos0 = 0,0.689015388,0.825160146 rot = 0,1,-1.78813934E-07,0 attRot = 0,0,0,1 attRot0 = 0,1,-1.78813934E-07,0 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = radialRCSTank_4294051792 srfN = srfAttach,fuelTank_4294062234,COL3,0|0|0.219999999,0|0|-1,0|0|0.219999999 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = MonoPropellant amount = 20 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = radialRCSTank_4294051792 partName = Part persistentId = 1426587875 pos = -7.21377944E-08,14.5202093,-0.825160146 attPos = 0,0,0 attPos0 = -7.21377944E-08,0.689015388,-0.825160146 rot = -1.78813934E-07,-4.37113883E-08,7.81620489E-15,-1 attRot = 0,0,0,1 attRot0 = -1.78813934E-07,-4.37113883E-08,7.81620489E-15,-1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = radialRCSTank_4294051820 srfN = srfAttach,fuelTank_4294062234,COL3,0|0|0.219999999,0|0|-1,0|0|0.219999999 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = MonoPropellant amount = 20 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = radialRCSTank_4294051730 partName = Part persistentId = 4229195950 pos = 0,13.8397055,0.823796988 attPos = 0,0,0 attPos0 = 0,0.00851154327,0.823796988 rot = 0,1,-1.78813934E-07,0 attRot = 0,0,0,1 attRot0 = 0,1,-1.78813934E-07,0 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = radialRCSTank_4294051702 srfN = srfAttach,fuelTank_4294062234,COL3,0|0|0.219999999,0|0|-1,0|0|0.219999999 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = MonoPropellant amount = 20 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = radialRCSTank_4294051702 partName = Part persistentId = 1133228735 pos = -7.20186222E-08,13.8397055,-0.823796988 attPos = 0,0,0 attPos0 = -7.20186222E-08,0.00851154327,-0.823796988 rot = -1.78813934E-07,-4.37113883E-08,7.81620489E-15,-1 attRot = 0,0,0,1 attRot0 = -1.78813934E-07,-4.37113883E-08,7.81620489E-15,-1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = radialRCSTank_4294051730 srfN = srfAttach,fuelTank_4294062234,COL3,0|0|0.219999999,0|0|-1,0|0|0.219999999 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = MonoPropellant amount = 20 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = RCSBlock.v2_4294050896 partName = Part persistentId = 1526615160 pos = 0.42762816,13.0423145,0.4276281 attPos = 0,0,0 attPos0 = 0.42762816,-0.788879395,0.4276281 rot = -1.43069599E-07,0.923879564,-5.92613567E-08,0.382683396 attRot = 0,0,0,1 attRot0 = -1.43069599E-07,0.923879564,-5.92613567E-08,0.382683396 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = RCSBlock.v2_4294050796 sym = RCSBlock.v2_4294050706 sym = RCSBlock.v2_4294050616 srfN = srfAttach,fuelTank_4294062234,COL3,-0.00875000004|0|0,0.125|0|0,-0.00875000004|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateRCS isEnabled = True stagingEnabled = True animStates = 0,0,0,0 EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = RCSBlock.v2_4294050796 partName = Part persistentId = 1650365092 pos = 0.4276281,13.0423145,-0.4276281 attPos = 0,0,0 attPos0 = 0.4276281,-0.788879395,-0.4276281 rot = -1.43069585E-07,0.923879504,5.92613745E-08,-0.382683486 attRot = 0,0,0,1 attRot0 = -1.43069585E-07,0.923879504,5.92613745E-08,-0.382683486 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = RCSBlock.v2_4294050706 sym = RCSBlock.v2_4294050616 sym = RCSBlock.v2_4294050896 srfN = srfAttach,fuelTank_4294062234,COL3,-0.00875000004|0|0,0.125|0|0,-0.00875000004|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateRCS isEnabled = True stagingEnabled = True animStates = 0,0,0,0 EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = RCSBlock.v2_4294050706 partName = Part persistentId = 524164955 pos = -0.427628189,13.0423145,-0.42762807 attPos = 0,0,0 attPos0 = -0.427628189,-0.788879395,-0.42762807 rot = -5.92613496E-08,0.382683367,1.43069599E-07,-0.923879564 attRot = 0,0,0,1 attRot0 = -5.92613496E-08,0.382683367,1.43069599E-07,-0.923879564 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = RCSBlock.v2_4294050616 sym = RCSBlock.v2_4294050896 sym = RCSBlock.v2_4294050796 srfN = srfAttach,fuelTank_4294062234,COL3,-0.00875000004|0|0,0.125|0|0,-0.00875000004|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateRCS isEnabled = True stagingEnabled = True animStates = 0,0,0,0 EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = RCSBlock.v2_4294050616 partName = Part persistentId = 3592039136 pos = -0.42762804,13.0423145,0.42762816 attPos = 0,0,0 attPos0 = -0.42762804,-0.788879395,0.42762816 rot = 5.92613745E-08,-0.382683486,1.43069585E-07,-0.923879504 attRot = 0,0,0,1 attRot0 = 5.92613745E-08,-0.382683486,1.43069585E-07,-0.923879504 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = RCSBlock.v2_4294050896 sym = RCSBlock.v2_4294050796 sym = RCSBlock.v2_4294050706 srfN = srfAttach,fuelTank_4294062234,COL3,-0.00875000004|0|0,0.125|0|0,-0.00875000004|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateRCS isEnabled = True stagingEnabled = True animStates = 0,0,0,0 EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = RCSBlock.v2_4294051624 partName = Part persistentId = 4258470042 pos = 0.432583362,14.7042236,0.432583302 attPos = 0,0,0 attPos0 = 0.432583362,0.873029709,0.432583302 rot = -8.26012538E-08,0.923879623,-3.42145619E-08,0.382683456 attRot = 0,0,0,1 attRot0 = -8.26012538E-08,0.923879623,-3.42145619E-08,0.382683456 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = RCSBlock.v2_4294050476 sym = RCSBlock.v2_4294050386 sym = RCSBlock.v2_4294050296 srfN = srfAttach,fuelTank_4294062234,COL3,-0.00875000004|0|0,0.125|0|0,-0.00875000004|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateRCS isEnabled = True stagingEnabled = True animStates = 0,0,0,0 EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = RCSBlock.v2_4294050476 partName = Part persistentId = 1673043858 pos = 0.432583302,14.7042236,-0.432583302 attPos = 0,0,0 attPos0 = 0.432583302,0.873029709,-0.432583302 rot = -8.26012538E-08,0.923879564,3.42145583E-08,-0.382683456 attRot = 0,0,0,1 attRot0 = -8.26012538E-08,0.923879564,3.42145583E-08,-0.382683456 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = RCSBlock.v2_4294050386 sym = RCSBlock.v2_4294050296 sym = RCSBlock.v2_4294051624 srfN = srfAttach,fuelTank_4294062234,COL3,-0.00875000004|0|0,0.125|0|0,-0.00875000004|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateRCS isEnabled = True stagingEnabled = True animStates = 0,0,0,0 EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = RCSBlock.v2_4294050386 partName = Part persistentId = 573577297 pos = -0.432583392,14.7042236,-0.432583272 attPos = 0,0,0 attPos0 = -0.432583392,0.873029709,-0.432583272 rot = -3.42145583E-08,0.382683426,8.26012538E-08,-0.923879623 attRot = 0,0,0,1 attRot0 = -3.42145583E-08,0.382683426,8.26012538E-08,-0.923879623 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = RCSBlock.v2_4294050296 sym = RCSBlock.v2_4294051624 sym = RCSBlock.v2_4294050476 srfN = srfAttach,fuelTank_4294062234,COL3,-0.00875000004|0|0,0.125|0|0,-0.00875000004|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateRCS isEnabled = True stagingEnabled = True animStates = 0,0,0,0 EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = RCSBlock.v2_4294050296 partName = Part persistentId = 996470580 pos = -0.432583243,14.7042236,0.432583362 attPos = 0,0,0 attPos0 = -0.432583243,0.873029709,0.432583362 rot = 3.42145583E-08,-0.382683456,8.26012538E-08,-0.923879564 attRot = 0,0,0,1 attRot0 = 3.42145583E-08,-0.382683456,8.26012538E-08,-0.923879564 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = RCSBlock.v2_4294051624 sym = RCSBlock.v2_4294050476 sym = RCSBlock.v2_4294050386 srfN = srfAttach,fuelTank_4294062234,COL3,-0.00875000004|0|0,0.125|0|0,-0.00875000004|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateRCS isEnabled = True stagingEnabled = True animStates = 0,0,0,0 EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294049998 partName = Part persistentId = 2305228211 pos = 0.604268551,13.4871244,3.60172159E-08 attPos = 0,0,0 attPos0 = 0.604268551,-0.344069481,3.60172159E-08 rot = 0,0.707106829,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0,0.707106829,0,0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294049960 srfN = srfAttach,fuelTank_4294062234,COL3,0|0|0,0|0|1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294049960 partName = Part persistentId = 2709693038 pos = -0.604268551,13.4871244,1.68096186E-08 attPos = 0,0,0 attPos0 = -0.604268551,-0.344069481,1.68096186E-08 rot = 0,0.707106769,0,-0.707106888 attRot = 0,0,0,1 attRot0 = 0,0.707106769,0,-0.707106888 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294049998 srfN = srfAttach,fuelTank_4294062234,COL3,0|0|0,0|0|1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294049888 partName = Part persistentId = 1845750628 pos = 0.606492341,12.9690418,3.61497641E-08 attPos = 0,0,0 attPos0 = 0.606492341,-0.8621521,3.61497641E-08 rot = 0,0.707106829,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0,0.707106829,0,0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294049850 srfN = srfAttach,fuelTank_4294062234,COL3,0|0|0,0|0|1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294049850 partName = Part persistentId = 834464369 pos = -0.606492341,12.9690418,1.68714802E-08 attPos = 0,0,0 attPos0 = -0.606492341,-0.8621521,1.68714802E-08 rot = 0,0.707106769,0,-0.707106888 attRot = 0,0,0,1 attRot0 = 0,0.707106769,0,-0.707106888 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294049888 srfN = srfAttach,fuelTank_4294062234,COL3,0|0|0,0|0|1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } ================================================ FILE: saves/RemoteTech KSP1_8 Testbed/Ships/VAB/Maneuver Rocket.loadmeta ================================================ shipName = Maneuver Rocket description = version = 1.8.1 partCount = 25 stageCount = 1 totalCost = 5860 totalMass = 3.72499943 shipSize = 3.07945251,3.36061478,4.38200426 type = VAB duplicatedParts = False steamPublishedFileId = 0 partNames = probeCoreOcto.v2 partNames = fuelTank partNames = sasModule partNames = ksp.r.largeBatteryPack partNames = liquidEngine3.v2 partNames = solarPanels3 partNames = RTLongAntenna2 partNames = radialRCSTank partNames = RCSBlock.v2 partNames = solarPanels5 partModules = ModuleCommand partModules = ModuleReactionWheel partModules = ModuleSAS partModules = ModuleKerbNetAccess partModules = ModuleSPU partModules = ModuleRTAntennaPassive partModules = ModuleTripLogger partModules = ModulePartVariants partModules = ModuleEngines partModules = ModuleGimbal partModules = ModuleJettison partModules = ModuleTestSubject partModules = ModuleSurfaceFX partModules = FXModuleAnimateThrottle partModules = ModuleDeployableSolarPanel partModules = ModuleAnimateGeneric partModules = ModuleRTAntenna partModules = ModuleSPUPassive partModules = ModuleRTDataTransmitter partModules = ModuleRCSFX partModules = FXModuleAnimateRCS saveMD5 = 6244f61c6388469c0c39d8437d4aa79c ================================================ FILE: saves/RemoteTech KSP1_8 Testbed/Ships/VAB/Omni 2_5Mm Limit.craft ================================================ ship = Omni 2_5Mm Limit version = 1.8.1 description = type = VAB size = 0.818904698,2.04797363,0.818904698 steamPublishedFileId = 0 persistentId = 152100838 rot = 0,0,0,0 missionFlag = Squad/Flags/default vesselType = Debris OverrideDefault = False,False,False,False OverrideActionControl = 0,0,0,0 OverrideAxisControl = 0,0,0,0 OverrideGroupNames = ,,, PART { part = probeCoreOcto.v2_4293497788 partName = Part persistentId = 1969501100 pos = 0,15,0 attPos = 0,0,0 attPos0 = 0,15,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = batteryBankMini_4293493832 link = solarPanels5_4293492506 link = solarPanels5_4294504874 link = solarPanels5_4294504842 link = solarPanels5_4294504810 link = solarPanels5_4294504778 link = solarPanels5_4294504746 link = solarPanels5_4294504714 link = solarPanels5_4294504682 attN = bottom,Null_0_0|-0.187081799|0_0|-1|0_0|-0.187081799|0_0|-1|0 attN = top,batteryBankMini_4293493832_0|0.187081799|0_0|1|0_0|0.187081799|0_0|1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False activeControlPointName = _default stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = batteryBankMini_4293493832 partName = Part persistentId = 3807729210 pos = 0,15.2870817,0 attPos = 0,0,0 attPos0 = 0,0.287081718,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = longAntenna_4293490094 attN = top,longAntenna_4293490094_0|0.100000001|0_0|1|0_0|0.100000001|0_0|1|0 attN = bottom,probeCoreOcto.v2_4293497788_0|-0.100000001|0_0|-1|0_0|-0.100000001|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = longAntenna_4293490094 partName = Part persistentId = 3952381594 pos = 0,15.3870821,0 attPos = 0,0,0 attPos0 = 0,0.100000381,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 attN = bottom,batteryBankMini_4293493832_0|0|0_0|-1|0_0|0|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.993339777 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { deployPercent { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 2500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4293492506 partName = Part persistentId = 3974784551 pos = -0.240025938,15.0988359,-0.240025923 attPos = 0,0,0 attPos0 = -0.240025938,0.0988359451,-0.240025923 rot = 2.46875498E-08,0.923879504,5.9600989E-08,-0.382683605 attRot = 0,0,0,1 attRot0 = 2.46875498E-08,0.923879504,5.9600989E-08,-0.382683605 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294504874 sym = solarPanels5_4294504842 sym = solarPanels5_4294504810 sym = solarPanels5_4294504778 sym = solarPanels5_4294504746 sym = solarPanels5_4294504714 sym = solarPanels5_4294504682 srfN = srfAttach,probeCoreOcto.v2_4293497788,collider.collider,0|0|0,0|0|1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294504874 partName = Part persistentId = 4184265404 pos = -0.339447916,15.0988359,3.19967022E-08 attPos = 0,0,0 attPos0 = -0.339447916,0.0988359451,3.19967022E-08 rot = 4.5616634E-08,0.70710665,4.56166163E-08,-0.707106948 attRot = 0,0,0,1 attRot0 = 4.5616634E-08,0.70710665,4.56166163E-08,-0.707106948 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294504842 sym = solarPanels5_4294504810 sym = solarPanels5_4294504778 sym = solarPanels5_4294504746 sym = solarPanels5_4294504714 sym = solarPanels5_4294504682 sym = solarPanels5_4293492506 srfN = srfAttach,probeCoreOcto.v2_4293497788,collider.collider,0|0|0,0|0|1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294504842 partName = Part persistentId = 2412744104 pos = -0.240025923,15.0988359,0.240025908 attPos = 0,0,0 attPos0 = -0.240025923,0.0988359451,0.240025908 rot = 5.96009961E-08,0.382683277,2.46875285E-08,-0.923879623 attRot = 0,0,0,1 attRot0 = 5.96009961E-08,0.382683277,2.46875285E-08,-0.923879623 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294504810 sym = solarPanels5_4294504778 sym = solarPanels5_4294504746 sym = solarPanels5_4294504714 sym = solarPanels5_4294504682 sym = solarPanels5_4293492506 sym = solarPanels5_4294504874 srfN = srfAttach,probeCoreOcto.v2_4293497788,collider.collider,0|0|0,0|0|1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294504810 partName = Part persistentId = 808366494 pos = -3.7699488E-09,15.0988359,0.339447916 attPos = 0,0,0 attPos0 = -3.7699488E-09,0.0988359451,0.339447916 rot = 6.45116458E-08,-1.65202522E-07,-1.05682344E-14,-1 attRot = 0,0,0,1 attRot0 = 6.45116458E-08,-1.65202522E-07,-1.05682344E-14,-1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294504778 sym = solarPanels5_4294504746 sym = solarPanels5_4294504714 sym = solarPanels5_4294504682 sym = solarPanels5_4293492506 sym = solarPanels5_4294504874 sym = solarPanels5_4294504842 srfN = srfAttach,probeCoreOcto.v2_4293497788,collider.collider,0|0|0,0|0|1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294504778 partName = Part persistentId = 571926619 pos = 0.240025952,15.0988359,0.240025908 attPos = 0,0,0 attPos0 = 0.240025952,0.0988359451,0.240025908 rot = 5.9600989E-08,-0.382683635,-2.46875516E-08,-0.923879504 attRot = 0,0,0,1 attRot0 = 5.9600989E-08,-0.382683635,-2.46875516E-08,-0.923879504 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294504746 sym = solarPanels5_4294504714 sym = solarPanels5_4294504682 sym = solarPanels5_4293492506 sym = solarPanels5_4294504874 sym = solarPanels5_4294504842 sym = solarPanels5_4294504810 srfN = srfAttach,probeCoreOcto.v2_4293497788,collider.collider,0|0|0,0|0|1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294504746 partName = Part persistentId = 4252089867 pos = 0.339447945,15.0988359,-5.34566951E-08 attPos = 0,0,0 attPos0 = 0.339447945,0.0988359451,-5.34566951E-08 rot = 4.56166127E-08,-0.707107008,-4.56166376E-08,-0.70710665 attRot = 0,0,0,1 attRot0 = 4.56166127E-08,-0.707107008,-4.56166376E-08,-0.70710665 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294504714 sym = solarPanels5_4294504682 sym = solarPanels5_4293492506 sym = solarPanels5_4294504874 sym = solarPanels5_4294504842 sym = solarPanels5_4294504810 sym = solarPanels5_4294504778 srfN = srfAttach,probeCoreOcto.v2_4293497788,collider.collider,0|0|0,0|0|1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294504714 partName = Part persistentId = 593768274 pos = 0.240025893,15.0988359,-0.240025938 attPos = 0,0,0 attPos0 = 0.240025893,0.0988359451,-0.240025938 rot = 2.46875285E-08,-0.923879623,-5.96009961E-08,-0.382683277 attRot = 0,0,0,1 attRot0 = 2.46875285E-08,-0.923879623,-5.96009961E-08,-0.382683277 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294504682 sym = solarPanels5_4293492506 sym = solarPanels5_4294504874 sym = solarPanels5_4294504842 sym = solarPanels5_4294504810 sym = solarPanels5_4294504778 sym = solarPanels5_4294504746 srfN = srfAttach,probeCoreOcto.v2_4293497788,collider.collider,0|0|0,0|0|1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294504682 partName = Part persistentId = 756210648 pos = -1.10683331E-07,15.0988359,-0.339447945 attPos = 0,0,0 attPos0 = -1.10683331E-07,0.0988359451,-0.339447945 rot = -2.23924561E-14,-1,-6.45116458E-08,3.48490715E-07 attRot = 0,0,0,1 attRot0 = -2.23924561E-14,-1,-6.45116458E-08,3.48490715E-07 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4293492506 sym = solarPanels5_4294504874 sym = solarPanels5_4294504842 sym = solarPanels5_4294504810 sym = solarPanels5_4294504778 sym = solarPanels5_4294504746 sym = solarPanels5_4294504714 srfN = srfAttach,probeCoreOcto.v2_4293497788,collider.collider,0|0|0,0|0|1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } ================================================ FILE: saves/RemoteTech KSP1_8 Testbed/Ships/VAB/Omni 2_5Mm Limit.loadmeta ================================================ shipName = Omni 2_5Mm Limit description = version = 1.8.1 partCount = 11 stageCount = 1 totalCost = 1710 totalMass = 0.154999971 shipSize = 0.818904698,2.04797363,0.818904698 type = VAB duplicatedParts = False steamPublishedFileId = 0 partNames = probeCoreOcto.v2 partNames = batteryBankMini partNames = longAntenna partNames = solarPanels5 partModules = ModuleCommand partModules = ModuleReactionWheel partModules = ModuleSAS partModules = ModuleKerbNetAccess partModules = ModuleSPU partModules = ModuleRTAntennaPassive partModules = ModuleTripLogger partModules = ModuleAnimateGeneric partModules = ModuleRTAntenna partModules = ModuleSPUPassive partModules = ModuleRTDataTransmitter partModules = ModuleDeployableSolarPanel saveMD5 = b05365f4cd409d2c409fdd8b4cba6e58 ================================================ FILE: saves/RemoteTech KSP1_8 Testbed/Ships/VAB/Rover Rocket.craft ================================================ ship = Rover Rocket version = 1.8.1 description = type = VAB size = 7.14064217,26.8179131,7.71700001 steamPublishedFileId = 0 persistentId = 4083792016 rot = 0,0,0,0 missionFlag = Squad/Flags/default vesselType = Debris OverrideDefault = False,False,False,False OverrideActionControl = 0,0,0,0 OverrideAxisControl = 0,0,0,0 OverrideGroupNames = ,,, PART { part = Separator.0_4294412338 partName = Part persistentId = 1098134093 pos = -0.125424966,32.1939888,0.0858865231 attPos = 0,0,0 attPos0 = 0,0.674876213,0 rot = 0,0,0,1 attRot = 0,0.99999994,0,0 attRot0 = 0,1,0,0 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 0 resPri = 0 dstg = 1 sidx = 0 sqor = 0 sepI = 0 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = trussAdapter_4294191188 attN = top,adapterSmallMiniShort_4293324888_0|0.0324999988|0_0|1|0_0|0.0324999988|0_0|1|0 attN = bottom,trussAdapter_4294191188_0|-0.0324999988|0_0|-1|0_0|-0.0324999988|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDecouple isEnabled = True ejectionForcePercent = 100 isDecoupled = False stagingEnabled = True EVENTS { } ACTIONS { DecoupleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleToggleCrossfeed isEnabled = True crossfeedStatus = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } EnableAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } DisableAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = adapterSmallMiniShort_4293324888 partName = Part persistentId = 854427704 pos = -0.125424966,32.41399,0.0858865231 attPos = 0,0,0 attPos0 = 0,0.220000267,0 rot = -1,0,0,0 attRot = -0.99999994,0,0,0 attRot0 = -1,0,0,0 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = RTLongAntenna2_4294520546 link = Separator.0_4294412338 attN = top,Separator.0_4294412338_0|0.1875|0_0|1|0_0|0.1875|0_0|1|0 attN = bottom,advSasModule_4293253062_0|0|0_0|-1|0_0|0|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = RTLongAntenna2_4294520546 partName = Part persistentId = 1673281816 pos = -0.125424966,32.329071,-0.394085884 attPos = 0,0,0 attPos0 = 0,0.0849175751,0.479970604 rot = 0.969668627,9.90257765E-10,3.92851529E-09,-0.244423538 attRot = 0,0,0,1 attRot0 = -0.244423509,-3.92851529E-09,9.90257987E-10,-0.969668627 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,adapterSmallMiniShort_4293324888,node_collider,0|0|0,0|-1|0,0|0|0 attN = bottom,Null_0_0|0|0_0|-1|0_0|0|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = True animTime = 0 animSpeed = 1 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { deployPercent { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = advSasModule_4293253062 partName = Part persistentId = 3640838567 pos = -0.125424966,32.613018,0.0858865231 attPos = 0,0,0 attPos0 = 0,-1.13652754,-2.38418266E-07 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = adapterSmallMiniShort_4293324888 attN = top,Mk1FuselageStructural_4293339798_0|0.199026704|0_0|1|0_0|0.199026704|0_0|1|0 attN = bottom,adapterSmallMiniShort_4293324888_0|-0.199026704|0_0|-1|0_0|-0.199026704|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = Mk1FuselageStructural_4293339798 partName = Part persistentId = 824991627 pos = -0.125424966,33.7495537,0.0858867615 attPos = 0,0,0 attPos0 = 0,-1.237499,1.19209133E-07 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = roverWheel1_4293331068 link = roverWheel1_4293330670 link = LgRadialSolarPanel_4293333480 link = LgRadialSolarPanel_4294521676 link = roverWheel1_4294504174 link = roverWheel1_4294503556 link = advSasModule_4293253062 attN = top,ServiceBay.125.v2_4294513824_0|0.9375|0_0|1|0_0|0.9375|0_0|1|0 attN = bottom,advSasModule_4293253062_0|-0.9375|0_0|-1|0_0|-0.9375|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } } PART { part = roverWheel1_4293331068 partName = Part persistentId = 2357548680 pos = 0.874575019,34.3495522,0.885887921 attPos = -0.0038022995,0.438980728,0.397500217 attPos0 = 1.0038023,0.161016554,0.402499616 rot = -4.214683E-08,0.707106829,-0.707106829,-8.8817842E-15 attRot = -0.707106709,0,0,-0.707106709 attRot0 = 4.21468478E-08,-0.707106829,0.707106829,0 mir = 1,1,1 symMethod = Mirror autostrutMode = ForceHeaviest rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = roverWheel1_4293330670 srfN = srfAttach,Mk1FuselageStructural_4293339798,BoxCOL,0.386656851|0.402500004|0,1.25|0|0,0.386656851|0.402500004|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = False autoFriction = True frictionMultiplier = 1 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 autoSpringDamper = True suspensionPos = (-1, -1, -1) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorEnable { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorDisable { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 50 brakeInput = 0 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = roverWheel1_4293330670 partName = Part persistentId = 544133363 pos = -1.12542498,34.3495522,0.885887682 attPos = 0.0038022995,0.438981444,0.397500098 attPos0 = -1.0038023,0.161016554,0.402499497 rot = 0.707106829,-3.0908609E-08,7.30554532E-08,-0.707106829 attRot = -0.707106709,0,0,-0.707106709 attRot0 = 0.707106769,-3.09086232E-08,7.30554603E-08,-0.707106888 mir = 1,1,1 symMethod = Mirror autostrutMode = ForceHeaviest rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = roverWheel1_4293331068 srfN = srfAttach,Mk1FuselageStructural_4293339798,BoxCOL,0.386656851|0.402500004|0,1.25|0|0,0.386656851|0.402500004|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = False autoFriction = True frictionMultiplier = 1 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 autoSpringDamper = True suspensionPos = (-1, -1, -1) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorEnable { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorDisable { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 50 brakeInput = 0 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = LgRadialSolarPanel_4293333480 partName = Part persistentId = 4234358737 pos = -0.430415034,33.7836723,-0.442372978 attPos = 0,0,0 attPos0 = -0.304990053,0.0341228247,-0.528257549 rot = -1.04308114E-07,0.965925813,-2.38418551E-07,-0.258819073 attRot = 0,0,0,1 attRot0 = -1.04308114E-07,0.965925813,-2.38418551E-07,-0.258819073 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = LgRadialSolarPanel_4294521676 srfN = srfAttach,Mk1FuselageStructural_4293339798,BoxCOL,0|0|0,0|0|1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, 0, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = LgRadialSolarPanel_4294521676 partName = Part persistentId = 3458905517 pos = 0.179565087,33.7836723,-0.442372978 attPos = 0,0,0 attPos0 = 0.304990053,0.0341228247,-0.528257549 rot = 1.49011612E-07,0.965925872,-1.78813934E-07,0.258819044 attRot = 0,0,0,1 attRot0 = 1.49011598E-07,0.965925813,-2.08616228E-07,0.258819014 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = LgRadialSolarPanel_4293333480 srfN = srfAttach,Mk1FuselageStructural_4293339798,BoxCOL,0|0|0,0|0|1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, 0, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = roverWheel1_4294504174 partName = Part persistentId = 816385511 pos = -1.12542498,33.1495476,0.885888159 attPos = 0.00163030624,-0.397183418,0.397500247 attPos0 = -1.00163031,-0.202816725,0.402499586 rot = 0.707106709,-1.26440554E-07,1.26440554E-07,-0.707106948 attRot = 0.707106709,0,0,-0.707106709 attRot0 = 0.707106709,-1.26440554E-07,1.26440554E-07,-0.707106948 mir = 1,1,1 symMethod = Mirror autostrutMode = ForceHeaviest rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = roverWheel1_4294503556 srfN = srfAttach,Mk1FuselageStructural_4293339798,BoxCOL,0.386656851|0.402500004|0,1.25|0|0,0.386656851|0.402500004|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = False autoFriction = True frictionMultiplier = 1 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 autoSpringDamper = True suspensionPos = (-1, -1, -1) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorEnable { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorDisable { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 50 brakeInput = 0 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = roverWheel1_4294503556 partName = Part persistentId = 675845900 pos = 0.874575019,33.1495476,0.885888636 attPos = -0.00163030624,-0.397184372,0.397500485 attPos0 = 1.00163031,-0.202816725,0.402499586 rot = -9.55319521E-08,0.707107008,-0.70710665,9.55319379E-08 attRot = 0.707106709,0,0,-0.707106709 attRot0 = -9.55319166E-08,0.707106888,-0.707106769,9.55319024E-08 mir = 1,1,1 symMethod = Mirror autostrutMode = ForceHeaviest rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = roverWheel1_4294504174 srfN = srfAttach,Mk1FuselageStructural_4293339798,BoxCOL,0.386656851|0.402500004|0,1.25|0|0,0.386656851|0.402500004|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = False autoFriction = True frictionMultiplier = 1 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 autoSpringDamper = True suspensionPos = (-1, -1, -1) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorEnable { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorDisable { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 50 brakeInput = 0 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = ServiceBay.125.v2_4294513824 partName = Part persistentId = 2116481487 pos = -0.125424966,34.9870491,0.0858866423 attPos = 0,0,0 attPos0 = 0,-0.410855085,5.96045631E-08 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = probeCoreOcto.v2_4293332840 link = SurfAntenna_4293331470 link = Mk1FuselageStructural_4293339798 attN = top2,probeCoreOcto.v2_4293332840_0|0.25|0_0|-1|0_0|0.25|0_0|-1|0 attN = bottom2,Null_0_0|-0.25|0_0|1|0_0|-0.25|0_0|1|0 attN = top,batteryBank_4293334410_0|0.300000012|0_0|1|0_0|0.300000012|0_0|1|0 attN = bottom,Mk1FuselageStructural_4293339798_0|-0.300000012|0_0|-1|0_0|-0.300000012|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = True animTime = 0 animSpeed = -10 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { deployPercent { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } } UPGRADESAPPLIED { } } MODULE { name = ModuleCargoBay isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleConductionMultiplier isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = probeCoreOcto.v2_4293332840 partName = Part persistentId = 2183811907 pos = -0.125424966,35.0499687,0.0858866423 attPos = 0,0,0 attPos0 = 0,0.0629181564,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 attN = bottom,Null_0_0|-0.187081799|0_0|-1|0_0|-0.187081799|0_0|-1|0 attN = top,ServiceBay.125.v2_4294513824_0|0.187081799|0_0|1|0_0|0.187081799|0_0|1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False activeControlPointName = _default stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = SurfAntenna_4293331470 partName = Part persistentId = 831454684 pos = -0.125424966,35.0314445,-0.577458262 attPos = 0,0,0 attPos0 = 0,0.0443922877,-0.663343549 rot = 1.68301983E-09,0.707106054,-0.707107604,1.68301584E-09 attRot = 0,0,0,1 attRot0 = 1.68301983E-09,0.707106054,-0.707107604,1.68301584E-09 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,ServiceBay.125.v2_4294513824,COL_Back,0|-0.0500000007|0,0|-1|0,0|-0.0500000007|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 1500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = batteryBank_4293334410 partName = Part persistentId = 1941761120 pos = -0.125424966,35.3979073,0.0858865827 attPos = 0,0,0 attPos0 = 0,-0.51589334,5.96046448E-08 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = roverWheel1_4293337834 link = roverWheel1_4294504996 link = ServiceBay.125.v2_4294513824 attN = top,mk1pod.v2_4293343322_0|0.110855304|0_0|1|0_0|0.110855304|0_0|1|0 attN = bottom,ServiceBay.125.v2_4294513824_0|-0.110855304|0_0|-1|0_0|-0.110855304|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 1000 maxAmount = 1000 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = roverWheel1_4293337834 partName = Part persistentId = 3909996284 pos = -1.12542498,35.3979073,0.885887384 attPos = -0.00717258453,0.0233221333,0.397499532 attPos0 = -0.992827415,-0.0233223122,0.402499646 rot = 0.707106829,0,-4.21468478E-08,-0.707106829 attRot = -0.707106769,0,0,0.707106769 attRot0 = 0.707106829,0,-4.21468478E-08,-0.707106829 mir = 1,1,1 symMethod = Mirror autostrutMode = ForceHeaviest rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = roverWheel1_4294504996 srfN = srfAttach,batteryBank_4293334410,collider,0.386656851|0.402500004|0,1.25|0|0,0.386656851|0.402500004|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = False autoFriction = True frictionMultiplier = 1 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 autoSpringDamper = True suspensionPos = (-1, -1, -1) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorEnable { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorDisable { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 50 brakeInput = 0 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = roverWheel1_4294504996 partName = Part persistentId = 1791302932 pos = 0.874575019,35.3979073,0.885887384 attPos = 0.00717258453,0.0233219545,0.397500008 attPos0 = 0.992827415,-0.0233223718,0.402499646 rot = 7.30554746E-08,0.707106829,-0.707106829,-3.09086197E-08 attRot = -0.707106769,0,0,0.707106769 attRot0 = 7.30554603E-08,0.707106888,-0.707106769,-3.09086232E-08 mir = 1,1,1 symMethod = Mirror autostrutMode = ForceHeaviest rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = roverWheel1_4293337834 srfN = srfAttach,batteryBank_4293334410,collider,0.386656851|0.402500004|0,1.25|0|0,0.386656851|0.402500004|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = False autoFriction = True frictionMultiplier = 1 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 autoSpringDamper = True suspensionPos = (-1, -1, -1) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorEnable { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorDisable { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 50 brakeInput = 0 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = mk1pod.v2_4293343322 partName = Part persistentId = 455798222 pos = -0.125424966,35.9137993,0.0858865231 attPos = 0,0,0 attPos0 = -0.125424966,35.9137993,0.0858865231 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Mirror autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = batteryBank_4293334410 link = sensorThermometer_4294179684 attN = bottom,batteryBank_4293334410_0|-0.40503791|0_0|-1|0_0|-0.40503791|0_0|-1|0 attN = top,Null_0_0|0.642375588|0_0|1|0_0|0.642375588|0_0|1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False activeControlPointName = _default stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleColorChanger isEnabled = True animState = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = Light wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ResetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceContainer isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { CollectAllAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleConductionMultiplier isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleLiftingSurface isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FlagDecal isEnabled = True flagDisplayed = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 50 maxAmount = 50 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = MonoPropellant amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = trussAdapter_4294191188 partName = Part persistentId = 715545906 pos = -0.125424966,31.5121174,0.0858865231 attPos = 0,0,0 attPos0 = 0,-0.681871414,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 0 resPri = 0 dstg = 2 sidx = -1 sqor = -1 sepI = 0 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = fairingSize2_4294247294 link = radialRCSTank_4294195844 link = radialRCSTank_4294187994 link = radialRCSTank_4294187968 link = radialRCSTank_4294187942 attN = bottom,fairingSize2_4294247294_0|-0.410830498|0_0|-1|0_0|-0.410830498|0_0|-1|0 attN = top,Separator.0_4294412338_0|0.64937079|0_0|1|0_0|0.64937079|0_0|1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } } PART { part = fairingSize2_4294247294 partName = Part persistentId = 851012701 pos = -0.125424966,30.8812885,0.0858865231 attPos = 0,0,0 attPos0 = 0,-0.630828857,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 1 resPri = 0 dstg = 3 sidx = 0 sqor = 1 sepI = 0 attm = 0 sameVesselCollision = False modCost = 894.489746 modMass = 0.894489706 modSize = 0,0,0 link = Rockomax16.BW_4294235402 attN = interstage01a,Null_0_0|1.19000006|0_0|-1|0_0|1.19000006|0_0|-1|0 attN = interstage01b,Null_0_0|1.25|0_0|1|0_0|1.25|0_0|1|0 attN = interstage02a,Null_0_0|2.19000006|0_0|-1|0_0|2.19000006|0_0|-1|0 attN = interstage02b,Null_0_0|2.25|0_0|1|0_0|2.25|0_0|1|0 attN = interstage03a,Null_0_0|3.19000006|0_0|-1|0_0|3.19000006|0_0|-1|0 attN = interstage03b,Null_0_0|3.25|0_0|1|0_0|3.25|0_0|1|0 attN = interstage04a,Null_0_0|4.19000006|0_0|-1|0_0|4.19000006|0_0|-1|0 attN = interstage04b,Null_0_0|4.25|0_0|1|0_0|4.25|0_0|1|0 attN = interstage05a,Null_0_0|5.19000006|0_0|-1|0_0|5.19000006|0_0|-1|0 attN = interstage05b,Null_0_0|5.25|0_0|1|0_0|5.25|0_0|1|0 attN = interstage06a,Null_0_0|6.19000006|0_0|-1|0_0|6.19000006|0_0|-1|0 attN = interstage06b,Null_0_0|6.25|0_0|1|0_0|6.25|0_0|1|0 attN = top,trussAdapter_4294191188_0|0.219999999|0_0|1|0_0|0.219999999|0_0|1|0 attN = bottom,Rockomax16.BW_4294235402_0|-0.200000003|0_0|-1|0_0|-0.200000003|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleProceduralFairing isEnabled = True interstageCraftID = 0 nArcs = 3 ejectionForce = 100 useClamshell = False stagingEnabled = True fsm = st_idle EVENTS { } ACTIONS { DeployFairingAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } XSECTION { h = 0 r = 1.25 } XSECTION { h = 1.89748764 r = 2.05115104 } XSECTION { h = 4.65895462 r = 2.05115104 } XSECTION { h = 6.15166473 r = 0.375 } UPGRADESAPPLIED { } } MODULE { name = ModuleCargoBay isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNodeToggle isEnabled = True showMesh = True showNodes = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = Rockomax16.BW_4294235402 partName = Part persistentId = 3475421386 pos = -0.125424966,29.7612877,0.0858865231 attPos = 0,0,0 attPos0 = 0,-1.12000084,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 0 resPri = 0 dstg = 4 sidx = -1 sqor = -1 sepI = 0 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = liquidEngine2-2.v2_4294227968 link = solarPanels5_4294213206 link = solarPanels5_4294213108 link = solarPanels5_4294213076 link = solarPanels5_4294213044 link = RTLongAntenna2_4293988928 attN = top,fairingSize2_4294247294_0|0.920000017|0_0|1|0_0|0.920000017|0_0|1|0 attN = bottom,liquidEngine2-2.v2_4294227968_0|-0.920000017|0_0|-1|0_0|-0.920000017|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } RESOURCE { name = LiquidFuel amount = 720 maxAmount = 720 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 880 maxAmount = 880 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = liquidEngine2-2.v2_4294227968 partName = Part persistentId = 1269979519 pos = -0.125424966,28.8412876,0.0858865231 attPos = 0,0,0 attPos0 = 0,-0.920000076,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 2 resPri = 0 dstg = 4 sidx = 0 sqor = 2 sepI = 0 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = Decoupler.2_4294220778 attN = top,Rockomax16.BW_4294235402_0|0|0_0|1|0_0|0|0_0|1|0 attN = bottom,Decoupler.2_4294220778_0|-1.5|0_0|-1|0_0|-1.5|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True independentThrottle = False independentThrottlePercentage = 0 staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False includeinDVCalcs = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleThrottle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { independentThrottlePercentage { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } thrustPercentage { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } } UPGRADESAPPLIED { } } MODULE { name = ModuleJettison isEnabled = True activejettisonName = Shroud isJettisoned = False shroudHideOverride = False stagingEnabled = True EVENTS { } ACTIONS { JettisonAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True gimbalActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } LockAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } FreeAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } TogglePitchAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleYawAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleRollAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateThrottle isEnabled = True animState = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleAlternator isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleSurfaceFX isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = Decoupler.2_4294220778 partName = Part persistentId = 3027752617 pos = -0.125424966,27.2412872,0.0858865231 attPos = 0,0,0 attPos0 = 0,-1.60000038,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 2 resPri = 0 dstg = 5 sidx = 1 sqor = 2 sepI = 2 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = Rockomax32.BW_4294217888 attN = top,liquidEngine2-2.v2_4294227968_0|0.100000001|0_0|1|0_0|0.100000001|0_0|1|0 attN = bottom,Rockomax32.BW_4294217888_0|-0.100000001|0_0|-1|0_0|-0.100000001|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDecouple isEnabled = True ejectionForcePercent = 100 isDecoupled = False stagingEnabled = True EVENTS { } ACTIONS { DecoupleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleToggleCrossfeed isEnabled = True crossfeedStatus = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } EnableAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } DisableAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = Rockomax32.BW_4294217888 partName = Part persistentId = 2578003506 pos = -0.125424966,25.2812862,0.0858865231 attPos = 0,0,0 attPos0 = 0,-1.96000099,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 2 resPri = 0 dstg = 6 sidx = -1 sqor = -1 sepI = 2 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = Rockomax16.BW_4294215778 attN = top,Decoupler.2_4294220778_0|1.86000001|0_0|1|0_0|1.86000001|0_0|1|0 attN = bottom,Rockomax16.BW_4294215778_0|-1.86000001|0_0|-1|0_0|-1.86000001|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } RESOURCE { name = LiquidFuel amount = 1440 maxAmount = 1440 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 1760 maxAmount = 1760 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = Rockomax16.BW_4294215778 partName = Part persistentId = 2015687920 pos = -0.125424966,22.5012856,0.0858865231 attPos = 0,0,0 attPos0 = 0,-2.78000069,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 2 resPri = 0 dstg = 6 sidx = -1 sqor = -1 sepI = 2 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = engineLargeSkipper_4294217244 link = RCSBlock.v2_4294187562 link = RCSBlock.v2_4294187462 link = RCSBlock.v2_4294187372 link = RCSBlock.v2_4294187282 attN = top,Rockomax32.BW_4294217888_0|0.920000017|0_0|1|0_0|0.920000017|0_0|1|0 attN = bottom,engineLargeSkipper_4294217244_0|-0.920000017|0_0|-1|0_0|-0.920000017|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } RESOURCE { name = LiquidFuel amount = 720 maxAmount = 720 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 880 maxAmount = 880 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = engineLargeSkipper_4294217244 partName = Part persistentId = 2419965887 pos = -0.125424966,21.5812855,0.0858865231 attPos = 0,0,0 attPos0 = 0,-0.920000076,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 3 resPri = 0 dstg = 6 sidx = 0 sqor = 3 sepI = 2 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = Decoupler.2_4294211926 attN = top,Rockomax16.BW_4294215778_0|0|0_0|1|0_0|0|0_0|1|0 attN = bottom,Decoupler.2_4294211926_0|-2.375|0_0|-1|0_0|-2.375|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True independentThrottle = False independentThrottlePercentage = 0 staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False includeinDVCalcs = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleThrottle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { independentThrottlePercentage { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } thrustPercentage { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } } UPGRADESAPPLIED { } } MODULE { name = ModuleJettison isEnabled = True activejettisonName = obj_fairing isJettisoned = False shroudHideOverride = False stagingEnabled = True EVENTS { } ACTIONS { JettisonAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True gimbalActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } LockAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } FreeAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } TogglePitchAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleYawAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleRollAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateThrottle isEnabled = True animState = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleAlternator isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleSurfaceFX isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = Decoupler.2_4294211926 partName = Part persistentId = 3643942298 pos = -0.125424966,19.1062851,0.0858865231 attPos = 0,0,0 attPos0 = 0,-2.47500038,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 3 resPri = 0 dstg = 7 sidx = 1 sqor = 3 sepI = 3 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = Rockomax16.BW_4294185938 attN = top,engineLargeSkipper_4294217244_0|0.100000001|0_0|1|0_0|0.100000001|0_0|1|0 attN = bottom,Rockomax16.BW_4294185938_0|-0.100000001|0_0|-1|0_0|-0.100000001|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDecouple isEnabled = True ejectionForcePercent = 100 isDecoupled = False stagingEnabled = True EVENTS { } ACTIONS { DecoupleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleToggleCrossfeed isEnabled = True crossfeedStatus = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } EnableAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } DisableAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294213206 partName = Part persistentId = 326144552 pos = -0.125424862,30.2282257,-1.12155104 attPos = 0,0,0 attPos0 = 1.04308128E-07,0.466938019,-1.20743752 rot = 1.79043029E-14,1,-9.71814842E-08,1.84235745E-07 attRot = 0,0,0,1 attRot0 = 1.79043029E-14,1,-9.71814842E-08,1.84235745E-07 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 0 resPri = 0 dstg = 4 sidx = -1 sqor = -1 sepI = 0 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294213108 sym = solarPanels5_4294213076 sym = solarPanels5_4294213044 srfN = srfAttach,Rockomax16.BW_4294235402,collider,0|0|0,0|0|1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294213108 partName = Part persistentId = 2433643052 pos = -1.33286238,30.2282257,0.0858863443 attPos = 0,0,0 attPos0 = -1.2074374,0.466938019,-1.78813934E-07 rot = -6.87176751E-08,0.707106888,-6.87176964E-08,-0.70710665 attRot = 0,0,0,1 attRot0 = -6.87176751E-08,0.707106888,-6.87176964E-08,-0.70710665 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 0 resPri = 0 dstg = 4 sidx = -1 sqor = -1 sepI = 0 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294213076 sym = solarPanels5_4294213044 sym = solarPanels5_4294213206 srfN = srfAttach,Rockomax16.BW_4294235402,collider,0|0|0,0|0|1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294213076 partName = Part persistentId = 983018342 pos = -0.125424966,30.2282257,1.29332399 attPos = 0,0,0 attPos0 = 0,0.466938019,1.20743752 rot = -9.71814842E-08,1.40524349E-07,-1.36563649E-14,-1 attRot = 0,0,0,1 attRot0 = -9.71814842E-08,1.40524349E-07,-1.36563649E-14,-1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 0 resPri = 0 dstg = 4 sidx = -1 sqor = -1 sepI = 0 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294213044 sym = solarPanels5_4294213206 sym = solarPanels5_4294213108 srfN = srfAttach,Rockomax16.BW_4294235402,collider,0|0|0,0|0|1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels5_4294213044 partName = Part persistentId = 226890683 pos = 1.08201241,30.2282257,0.0858865529 attPos = 0,0,0 attPos0 = 1.2074374,0.466938019,2.98023224E-08 rot = -6.87176964E-08,-0.70710665,6.87176751E-08,-0.707106888 attRot = 0,0,0,1 attRot0 = -6.87176964E-08,-0.70710665,6.87176751E-08,-0.707106888 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 0 resPri = 0 dstg = 4 sidx = -1 sqor = -1 sepI = 0 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels5_4294213206 sym = solarPanels5_4294213108 sym = solarPanels5_4294213076 srfN = srfAttach,Rockomax16.BW_4294235402,collider,0|0|0,0|0|1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = radialRCSTank_4294195844 partName = Part persistentId = 3927753117 pos = -0.125425026,31.3096771,-0.738266468 attPos = 0,0,0 attPos0 = -5.96046448E-08,-0.202440262,-0.824153006 rot = 1.78813934E-07,0,0,-1 attRot = 0,0,0,1 attRot0 = 1.78813934E-07,0,0,-1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 0 resPri = 0 dstg = 2 sidx = -1 sqor = -1 sepI = 0 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = radialRCSTank_4294187994 sym = radialRCSTank_4294187968 sym = radialRCSTank_4294187942 srfN = srfAttach,trussAdapter_4294191188,collider,0|0|0.219999999,0|0|-1,0|0|0.219999999 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = MonoPropellant amount = 20 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = radialRCSTank_4294187994 partName = Part persistentId = 2965804916 pos = -0.949577928,31.3096771,0.0858865306 attPos = 0,0,0 attPos0 = -0.824152946,-0.202440262,7.4505806E-09 rot = 1.26440554E-07,-0.707106829,-1.26440554E-07,-0.707106829 attRot = 0,0,0,1 attRot0 = 1.26440554E-07,-0.707106829,-1.26440554E-07,-0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 0 resPri = 0 dstg = 2 sidx = -1 sqor = -1 sepI = 0 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = radialRCSTank_4294187968 sym = radialRCSTank_4294187942 sym = radialRCSTank_4294195844 srfN = srfAttach,trussAdapter_4294191188,collider,0|0|0.219999999,0|0|-1,0|0|0.219999999 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = MonoPropellant amount = 20 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = radialRCSTank_4294187968 partName = Part persistentId = 973839131 pos = -0.125424832,31.3096771,0.910039544 attPos = 0,0,0 attPos0 = 1.34110451E-07,-0.202440262,0.824153006 rot = -7.81620489E-15,-1,-1.78813934E-07,4.37113883E-08 attRot = 0,0,0,1 attRot0 = -7.81620489E-15,-1,-1.78813934E-07,4.37113883E-08 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 0 resPri = 0 dstg = 2 sidx = -1 sqor = -1 sepI = 0 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = radialRCSTank_4294187942 sym = radialRCSTank_4294195844 sym = radialRCSTank_4294187994 srfN = srfAttach,trussAdapter_4294191188,collider,0|0|0.219999999,0|0|-1,0|0|0.219999999 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = MonoPropellant amount = 20 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = radialRCSTank_4294187942 partName = Part persistentId = 693645967 pos = 0.698727965,31.3096771,0.0858864114 attPos = 0,0,0 attPos0 = 0.824152946,-0.202440262,-1.11758709E-07 rot = -1.26440554E-07,-0.707106829,-1.26440554E-07,0.707106829 attRot = 0,0,0,1 attRot0 = -1.26440554E-07,-0.707106829,-1.26440554E-07,0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 0 resPri = 0 dstg = 2 sidx = -1 sqor = -1 sepI = 0 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = radialRCSTank_4294195844 sym = radialRCSTank_4294187994 sym = radialRCSTank_4294187968 srfN = srfAttach,trussAdapter_4294191188,collider,0|0|0.219999999,0|0|-1,0|0|0.219999999 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = MonoPropellant amount = 20 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = RCSBlock.v2_4294187562 partName = Part persistentId = 4212816373 pos = -0.125425071,21.9500809,-1.11343193 attPos = 0,0,0 attPos0 = -1.04308128E-07,-0.551204681,-1.19931829 rot = 6.87177035E-08,0.707106948,-6.87176751E-08,-0.707106709 attRot = 0,0,0,1 attRot0 = 6.87177035E-08,0.707106948,-6.87176751E-08,-0.707106709 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 2 resPri = 0 dstg = 6 sidx = -1 sqor = -1 sepI = 2 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = RCSBlock.v2_4294187462 sym = RCSBlock.v2_4294187372 sym = RCSBlock.v2_4294187282 srfN = srfAttach,Rockomax16.BW_4294215778,collider,-0.00875000004|0|0,0.125|0|0,-0.00875000004|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateRCS isEnabled = True stagingEnabled = True animStates = 0,0,0,0 EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = RCSBlock.v2_4294187462 partName = Part persistentId = 68619609 pos = -1.32474327,21.9500809,0.0858865529 attPos = 0,0,0 attPos0 = -1.19931829,-0.551204681,2.98023224E-08 rot = 2.00971831E-14,1.68587391E-07,-9.71814842E-08,-1 attRot = 0,0,0,1 attRot0 = 2.00971831E-14,1.68587391E-07,-9.71814842E-08,-1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 2 resPri = 0 dstg = 6 sidx = -1 sqor = -1 sepI = 2 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = RCSBlock.v2_4294187372 sym = RCSBlock.v2_4294187282 sym = RCSBlock.v2_4294187562 srfN = srfAttach,Rockomax16.BW_4294215778,collider,-0.00875000004|0|0,0.125|0|0,-0.00875000004|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateRCS isEnabled = True stagingEnabled = True animStates = 0,0,0,0 EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = RCSBlock.v2_4294187372 partName = Part persistentId = 585856555 pos = -0.125424758,21.9500809,1.28520489 attPos = 0,0,0 attPos0 = 2.08616257E-07,-0.551204681,1.19931853 rot = -6.87176751E-08,-0.707106769,-6.87177035E-08,-0.707106888 attRot = 0,0,0,1 attRot0 = -6.87176751E-08,-0.707106769,-6.87177035E-08,-0.707106888 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 2 resPri = 0 dstg = 6 sidx = -1 sqor = -1 sepI = 2 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = RCSBlock.v2_4294187282 sym = RCSBlock.v2_4294187562 sym = RCSBlock.v2_4294187462 srfN = srfAttach,Rockomax16.BW_4294215778,collider,-0.00875000004|0|0,0.125|0|0,-0.00875000004|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateRCS isEnabled = True stagingEnabled = True animStates = 0,0,0,0 EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = RCSBlock.v2_4294187282 partName = Part persistentId = 427049581 pos = 1.07389331,21.9500809,0.0858863443 attPos = 0,0,0 attPos0 = 1.19931829,-0.551204681,-1.78813934E-07 rot = -9.71814842E-08,-1,-2.00971831E-14,-1.68587391E-07 attRot = 0,0,0,1 attRot0 = -9.71814842E-08,-1,-2.00971831E-14,-1.68587391E-07 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 2 resPri = 0 dstg = 6 sidx = -1 sqor = -1 sepI = 2 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = RCSBlock.v2_4294187562 sym = RCSBlock.v2_4294187462 sym = RCSBlock.v2_4294187372 srfN = srfAttach,Rockomax16.BW_4294215778,collider,-0.00875000004|0|0,0.125|0|0,-0.00875000004|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateRCS isEnabled = True stagingEnabled = True animStates = 0,0,0,0 EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = Rockomax16.BW_4294185938 partName = Part persistentId = 1429325179 pos = -0.125424966,18.0862846,0.0858865231 attPos = 0,0,0 attPos0 = 0,-1.02000046,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 3 resPri = 0 dstg = 8 sidx = -1 sqor = -1 sepI = 3 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = Rockomax32.BW_4294211152 link = strutConnector_4294183904 link = strutConnector_4294183608 link = strutConnector_4294183512 attN = top,Decoupler.2_4294211926_0|0.920000017|0_0|1|0_0|0.920000017|0_0|1|0 attN = bottom,Rockomax32.BW_4294211152_0|-0.920000017|0_0|-1|0_0|-0.920000017|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } RESOURCE { name = LiquidFuel amount = 720 maxAmount = 720 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 880 maxAmount = 880 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = Rockomax32.BW_4294211152 partName = Part persistentId = 698479922 pos = -0.125424966,15.3062859,0.0858865231 attPos = 0,0,0 attPos0 = 0,-2.77999878,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 3 resPri = 0 dstg = 8 sidx = -1 sqor = -1 sepI = 3 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = Rockomax32.BW_4294210502 link = Rockomax32.BW_4294205264 link = Rockomax32.BW_4294205028 link = fuelLine_4294204142 link = fuelLine_4294203432 link = fuelLine_4294203336 link = rocketNoseCone.v2_4294200514 link = R8winglet_4294200914 link = R8winglet_4294184306 link = R8winglet_4294184262 attN = top,Rockomax16.BW_4294185938_0|1.86000001|0_0|1|0_0|1.86000001|0_0|1|0 attN = bottom,rocketNoseCone.v2_4294200514_0|-1.86000001|0_0|-1|0_0|-1.86000001|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } RESOURCE { name = LiquidFuel amount = 1440 maxAmount = 1440 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 1760 maxAmount = 1760 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = Rockomax32.BW_4294210502 partName = Part persistentId = 1220939145 pos = -2.60913587,14.7870178,0.0858865976 attPos = 0,0,0 attPos0 = -2.483711,-0.519268036,7.4505806E-08 rot = -1.25607395E-15,0,-2.10860733E-08,1 attRot = 0,0,0,1 attRot0 = -1.25607395E-15,0,-2.10860733E-08,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 3 resPri = 0 dstg = 8 sidx = -1 sqor = -1 sepI = 3 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = engineLargeSkipper_4294209310 link = rocketNoseCone.v2_4294201574 link = launchClamp1_4294199304 sym = Rockomax32.BW_4294205264 sym = Rockomax32.BW_4294205028 srfN = srfAttach,Rockomax32.BW_4294211152,collider,1.25|0|0,1|0|0,1.25|0|0 attN = top,rocketNoseCone.v2_4294201574_0|1.86000001|0_0|1|0_0|1.86000001|0_0|1|0 attN = bottom,engineLargeSkipper_4294209310_0|-1.86000001|0_0|-1|0_0|-1.86000001|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } RESOURCE { name = LiquidFuel amount = 1440 maxAmount = 1440 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 1760 maxAmount = 1760 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = engineLargeSkipper_4294209310 partName = Part persistentId = 2907760969 pos = -2.60913587,12.9270172,0.0858865976 attPos = 0,0,0 attPos0 = 7.84401948E-08,-1.86000061,-3.30402332E-15 rot = -3.67895632E-16,7.7574767E-24,1.77635684E-15,1 attRot = 0,0,0,1 attRot0 = 8.88178314E-16,0,2.10860751E-08,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 4 resPri = 0 dstg = 8 sidx = 0 sqor = 4 sepI = 3 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = engineLargeSkipper_4294205202 sym = engineLargeSkipper_4294204966 attN = top,Rockomax32.BW_4294210502_0|0|0_0|1|0_0|0|0_0|1|0 attN = bottom,Null_0_0|-2.375|0_0|-1|0_0|-2.375|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True independentThrottle = False independentThrottlePercentage = 0 staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False includeinDVCalcs = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleThrottle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { independentThrottlePercentage { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None } thrustPercentage { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleJettison isEnabled = True activejettisonName = obj_fairing isJettisoned = True shroudHideOverride = False stagingEnabled = True EVENTS { } ACTIONS { JettisonAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True gimbalActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } LockAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } FreeAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } TogglePitchAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleYawAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleRollAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateThrottle isEnabled = True animState = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleAlternator isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleSurfaceFX isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = rocketNoseCone.v2_4294201574 partName = Part persistentId = 1811049882 pos = -2.60913587,16.6470184,0.0858865976 attPos = 0,0,0 attPos0 = -7.8440145E-08,1.86000061,4.67259246E-15 rot = -6.2803692E-16,-0.866025448,1.99613584E-16,0.49999997 attRot = 0,0,0,1 attRot0 = 1.82610762E-08,-0.866025448,1.05430349E-08,0.49999997 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 3 resPri = 0 dstg = 8 sidx = -1 sqor = -1 sepI = 3 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = rocketNoseCone.v2_4294201840 sym = rocketNoseCone.v2_4294201646 attN = bottom,Rockomax32.BW_4294210502_0|0|0_0|-1|0_0|0|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = launchClamp1_4294199304 partName = Part persistentId = 1390460117 pos = -4.03650141,12.5474854,-1.34147716 attPos = 0,0,0 attPos0 = -1.42736387,-2.23953247,-1.42736244 rot = 4.48363906E-08,-0.382683963,-2.43329756E-09,-0.923879325 attRot = 0,0,0,1 attRot0 = 5.29056905E-08,-0.382683963,-2.19142855E-08,-0.923879325 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 4 resPri = 0 dstg = 8 sidx = 1 sqor = 4 sepI = 4 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = launchClamp1_4294198860 sym = launchClamp1_4294198738 srfN = srfAttach,Rockomax32.BW_4294210502,collider,0|1.35443699|0.806919396,0|0|-1,0|1.35443699|0.806919396 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = LaunchClamp isEnabled = True scaleFactor = 5.23448753 height = 13.2076359 stagingEnabled = True towerRot = -4.48363906E-08,0.382683963,2.43329801E-09,-0.923879325 EVENTS { } ACTIONS { ReleaseClamp { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleGenerator isEnabled = True generatorIsActive = False throttle = 0 stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 5000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = Rockomax32.BW_4294205264 partName = Part persistentId = 3557490978 pos = 1.11643088,14.7870178,2.23684311 attPos = 0,0,0 attPos0 = 1.24185586,-0.519268036,2.15095663 rot = -1.82610762E-08,0.866025448,-1.05430349E-08,0.49999997 attRot = 0,0,0,1 attRot0 = -1.82610762E-08,0.866025448,-1.05430349E-08,0.49999997 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 3 resPri = 0 dstg = 8 sidx = -1 sqor = -1 sepI = 3 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = engineLargeSkipper_4294205202 link = rocketNoseCone.v2_4294201840 link = launchClamp1_4294198860 sym = Rockomax32.BW_4294205028 sym = Rockomax32.BW_4294210502 srfN = srfAttach,Rockomax32.BW_4294211152,collider,1.25|0|0,1|0|0,1.25|0|0 attN = top,rocketNoseCone.v2_4294201840_0|1.86000001|0_0|1|0_0|1.86000001|0_0|1|0 attN = bottom,engineLargeSkipper_4294205202_0|-1.86000001|0_0|-1|0_0|-1.86000001|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } RESOURCE { name = LiquidFuel amount = 1440 maxAmount = 1440 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 1760 maxAmount = 1760 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = engineLargeSkipper_4294205202 partName = Part persistentId = 3807746761 pos = 1.11643088,12.9270172,2.23684311 attPos = 0,0,0 attPos0 = 7.84401948E-08,-1.86000061,-3.30402332E-15 rot = 1.77635684E-15,0.866025448,8.8817842E-16,0.49999997 attRot = 0,0,0,1 attRot0 = 8.88178314E-16,0,2.10860751E-08,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 4 resPri = 0 dstg = 8 sidx = 0 sqor = 4 sepI = 3 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = engineLargeSkipper_4294204966 sym = engineLargeSkipper_4294209310 attN = top,Rockomax32.BW_4294205264_0|0|0_0|1|0_0|0|0_0|1|0 attN = bottom,Null_0_0|-2.375|0_0|-1|0_0|-2.375|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True independentThrottle = False independentThrottlePercentage = 0 staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False includeinDVCalcs = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleThrottle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { independentThrottlePercentage { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None } thrustPercentage { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleJettison isEnabled = True activejettisonName = obj_fairing isJettisoned = True shroudHideOverride = False stagingEnabled = True EVENTS { } ACTIONS { JettisonAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True gimbalActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } LockAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } FreeAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } TogglePitchAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleYawAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleRollAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateThrottle isEnabled = True animState = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleAlternator isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleSurfaceFX isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = rocketNoseCone.v2_4294201840 partName = Part persistentId = 173236338 pos = 1.11643088,16.6470184,2.23684311 attPos = 0,0,0 attPos0 = -7.84401237E-08,1.86000061,3.30402099E-15 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 1.82610762E-08,-0.866025448,1.05430349E-08,0.49999997 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 3 resPri = 0 dstg = 8 sidx = -1 sqor = -1 sepI = 3 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = rocketNoseCone.v2_4294201646 sym = rocketNoseCone.v2_4294201574 attN = bottom,Rockomax32.BW_4294205264_0|0|0_0|-1|0_0|0|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = launchClamp1_4294198860 partName = Part persistentId = 2024114787 pos = 0.593979955,12.5474854,4.18666029 attPos = 0,0,0 attPos0 = -1.42736387,-2.23953247,-1.42736268 rot = 2.03108961E-08,-0.991444945,-4.0046114E-08,-0.130525559 attRot = 0,0,0,1 attRot0 = 5.2905694E-08,-0.382683992,-2.19142855E-08,-0.923879385 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 4 resPri = 0 dstg = 8 sidx = 1 sqor = 4 sepI = 4 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = launchClamp1_4294198738 sym = launchClamp1_4294199304 srfN = srfAttach,Rockomax32.BW_4294205264,collider,0|1.35443699|0.806919396,0|0|-1,0|1.35443699|0.806919396 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = LaunchClamp isEnabled = True scaleFactor = 5.23448753 height = 13.2076359 stagingEnabled = True towerRot = -2.03108961E-08,0.991444945,4.00461104E-08,-0.130525559 EVENTS { } ACTIONS { ReleaseClamp { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleGenerator isEnabled = True generatorIsActive = False throttle = 0 stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 5000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = Rockomax32.BW_4294205028 partName = Part persistentId = 1878501680 pos = 1.1164304,14.7870178,-2.06507063 attPos = 0,0,0 attPos0 = 1.24185538,-0.519268036,-2.15095711 rot = -1.82610744E-08,0.866025388,1.05430393E-08,-0.50000006 attRot = 0,0,0,1 attRot0 = -1.82610744E-08,0.866025388,1.05430393E-08,-0.50000006 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 3 resPri = 0 dstg = 8 sidx = -1 sqor = -1 sepI = 3 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = engineLargeSkipper_4294204966 link = rocketNoseCone.v2_4294201646 link = launchClamp1_4294198738 sym = Rockomax32.BW_4294210502 sym = Rockomax32.BW_4294205264 srfN = srfAttach,Rockomax32.BW_4294211152,collider,1.25|0|0,1|0|0,1.25|0|0 attN = top,rocketNoseCone.v2_4294201646_0|1.86000001|0_0|1|0_0|1.86000001|0_0|1|0 attN = bottom,engineLargeSkipper_4294204966_0|-1.86000001|0_0|-1|0_0|-1.86000001|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } RESOURCE { name = LiquidFuel amount = 1440 maxAmount = 1440 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 1760 maxAmount = 1760 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = engineLargeSkipper_4294204966 partName = Part persistentId = 2998274415 pos = 1.11643052,12.9270172,-2.06507063 attPos = 0,0,0 attPos0 = 7.84401948E-08,-1.86000061,-3.30402332E-15 rot = 1.77635684E-15,0.866025388,0,-0.50000006 attRot = 0,0,0,1 attRot0 = 8.88178314E-16,0,2.10860751E-08,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 4 resPri = 0 dstg = 8 sidx = 0 sqor = 4 sepI = 3 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = engineLargeSkipper_4294209310 sym = engineLargeSkipper_4294205202 attN = top,Rockomax32.BW_4294205028_0|0|0_0|1|0_0|0|0_0|1|0 attN = bottom,Null_0_0|-2.375|0_0|-1|0_0|-2.375|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True independentThrottle = False independentThrottlePercentage = 0 staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False includeinDVCalcs = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleThrottle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { independentThrottlePercentage { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None } thrustPercentage { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleJettison isEnabled = True activejettisonName = obj_fairing isJettisoned = True shroudHideOverride = False stagingEnabled = True EVENTS { } ACTIONS { JettisonAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True gimbalActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } LockAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } FreeAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } TogglePitchAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleYawAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleRollAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateThrottle isEnabled = True animState = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleAlternator isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleSurfaceFX isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = rocketNoseCone.v2_4294201646 partName = Part persistentId = 1059975092 pos = 1.1164304,16.6470184,-2.06507063 attPos = 0,0,0 attPos0 = -7.84401095E-08,1.86000061,6.60804072E-15 rot = 8.8817842E-16,0.866025448,1.77635684E-15,0.5 attRot = 0,0,0,1 attRot0 = 1.82610762E-08,-0.866025448,1.05430349E-08,0.49999997 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 3 resPri = 0 dstg = 8 sidx = -1 sqor = -1 sepI = 3 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = rocketNoseCone.v2_4294201574 sym = rocketNoseCone.v2_4294201840 attN = bottom,Rockomax32.BW_4294205028_0|0|0_0|-1|0_0|0|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = launchClamp1_4294198738 partName = Part persistentId = 2661504821 pos = 3.06624961,12.5474854,-2.58752394 attPos = 0,0,0 attPos0 = -1.42736435,-2.23953247,-1.4273628 rot = -2.45254945E-08,-0.608761013,-3.76128E-08,0.793353796 attRot = 0,0,0,1 attRot0 = 5.29056905E-08,-0.382683963,-2.19142891E-08,-0.923879385 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 4 resPri = 0 dstg = 8 sidx = 1 sqor = 4 sepI = 4 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = launchClamp1_4294199304 sym = launchClamp1_4294198860 srfN = srfAttach,Rockomax32.BW_4294205028,collider,0|1.35443699|0.806919396,0|0|-1,0|1.35443699|0.806919396 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = LaunchClamp isEnabled = True scaleFactor = 5.23448753 height = 13.2076359 stagingEnabled = True towerRot = 2.4525491E-08,0.608760953,3.76127964E-08,0.793353677 EVENTS { } ACTIONS { ReleaseClamp { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleGenerator isEnabled = True generatorIsActive = False throttle = 0 stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 5000 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = fuelLine_4294204142 partName = CompoundPart persistentId = 2152595518 pos = -0.125424966,14.7571239,1.33004785 attPos = 0,0,0 attPos0 = 0,-0.549161911,1.24416137 rot = -5.5313496E-08,0.707106829,-5.5313496E-08,0.707106829 attRot = 0,0,0,1 attRot0 = -5.5313496E-08,0.707106829,-5.5313496E-08,0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 3 resPri = 0 dstg = 8 sidx = -1 sqor = -1 sepI = 3 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = fuelLine_4294203432 sym = fuelLine_4294203336 srfN = srfAttach,Rockomax32.BW_4294211152,collider,0|0|0,0.125|0|0,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { tgt = 4294205264 pos = -0.401034594,-0.0565968193,0.127372146 rot = 0,0.60876137,-6.54547705E-08,0.793353379 dir = -0.944577634,-0.133300915,0.300006479 col = collider } MODULE { name = CModuleLinkedMesh isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = CModuleFuelLine isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = fuelLine_4294203432 partName = CompoundPart persistentId = 3369477556 pos = 0.952050328,14.7571239,-0.536194265 attPos = 0,0,0 attPos0 = 1.07747531,-0.549161911,-0.622080803 rot = -7.55596403E-08,0.965925872,2.02461496E-08,-0.258819103 attRot = 0,0,0,1 attRot0 = -7.55596403E-08,0.965925872,2.02461496E-08,-0.258819103 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 3 resPri = 0 dstg = 8 sidx = -1 sqor = -1 sepI = 3 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = fuelLine_4294203336 sym = fuelLine_4294204142 srfN = srfAttach,Rockomax32.BW_4294211152,collider,0|0|0,0.125|0|0,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { tgt = 4294205028 pos = -0.401033103,-0.0565968193,0.127371758 rot = 0,0.60876143,-6.54547776E-08,0.793353319 dir = -0.944577634,-0.133300915,0.300006479 col = collider } MODULE { name = CModuleLinkedMesh isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = CModuleFuelLine isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = fuelLine_4294203336 partName = CompoundPart persistentId = 977302073 pos = -1.20290041,14.7571239,-0.536194146 attPos = 0,0,0 attPos0 = -1.07747543,-0.549161911,-0.622080684 rot = -2.02461408E-08,0.258819014,7.55596403E-08,-0.965925872 attRot = 0,0,0,1 attRot0 = -2.02461408E-08,0.258819014,7.55596403E-08,-0.965925872 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 3 resPri = 0 dstg = 8 sidx = -1 sqor = -1 sepI = 3 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = fuelLine_4294204142 sym = fuelLine_4294203432 srfN = srfAttach,Rockomax32.BW_4294211152,collider,0|0|0,0.125|0|0,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { tgt = 4294210502 pos = -0.401034534,-0.056594912,0.127372205 rot = 0,0.60876137,-6.54547421E-08,0.793353379 dir = -0.944577634,-0.133300915,0.300006479 col = collider } MODULE { name = CModuleLinkedMesh isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = CModuleFuelLine isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = rocketNoseCone.v2_4294200514 partName = Part persistentId = 1055198238 pos = -0.125424966,13.4462852,0.0858865231 attPos = 0,0,0 attPos0 = 0,-1.86000061,0 rot = -1,0,0,0 attRot = -0.99999994,0,0,0 attRot0 = -1,0,0,0 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 3 resPri = 0 dstg = 8 sidx = -1 sqor = -1 sepI = 3 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 attN = bottom,Rockomax32.BW_4294211152_0|0|0_0|-1|0_0|0|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = R8winglet_4294200914 partName = Part persistentId = 1776994594 pos = -1.00587833,14.1673965,1.61087656 attPos = 0,0,0 attPos0 = -0.880453348,-1.13888931,1.5249902 rot = -2.29058728E-08,0.5,-3.96741378E-08,0.866025388 attRot = 0,0,0,1 attRot0 = -2.29058728E-08,0.5,-3.96741378E-08,0.866025388 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 3 resPri = 0 dstg = 8 sidx = -1 sqor = -1 sepI = 3 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = R8winglet_4294184306 sym = R8winglet_4294184262 srfN = srfAttach,Rockomax32.BW_4294211152,collider,0.540501237|0.174731255|0,0.125|0|0,0.540501237|0.174731255|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleControlSurface isEnabled = True mirrorDeploy = False usesMirrorDeploy = True ignorePitch = False ignoreYaw = False ignoreRoll = False deploy = False deployInvert = False partDeployInvert = False deployAngle = 15 authorityLimiter = 100 stagingEnabled = True EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionExtend { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionRetract { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { deployAngle { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None } authorityLimiter { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None } } UPGRADESAPPLIED { } } } PART { part = R8winglet_4294184306 partName = Part persistentId = 1161483689 pos = 1.63548195,14.1673965,0.0858862549 attPos = 0,0,0 attPos0 = 1.76090693,-1.13888931,-2.68220901E-07 rot = -4.58117491E-08,1,1.01612243E-15,-5.5611892E-08 attRot = 0,0,0,1 attRot0 = -4.58117491E-08,1,1.01612243E-15,-5.5611892E-08 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 3 resPri = 0 dstg = 8 sidx = -1 sqor = -1 sepI = 3 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = R8winglet_4294184262 sym = R8winglet_4294200914 srfN = srfAttach,Rockomax32.BW_4294211152,collider,0.540501237|0.174731255|0,0.125|0|0,0.540501237|0.174731255|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleControlSurface isEnabled = True mirrorDeploy = False usesMirrorDeploy = True ignorePitch = False ignoreYaw = False ignoreRoll = False deploy = False deployInvert = False partDeployInvert = False deployAngle = 15 authorityLimiter = 100 stagingEnabled = True EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionExtend { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionRetract { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { deployAngle { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None } authorityLimiter { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None } } UPGRADESAPPLIED { } } } PART { part = R8winglet_4294184262 partName = Part persistentId = 1070183293 pos = -1.00587857,14.1673965,-1.4391036 attPos = 0,0,0 attPos0 = -0.880453587,-1.13888931,-1.52498996 rot = -2.29058728E-08,0.49999994,3.96741378E-08,-0.866025448 attRot = 0,0,0,1 attRot0 = -2.29058728E-08,0.49999994,3.96741378E-08,-0.866025448 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 3 resPri = 0 dstg = 8 sidx = -1 sqor = -1 sepI = 3 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = R8winglet_4294200914 sym = R8winglet_4294184306 srfN = srfAttach,Rockomax32.BW_4294211152,collider,0.540501237|0.174731255|0,0.125|0|0,0.540501237|0.174731255|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleControlSurface isEnabled = True mirrorDeploy = False usesMirrorDeploy = True ignorePitch = False ignoreYaw = False ignoreRoll = False deploy = False deployInvert = False partDeployInvert = False deployAngle = 15 authorityLimiter = 100 stagingEnabled = True EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionExtend { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionRetract { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { deployAngle { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None } authorityLimiter { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None } } UPGRADESAPPLIED { } } } PART { part = strutConnector_4294183904 partName = CompoundPart persistentId = 2571146974 pos = 0.480736971,18.7871037,1.13578963 attPos = 0,0,0 attPos0 = 0.606161952,0.700819016,1.04990327 rot = -7.28861167E-08,0.866025507,-4.20808135E-08,0.49999997 attRot = 0,0,0,1 attRot0 = -7.28861167E-08,0.866025507,-4.20808135E-08,0.49999997 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 3 resPri = 0 dstg = 8 sidx = -1 sqor = -1 sepI = 3 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = strutConnector_4294183608 sym = strutConnector_4294183512 srfN = srfAttach,Rockomax16.BW_4294185938,collider,0|0|0,0.125|0|0,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { tgt = 4294201840 pos = -1.16258538,-0.0723974332,0.0066094338 rot = 0,-0.0275604855,0.648866475,0.760403037 dir = -0.99805057,-0.062151622,0.00567425974 col = collider } MODULE { name = CModuleLinkedMesh isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = CModuleStrut isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = strutConnector_4294183608 partName = CompoundPart persistentId = 447024433 pos = 0.480736852,18.7871037,-0.964016855 attPos = 0,0,0 attPos0 = 0.606161833,0.700819016,-1.04990327 rot = -7.28861025E-08,0.866025329,4.20808242E-08,-0.500000119 attRot = 0,0,0,1 attRot0 = -7.28861025E-08,0.866025329,4.20808242E-08,-0.500000119 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 3 resPri = 0 dstg = 8 sidx = -1 sqor = -1 sepI = 3 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = strutConnector_4294183512 sym = strutConnector_4294183904 srfN = srfAttach,Rockomax16.BW_4294185938,collider,0|0|0,0.125|0|0,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { tgt = 4294201646 pos = -1.16257763,-0.0723993406,0.00660932157 rot = 0,-0.0275604669,0.648866534,0.760402918 dir = -0.99805057,-0.062151622,0.00567425974 col = collider } MODULE { name = CModuleLinkedMesh isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = CModuleStrut isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = strutConnector_4294183512 partName = CompoundPart persistentId = 2740952962 pos = -1.337749,18.7871037,0.0858865976 attPos = 0,0,0 attPos0 = -1.21232402,0.700819016,7.4505806E-08 rot = 9.84397043E-15,-1.37033339E-07,8.4161627E-08,-1 attRot = 0,0,0,1 attRot0 = 9.84397043E-15,-1.37033339E-07,8.4161627E-08,-1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 3 resPri = 0 dstg = 8 sidx = -1 sqor = -1 sepI = 3 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = strutConnector_4294183904 sym = strutConnector_4294183608 srfN = srfAttach,Rockomax16.BW_4294185938,collider,0|0|0,0.125|0|0,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { tgt = 4294201574 pos = -1.16258609,-0.0723974258,0.0066098813 rot = 0,-0.0275604967,0.648866534,0.760402977 dir = -0.99805057,-0.062151622,0.00567425974 col = collider } MODULE { name = CModuleLinkedMesh isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = CModuleStrut isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = sensorThermometer_4294179684 partName = Part persistentId = 1322868919 pos = 0.364182174,35.9530373,0.0858865529 attPos = 0,0,0 attPos0 = 0.489607155,0.0392379761,2.98023224E-08 rot = -0.098850064,0.700163364,-0.098850064,-0.700163245 attRot = 0,0,0,1 attRot0 = -0.098850064,0.700163364,-0.098850064,-0.700163245 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,mk1pod.v2_4293343322,COL,0|0|0,0|0|-1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ResetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = RTLongAntenna2_4293988928 partName = Part persistentId = 4212972221 pos = -0.993739307,30.0750294,0.954200685 attPos = 0,0,0 attPos0 = -0.868314326,0.313741684,0.868314147 rot = 0.65328145,-0.270598114,0.270598054,0.653281569 attRot = 0,0,0,1 attRot0 = 0.65328145,-0.270598114,0.270598054,0.653281569 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = 0 resPri = 0 dstg = 4 sidx = -1 sqor = -1 sepI = 0 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,Rockomax16.BW_4294235402,collider,0|0|0,0|-1|0,0|0|0 attN = bottom,Null_0_0|0|0_0|-1|0_0|0|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = True animTime = 0 animSpeed = 1 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { deployPercent { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ================================================ FILE: saves/RemoteTech KSP1_8 Testbed/Ships/VAB/Rover Rocket.loadmeta ================================================ shipName = Rover Rocket description = version = 1.8.1 partCount = 2 stageCount = 1 totalCost = 815 totalMass = 0.850000024 shipSize = 1.25,1.20453739,1.25 type = VAB duplicatedParts = False steamPublishedFileId = 0 partNames = mk1pod.v2 partNames = Separator.0 partModules = ModuleCommand partModules = ModuleReactionWheel partModules = ModuleColorChanger partModules = ModuleScienceExperiment partModules = ModuleScienceContainer partModules = ModuleConductionMultiplier partModules = ModuleLiftingSurface partModules = FlagDecal partModules = ModulePartVariants partModules = ModuleTripLogger partModules = ModuleDecouple partModules = ModuleToggleCrossfeed partModules = ModuleTestSubject saveMD5 = c7c95f23830138b7283e3aab6b4da32a ================================================ FILE: saves/RemoteTech KSP1_8 Testbed/Ships/VAB/Science Container.craft ================================================ ship = Science Container version = 1.8.1 description = type = VAB size = 2.55031586,1.58041573,2.30744267 steamPublishedFileId = 0 persistentId = 3153110697 rot = 0,0,0,0 missionFlag = Squad/Flags/default vesselType = Debris OverrideDefault = False,False,False,False OverrideActionControl = 0,0,0,0 OverrideAxisControl = 0,0,0,0 OverrideGroupNames = ,,, PART { part = probeCoreOcto.v2_4294402138 partName = Part persistentId = 3178152531 pos = 0,15,0 attPos = 0,0,0 attPos0 = 0,15,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = batteryBankMini_4294397510 link = batteryBankMini_4294396872 link = solarPanels3_4294396138 link = solarPanels3_4294396000 link = HighGainAntenna5_4294393140 attN = bottom,batteryBankMini_4294396872_0|-0.187081799|0_0|-1|0_0|-0.187081799|0_0|-1|0 attN = top,batteryBankMini_4294397510_0|0.187081799|0_0|1|0_0|0.187081799|0_0|1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False activeControlPointName = _default stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Active stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = batteryBankMini_4294397510 partName = Part persistentId = 3835331377 pos = 0,15.2870817,0 attPos = 0,0,0 attPos0 = 0,0.287081718,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = ScienceBox_4294386370 attN = top,ScienceBox_4294386370_0|0.100000001|0_0|1|0_0|0.100000001|0_0|1|0 attN = bottom,probeCoreOcto.v2_4294402138_0|-0.100000001|0_0|-1|0_0|-0.100000001|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = batteryBankMini_4294396872 partName = Part persistentId = 3637722558 pos = 0,14.7129183,0 attPos = 0,0,0 attPos0 = 0,-0.287081718,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 attN = top,probeCoreOcto.v2_4294402138_0|0.100000001|0_0|1|0_0|0.100000001|0_0|1|0 attN = bottom,Null_0_0|-0.100000001|0_0|-1|0_0|-0.100000001|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = solarPanels3_4294396138 partName = Part persistentId = 1516901255 pos = -0.34096083,14.9586182,2.0322851E-08 attPos = 0,0,0 attPos0 = -0.34096083,-0.0413818359,2.0322851E-08 rot = 2.5121481E-14,-2.52881108E-07,-9.12332041E-08,1 attRot = 0,0,0,1 attRot0 = 2.5121481E-14,-2.52881108E-07,-9.12332041E-08,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels3_4294396000 srfN = srfAttach,probeCoreOcto.v2_4294402138,collider.collider,0|0|0,1|0|0,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.707106829, 0, 0, 0.707106829) storedAnimationTime = 0 storedAnimationSpeed = 10 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = solarPanels3_4294396000 partName = Part persistentId = 3970584464 pos = 0.34096083,14.9586182,-5.01305948E-08 attPos = 0,0,0 attPos0 = 0.34096083,-0.0413818359,-5.01305948E-08 rot = -9.12332041E-08,1,-2.11335517E-14,2.09169713E-07 attRot = 0,0,0,1 attRot0 = -9.12332041E-08,1,-2.11335517E-14,2.09169713E-07 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 sym = solarPanels3_4294396138 srfN = srfAttach,probeCoreOcto.v2_4294402138,collider.collider,0|0|0,1|0|0,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = -1 currentRotation = (-0.707106829, 0, 0, 0.707106829) storedAnimationTime = 0 storedAnimationSpeed = 10 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = HighGainAntenna5_4294393140 partName = Part persistentId = 2565157211 pos = 2.96771994E-08,15.0570126,-0.339467585 attPos = 0,0,0 attPos0 = 2.96771994E-08,0.057012558,-0.339467585 rot = 0.50000006,0.50000006,-0.5,-0.5 attRot = 0,0.707106769,0,0.707106769 attRot0 = 0.50000006,0.50000006,-0.5,-0.5 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,probeCoreOcto.v2_4294402138,collider.collider,0|0|0,0|-1|0,0|0|0 attN = bottom,Null_0_0|0|0_0|-1|0_0|0|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.995595217 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { deployPercent { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 0.70710678118654757 RTOmniRange = 0 RTDishRange = 20000000 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = ScienceBox_4294386370 partName = Part persistentId = 560239427 pos = 0,15.7870817,0 attPos = 0,0,0 attPos0 = 0,0.5,0 rot = 0,0,0,1 attRot = 0,0,0,1 attRot0 = 0,0,0,1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 0 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 link = sensorThermometer_4294386790 link = sensorBarometer_4294386556 link = SurfAntenna_4294389846 link = GooExperiment_4294378818 attN = top,Null_0_0|0.400000006|0_0|1|0_0|0.400000006|0_0|1|0 attN = bottom,batteryBankMini_4294397510_0|-0.400000006|0_0|-1|0_0|-0.400000006|0_0|-1|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleConductionMultiplier isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceContainer isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { CollectAllAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = sensorThermometer_4294386790 partName = Part persistentId = 394848550 pos = -0.26754564,15.8240595,1.59469646E-08 attPos = 0,0,0 attPos0 = -0.26754564,0.0369777679,1.59469646E-08 rot = 0,0.707106829,0,0.707106829 attRot = 0,0,0,1 attRot0 = 0,0.707106829,0,0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,ScienceBox_4294386370,C1,0|0|0,0|0|-1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ResetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = sensorBarometer_4294386556 partName = Part persistentId = 3198407979 pos = 0.268045306,15.7294626,1.5976747E-08 attPos = 0,0,0 attPos0 = 0.268045306,-0.0576190948,1.5976747E-08 rot = 0,0.707106829,0,-0.707106829 attRot = 0,0,0,1 attRot0 = 0,0.707106829,0,-0.707106829 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,ScienceBox_4294386370,C1,0|0|0,0|0|-1,0|0|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ResetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { part = SurfAntenna_4294389846 partName = Part persistentId = 3992013085 pos = 0,15.4349384,0.318184465 attPos = 0,0,0 attPos0 = 0,-0.352143288,0.318184465 rot = 0.5,0.5,0.5,0.5 attRot = 0,0.707106709,0,0.707106709 attRot0 = 0.5,0.5,0.5,0.5 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,ScienceBox_4294386370,C2,0|-0.0500000007|0,0|-1|0,0|-0.0500000007|0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 1500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { part = GooExperiment_4294378818 partName = Part persistentId = 2201580770 pos = 2.33992754E-08,15.7696228,-0.177656502 attPos = 0,0,0 attPos0 = 2.33992754E-08,-0.0174589157,-0.177656502 rot = 0,0,0,-1 attRot = 0,0,0,1 attRot0 = 0,0,0,-1 mir = 1,1,1 symMethod = Radial autostrutMode = Off rigidAttachment = False istg = -1 resPri = 0 dstg = 0 sidx = -1 sqor = -1 sepI = -1 attm = 1 sameVesselCollision = False modCost = 0 modMass = 0 modSize = 0,0,0 srfN = srfAttach,ScienceBox_4294386370,C2,0|0|-0.0900000036,0|0|-0.600000024,0|0|-0.0900000036 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = True animTime = 0 animSpeed = 1 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { deployPercent { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ResetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } ================================================ FILE: saves/RemoteTech KSP1_8 Testbed/Ships/VAB/Science Container.loadmeta ================================================ shipName = Science Container description = version = 1.8.1 partCount = 11 stageCount = 1 totalCost = 6410 totalMass = 0.349999994 shipSize = 2.55031586,1.58041573,2.30744267 type = VAB duplicatedParts = False steamPublishedFileId = 0 partNames = probeCoreOcto.v2 partNames = batteryBankMini partNames = solarPanels3 partNames = HighGainAntenna5 partNames = ScienceBox partNames = sensorThermometer partNames = sensorBarometer partNames = SurfAntenna partNames = GooExperiment partModules = ModuleCommand partModules = ModuleReactionWheel partModules = ModuleSAS partModules = ModuleKerbNetAccess partModules = ModuleSPU partModules = ModuleRTAntennaPassive partModules = ModuleTripLogger partModules = ModuleDeployableSolarPanel partModules = ModuleAnimateGeneric partModules = ModuleRTAntenna partModules = ModuleSPUPassive partModules = ModuleRTDataTransmitter partModules = ModuleConductionMultiplier partModules = ModuleScienceContainer partModules = ModuleEnviroSensor partModules = ModuleScienceExperiment saveMD5 = db68bfd35f37c6616664ee119b6e28c9 ================================================ FILE: saves/RemoteTech KSP1_8 Testbed/persistent.loadmeta ================================================ vesselCount = 17 UT = 183475.71635461791 gameMode = CAREER gameNull = False gameCompatible = True funds = 741178.09161949158 science = 603 reputationPercent = 8 ongoingContracts = 0 missionCurrentScore = 0 missionIsStarted = False missionIsEnded = False missionHistoryId = 00000000-0000-0000-0000-000000000000 missionExpansionVersion = saveMD5 = 78e483ff41c006302000fe5293ccc428 ================================================ FILE: saves/RemoteTech KSP1_8 Testbed/persistent.sfs ================================================ GAME { version = 1.8.1 Title = RemoteTech KSP1_8 Testbed (CAREER) Description = No description available. linkURL = linkCaption = Mode = CAREER Status = 1 Seed = 370456005 ROCSeed = 1170850522 scene = 5 editor = None flag = Squad/Flags/default launchID = 20 defaultVABLaunchSite = LaunchPad defaultSPHLaunchSite = Runway modded = True envInfo = - Environment Info - Win32NT 7FFFFFFFFFFFFFFF Args: KSP_x64_Dbg.exe - versionFull = 1.8.1.2694 (WindowsPlayer x64) versionCreated = 1.8.1.2694 (WindowsPlayer x64) RemovedROCs { } PARAMETERS { preset = Normal FLIGHT { CanQuickSave = True CanQuickLoad = True CanAutoSave = True CanUseMap = True CanSwitchVesselsNear = True CanSwitchVesselsFar = True CanTimeWarpHigh = True CanTimeWarpLow = True CanEVA = True CanIVA = True CanBoard = True CanRestart = True CanLeaveToEditor = True CanLeaveToTrackingStation = True CanLeaveToSpaceCenter = True CanLeaveToMainMenu = True } EDITOR { CanSave = True CanLoad = True CanStartNew = True CanLaunch = True CanLeaveToSpaceCenter = True CanLeaveToMainMenu = False startUpMode = 0 craftFileToLoad = } TRACKINGSTATION { CanFlyVessel = True CanAbortVessel = True CanLeaveToSpaceCenter = True CanLeaveToMainMenu = False } SPACECENTER { CanGoInVAB = True CanGoInSPH = True CanGoInTrackingStation = True CanLaunchAtPad = True CanLaunchAtRunway = True CanGoToAdmin = True CanGoToAstronautC = True CanGoToMissionControl = True CanGoToRnD = True CanSelectFlag = True CanLeaveToMainMenu = True } DIFFICULTY { AutoHireCrews = False MissingCrewsRespawn = True RespawnTimer = 7200 BypassEntryPurchaseAfterResearch = True AllowStockVessels = False IndestructibleFacilities = False ResourceAbundance = 1 ReentryHeatScale = 1 EnableCommNet = False AllowOtherLaunchSites = False } CAREER { TechTreeUrl = GameData\ModuleManager.TechTree StartingFunds = 25000 StartingScience = 0 StartingReputation = 0 FundsGainMultiplier = 1 RepGainMultiplier = 1 ScienceGainMultiplier = 1 FundsLossMultiplier = 1 RepLossMultiplier = 1 RepLossDeclined = 1 } CommNetParams { requireSignalForControl = False plasmaBlackout = False rangeModifier = 1 DSNModifier = 1 occlusionMultiplierVac = 0.9 occlusionMultiplierAtm = 0.75 enableGroundStations = True } AdvancedParams { EnableKerbalExperience = True ImmediateLevelUp = False AllowNegativeCurrency = False PressurePartLimits = False GPartLimits = False GKerbalLimits = False KerbalGToleranceMult = 1 ResourceTransferObeyCrossfeed = False ActionGroupsAlways = False BuildingImpactDamageMult = 0.05 PartUpgradesInSandbox = False PartUpgradesInCareer = True PartUpgradesInMission = False EnableFullSASInSandbox = False } MissionParamsGeneral { enableFunding = False startingFunds = 100000 spacer = enableKerbalLevels = False kerbalLevelPilot = 4 kerbalLevelScientist = 4 kerbalLevelEngineer = 4 spacer2 = preventVesselRecovery = False } MissionParamsExtras { facilityOpenAC = False astronautHiresAreFree = True spacer = facilityOpenEditor = False launchSitesOpen = True spacer2 = cheatsEnabled = False } MissionParamsFacilities { facilityLevelAdmin = 3 facilityLevelAC = 3 facilityLevelLaunchpad = 3 facilityLevelMC = 3 facilityLevelRD = 3 facilityLevelRunway = 3 facilityLevelSPH = 3 facilityLevelTS = 3 facilityLevelVAB = 3 } } SCENARIO { name = ROCScenario scene = 7 } SCENARIO { name = PartUpgradeManager scene = 6, 5, 7 UPGRADES { Unlocks { } Enableds { } } } SCENARIO { name = ResourceScenario scene = 7, 8, 5, 6, 21 RESOURCE_SETTINGS { GameSeed = 2105727224 ROCMissionSeed = 2105727224 MaxDeltaTime = 21600 } } SCENARIO { name = Funding scene = 7, 8, 5, 6 funds = 741178.09161949158 } SCENARIO { name = ProgressTracking scene = 7, 8, 5 Progress { FirstLaunch { completedUnmanned = 147097.98800429548 } RecordsAltitude { completed = 337.83999999998269 record = 70000 } RecordsSpeed { completed = 148233.30800370072 record = 2500 } RecordsDistance { completed = 337.83999999998269 record = 100000 } ReachedSpace { completedUnmanned = 148080.10800378097 vessel { name = Rover Rocket flag = Squad/Flags/default } } Kerbin { reached = 337.81999999998271 Orbit { completedUnmanned = 337.81999999998271 vessel { name = Dumb Relay flag = Squad/Flags/default } } Escape { completedUnmanned = 21946.436932605277 } Landing { completedUnmanned = 147520.90800407392 vessel { name = Rover 2 flag = Squad/Flags/default } } } Mun { reached = 42433.913438903575 Orbit { completedUnmanned = 42433.953438903569 vessel { name = Dish Gateway M flag = Squad/Flags/default } } Escape { completedUnmanned = 42480.913438896052 } Landing { completedUnmanned = 183413.35635465058 vessel { name = Rover Rocket flag = Squad/Flags/default } } Suborbit { completedUnmanned = 182876.97163077968 vessel { name = Rover Rocket flag = Squad/Flags/default } } Flyby { completedUnmanned = 42433.913438903575 } } Minmus { reached = 40182.316886190849 Orbit { completedUnmanned = 40182.356886190842 vessel { name = Dish Gateway M flag = Squad/Flags/default } } Escape { completedUnmanned = 42377.733438912568 } Flyby { completedUnmanned = 40182.316886190849 } } Eve { reached = 21946.436932605277 Orbit { completedUnmanned = 40022.057540511079 vessel { name = Dish Gateway flag = Squad/Flags/default } } Escape { completedUnmanned = 21953.856932605438 } Flyby { completedUnmanned = 21946.436932605277 } } } } SCENARIO { name = ResearchAndDevelopment scene = 7, 8, 5, 6 sci = 603.833313 Tech { id = start state = Available cost = 0 part = RTShortAntenna1 part = basicFin part = mk1pod part = mk1pod.v2 part = solidBooster.sm.v2 part = solidBooster.sm part = GooExperiment part = trussPiece1x part = parachuteSingle part = kv1Pod } Tech { id = engineering101 state = Available cost = 5 part = SurfAntenna part = longAntenna part = sensorThermometer part = Decoupler.1 } Tech { id = basicRocketry state = Available cost = 5 part = fuelTankSmallFlat part = solidBooster part = solidBooster.v2 part = liquidEngine2 } Tech { id = generalRocketry state = Available cost = 20 part = fuelTankSmall part = solidBooster1-1 part = liquidEngine } Tech { id = stability state = Available cost = 18 part = radialDecoupler part = winglet part = noseCone } Tech { id = survivability state = Available cost = 15 part = ServiceBay.125.v2 part = ServiceBay.125 part = parachuteRadial part = radialDrogue part = miniLandingLeg part = radPanelSm part = sensorBarometer part = HeatShield1 part = HeatShield0 } Tech { id = basicScience state = Available cost = 45 part = HighGainAntenna5 part = radPanelLg part = radPanelEdge part = ScienceBox part = science.module part = batteryPack part = probeCoreSphere.v2 part = probeCoreSphere } Tech { id = electrics state = Available cost = 90 part = DeployedSolarPanel part = spotLight2 part = spotLight1 part = foldingRadSmall part = batteryBankMini part = solarPanels5 part = probeCoreOcto.v2 part = probeCoreOcto part = RTShortDish2 } Tech { id = advElectrics state = Available cost = 160 part = controller1000 part = foldingRadMed part = LgRadialSolarPanel part = ksp.r.largeBatteryPack part = solarPanels3 part = solarPanels1 part = solarPanels4 part = solarPanels2 } Tech { id = spaceExploration state = Available cost = 90 part = DeployedCentralStation part = smallCargoContainer part = roverWheel2 part = ladder1 part = crewCabin } Tech { id = advExploration state = Available cost = 160 part = RobotArmScanner.S1 part = cargoContainer part = telescopicLadderBay part = telescopicLadder part = Large.Crewed.Lab } Tech { id = fieldScience state = Available cost = 300 part = rotor.02s part = rotor.02 part = roverWheelM1-F part = roverWheel1 part = roverBody.v2 part = roverBody part = seatExternalCmd } Tech { id = flightControl state = Available cost = 45 part = kv2Pod part = sasModule part = winglet3 part = R8winglet } Tech { id = advFlightControl state = Available cost = 90 part = Mk2Pod part = kv3Pod part = RCSBlock.v2 part = RCSBlock part = linearRcs part = radialRCSTank part = landerCabinSmall part = advSasModule } Tech { id = landing state = Available cost = 90 part = HeatShield1p5 part = SmallGearBay part = parachuteLarge part = LaunchEscapeSystem part = landingLeg1 part = HeatShield2 } Tech { id = advRocketry state = Available cost = 45 part = Size1p5.Tank.01 part = Size1p5.Size1.Adapter.02 part = fuelTank part = radialLiquidEngine1-2 part = liquidEngine3.v2 part = liquidEngine3 } Tech { id = generalConstruction state = Available cost = 45 part = Decoupler.1p5 part = largeAdapter part = launchClamp1 part = Mk1FuselageStructural part = Decoupler.2 part = strutConnector part = MK1CrewCabin } Tech { id = miniaturization state = Available cost = 90 part = DeployedGoExOb part = dockingPort3 part = adapterSmallMiniTall part = adapterSmallMiniShort part = Separator.0 } Tech { id = largeElectrics state = Available cost = 300 part = foldingRadLarge part = FuelCell part = batteryBank part = largeSolarPanel part = RTLongDish2 part = RTLongAntenna2 } Tech { id = advConstruction state = Available cost = 90 part = rotoServo.00 part = piston.02 part = piston.01 part = hinge.03.s part = hinge.01.s part = Tube1p5 part = Tube1 part = ServiceModule18 part = Size1to0ServiceModule part = fairingSize1p5 part = Size1p5.Strut.Decoupler part = Separator.1p5 part = EnginePlate1p5 part = Size.1.5.Cone part = stackTriCoupler part = stackTriCoupler.v2 part = largeAdapter2 part = radialDecoupler2 part = radialDecoupler1-2 part = Separator.1 part = rocketNoseCone part = fairingSize1 part = rocketNoseCone.v2 part = pointyNoseConeA } Tech { id = heavyRocketry state = Available cost = 90 part = Pollux part = LiquidEngineLV-TX87 part = MassiveBooster part = engineLargeSkipper part = liquidEngine2-2.v2 part = liquidEngine2-2 } Tech { id = fuelSystems state = Available cost = 90 part = Size1p5.Tank.05 part = Size1p5.Tank.03 part = Size1p5.Tank.02 part = Size1p5.Size2.Adapter.01 part = Size1p5.Size1.Adapter.01 part = Size1p5.Size0.Adapter.01 part = fuelTank.long part = Rockomax8BW part = Rockomax32.BW part = Rockomax16.BW part = fuelLine } Tech { id = specializedConstruction state = Available cost = 160 part = lGripStrip part = lGripPad part = Tube2 part = EnginePlate2 part = stackBiCoupler.v2 part = stackBiCoupler part = stackPoint1 part = dockingPort2 part = trussAdapter part = Separator.2 part = fairingSize2 part = pointyNoseConeB } Science { id = recovery@KerbinFlew title = Recovery of a vessel returned from a flight over Kerbin dsc = 1 scv = 0.0277777519 sbv = 5 sci = 5.83333349 asc = True cap = 6 } } SCENARIO { name = VesselRecovery scene = 5, 7, 8, 6 } SCENARIO { name = Reputation scene = 7, 8, 5, 6 rep = 84.9990845 } SCENARIO { name = ScenarioAchievements scene = 7, 8, 5, 6 } SCENARIO { name = ScenarioCustomWaypoints scene = 7, 8, 21 } SCENARIO { name = ScenarioDestructibles scene = 5, 7, 6, 8 SpaceCenter/VehicleAssemblyBuilding/Facility/VAB3 { intact = True } SpaceCenter/VehicleAssemblyBuilding/Facility/SouthComplex { intact = True } SpaceCenter/TrackingStation/Facility/dish_array/dish_south { intact = True } SpaceCenter/TrackingStation/Facility/dish_array/dish_north { intact = True } SpaceCenter/TrackingStation/Facility/dish_array/dish_east { intact = True } SpaceCenter/TrackingStation/Facility/MainBuilding { intact = True } SpaceCenter/SpaceplaneHangar/Facility/Building { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/mainBuilding { intact = True } SpaceCenter/MissionControl/Facility/mainBuilding { intact = True } SpaceCenter/MissionControl/Facility/Antenna { intact = True } SpaceCenter/LaunchPad/Facility/building { intact = True } SpaceCenter/LaunchPad/Facility/SmallTanks { intact = True } SpaceCenter/LaunchPad/Facility/BigTanks { intact = True } SpaceCenter/LaunchPad/Facility/Flag { intact = True } SpaceCenter/AstronautComplex/Facility/mainBuilding { intact = True } SpaceCenter/FlagPole/Facility { intact = True } SpaceCenter/Administration/Facility/Building { intact = True } SpaceCenter/VehicleAssemblyBuilding/Facility/VAB2 { intact = True } SpaceCenter/TrackingStation/Facility/building { intact = True } SpaceCenter/TrackingStation/Facility/OuterDish { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/ForeverAlone { intact = True } SpaceCenter/TrackingStation/Facility/building/Antenna_South { intact = True } SpaceCenter/TrackingStation/Facility/building/Antenna_North { intact = True } SpaceCenter/TrackingStation/Facility/building/Antenna_East { intact = True } SpaceCenter/TrackingStation/Facility/building/Building { intact = True } SpaceCenter/VehicleAssemblyBuilding/Facility/ksp_pad_cylTank { intact = True } SpaceCenter/VehicleAssemblyBuilding/Facility/Tank { intact = True } SpaceCenter/VehicleAssemblyBuilding/Facility/mainBuilding { intact = True } SpaceCenter/VehicleAssemblyBuilding/Facility/PodMemorial { intact = True } SpaceCenter/MissionControl/Facility/building { intact = True } SpaceCenter/LaunchPad/Facility/LaunchPadMedium/ksp_pad_cylTank { intact = True } SpaceCenter/LaunchPad/Facility/LaunchPadMedium/ksp_pad_launchPad { intact = True } SpaceCenter/LaunchPad/Facility/LaunchPadMedium/ksp_pad_sphereTank { intact = True } SpaceCenter/LaunchPad/Facility/LaunchPadMedium/ksp_pad_waterTower { intact = True } SpaceCenter/LaunchPad/Facility/LaunchPadMedium/KSCFlagPoleLaunchPad { intact = True } SpaceCenter/Runway/Facility/model_runway_new_v43/runway_light_SE { intact = True } SpaceCenter/Runway/Facility/model_runway_new_v43/runway_light_NE { intact = True } SpaceCenter/Runway/Facility/model_runway_new_v43/runway_light_NW { intact = True } SpaceCenter/Runway/Facility/model_runway_new_v43/runway_light_SW { intact = True } SpaceCenter/Runway/Facility/End09 { intact = True } SpaceCenter/Runway/Facility/End27 { intact = True } SpaceCenter/Runway/Facility/Section1 { intact = True } SpaceCenter/Runway/Facility/Section2 { intact = True } SpaceCenter/Runway/Facility/Section3 { intact = True } SpaceCenter/Runway/Facility/Section4 { intact = True } SpaceCenter/SpaceplaneHangar/Facility/Tank { intact = True } SpaceCenter/SpaceplaneHangar/Facility/ksp_pad_cylTank { intact = True } SpaceCenter/SpaceplaneHangar/Facility/ksp_pad_waterTower { intact = True } SpaceCenter/SpaceplaneHangar/Facility/mainBuilding { intact = True } SpaceCenter/Administration/Facility/mainBuilding { intact = True } SpaceCenter/AstronautComplex/Facility/building { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/ksp_pad_cylTank { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/SmallLab { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/CentralBuilding { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/MainBuilding { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/CornerLab { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/WindTunnel { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/Observatory { intact = True } SpaceCenter/ResearchAndDevelopment/Facility/SideLab { intact = True } } SCENARIO { name = ScenarioDiscoverableObjects scene = 7, 8, 5 lastSeed = 1697760526 sizeCurve { key = 0 0 1.5 1.5 key = 0.3 0.45 0.875 0.875 key = 0.7 0.55 0.875 0.875 key = 1 1 1.5 1.5 } } SCENARIO { name = ScenarioUpgradeableFacilities scene = 5, 6, 7, 8 SpaceCenter/LaunchPad { lvl = 0.5 } SpaceCenter/Runway { lvl = 0 } SpaceCenter/VehicleAssemblyBuilding { lvl = 0.5 } SpaceCenter/SpaceplaneHangar { lvl = 0 } SpaceCenter/TrackingStation { lvl = 1 } SpaceCenter/AstronautComplex { lvl = 0.5 } SpaceCenter/MissionControl { lvl = 0.5 } SpaceCenter/ResearchAndDevelopment { lvl = 0.5 } SpaceCenter/Administration { lvl = 0 } SpaceCenter/FlagPole { lvl = 0 } } SCENARIO { name = StrategySystem scene = 7, 8, 5, 6 STRATEGIES { } } SCENARIO { name = ScenarioContractEvents scene = 7, 8, 5 id = 1079992274 } SCENARIO { name = ContractSystem scene = 7, 8, 5, 6 update = 183469.33635462125 version = 1.8.1 WEIGHTS { ROCScienceRetrievalContract = 30 ROCScienceArmContract = 30 DeployedScienceContract = 30 SentinelContract = 30 RecoverAsset = 30 PlantFlag = 30 PartTest = 30 GrandTour = 30 CollectScience = 30 TourismContract = 30 SurveyContract = 30 StationContract = 30 SatelliteContract = 30 ISRUContract = 30 ExplorationContract = 30 BaseContract = 30 ARMContract = 30 ROCScienceRetrievalContract = 30 ROCScienceArmContract = 30 DeployedScienceContract = 30 SentinelContract = 30 RecoverAsset = 30 PlantFlag = 30 PartTest = 30 GrandTour = 30 CollectScience = 30 TourismContract = 30 SurveyContract = 30 StationContract = 30 SatelliteContract = 30 ISRUContract = 30 ExplorationContract = 30 BaseContract = 30 ARMContract = 30 Eeloo = 30 Dres = 30 Pol = 30 Gilly = 30 Tylo = 30 Bop = 30 Vall = 30 Laythe = 30 Jool = 30 Ike = 30 Duna = 30 Eve = 30 Moho = 30 Minmus = 30 Mun = 30 Kerbin = 30 Sun = 30 } CONTRACTS { CONTRACT { guid = e3bd5d06-0d03-4f06-bfae-57e5ba918c78 type = ROCScienceRetrievalContract prestige = 0 seed = -1331598140 state = Offered viewed = Unseen agent = Kerlington Model Rockets and Paper Products Inc agentName = Kerlington Model Rockets and Paper Products Inc deadlineType = Floating expiryType = Floating values = 86400,115020000,55000,87500,67500,0,2,2,233486.068004302,0,0,0 body = Minmus subjectId = ROCScience_MinmusGreenSandstone@MinmusSrfLanded scienceTitle = Green Sandstone rocType = MinmusGreenSandstone biomes = #autoLOC_6002035 biomes = #autoLOC_6002050 biomes = #autoLOC_6002044 PARAM { name = CollectROCScienceRetrieval state = Incomplete values = 0,0,0,0,0 body = Minmus subjectId = ROCScience_MinmusGreenSandstone@MinmusSrfLanded scienceTitle = Green Sandstone rocType = MinmusGreenSandstone } } CONTRACT { guid = 49cddad2-80da-45a3-93a8-a2bd51fa3800 type = SatelliteContract prestige = 0 seed = -1331598136 state = Offered viewed = Unseen agent = Zaltonic Electronics agentName = Zaltonic Electronics deadlineType = Floating expiryType = Floating values = 108000,115020000,42419.9995994568,114136.306239009,44540.9975566864,9,8.980492,4.761905,255086.068004302,0,0,0 targetBody = 3 deviation = 7 orbitType = 3 placementMode = 0 PARAM { name = VesselSystemsParameter state = Incomplete values = 0,0,0,0,0 typeString = probe mannedStatus = 1 requireNew = True checkModuleTypes = Antenna|Generator checkModuleDescriptions = has an antenna|can generate power launchID = 0 } PARAM { name = SpecificOrbitParameter state = Incomplete values = 0,0,0,0,0 TargetBody = 3 deviationWindow = 7 orbitType = 3 inclination = 0 eccentricity = 0.016651859866854832 sma = 314895.56558074395 lan = 0 argumentOfPeriapsis = 187.8733747023507 meanAnomalyAtEpoch = -2.6380055658438835 epoch = 0 } PARAM { name = PartRequestParameter state = Incomplete values = 0,0,0,0,0 article = a partDescription = thermometer vesselDescription = satellite partNames = sensorThermometer } PARAM { name = StabilityParameter state = Incomplete values = 0,0,0,0,0 holdSeconds = 10 } } CONTRACT { guid = d81173da-8949-4d09-a65c-4fe8a5fbc380 type = SatelliteContract prestige = 0 seed = -1331598133 state = Offered viewed = Unseen agent = Periapsis Rocket Supplies Co agentName = Periapsis Rocket Supplies Co deadlineType = Floating expiryType = Floating values = 108000,115020000,42000,107625,42000,9,10,5,255086.068004302,0,0,0 targetBody = 3 deviation = 7 orbitType = 6 placementMode = 0 PARAM { name = VesselSystemsParameter state = Incomplete values = 0,0,0,0,0 typeString = probe mannedStatus = 1 requireNew = True checkModuleTypes = Antenna|Generator checkModuleDescriptions = has an antenna|can generate power launchID = 0 } PARAM { name = SpecificOrbitParameter state = Incomplete values = 0,0,0,0,0 TargetBody = 3 deviationWindow = 7 orbitType = 6 inclination = 176.71354489938682 eccentricity = 0.035307332068381755 sma = 328967.05108769034 lan = 313.54039866176475 argumentOfPeriapsis = 357.44919106245595 meanAnomalyAtEpoch = -1.9502985037592884 epoch = 0 } PARAM { name = PartRequestParameter state = Incomplete values = 0,0,0,0,0 article = a partDescription = mystery goo unit vesselDescription = satellite partNames = GooExperiment } PARAM { name = StabilityParameter state = Incomplete values = 0,0,0,0,0 holdSeconds = 10 } } CONTRACT { guid = 6aaa10a0-a137-4343-9e4f-8e8d7477b935 type = SatelliteContract prestige = 0 seed = -1331598130 state = Offered viewed = Unseen agent = Reaction Systems Ltd agentName = Reaction Systems Ltd deadlineType = Floating expiryType = Floating values = 108000,230040000,80000,215249.990224838,83999.9961853027,0,9.52381,5,255086.068004302,0,0,0 targetBody = 5 deviation = 7 orbitType = 2 placementMode = 0 PARAM { name = VesselSystemsParameter state = Incomplete values = 0,0,0,0,0 typeString = probe mannedStatus = 1 requireNew = True checkModuleTypes = Antenna|Generator checkModuleDescriptions = has an antenna|can generate power launchID = 0 } PARAM { name = SpecificOrbitParameter state = Incomplete values = 0,0,0,0,0 TargetBody = 5 deviationWindow = 7 orbitType = 2 inclination = 90 eccentricity = 0.076393883424272058 sma = 14772136.904618826 lan = 346.32061549756725 argumentOfPeriapsis = 48.936633937496879 meanAnomalyAtEpoch = 2.463313312003764 epoch = 0 } PARAM { name = StabilityParameter state = Incomplete values = 0,0,0,0,0 holdSeconds = 10 } } CONTRACT { guid = b21dd82c-cf89-42e5-b464-59e97fdbc575 type = CollectScience prestige = 0 seed = -1331598120 state = Offered viewed = Unseen agent = FLOOYD Dynamics Research Labs agentName = FLOOYD Dynamics Research Labs deadlineType = Floating expiryType = Floating values = 129600,92016000,15300,39269.998216629,16064.9992704391,3,4.761905,3,276686.068004302,0,0,0 body = 2 location = Space PARAM { name = CollectScience state = Incomplete values = 0,0,0,0,0 body = 2 location = Space } } CONTRACT { guid = edfd6eca-2f79-4131-8a72-a816fbf3717a type = ROCScienceArmContract prestige = 0 seed = -1331598109 state = Offered viewed = Unseen agent = C7 Aerospace Division agentName = C7 Aerospace Division deadlineType = Floating expiryType = Floating values = 129600,46008000,8000,17849.9991893768,10499.9995231628,0,1.904762,2,276686.068004302,0,0,0 body = Kerbin subjectId = ROCScience_KerbinBaobabTree@KerbinSrfLanded scienceTitle = Baobab Tree rocType = KerbinBaobabTree scannerArmName = RobotArmScanner.S1 scannerArmTitle = CRSY Light Scanning Arm sciencePercentage = 33.3333359 biomes = #autoLOC_6002034 PARAM { name = CollectROCScienceArm state = Incomplete values = 0,0,0,0,0 body = Kerbin subjectId = ROCScience_KerbinBaobabTree@KerbinSrfLanded sciencePercentage = 33.3333359 scienceCollected = 0 rocType = KerbinBaobabTree scienceTitle = Baobab Tree } } CONTRACT { guid = 3cd38a60-f5e7-4363-bf07-25a70bd041f6 type = SatelliteContract prestige = 1 seed = -1331598100 state = Offered viewed = Unseen agent = C7 Aerospace Division agentName = C7 Aerospace Division deadlineType = Floating expiryType = Floating values = 129600,46008000,12000,33825.0007331371,13200.0002861023,0,4.545455,2,276686.068004302,0,0,0 targetBody = 1 deviation = 5 orbitType = 6 placementMode = 1 PARAM { name = SpecificVesselParameter state = Incomplete values = 0,0,0,0,0 TargetBody = 1 targetVesselID = efca7843b1034d1cb82c6913a84a9994 targetVesselPartCount = 12 targetVesselName = Dumb Relay targetVesselSituation = ORBITING partIDs = 2037338104|4180193247|52161799|2651064216|1861415309|2770039712|3481913231|2918694455|2606685403|3305214923|488814642|189118230 } PARAM { name = VesselSystemsParameter state = Incomplete values = 0,0,0,0,0 typeString = probe mannedStatus = 1 requireNew = False checkModuleTypes = Antenna|Generator checkModuleDescriptions = has an antenna|can generate power } PARAM { name = SpecificOrbitParameter state = Incomplete values = 0,0,0,0,0 TargetBody = 1 deviationWindow = 5 orbitType = 6 inclination = 11.097357592939892 eccentricity = 0.057635410742321418 sma = 2851072.7489384776 lan = 173.91518860058636 argumentOfPeriapsis = 23.346413145313846 meanAnomalyAtEpoch = 2.8428555966285534 epoch = 11278.924188452866 } PARAM { name = StabilityParameter state = Incomplete values = 0,0,0,0,0 holdSeconds = 10 } } CONTRACT { guid = 71fa7f38-5759-4665-8436-1ff33944ce52 type = SatelliteContract prestige = 1 seed = 1421782450 state = Offered viewed = Unseen agent = C7 Aerospace Division agentName = C7 Aerospace Division deadlineType = Floating expiryType = Floating values = 21600,92016000,44100,124305.502694249,48510.0010514259,14,12.72727,8,189476.419048557,0,0,0 targetBody = 2 deviation = 5 orbitType = 6 placementMode = 0 PARAM { name = VesselSystemsParameter state = Incomplete values = 0,0,0,0,0 typeString = probe mannedStatus = 1 requireNew = True checkModuleTypes = Antenna|Generator checkModuleDescriptions = has an antenna|can generate power launchID = 0 } PARAM { name = SpecificOrbitParameter state = Incomplete values = 0,0,0,0,0 TargetBody = 2 deviationWindow = 5 orbitType = 6 inclination = 161.29105418483019 eccentricity = 0.13280986186448274 sma = 685914.23765366571 lan = 179.60337613690808 argumentOfPeriapsis = 88.978282589921079 meanAnomalyAtEpoch = 1.9415503170502408 epoch = 0 } PARAM { name = PartRequestParameter state = Incomplete values = 0,0,0,0,0 article = a partDescription = thermometer vesselDescription = satellite partNames = sensorThermometer } PARAM { name = PartRequestParameter state = Incomplete values = 0,0,0,0,0 article = a partDescription = materials bay vesselDescription = satellite partNames = science_module } PARAM { name = StabilityParameter state = Incomplete values = 0,0,0,0,0 holdSeconds = 10 } } CONTRACT { guid = 046323fc-3e75-4156-8734-8cae5b4e6218 type = SatelliteContract prestige = 1 seed = 48641210 state = Offered viewed = Unseen agent = Moving Parts Experts Group agentName = Moving Parts Experts Group deadlineType = Floating expiryType = Floating values = 99889.0043495762,85105431.705839,44553.5975326538,125585.455767159,48047.9992790222,11,10.29526,5.555555,270123.879461851,0,0,0 targetBody = 2 deviation = 5 orbitType = 6 placementMode = 0 PARAM { name = VesselSystemsParameter state = Incomplete values = 0,0,0,0,0 typeString = probe mannedStatus = 1 requireNew = True checkModuleTypes = Antenna|Generator checkModuleDescriptions = has an antenna|can generate power launchID = 0 } PARAM { name = SpecificOrbitParameter state = Incomplete values = 0,0,0,0,0 TargetBody = 2 deviationWindow = 5 orbitType = 6 inclination = 19.859869885898995 eccentricity = 0.091888366345708669 sma = 887306.5905537674 lan = 137.15053289064707 argumentOfPeriapsis = 192.45228318146084 meanAnomalyAtEpoch = 2.9622288405920454 epoch = 0 } PARAM { name = PartRequestParameter state = Incomplete values = 0,0,0,0,0 article = a partDescription = mystery goo unit vesselDescription = satellite partNames = GooExperiment } PARAM { name = StabilityParameter state = Incomplete values = 0,0,0,0,0 holdSeconds = 10 } } CONTRACT { guid = 54236e0b-2709-477e-ba09-75b5403056a7 type = DeployedScienceContract prestige = 1 seed = 48641211 state = Offered viewed = Unseen agent = Experimental Engineering Group agentName = Experimental Engineering Group deadlineType = Floating expiryType = Floating values = 127058.823680878,90211764.8134232,63749.9988079071,182325.000542402,68750.0014901161,0,1.818182,2,297293.698793152,0,0,0 body = Mun subjectId = deployedGooObservation sciencePercentage = 50 PARAM { name = CollectDeployedScience state = Incomplete values = 0,0,0,0,0 body = Mun subjectId = deployedGooObservation scienceTitle = Surface Deployed Mystery Goo Observations sciencePercentage = 50 scienceCollected = 0 } } CONTRACT { guid = fd205c34-1a02-4281-8077-64acb3775a7a type = ExplorationContract prestige = 0 seed = 1484845809 state = Offered viewed = Unseen agent = Kerbin World-Firsts Record-Keeping Society agentName = Kerbin World-Firsts Record-Keeping Society deadlineType = None expiryType = Floating ignoresWeight = True values = 129600,0,2240,4160,2240,1,2,0,313049.296354632,0,0,0 targetBody = 1 bodyRatio = 0.214285716 PARAM { name = ProgressTrackingParameter state = Incomplete values = 6400,0,1,2,0 targetBody = 1 targetType = SCIENCE } } } } SCENARIO { name = SentinelScenario scene = 7, 8, 5 NextSpawnTime = 194518.3734195432 } SCENARIO { name = CommNetScenario scene = 7, 8, 5, 6 } SCENARIO { name = DeployedScience scene = 7, 8, 5, 6 ScienceTimeDelay = 60 DataSendFailedTimeDelay = 600 SCIENCECLUSTERS { } DIMINISHINGRETURNS { ENTRY { ExpCount = 1 Rate = 1 } ENTRY { ExpCount = 2 Rate = 0.200000003 } ENTRY { ExpCount = 3 Rate = 0.349999994 } ENTRY { ExpCount = 4 Rate = 0.449999988 } ENTRY { ExpCount = 5 Rate = 0.5 } } SEISMICENERGY { MinimumEnergyRequired = 3000 SeismicScienceProcessingDelay = 3 ENTRY { BodyName = Moho Energy = 2.02E+09 } ENTRY { BodyName = Eve Energy = 9.78000036E+10 } ENTRY { BodyName = Gilly Energy = 1000000 } ENTRY { BodyName = Kerbin Energy = 4.1840001E+10 } ENTRY { BodyName = Mun Energy = 782000000 } ENTRY { BodyName = Minmus Energy = 21200000 } ENTRY { BodyName = Duna Energy = 3.62E+09 } ENTRY { BodyName = Ike Energy = 223000000 } ENTRY { BodyName = Dres Energy = 258000000 } ENTRY { BodyName = Laythe Energy = 2.3600001E+10 } ENTRY { BodyName = Vall Energy = 2.48999987E+09 } ENTRY { BodyName = Tylo Energy = 3.38999992E+10 } ENTRY { BodyName = Bop Energy = 29900000 } ENTRY { BodyName = Pol Energy = 8660000 } ENTRY { BodyName = Eeloo Energy = 894000000 } } } FLIGHTSTATE { version = 1.8.1 UT = 183475.71635461791 activeVessel = 22 mapViewFiltering = -1026 commNetUIModeTracking = Network commNetUIModeFlight = Path VESSEL { pid = 6ca160ff328a4d5ea6b58f6dbb8d09e7 persistentId = 1251815637 name = Dumb Relay type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 3452.1370758050825 lct = 337.79999999998273 lastUT = 3789.9370758050654 distanceTraveled = 53456.975998002454 root = 0 lat = -3.5915810433240363E-07 lon = -68.911319638310161 alt = 2086750.0000168025 hgt = 2086750 nrm = -0.0368617773,-0.000112160669,-0.999320388 rot = -3.95829265E-05,0.201088086,-0.000103345759,-0.97957325 CoM = 2.67311862E-09,0.0168871712,-4.0854502E-09 stg = 0 prst = False ref = 90228920 ctrl = True PQSMin = 2 PQSMax = 9 GroupOverride = 0 OverrideDefault = False,False,False,False OverrideActionControl = 0,0,0,0 OverrideAxisControl = 0,0,0,0 OverrideGroupNames = ,,, altDispState = ASL cPch = 0.2663995 cHdg = -4.172987 cMod = 0 ORBIT { SMA = 2686750.0000673812 ECC = 2.0396473756148088E-11 INC = 9.7539686435881835E-10 LPE = 65.289900296737983 LAN = 2.337408088983409 MNA = 0.29278307786424185 EPH = 3789.9370758050654 REF = 1 } PART { name = probeCoreOcto.v2 cid = 4294232176 uid = 90228920 mid = 484328997 persistentId = 398247333 launchID = 1 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = , -1 attN = bottom, 11 attN = top, 9 mass = 0.100000001 shielded = False temp = 203.06541863205297 tempExt = 202.91957930320996 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = _default modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False activeControlPointName = _default stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = NormalPlus Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 3789.9370758050654 ExtraDelayScheduledTimeStamp = 344.18712470870673 ExtraDelay = 0 CmdGuid = fd387222-f727-426a-a013-1aeb090aa331 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 9.9997073170680828 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = solarPanels5 cid = 4294230226 uid = 4136027975 mid = 484328997 persistentId = 2244991389 launchID = 1 parent = 0 position = -0.33566024899482727,0.032947540283203125,2.0006911682912687E-08 rotation = -3.96246804E-08,-0.707106948,-3.96246982E-08,0.70710659 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 203.07135038745136 tempExt = 203.17516600847955 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 337.79999999998273 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229838 uid = 3349421946 mid = 484328997 persistentId = 2499859617 launchID = 1 parent = 0 position = -0.23734760284423828,0.032947540283203125,0.23734766244888306 rotation = -5.17721475E-08,-0.382683635,-2.14447375E-08,0.923879445 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 203.06722983359651 tempExt = 203.0762720894682 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 337.79999999998273 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229806 uid = 965454696 mid = 484328997 persistentId = 1055890139 launchID = 1 parent = 0 position = 5.8385197548762712E-16,0.032947540283203125,0.33566021919250488 rotation = -5.60377771E-08,-2.52881108E-07,-1.25607405E-14,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 1 sym = 2 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 203.05844447551715 tempExt = 202.87941984355828 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 337.79999999998273 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229774 uid = 667841334 mid = 484328997 persistentId = 111046990 launchID = 1 parent = 0 position = 0.23734763264656067,0.032947540283203125,0.23734761774539948 rotation = -5.17721581E-08,0.382683218,2.14447162E-08,0.923879623 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 1 sym = 2 sym = 3 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 203.05850656668497 tempExt = 202.88083700915169 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 337.79999999998273 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229742 uid = 1181336787 mid = 484328997 persistentId = 2167762978 launchID = 1 parent = 0 position = 0.33566024899482727,0.032947540283203125,-4.9351264408414863E-08 rotation = -3.96246982E-08,0.70710665,3.96246804E-08,0.707106888 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 1 sym = 2 sym = 3 sym = 4 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 203.05822740101993 tempExt = 202.87445443012223 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 337.79999999998273 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229710 uid = 385518346 mid = 484328997 persistentId = 1667794061 launchID = 1 parent = 0 position = 0.23734760284423828,0.032947540283203125,-0.23734769225120544 rotation = -2.14447358E-08,0.923879504,5.1772151E-08,0.382683605 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 203.05822739652552 tempExt = 202.87445442581247 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 337.79999999998273 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229678 uid = 531398898 mid = 484328997 persistentId = 3905333023 launchID = 1 parent = 0 position = -4.0013819813111695E-08,0.032947540283203125,-0.33566021919250488 rotation = -1.25607405E-14,1,5.60377771E-08,2.52881108E-07 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 203.05822739219329 tempExt = 202.87445442165796 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 337.79999999998273 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229646 uid = 2975241901 mid = 484328997 persistentId = 4159503183 launchID = 1 parent = 0 position = -0.23734772205352783,0.032947540283203125,-0.2373475581407547 rotation = 2.14447251E-08,0.923879564,5.17721546E-08,-0.382683367 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 203.07588511741272 tempExt = 203.27914132942237 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 337.79999999998273 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294226184 uid = 1453873357 mid = 484328997 persistentId = 867543453 launchID = 1 parent = 0 position = 0,0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = srfAttach, -1 attN = top, 10 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 203.0543781079308 tempExt = 202.8850590559515 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 199.99414634136164 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongAntenna2 cid = 4294160256 uid = 2035427829 mid = 484328997 persistentId = 2299103880 launchID = 1 parent = 9 position = 0,0.38708209991455078,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = srfAttach, -1 attN = bottom, 9 mass = 0.00999999978 shielded = False temp = 203.06850850023179 tempExt = 203.1439202975624 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992752314 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { deployPercent { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294224434 uid = 510276254 mid = 484328997 persistentId = 2938246958 launchID = 1 parent = 0 position = 0,-0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = srfAttach, -1 attN = top, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 203.0565414948984 tempExt = 202.90537697443378 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 199.99414634136164 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 343.319999999978 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } AxisGroupsModule { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = 13c1f8bd3b354ab491597fc5a7140701 persistentId = 1251815637 name = Dumb Relay type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 3751.8642524073407 lct = 3806.95707580505 lastUT = 7558.8213282123907 distanceTraveled = 35904.156475526579 root = 0 lat = 4.6440272958630167E-10 lon = -124.54534063832537 alt = 2086749.9835852543 hgt = 2086750 nrm = 0.219314247,0.97565043,0.00275039673 rot = -0.64930743,0.285192788,0.281148523,0.646545053 CoM = -9.31322575E-10,0.0168871731,3.7252903E-09 stg = 0 prst = False ref = 4265851170 ctrl = True PQSMin = 2 PQSMax = 9 GroupOverride = 0 OverrideDefault = False,False,False,False OverrideActionControl = 0,0,0,0 OverrideAxisControl = 0,0,0,0 OverrideGroupNames = ,,, altDispState = ASL cPch = 0.4269122 cHdg = -4.607083 cMod = 0 ORBIT { SMA = 2686750.0000783056 ECC = 7.0093917674097775E-12 INC = 1.8664469945399109E-13 LPE = 116.17425952197659 LAN = 0.52355120464022775 MNA = -0.4357586219455033 EPH = 7558.8213282123907 REF = 1 } PART { name = probeCoreOcto.v2 cid = 4294232176 uid = 4265851170 mid = 893306468 persistentId = 258426615 launchID = 2 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = , -1 attN = bottom, 11 attN = top, 9 mass = 0.100000001 shielded = False temp = 195.6947682303456 tempExt = 195.02273857477385 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = _default modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False activeControlPointName = _default stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 7558.8213282123907 ExtraDelayScheduledTimeStamp = 0 ExtraDelay = 0 CmdGuid = ff15dbf7-2008-4f41-931b-8d766e8726e3 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 9.9997073170680828 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = solarPanels5 cid = 4294230226 uid = 2647624338 mid = 893306468 persistentId = 2611078682 launchID = 2 parent = 0 position = -0.33566024899482727,0.032947540283203125,2.0006911682912687E-08 rotation = -3.96246804E-08,-0.707106948,-3.96246982E-08,0.70710659 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 195.40534344693575 tempExt = 195.07756844699372 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 3806.95707580505 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229838 uid = 1426174637 mid = 893306468 persistentId = 792009926 launchID = 2 parent = 0 position = -0.23734760284423828,0.032947540283203125,0.23734766244888306 rotation = -5.17721475E-08,-0.382683635,-2.14447375E-08,0.923879445 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 195.53184789641725 tempExt = 195.36907781967133 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 3806.95707580505 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229806 uid = 4037567105 mid = 893306468 persistentId = 1232234463 launchID = 2 parent = 0 position = 5.8385197548762712E-16,0.032947540283203125,0.33566021919250488 rotation = -5.60377771E-08,-2.52881108E-07,-1.25607405E-14,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 1 sym = 2 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 195.35563857448395 tempExt = 194.9506508168021 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 3806.95707580505 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229774 uid = 3814070839 mid = 893306468 persistentId = 1581445226 launchID = 2 parent = 0 position = 0.23734763264656067,0.032947540283203125,0.23734761774539948 rotation = -5.17721581E-08,0.382683218,2.14447162E-08,0.923879623 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 1 sym = 2 sym = 3 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 195.35563981037384 tempExt = 194.95065129586573 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 3806.95707580505 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229742 uid = 119646864 mid = 893306468 persistentId = 1565974987 launchID = 2 parent = 0 position = 0.33566024899482727,0.032947540283203125,-4.9351264408414863E-08 rotation = -3.96246982E-08,0.70710665,3.96246804E-08,0.707106888 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 1 sym = 2 sym = 3 sym = 4 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 195.35563890926656 tempExt = 194.95065094657267 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 3806.95707580505 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229710 uid = 2175271897 mid = 893306468 persistentId = 3349949819 launchID = 2 parent = 0 position = 0.23734760284423828,0.032947540283203125,-0.23734769225120544 rotation = -2.14447358E-08,0.923879504,5.1772151E-08,0.382683605 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 195.35563969463254 tempExt = 194.95065125100132 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 3806.95707580505 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229678 uid = 3274175501 mid = 893306468 persistentId = 813586418 launchID = 2 parent = 0 position = -4.0013819813111695E-08,0.032947540283203125,-0.33566021919250488 rotation = -1.25607405E-14,1,5.60377771E-08,2.52881108E-07 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 195.35563857448395 tempExt = 194.9506508168021 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 3806.95707580505 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229646 uid = 2630859461 mid = 893306468 persistentId = 2155852401 launchID = 2 parent = 0 position = -0.23734772205352783,0.032947540283203125,-0.2373475581407547 rotation = 2.14447251E-08,0.923879564,5.17721546E-08,-0.382683367 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 195.54733574027441 tempExt = 195.40573392533719 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 3806.95707580505 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294226184 uid = 588624687 mid = 893306468 persistentId = 2737538772 launchID = 2 parent = 0 position = 0,0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = srfAttach, -1 attN = top, 10 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 195.05091363597589 tempExt = 194.74327786195084 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 199.99414634136164 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongAntenna2 cid = 4294160256 uid = 3446489676 mid = 893306468 persistentId = 948723873 launchID = 2 parent = 9 position = 0,0.38708209991455078,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = srfAttach, -1 attN = bottom, 9 mass = 0.00999999978 shielded = False temp = 195.64392052677366 tempExt = 195.17621143219992 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992752314 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { deployPercent { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294224434 uid = 2346883805 mid = 893306468 persistentId = 324666371 launchID = 2 parent = 0 position = 0,-0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = srfAttach, -1 attN = top, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 195.0542167006362 tempExt = 194.81544895594874 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 199.99414634136164 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } AxisGroupsModule { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = 9942582a82704ebebe95de1987f28af8 persistentId = 287080792 name = Ast. HSJ-227 type = SpaceObject sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = True launchedFrom = landedAt = displaylandedAt = splashed = False met = 3801.1570758050552 lct = 3801.1570758050552 lastUT = -1 distanceTraveled = 0 root = 0 lat = -2.8368159829720407 lon = 178.03573822727176 alt = 14574356966.695591 hgt = -1 nrm = 0,1,0 rot = -0.298433661,0.402898014,-0.817398846,0.283672005 CoM = 0,0,0 stg = 0 prst = False ref = 0 ctrl = False PQSMin = 0 PQSMax = 0 GroupOverride = 0 OverrideDefault = False,False,False,False OverrideActionControl = 0,0,0,0 OverrideAxisControl = 0,0,0,0 OverrideGroupNames = ,,, altDispState = DEFAULT ORBIT { SMA = 15207530692.71471 ECC = 0.10732524658662361 INC = 2.8744645409709251 LPE = 2.1942755531221976 LAN = 261.91228012070297 MNA = -0.056757262215914088 EPH = 2047386.8931597895 REF = 0 } PART { name = PotatoRoid cid = 0 uid = 559298752 mid = 559298752 persistentId = 3480117253 launchID = 0 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 0 sqor = 0 sepI = 0 sidx = 0 attm = 0 sameVesselCollision = False srfN = None, -1 mass = 150 shielded = False temp = -1 tempExt = 0 tempExtUnexp = 0 staticPressureAtm = 0 expt = 1 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = rTrf = modCost = 0 } ACTIONGROUPS { } DISCOVERY { state = 1 lastObservedTime = 3801.1570758050552 lifetime = 586354.71038818359 refTime = 1728000 size = 4 } FLIGHTPLAN { } CTRLSTATE { } VESSELMODULES { FlightIntegrator { } AxisGroupsModule { } } } VESSEL { pid = b2e7a5243a22427d9448f3936627ee2b persistentId = 1240298663 name = Ast. QIQ-729 type = SpaceObject sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = True launchedFrom = landedAt = displaylandedAt = splashed = False met = 3823.4395269769129 lct = 3823.4395269769129 lastUT = -1 distanceTraveled = 0 root = 0 lat = -0.53305519314549887 lon = 177.36449216677261 alt = 13684826953.943647 hgt = -1 nrm = 0,1,0 rot = 0.103235118,0.42330277,0.16069144,0.88562721 CoM = 0,0,0 stg = 0 prst = False ref = 0 ctrl = False PQSMin = 0 PQSMax = 0 GroupOverride = 0 OverrideDefault = False,False,False,False OverrideActionControl = 0,0,0,0 OverrideAxisControl = 0,0,0,0 OverrideGroupNames = ,,, altDispState = DEFAULT ORBIT { SMA = 13970116561.725136 ECC = 0.029723359272247063 INC = 0.56771077204113385 LPE = 18.554216290644291 LAN = 250.42697783357028 MNA = -0.32333994425134271 EPH = 1773910.0850347895 REF = 0 } PART { name = PotatoRoid cid = 0 uid = 1975237234 mid = 1975237234 persistentId = 2193551570 launchID = 0 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 0 sqor = 0 sepI = 0 sidx = 0 attm = 0 sameVesselCollision = False srfN = None, -1 mass = 150 shielded = False temp = -1 tempExt = 0 tempExtUnexp = 0 staticPressureAtm = 0 expt = 1 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = rTrf = modCost = 0 } ACTIONGROUPS { } DISCOVERY { state = 1 lastObservedTime = 3823.4395269769129 lifetime = 1659996.38671875 refTime = 1728000 size = 2 } FLIGHTPLAN { } CTRLSTATE { } VESSELMODULES { FlightIntegrator { } AxisGroupsModule { } } } VESSEL { pid = 90785b5195894511ae655cce7843f2c7 persistentId = 692388543 name = Ast. QOQ-426 type = SpaceObject sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = True launchedFrom = landedAt = displaylandedAt = splashed = False met = 3969.3633367913599 lct = 3969.3633367913599 lastUT = -1 distanceTraveled = 0 root = 0 lat = 0.45366865436233561 lon = 173.38132861898143 alt = 13493778242.121508 hgt = -1 nrm = 0,1,0 rot = 0.140182018,0.0482304916,0.684207737,0.714060724 CoM = 0,0,0 stg = 0 prst = False ref = 0 ctrl = False PQSMin = 0 PQSMax = 0 GroupOverride = 0 OverrideDefault = False,False,False,False OverrideActionControl = 0,0,0,0 OverrideAxisControl = 0,0,0,0 OverrideGroupNames = ,,, altDispState = DEFAULT ORBIT { SMA = 13780843957.818584 ECC = 0.03032809235192491 INC = 0.5477904379426235 LPE = 144.15564411290859 LAN = 120.77779067877816 MNA = 1.0610144677956204 EPH = 3799911.294489135 REF = 0 } PART { name = PotatoRoid cid = 0 uid = 436887625 mid = 436887625 persistentId = 1454803366 launchID = 0 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 0 sqor = 0 sepI = 0 sidx = 0 attm = 0 sameVesselCollision = False srfN = None, -1 mass = 150 shielded = False temp = -1 tempExt = 0 tempExtUnexp = 0 staticPressureAtm = 0 expt = 1 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = rTrf = modCost = 0 } ACTIONGROUPS { } DISCOVERY { state = 1 lastObservedTime = 3969.3633367913599 lifetime = 1013611.2945556641 refTime = 1728000 size = 2 } FLIGHTPLAN { } CTRLSTATE { } VESSELMODULES { FlightIntegrator { } AxisGroupsModule { } } } VESSEL { pid = 8059501cdfb54eebaf347b111b42f325 persistentId = 3784465657 name = Ast. CPU-909 type = SpaceObject sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = True launchedFrom = landedAt = displaylandedAt = splashed = False met = 4035.3633367913599 lct = 4035.3633367913599 lastUT = -1 distanceTraveled = 0 root = 0 lat = 0.19986420672659549 lon = 173.84496200881489 alt = 13310433595.526636 hgt = -1 nrm = 0,1,0 rot = -0.420727581,0.389231175,-0.733960688,0.364402354 CoM = 0,0,0 stg = 0 prst = False ref = 0 ctrl = False PQSMin = 0 PQSMax = 0 GroupOverride = 0 OverrideDefault = False,False,False,False OverrideActionControl = 0,0,0,0 OverrideAxisControl = 0,0,0,0 OverrideGroupNames = ,,, altDispState = DEFAULT ORBIT { SMA = 13937118394.408333 ECC = 0.037612135720588483 INC = 0.35915379448024753 LPE = 81.237521438803284 LAN = 143.39495541995643 MNA = 0.89274585613445578 EPH = 2535878.954645385 REF = 0 } PART { name = PotatoRoid cid = 0 uid = 77021026 mid = 77021026 persistentId = 439916498 launchID = 0 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 0 sqor = 0 sepI = 0 sidx = 0 attm = 0 sameVesselCollision = False srfN = None, -1 mass = 150 shielded = False temp = -1 tempExt = 0 tempExtUnexp = 0 staticPressureAtm = 0 expt = 1 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = rTrf = modCost = 0 } ACTIONGROUPS { } DISCOVERY { state = 1 lastObservedTime = 4035.3633367913599 lifetime = 1041672.3266601563 refTime = 1728000 size = 2 } FLIGHTPLAN { } CTRLSTATE { } VESSELMODULES { FlightIntegrator { } AxisGroupsModule { } } } VESSEL { pid = e6ad3da9402c423883f7c72dd1c53851 persistentId = 2996234100 name = Ast. FPZ-401 type = SpaceObject sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = True launchedFrom = landedAt = displaylandedAt = splashed = False met = 4097.3633367913599 lct = 4097.3633367913599 lastUT = -1 distanceTraveled = 0 root = 0 lat = 1.5275207303427507 lon = 179.04856765776776 alt = 14412696994.853537 hgt = -1 nrm = 0,1,0 rot = 0.269949704,-0.0383953117,0.918646157,0.285905838 CoM = 0,0,0 stg = 0 prst = False ref = 0 ctrl = False PQSMin = 0 PQSMax = 0 GroupOverride = 0 OverrideDefault = False,False,False,False OverrideActionControl = 0,0,0,0 OverrideAxisControl = 0,0,0,0 OverrideGroupNames = ,,, altDispState = DEFAULT ORBIT { SMA = 14651560725.281309 ECC = 0.074980772993671341 INC = 1.567661320408416 LPE = 198.4739201702383 LAN = 79.46615552972122 MNA = -0.27186940410409033 EPH = 2042786.3831121819 REF = 0 } PART { name = PotatoRoid cid = 0 uid = 1213499742 mid = 1213499742 persistentId = 516333379 launchID = 0 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 0 sqor = 0 sepI = 0 sidx = 0 attm = 0 sameVesselCollision = False srfN = None, -1 mass = 150 shielded = False temp = -1 tempExt = 0 tempExtUnexp = 0 staticPressureAtm = 0 expt = 1 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = rTrf = modCost = 0 } ACTIONGROUPS { } DISCOVERY { state = 1 lastObservedTime = 4097.3633367913599 lifetime = 322639.02053833008 refTime = 1728000 size = 4 } FLIGHTPLAN { } CTRLSTATE { } VESSELMODULES { FlightIntegrator { } AxisGroupsModule { } } } VESSEL { pid = 174d20e22f7147f4a7846a3fd5661946 persistentId = 1270083699 name = Ast. OIH-776 type = SpaceObject sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = True launchedFrom = landedAt = displaylandedAt = splashed = False met = 4160.6195074456573 lct = 4160.6195074456573 lastUT = -1 distanceTraveled = 0 root = 0 lat = -0.59894668583894939 lon = -170.42479719772703 alt = 15113363396.377131 hgt = -1 nrm = 0,1,0 rot = 0.520718277,-0.463975787,-0.000121768273,0.716644287 CoM = 0,0,0 stg = 0 prst = False ref = 0 ctrl = False PQSMin = 0 PQSMax = 0 GroupOverride = 0 OverrideDefault = False,False,False,False OverrideActionControl = 0,0,0,0 OverrideAxisControl = 0,0,0,0 OverrideGroupNames = ,,, altDispState = DEFAULT ORBIT { SMA = 14534086048.681255 ECC = 0.065233873667785769 INC = 0.84370702572817158 LPE = 19.392997025385448 LAN = 327.81776660724893 MNA = -0.29939745022144848 EPH = 3777753.0633551017 REF = 0 } PART { name = PotatoRoid cid = 0 uid = 1488036851 mid = 1488036851 persistentId = 3628343965 launchID = 0 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 0 sqor = 0 sepI = 0 sidx = 0 attm = 0 sameVesselCollision = False srfN = None, -1 mass = 150 shielded = False temp = -1 tempExt = 0 tempExtUnexp = 0 staticPressureAtm = 0 expt = 1 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = rTrf = modCost = 0 } ACTIONGROUPS { } DISCOVERY { state = 1 lastObservedTime = 4160.6195074456573 lifetime = 1188621.2768554688 refTime = 1728000 size = 2 } FLIGHTPLAN { } CTRLSTATE { } VESSELMODULES { FlightIntegrator { } AxisGroupsModule { } } } VESSEL { pid = f01a849fefb6417bbaa87c18d665cf23 persistentId = 1251815637 name = Dumb Relay type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 3646.6628602388719 lct = 7613.4613282135833 lastUT = 11260.124188452455 distanceTraveled = 17990.698514133048 root = 0 lat = 1.0216357147052262E-09 lon = 171.04939344690351 alt = 2086749.9899251801 hgt = 2086750 nrm = -0.802824318,0.596190631,-0.00546473265 rot = -0.654118419,0.276231229,0.271196425,0.649829209 CoM = -1.16415322E-09,0.0168871768,9.31322575E-09 stg = 0 prst = False ref = 619750627 ctrl = True PQSMin = 2 PQSMax = 9 GroupOverride = 0 OverrideDefault = False,False,False,False OverrideActionControl = 0,0,0,0 OverrideAxisControl = 0,0,0,0 OverrideGroupNames = ,,, altDispState = ASL cPch = -0.9267152 cHdg = 0.9187723 cMod = 0 ORBIT { SMA = 2686749.9999886421 ECC = 5.1080669088972349E-12 INC = 2.3089474609730992E-13 LPE = 334.21086281719943 LAN = 5.7502703488960947 MNA = 1.9058548785020835 EPH = 11260.124188452455 REF = 1 } PART { name = probeCoreOcto.v2 cid = 4294232176 uid = 619750627 mid = 388719144 persistentId = 1829106764 launchID = 3 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = , -1 attN = bottom, 11 attN = top, 9 mass = 0.100000001 shielded = False temp = 212.0890035333841 tempExt = 210.66347254428237 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = _default modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False activeControlPointName = _default stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 11260.124188452455 ExtraDelayScheduledTimeStamp = 0 ExtraDelay = 0 CmdGuid = 71b243b4-397c-4593-a9c4-d2360732c509 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 5.4665936157643005 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = solarPanels5 cid = 4294230226 uid = 787378126 mid = 388719144 persistentId = 384701602 launchID = 3 parent = 0 position = -0.33566024899482727,0.032947540283203125,2.0006911682912687E-08 rotation = -3.96246804E-08,-0.707106948,-3.96246982E-08,0.70710659 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 211.88898318126488 tempExt = 210.58796130356876 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 7613.4613282135833 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229838 uid = 2957908299 mid = 388719144 persistentId = 3163541253 launchID = 3 parent = 0 position = -0.23734760284423828,0.032947540283203125,0.23734766244888306 rotation = -5.17721475E-08,-0.382683635,-2.14447375E-08,0.923879445 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 211.90087627259166 tempExt = 210.74407076311039 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 7613.4613282135833 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229806 uid = 3745896432 mid = 388719144 persistentId = 1076380010 launchID = 3 parent = 0 position = 5.8385197548762712E-16,0.032947540283203125,0.33566021919250488 rotation = -5.60377771E-08,-2.52881108E-07,-1.25607405E-14,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 1 sym = 2 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 211.88898318082292 tempExt = 210.58796130340241 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 7613.4613282135833 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229774 uid = 1950008806 mid = 388719144 persistentId = 2702606023 launchID = 3 parent = 0 position = 0.23734763264656067,0.032947540283203125,0.23734761774539948 rotation = -5.17721581E-08,0.382683218,2.14447162E-08,0.923879623 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 1 sym = 2 sym = 3 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 211.88928500478161 tempExt = 210.59160266287546 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 7613.4613282135833 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229742 uid = 1306429790 mid = 388719144 persistentId = 636415508 launchID = 3 parent = 0 position = 0.33566024899482727,0.032947540283203125,-4.9351264408414863E-08 rotation = -3.96246982E-08,0.70710665,3.96246804E-08,0.707106888 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 1 sym = 2 sym = 3 sym = 4 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 211.88898318115545 tempExt = 210.58796130352758 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 7613.4613282135833 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229710 uid = 4093642861 mid = 388719144 persistentId = 37161730 launchID = 3 parent = 0 position = 0.23734760284423828,0.032947540283203125,-0.23734769225120544 rotation = -2.14447358E-08,0.923879504,5.1772151E-08,0.382683605 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 211.88925167486391 tempExt = 210.59110397867403 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 7613.4613282135833 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229678 uid = 3091990875 mid = 388719144 persistentId = 507839505 launchID = 3 parent = 0 position = -4.0013819813111695E-08,0.032947540283203125,-0.33566021919250488 rotation = -1.25607405E-14,1,5.60377771E-08,2.52881108E-07 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 211.8889831808205 tempExt = 210.58796130340156 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 7613.4613282135833 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229646 uid = 2296908847 mid = 388719144 persistentId = 1892930292 launchID = 3 parent = 0 position = -0.23734772205352783,0.032947540283203125,-0.2373475581407547 rotation = 2.14447251E-08,0.923879564,5.17721546E-08,-0.382683367 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 211.9039920550313 tempExt = 210.7902536633614 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 7613.4613282135833 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294226184 uid = 1010099024 mid = 388719144 persistentId = 2457206485 launchID = 3 parent = 0 position = 0,0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = srfAttach, -1 attN = top, 10 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 211.79593193492332 tempExt = 210.51310880950328 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 109.33187231528618 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongAntenna2 cid = 4294160256 uid = 1574302784 mid = 388719144 persistentId = 1630493616 launchID = 3 parent = 9 position = 0,0.38708209991455078,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = srfAttach, -1 attN = bottom, 9 mass = 0.00999999978 shielded = False temp = 212.04267709800854 tempExt = 210.70638552055686 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992752314 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { deployPercent { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294224434 uid = 4166033620 mid = 388719144 persistentId = 700783420 launchID = 3 parent = 0 position = 0,-0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = srfAttach, -1 attN = top, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 211.85258149869622 tempExt = 210.98341962818603 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 109.33187231528618 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } AxisGroupsModule { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = efca7843b1034d1cb82c6913a84a9994 persistentId = 1251815637 name = Dumb Relay type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 5.9400000001296576 lct = 11272.984188452736 lastUT = 11278.924188452866 distanceTraveled = 6327.581020090106 root = 0 lat = 4.4647179770594321E-10 lon = 81.721980307163307 alt = 2086750.0154657587 hgt = 2086750 nrm = 0.401052237,-0.916053891,0.00164079666 rot = -0.700861633,-0.0920516178,-0.0970202312,0.700647295 CoM = -4.19095159E-09,0.0168871619,9.31322575E-10 stg = 0 prst = False ref = 189118230 ctrl = True PQSMin = 2 PQSMax = 9 GroupOverride = 0 OverrideDefault = False,False,False,False OverrideActionControl = 0,0,0,0 OverrideAxisControl = 0,0,0,0 OverrideGroupNames = ,,, altDispState = ASL cPch = 0.1828042 cHdg = 0.4002223 cMod = 0 ORBIT { SMA = 2686749.9999755519 ECC = 8.0457400922661299E-12 INC = 1.4115759423413462E-13 LPE = 203.34641314531385 LAN = 353.91518860058642 MNA = 2.8428555966285534 EPH = 11278.924188452866 REF = 1 } PART { name = probeCoreOcto.v2 cid = 4294232176 uid = 189118230 mid = 3505308771 persistentId = 3771496508 launchID = 4 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = , -1 attN = bottom, 11 attN = top, 9 mass = 0.100000001 shielded = False temp = 300.94545806535666 tempExt = 300.42818896876975 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = _default modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False activeControlPointName = _default stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 11278.924188452866 ExtraDelayScheduledTimeStamp = 0 ExtraDelay = 0 CmdGuid = cf6415d3-7f98-4de5-badb-842e3dbc9dfe } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 9.8552552818981383 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = solarPanels5 cid = 4294230226 uid = 488814642 mid = 3505308771 persistentId = 333445000 launchID = 4 parent = 0 position = -0.33566024899482727,0.032947540283203125,2.0006911682912687E-08 rotation = -3.96246804E-08,-0.707106948,-3.96246982E-08,0.70710659 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 300.92502379251101 tempExt = 300.37712908001834 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 11272.984188452736 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229838 uid = 3305214923 mid = 3505308771 persistentId = 1885863823 launchID = 4 parent = 0 position = -0.23734760284423828,0.032947540283203125,0.23734766244888306 rotation = -5.17721475E-08,-0.382683635,-2.14447375E-08,0.923879445 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 1 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 300.92517251002062 tempExt = 300.37879619745883 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 11272.984188452736 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229806 uid = 2606685403 mid = 3505308771 persistentId = 3186147834 launchID = 4 parent = 0 position = 5.8385197548762712E-16,0.032947540283203125,0.33566021919250488 rotation = -5.60377771E-08,-2.52881108E-07,-1.25607405E-14,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 1 sym = 2 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 300.92502379287725 tempExt = 300.37712908018062 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 11272.984188452736 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229774 uid = 2918694455 mid = 3505308771 persistentId = 1026142573 launchID = 4 parent = 0 position = 0.23734763264656067,0.032947540283203125,0.23734761774539948 rotation = -5.17721581E-08,0.382683218,2.14447162E-08,0.923879623 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 1 sym = 2 sym = 3 sym = 5 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 300.93396399148952 tempExt = 300.48310988613179 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 11272.984188452736 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229742 uid = 3481913231 mid = 3505308771 persistentId = 1689685897 launchID = 4 parent = 0 position = 0.33566024899482727,0.032947540283203125,-4.9351264408414863E-08 rotation = -3.96246982E-08,0.70710665,3.96246804E-08,0.707106888 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 1 sym = 2 sym = 3 sym = 4 sym = 6 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 300.92502379281228 tempExt = 300.37712908014356 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 11272.984188452736 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229710 uid = 2770039712 mid = 3505308771 persistentId = 1555432478 launchID = 4 parent = 0 position = 0.23734760284423828,0.032947540283203125,-0.23734769225120544 rotation = -2.14447358E-08,0.923879504,5.1772151E-08,0.382683605 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 7 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 300.93160748634546 tempExt = 300.45038307874046 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 11272.984188452736 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229678 uid = 1861415309 mid = 3505308771 persistentId = 2445461647 launchID = 4 parent = 0 position = -4.0013819813111695E-08,0.032947540283203125,-0.33566021919250488 rotation = -1.25607405E-14,1,5.60377771E-08,2.52881108E-07 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 8 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 300.92502379634442 tempExt = 300.37712908166094 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 11272.984188452736 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294229646 uid = 2651064216 mid = 3505308771 persistentId = 1669606165 launchID = 4 parent = 0 position = -0.23734772205352783,0.032947540283203125,-0.2373475581407547 rotation = 2.14447251E-08,0.923879564,5.17721546E-08,-0.382683367 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 1 sym = 2 sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 srfN = srfAttach, 0 mass = 0.00499999989 shielded = False temp = 300.92514543532189 tempExt = 300.37849278765856 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 11272.984188452736 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294226184 uid = 52161799 mid = 3505308771 persistentId = 1697841844 launchID = 4 parent = 0 position = 0,0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = srfAttach, -1 attN = top, 10 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 300.91050417600519 tempExt = 300.34576027907048 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 197.10510563795927 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongAntenna2 cid = 4294160256 uid = 4180193247 mid = 3505308771 persistentId = 527341459 launchID = 4 parent = 9 position = 0,0.38708209991455078,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = srfAttach, -1 attN = bottom, 9 mass = 0.00999999978 shielded = False temp = 300.9383627296495 tempExt = 300.40439965083573 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992752314 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { deployPercent { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294224434 uid = 2037338104 mid = 3505308771 persistentId = 792387019 launchID = 4 parent = 0 position = 0,-0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = srfAttach, -1 attN = top, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 300.94675286413934 tempExt = 300.83264308633636 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 197.10510563795927 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } AxisGroupsModule { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = d777b7c628a848538d8a881583e93882 persistentId = 3153110697 name = Science Container type = Relay sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 42.000000000916771 lct = 11289.584188453098 lastUT = 11331.584188454015 distanceTraveled = 49070.812015585114 root = 0 lat = 1.4795941931196487E-06 lon = 80.874076186500162 alt = 3086750.2621587827 hgt = 3086750.25 nrm = 0.384360522,-0.923002839,-0.0182414055 rot = -0.705832481,-0.0936044827,-0.0725434348,0.698409736 CoM = 0,0.28587091,-0.093272984 stg = 0 prst = False ref = 2463353107 ctrl = True PQSMin = 2 PQSMax = 9 GroupOverride = 0 OverrideDefault = False,False,False,False OverrideActionControl = 0,0,0,0 OverrideAxisControl = 0,0,0,0 OverrideGroupNames = ,,, altDispState = ASL cPch = 0.5432119 cHdg = 1.769323 cMod = 0 ORBIT { SMA = 3686749.9999910132 ECC = 3.0092185632739526E-12 INC = 1.2278292668050492E-12 LPE = 16.786596011614336 LAN = 194.04860151510462 MNA = 2.606507035933749 EPH = 11331.584188454015 REF = 1 } PART { name = probeCoreOcto.v2 cid = 4294402138 uid = 2463353107 mid = 294754291 persistentId = 3178152531 launchID = 5 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = , -1 attN = bottom, 7 attN = top, 1 mass = 0.100000001 shielded = False temp = 301.62748427693862 tempExt = 300.44335347062446 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = _default modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False activeControlPointName = _default stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 11331.584188454015 ExtraDelayScheduledTimeStamp = 0 ExtraDelay = 0 CmdGuid = 16ea17a5-eb51-4af5-a9f7-a076f5a9330f } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 9.9997219512201294 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryBankMini cid = 4294397510 uid = 518957318 mid = 294754291 persistentId = 3835331377 launchID = 5 parent = 0 position = 0,0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = srfAttach, -1 attN = top, 2 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 301.54964569293242 tempExt = 300.11112988464544 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 199.9944390244026 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = ScienceBox cid = 4294386370 uid = 1155887978 mid = 294754291 persistentId = 560239427 launchID = 5 parent = 1 position = 0,0.78708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = srfAttach, -1 attN = top, -1 attN = bottom, 1 mass = 0.0500000007 shielded = False temp = 301.67864552570074 tempExt = 299.48797583442951 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = ScienceBox modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleConductionMultiplier isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceContainer isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { CollectAllAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = sensorThermometer cid = 4294386790 uid = 651807547 mid = 294754291 persistentId = 394848550 launchID = 5 parent = 2 position = -0.26754564046859741,0.82405948638916016,1.5946964637691963E-08 rotation = 0,0.707106829,0,0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False srfN = srfAttach, 2,C1 mass = 0.00499999989 shielded = False temp = 301.59394082777294 tempExt = 299.84230169839333 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = sensorThermometer modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ResetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = sensorBarometer cid = 4294386556 uid = 1192351516 mid = 294754291 persistentId = 3198407979 launchID = 5 parent = 2 position = 0.26804530620574951,0.72946262359619141,1.5976747036461347E-08 rotation = 0,0.707106829,0,-0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False srfN = srfAttach, 2,C1 mass = 0.00499999989 shielded = False temp = 301.46052131014903 tempExt = 299.92716185718643 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = sensorBarometer modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ResetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = SurfAntenna cid = 4294389846 uid = 45734954 mid = 294754291 persistentId = 3992013085 launchID = 5 parent = 2 position = 0,0.43493843078613281,0.31818446516990662 rotation = 0.5,0.5,0.5,0.5 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False srfN = srfAttach, 2,C2 mass = 0.0149999997 shielded = False temp = 301.56177216697506 tempExt = 299.95811727431845 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = SurfAntenna modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 1500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = GooExperiment cid = 4294378818 uid = 2399275940 mid = 294754291 persistentId = 2201580770 launchID = 5 parent = 2 position = 2.3399275406177367E-08,0.769622802734375,-0.17765650153160095 rotation = 0,0,0,-1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False srfN = srfAttach, 2,C2 mass = 0.0500000007 shielded = False temp = 301.5843415709935 tempExt = 300.10235253676279 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = GooExperiment modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = True animTime = 0 animSpeed = 1 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { deployPercent { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ResetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294396872 uid = 806008066 mid = 294754291 persistentId = 3637722558 launchID = 5 parent = 0 position = 0,-0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = srfAttach, -1 attN = top, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 301.61905860424361 tempExt = 301.31862672025528 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 199.9944390244026 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = solarPanels3 cid = 4294396138 uid = 275298143 mid = 294754291 persistentId = 1516901255 launchID = 5 parent = 0 position = -0.34096083045005798,-0.0413818359375,2.0322850957654737E-08 rotation = 2.5121481E-14,-2.52881108E-07,-9.12332041E-08,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 9 srfN = srfAttach, 0,collider.collider mass = 0.0175000001 shielded = False temp = 301.47301695065073 tempExt = 299.9745884443002 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels3 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 11289.584188453098 currentRotation = (0.00693476014, 0.707078874, -0.707066536, -0.00694417767) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels3 cid = 4294396000 uid = 3860698655 mid = 294754291 persistentId = 3970584464 launchID = 5 parent = 0 position = 0.34096083045005798,-0.0413818359375,-5.0130594786423899E-08 rotation = -9.12332041E-08,1,-2.11335517E-14,2.09169713E-07 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 8 srfN = srfAttach, 0,collider.collider mass = 0.0175000001 shielded = False temp = 301.73813356435323 tempExt = 301.68852211810696 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels3 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 11289.584188453098 currentRotation = (0.00694131758, -0.707073987, 0.707071543, -0.00693312194) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = HighGainAntenna5 cid = 4294393140 uid = 1875826916 mid = 294754291 persistentId = 2565157211 launchID = 5 parent = 0 position = 2.9677199364641638E-08,0.057012557983398438,-0.33946758508682251 rotation = 0.50000006,0.50000006,-0.5,-0.5 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False srfN = srfAttach, 0,collider.collider attN = bottom, -1 mass = 0.0700000003 shielded = False temp = 301.71700564705714 tempExt = 301.45413712468905 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = HighGainAntenna5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.995595217 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { deployPercent { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 0.70710678118654757 RTOmniRange = 0 RTDishRange = 20000000 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 5105f5a9-d628-41c6-ad4b-21154e8fc488 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } AxisGroupsModule { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = d89105a73c324aaea3ff42c977665577 persistentId = 152100838 name = Omni 2_5Mm Limit type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 10193.192744142058 lct = 11347.644188454366 lastUT = 21540.836932596423 distanceTraveled = 75601.589795858483 root = 0 lat = -5.1236733256668033E-07 lon = 109.44907349548092 alt = 2506749.9999708282 hgt = 2506750 nrm = -0.169086516,0.000255041698,-0.985601246 rot = 1.43796833E-05,0.967744887,0.000129206892,0.251932442 CoM = 3.55316843E-09,0.0277821012,-7.36690708E-10 stg = 0 prst = False ref = 3230787789 ctrl = True PQSMin = 2 PQSMax = 9 GroupOverride = 0 OverrideDefault = False,False,False,False OverrideActionControl = 0,0,0,0 OverrideAxisControl = 0,0,0,0 OverrideGroupNames = ,,, altDispState = ASL cPch = 0.4826756 cHdg = 1.394744 cMod = 0 ORBIT { SMA = 3106749.9999582758 ECC = 7.4526999288198226E-12 INC = 1.4153801269382011E-14 LPE = 101.08843642566825 LAN = 246.22915749975243 MNA = -2.5832966254780998 EPH = 21540.836932596423 REF = 1 } PART { name = probeCoreOcto.v2 cid = 4293497788 uid = 3230787789 mid = 1422591741 persistentId = 1969501100 launchID = 6 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = , -1 attN = bottom, -1 attN = top, 1 mass = 0.100000001 shielded = False temp = 137.21261314076139 tempExt = 138.90319869007214 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = _default modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False activeControlPointName = _default stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = NormalPlus Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 21540.836932596423 ExtraDelayScheduledTimeStamp = 11351.987920625663 ExtraDelay = 0 CmdGuid = 6434356e-87bc-4b3e-af8c-dc3b775f6877 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryBankMini cid = 4293493832 uid = 3705748478 mid = 1422591741 persistentId = 3807729210 launchID = 6 parent = 0 position = 0,0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = srfAttach, -1 attN = top, 2 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 137.2980025689474 tempExt = 138.81602140109371 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = longAntenna cid = 4293490094 uid = 492863166 mid = 1422591741 persistentId = 3952381594 launchID = 6 parent = 1 position = 0,0.38708209991455078,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = srfAttach, -1 attN = bottom, 1 mass = 0.00499999989 shielded = False temp = 137.22941776587211 tempExt = 139.04622232326875 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = longAntenna modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.993339777 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { deployPercent { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 2500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4293492506 uid = 1030836419 mid = 1422591741 persistentId = 3974784551 launchID = 6 parent = 0 position = -0.24002593755722046,0.098835945129394531,-0.24002592265605927 rotation = 2.46875498E-08,0.923879504,5.9600989E-08,-0.382683605 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 0,collider.collider mass = 0.00499999989 shielded = False temp = 137.28754910770741 tempExt = 138.82373008332277 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 11347.644188454366 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294504874 uid = 3660887141 mid = 1422591741 persistentId = 4184265404 launchID = 6 parent = 0 position = -0.33944791555404663,0.098835945129394531,3.1996702176684266E-08 rotation = 4.5616634E-08,0.70710665,4.56166163E-08,-0.707106948 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 3 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 0,collider.collider mass = 0.00499999989 shielded = False temp = 137.2875491077167 tempExt = 138.82373008332928 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 11347.644188454366 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294504842 uid = 1397599804 mid = 1422591741 persistentId = 2412744104 launchID = 6 parent = 0 position = -0.24002592265605927,0.098835945129394531,0.24002590775489807 rotation = 5.96009961E-08,0.382683277,2.46875285E-08,-0.923879623 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 3 sym = 4 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 0,collider.collider mass = 0.00499999989 shielded = False temp = 137.28754910770741 tempExt = 138.82373008332277 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 11347.644188454366 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294504810 uid = 2530124509 mid = 1422591741 persistentId = 808366494 launchID = 6 parent = 0 position = -3.7699487975828561E-09,0.098835945129394531,0.33944791555404663 rotation = 6.45116458E-08,-1.65202522E-07,-1.05682344E-14,-1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 3 sym = 4 sym = 5 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 0,collider.collider mass = 0.00499999989 shielded = False temp = 137.28932036759835 tempExt = 138.86044742686306 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 11347.644188454366 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294504778 uid = 3839407787 mid = 1422591741 persistentId = 571926619 launchID = 6 parent = 0 position = 0.24002595245838165,0.098835945129394531,0.24002590775489807 rotation = 5.9600989E-08,-0.382683635,-2.46875516E-08,-0.923879504 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 3 sym = 4 sym = 5 sym = 6 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 0,collider.collider mass = 0.00499999989 shielded = False temp = 137.28768404907757 tempExt = 138.82652654031384 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 11347.644188454366 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294504746 uid = 1005091604 mid = 1422591741 persistentId = 4252089867 launchID = 6 parent = 0 position = 0.33944794535636902,0.098835945129394531,-5.3456695070508431E-08 rotation = 4.56166127E-08,-0.707107008,-4.56166376E-08,-0.70710665 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 9 sym = 10 srfN = srfAttach, 0,collider.collider mass = 0.00499999989 shielded = False temp = 137.28803427469811 tempExt = 138.83379292029875 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 11347.644188454366 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294504714 uid = 986319502 mid = 1422591741 persistentId = 593768274 launchID = 6 parent = 0 position = 0.24002589285373688,0.098835945129394531,-0.24002593755722046 rotation = 2.46875285E-08,-0.923879623,-5.96009961E-08,-0.382683277 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 10 srfN = srfAttach, 0,collider.collider mass = 0.00499999989 shielded = False temp = 137.28754910770741 tempExt = 138.82373008332277 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 11347.644188454366 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294504682 uid = 1605503001 mid = 1422591741 persistentId = 756210648 launchID = 6 parent = 0 position = -1.1068333094499394E-07,0.098835945129394531,-0.33944794535636902 rotation = -2.23924561E-14,-1,-6.45116458E-08,3.48490715E-07 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 3 sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 srfN = srfAttach, 0,collider.collider mass = 0.00499999989 shielded = False temp = 137.28754910773796 tempExt = 138.82373008334474 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 11347.644188454366 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } AxisGroupsModule { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = 5c13f402a5fd4fc19821fa6559a5d6fa persistentId = 152100838 name = Dish 20Mm Limit type = Relay sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 49.50000000108048 lct = 21677.996932599417 lastUT = 21727.496932600498 distanceTraveled = 19315.551231398254 root = 0 lat = -3.9403090627878199E-07 lon = -92.968344855392957 alt = 20606749.99999731 hgt = 20606750 nrm = -0.533926547,4.32886227E-05,-0.845530629 rot = -1.15253279E-05,-0.252937347,3.52268762E-05,0.967482626 CoM = -1.42290446E-09,0.145841703,-4.94674168E-09 stg = 0 prst = False ref = 895406662 ctrl = True PQSMin = 2 PQSMax = 9 GroupOverride = 0 OverrideDefault = False,False,False,False OverrideActionControl = 0,0,0,0 OverrideAxisControl = 0,0,0,0 OverrideGroupNames = ,,, altDispState = ASL cPch = 0.4260664 cHdg = -3.74945 cMod = 0 ORBIT { SMA = 21206750.000004198 ECC = 3.209133889194146E-13 INC = 2.9443529382263964E-13 LPE = 266.50834771554048 LAN = 8.3144189045038388 MNA = 1.4867363195266365 EPH = 21727.496932600498 REF = 1 } PART { name = probeCoreOcto.v2 cid = 4293497788 uid = 895406662 mid = 3678555554 persistentId = 3449198583 launchID = 7 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = , -1 attN = bottom, -1 attN = top, 1 mass = 0.100000001 shielded = False temp = 309.61911251682454 tempExt = 308.98211099368689 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = _default modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False activeControlPointName = _default stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = AttitudeHold Attitude = NormalPlus Frame = Orbit Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 21727.496932600498 ExtraDelayScheduledTimeStamp = 21706.94205595323 ExtraDelay = 0 CmdGuid = 2f9a5144-b1e5-4c00-9818-d400916ad0f9 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 7.4450550633487964 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryBankMini cid = 4293493832 uid = 2268886177 mid = 3678555554 persistentId = 4013465972 launchID = 7 parent = 0 position = 0,0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = srfAttach, -1 attN = top, 2 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 309.64730609041709 tempExt = 308.9234856082187 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 148.9011012670243 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = HighGainAntenna5 cid = 4293434240 uid = 2454799019 mid = 3678555554 persistentId = 2586054081 launchID = 7 parent = 1 position = 0,0.38708209991455078,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = srfAttach, -1 attN = bottom, 1 mass = 0.0700000003 shielded = False temp = 309.70575110113413 tempExt = 309.22218653946049 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = HighGainAntenna5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.995825052 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { deployPercent { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 0.70710678118654757 RTOmniRange = 0 RTDishRange = 20000000 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 5105f5a9-d628-41c6-ad4b-21154e8fc488 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } } PART { name = SurfAntenna cid = 4293391962 uid = 3317342367 mid = 3678555554 persistentId = 3730426048 launchID = 7 parent = 1 position = 0.15827132761478424,0.4308319091796875,-3.2713138864437497E-08 rotation = -2.98023281E-07,0.707106829,-2.98023281E-07,0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False srfN = srfAttach, 1,node_collider mass = 0.0149999997 shielded = False temp = 309.70175749096325 tempExt = 309.02748003213424 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = SurfAntenna modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 1500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4293492538 uid = 1529068097 mid = 3678555554 persistentId = 2958715313 launchID = 7 parent = 0 position = -2.9691809899645705E-08,0.11857509613037109,-0.33963471651077271 rotation = -2.56182516E-22,1,4.83449603E-15,5.29905329E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 0,collider.collider mass = 0.00499999989 shielded = False temp = 309.59735377399409 tempExt = 308.88323146880845 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 21677.996932599417 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294564562 uid = 223607882 mid = 3678555554 persistentId = 1130883278 launchID = 7 parent = 0 position = -0.24015805125236511,0.11857509613037109,-0.24015797674655914 rotation = 1.85008153E-15,0.923879564,4.4664924E-15,-0.382683426 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 4 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 0,collider.collider mass = 0.00499999989 shielded = False temp = 309.59734940237013 tempExt = 308.88322718601717 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 21677.996932599417 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294564530 uid = 170042482 mid = 3678555554 persistentId = 3145267175 launchID = 7 parent = 0 position = -0.33963468670845032,0.11857509613037109,9.448001492273761E-09 rotation = 3.4185047E-15,0.707106829,3.41850512E-15,-0.707106709 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 4 sym = 5 sym = 7 sym = 8 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 0,collider.collider mass = 0.00499999989 shielded = False temp = 309.59734872215307 tempExt = 308.88322655696152 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 21677.996932599417 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294564498 uid = 2130570899 mid = 3678555554 persistentId = 881397924 launchID = 7 parent = 0 position = -0.24015799164772034,0.11857509613037109,0.24015800654888153 rotation = 4.46649155E-15,0.382683486,1.85008174E-15,-0.923879504 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 4 sym = 5 sym = 6 sym = 8 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 0,collider.collider mass = 0.00499999989 shielded = False temp = 309.59742571516631 tempExt = 308.88499494754836 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 21677.996932599417 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294564466 uid = 1804807810 mid = 3678555554 persistentId = 2122093748 launchID = 7 parent = 0 position = 5.9383619799291409E-08,0.11857509613037109,0.33963471651077271 rotation = 4.83449603E-15,9.27914456E-09,4.48599827E-23,-1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 4 sym = 5 sym = 6 sym = 7 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 0,collider.collider mass = 0.00499999989 shielded = False temp = 309.59734840813928 tempExt = 308.88322626733685 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 21677.996932599417 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294564434 uid = 292551 mid = 3678555554 persistentId = 638928950 launchID = 7 parent = 0 position = 0.24015806615352631,0.11857509613037109,0.24015796184539795 rotation = 4.46649198E-15,-0.382683456,-1.85008174E-15,-0.923879504 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 10 sym = 11 srfN = srfAttach, 0,collider.collider mass = 0.00499999989 shielded = False temp = 309.59734840806959 tempExt = 308.88322626727256 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 21677.996932599417 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294564402 uid = 3673407387 mid = 3678555554 persistentId = 1470788434 launchID = 7 parent = 0 position = 0.33963468670845032,0.11857509613037109,-4.993561475430397E-08 rotation = 3.41850512E-15,-0.707106709,-3.4185047E-15,-0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 11 srfN = srfAttach, 0,collider.collider mass = 0.00499999989 shielded = False temp = 309.59734840817208 tempExt = 308.88322626736698 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 21677.996932599417 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294564370 uid = 4113295971 mid = 3678555554 persistentId = 3501354804 launchID = 7 parent = 0 position = 0.24015793204307556,0.11857509613037109,-0.24015811085700989 rotation = 1.8500811E-15,-0.923879623,-4.4664924E-15,-0.382683337 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 4 sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 srfN = srfAttach, 0,collider.collider mass = 0.00499999989 shielded = False temp = 309.59734377712005 tempExt = 308.88320676118155 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 21677.996932599417 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } AxisGroupsModule { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = f8e163172fa14bb89104b0b865d55593 persistentId = 152100838 name = Dish 75Mm Limit type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 54.200000001183071 lct = 21751.036932601011 lastUT = 21805.236932602194 distanceTraveled = 15592.782753565896 root = 0 lat = 1.3727082844641138E-10 lon = -94.272809211495172 alt = 75306749.894676521 hgt = 75306752 nrm = -0.321703583,0.946840048,-0.000726222992 rot = -0.701712251,-0.0866418332,-0.0917476267,0.701195717 CoM = 3.7252903E-09,0.111224823,3.7252903E-08 stg = 0 prst = False ref = 2824203347 ctrl = True PQSMin = 2 PQSMax = 9 GroupOverride = 0 OverrideDefault = False,False,False,False OverrideActionControl = 0,0,0,0 OverrideAxisControl = 0,0,0,0 OverrideGroupNames = ,,, altDispState = ASL cPch = 0.4030615 cHdg = -3.624438 cMod = 0 ORBIT { SMA = 75906749.999889731 ECC = 1.4012498052306326E-12 INC = 3.8187274607502848E-12 LPE = 338.49520831962428 LAN = 179.94897771714091 MNA = -2.7653600533825986 EPH = 21805.236932602194 REF = 1 } PART { name = probeCoreOcto.v2 cid = 4293497788 uid = 2824203347 mid = 3179980712 persistentId = 1248887579 launchID = 8 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = , -1 attN = bottom, -1 attN = top, 1 mass = 0.100000001 shielded = False temp = 312.37542033432101 tempExt = 310.45575578540451 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = _default modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False activeControlPointName = _default stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 21805.236932602194 ExtraDelayScheduledTimeStamp = 0 ExtraDelay = 0 CmdGuid = a7f30ea6-3e43-49a2-8802-5d209f7b0c81 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryBankMini cid = 4293493832 uid = 3774568581 mid = 3179980712 persistentId = 4255170676 launchID = 8 parent = 0 position = 0,0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = srfAttach, -1 attN = top, 3 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 312.40817774089857 tempExt = 311.36955496814181 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = SurfAntenna cid = 4293391962 uid = 1587358009 mid = 3179980712 persistentId = 4029096396 launchID = 8 parent = 1 position = -0.35866978764533997,0.28048324584960938,1.839815411130985E-08 rotation = 0.50000006,-0.5,0.50000006,0.5 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False srfN = srfAttach, 1 mass = 0.0149999997 shielded = False temp = 312.48854453263425 tempExt = 311.59953160332935 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = SurfAntenna modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 1500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = RTShortDish2 cid = 4294446452 uid = 4199355320 mid = 3179980712 persistentId = 2436626627 launchID = 8 parent = 1 position = 0,0.38708209991455078,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = srfAttach, -1 attN = bottom, 1 mass = 0.0500000007 shielded = False temp = 312.47461776637766 tempExt = 312.18221392143471 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 0.97629600711993336 RTOmniRange = 0 RTDishRange = 90000000 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 5105f5a9-d628-41c6-ad4b-21154e8fc488 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294555626 uid = 489826960 mid = 3179980712 persistentId = 4024372385 launchID = 8 parent = 0 position = 2.9847374349856182E-08,0.010270118713378906,-0.3414141833782196 rotation = 0.49999997,-0.50000006,0.50000006,0.49999997 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 5 sym = 6 sym = 7 srfN = srfAttach, 0,collider.collider mass = 0.0175000001 shielded = False temp = 312.30725121415327 tempExt = 310.37172705681638 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 21751.036932601011 currentRotation = (-0.698400855, -0.698394537, -0.110638961, 0.110636815) storedAnimationTime = 0 storedAnimationSpeed = 1 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294510292 uid = 186807027 mid = 3179980712 persistentId = 1269206364 launchID = 8 parent = 0 position = -0.34141415357589722,0.010270118713378906,-5.0197243695038196E-08 rotation = 0.707106829,-6.3220277E-08,6.3220277E-08,0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 4 sym = 6 sym = 7 srfN = srfAttach, 0,collider.collider mass = 0.0175000001 shielded = False temp = 312.20430349234533 tempExt = 309.7265872517815 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 21751.036932601011 currentRotation = (-0.707110643, -0.707102895, 0.000223467097, -0.000219017238) storedAnimationTime = 0 storedAnimationSpeed = 1 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294510188 uid = 293728449 mid = 3179980712 persistentId = 1190877467 launchID = 8 parent = 0 position = 1.522633625764382E-15,0.010270118713378906,0.3414141833782196 rotation = 0.50000006,0.5,-0.5,0.50000006 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 4 sym = 5 sym = 7 srfN = srfAttach, 0,collider.collider mass = 0.0175000001 shielded = False temp = 312.27330517293768 tempExt = 310.33448240731798 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 21751.036932601011 currentRotation = (-0.6984061, -0.698397934, 0.110611022, -0.110609643) storedAnimationTime = 0 storedAnimationSpeed = 1 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294510084 uid = 2445237411 mid = 3179980712 persistentId = 2858940435 launchID = 8 parent = 0 position = 0.34141415357589722,0.010270118713378906,9.4975014519604883E-09 rotation = 6.3220277E-08,0.707106829,-0.707106829,6.3220277E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 4 sym = 5 sym = 6 srfN = srfAttach, 0,collider.collider mass = 0.0175000001 shielded = False temp = 312.18613435871492 tempExt = 309.52769605496007 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 21751.036932601011 currentRotation = (-0.707109749, -0.707103789, -0.000267028809, 0.000270235585) storedAnimationTime = 0 storedAnimationSpeed = 1 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = True, 21766.6769326014 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } AxisGroupsModule { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = cfc8e37116de4a638b8a6a3a846a9142 persistentId = 3933205611 name = Dish Gateway type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 18257.319953605122 lct = 21820.096932602519 lastUT = 40077.41688620764 distanceTraveled = 72973.933076336267 root = 0 lat = -9.6950343366463887 lon = 157.68754142950741 alt = 3986750.2153150421 hgt = 3986750.25 nrm = -0.79324156,-0.583312631,-0.174683571 rot = -0.702227712,-0.0837689936,-0.0884995759,0.701446295 CoM = -6.61239028E-07,0.202525586,-2.5331974E-07 stg = 0 prst = False ref = 3650111841 ctrl = True PQSMin = 2 PQSMax = 9 GroupOverride = 0 OverrideDefault = False,False,False,False OverrideActionControl = 0,0,0,0 OverrideAxisControl = 0,0,0,0 OverrideGroupNames = ,,, altDispState = ASL cPch = 0.068 cHdg = -2.698 cMod = 0 ORBIT { SMA = 4586750.1958496924 ECC = 3.4968489273419019E-08 INC = 30.000000207737227 LPE = 251.7175031735334 LAN = 359.99999881714172 MNA = -0.90818184135270374 EPH = 40077.41688620764 REF = 1 } PART { name = probeCoreOcto.v2 cid = 4294049416 uid = 3650111841 mid = 2639716641 persistentId = 1610702328 launchID = 9 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = , -1 attN = bottom, -1 attN = top, 1 mass = 0.100000001 shielded = False temp = 284.9059972321005 tempExt = 282.56186332335187 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = _default modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False activeControlPointName = _default stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 40077.41688620764 ExtraDelayScheduledTimeStamp = 0 ExtraDelay = 0 CmdGuid = 86f646a5-4dbf-4d54-bbca-d45d14297cbf } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryBank cid = 4294048696 uid = 799053390 mid = 2639716641 persistentId = 3872188826 launchID = 9 parent = 0 position = 0,0.29793643951416016,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = , -1 attN = top, 2 attN = bottom, 0 mass = 0.0500000007 shielded = False temp = 285.01142285006995 tempExt = 284.54887711048207 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBank modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 1000 maxAmount = 1000 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongDish2 cid = 4294049052 uid = 1668769353 mid = 2639716641 persistentId = 159480776 launchID = 9 parent = 1 position = 0,0.43379116058349609,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = srfAttach, -1 attN = bottom, 1 mass = 0.200000003 shielded = False temp = 285.04777865757342 tempExt = 285.03681524590201 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongDish2 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 0.99999993907651941 RTOmniRange = 0 RTDishRange = 6.0000002E+10 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = f43a171c-9b97-424d-aec4-b52f6240c7f8 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = RTLongAntenna2 cid = 4294047590 uid = 2809071444 mid = 2639716641 persistentId = 3351865970 launchID = 9 parent = 1 position = 5.279443371364323E-08,0.30212020874023438,-0.60389792919158936 rotation = 0,0.707106709,-0.707106948,0 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 4 srfN = srfAttach, 1,collider attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 285.03755721058593 tempExt = 284.49989375062722 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = True animTime = 0.00719412183 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { deployPercent { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = RTLongAntenna2 cid = 4294035236 uid = 1235133924 mid = 2639716641 persistentId = 3594471222 launchID = 9 parent = 1 position = 2.3257830665708579E-17,0.30212020874023438,0.60389792919158936 rotation = -0.707106948,-3.09086161E-08,3.09086268E-08,-0.707106709 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 3 srfN = srfAttach, 1,collider attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 285.05347435717448 tempExt = 284.88921564395628 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992852509 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { deployPercent { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294044122 uid = 4065744674 mid = 2639716641 persistentId = 2204752275 launchID = 9 parent = 0 position = 0.3398972749710083,-0.030898094177246094,2.025945811112706E-08 rotation = 2.90069618E-14,1,5.98942781E-21,2.52881108E-07 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 sym = 11 sym = 12 srfN = srfAttach, 0,collider.collider mass = 0.0175000001 shielded = False temp = 284.7919281271374 tempExt = 282.61304268332015 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 21820.096932602519 currentRotation = (-0.501738906, -0.501724303, -0.498261213, 0.498263508) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294036692 uid = 1692689855 mid = 2639716641 persistentId = 2329555586 launchID = 9 parent = 0 position = 0.24034367501735687,-0.030898094177246094,-0.24034367501735687 rotation = 2.679894E-14,0.923879623,-1.11004786E-14,-0.382683218 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 5 sym = 7 sym = 8 sym = 9 sym = 10 sym = 11 sym = 12 srfN = srfAttach, 0,collider.collider mass = 0.0175000001 shielded = False temp = 284.81367487618957 tempExt = 282.83143295247504 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 21820.096932602519 currentRotation = (-0.609681308, -0.609678268, -0.358181804, 0.358171731) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294036588 uid = 4246119236 mid = 2639716641 persistentId = 2553965002 launchID = 9 parent = 0 position = 4.0518912669540441E-08,-0.030898094177246094,-0.33989724516868591 rotation = 2.05110231E-14,0.707106948,-2.05110146E-14,-0.70710659 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 5 sym = 6 sym = 8 sym = 9 sym = 10 sym = 11 sym = 12 srfN = srfAttach, 0,collider.collider mass = 0.0175000001 shielded = False temp = 284.70858403336075 tempExt = 282.02694043008233 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 21820.096932602519 currentRotation = (-0.635537326, -0.635534048, -0.309993356, 0.309988737) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294036484 uid = 647266315 mid = 2639716641 persistentId = 2680436736 launchID = 9 parent = 0 position = -0.24034363031387329,-0.030898094177246094,-0.24034367501735687 rotation = 1.11004896E-14,0.382683694,-2.67989366E-14,-0.923879445 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 5 sym = 6 sym = 7 sym = 9 sym = 10 sym = 11 sym = 12 srfN = srfAttach, 0,collider.collider mass = 0.0175000001 shielded = False temp = 284.70584916696527 tempExt = 282.00526754330059 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 21820.096932602519 currentRotation = (-0.608333349, -0.608329237, -0.360449672, 0.360474855) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294036380 uid = 2031778480 mid = 2639716641 persistentId = 3383566716 launchID = 9 parent = 0 position = -0.3398972749710083,-0.030898094177246094,9.4553049834189551E-09 rotation = 4.72149322E-21,2.09169713E-07,-2.90069618E-14,-1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 5 sym = 6 sym = 7 sym = 8 sym = 10 sym = 11 sym = 12 srfN = srfAttach, 0,collider.collider mass = 0.0175000001 shielded = False temp = 284.70575254006826 tempExt = 282.00469121927864 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 21820.096932602519 currentRotation = (-0.498274088, -0.498257011, -0.501736939, 0.501720011) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294036276 uid = 608593815 mid = 2639716641 persistentId = 1884329352 launchID = 9 parent = 0 position = -0.24034366011619568,-0.030898094177246094,0.24034368991851807 rotation = -1.11004803E-14,-0.382683277,-2.679894E-14,-0.923879623 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 11 sym = 12 srfN = srfAttach, 0,collider.collider mass = 0.0175000001 shielded = False temp = 284.70584820886472 tempExt = 282.00529897951986 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 21820.096932602519 currentRotation = (-0.358174711, -0.358179182, -0.609682202, 0.609677136) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294036172 uid = 2154966012 mid = 2639716641 persistentId = 2740730345 launchID = 9 parent = 0 position = -5.6879903534461573E-16,-0.030898094177246094,0.33989724516868591 rotation = -2.05110146E-14,-0.70710659,-2.05110231E-14,-0.707106948 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 sym = 12 srfN = srfAttach, 0,collider.collider mass = 0.0175000001 shielded = False temp = 284.70587567360172 tempExt = 282.00627032344073 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 21820.096932602519 currentRotation = (-0.309988141, -0.309993237, -0.635534167, 0.635537565) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294036068 uid = 534950633 mid = 2639716641 persistentId = 4025412029 launchID = 9 parent = 0 position = 0.24034373462200165,-0.030898094177246094,0.2403436154127121 rotation = -2.67989383E-14,-0.923879504,-1.11004845E-14,-0.382683516 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 0,collider.collider mass = 0.0175000001 shielded = False temp = 284.73394543563973 tempExt = 282.21246097663345 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 21820.096932602519 currentRotation = (-0.360471845, -0.360453546, -0.608325243, 0.608336866) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } AxisGroupsModule { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = f43a171c9b97424daec4b52f6240c7f8 persistentId = 3933205611 name = Dish Gateway type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 18128.220607907057 lct = 21893.256932604116 lastUT = 40021.497540511169 distanceTraveled = 163504.65838237203 root = 0 lat = -0.21989716253298713 lon = -178.59715963290478 alt = 2886749.8106941525 hgt = 2886749.75 nrm = -0.355367035,0.934718132,-0.00404924154 rot = 0.588486671,-0.395442456,-0.393118739,-0.585462511 CoM = 0,0.202525601,1.49011612E-08 stg = 0 prst = False ref = 856625480 ctrl = True PQSMin = 2 PQSMax = 9 GroupOverride = 0 OverrideDefault = False,False,False,False OverrideActionControl = 0,0,0,0 OverrideAxisControl = 0,0,0,0 OverrideGroupNames = ,,, altDispState = ASL cPch = 0.4128154 cHdg = -3.897406 cMod = 0 ORBIT { SMA = 3586749.9999694927 ECC = 9.9144271574513021E-12 INC = 30.000000000122824 LPE = 35.784840412179157 LAN = 180.00000000016038 MNA = 2.5247052814108972 EPH = 40021.477540511172 REF = 5 } PART { name = probeCoreOcto.v2 cid = 4294049416 uid = 856625480 mid = 1911707453 persistentId = 2220787951 launchID = 10 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = , -1 attN = bottom, -1 attN = top, 1 mass = 0.100000001 shielded = False temp = 283.47214484794614 tempExt = 281.43589513991054 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = _default modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False activeControlPointName = _default stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 40021.497540511169 ExtraDelayScheduledTimeStamp = 0 ExtraDelay = 0 CmdGuid = 03a62a46-9d6e-4f89-b222-72c9432332d0 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin 0 = Orbit,Eve } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 9.9998811881167455 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryBank cid = 4294048696 uid = 2689977586 mid = 1911707453 persistentId = 4188057616 launchID = 10 parent = 0 position = 0,0.29793643951416016,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = , -1 attN = top, 2 attN = bottom, 0 mass = 0.0500000007 shielded = False temp = 283.75029131604913 tempExt = 283.73261806856704 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBank modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 999.98811881167467 maxAmount = 1000 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongDish2 cid = 4294049052 uid = 2337916628 mid = 1911707453 persistentId = 1794851304 launchID = 10 parent = 1 position = 0,0.43379116058349609,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = srfAttach, -1 attN = bottom, 1 mass = 0.200000003 shielded = False temp = 283.85635407341169 tempExt = 284.79434349152353 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongDish2 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 0.99999993907651941 RTOmniRange = 0 RTDishRange = 6.0000002E+10 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = cfc8e371-16de-4a63-8b8a-6a3a846a9142 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = RTLongAntenna2 cid = 4294047590 uid = 2314151190 mid = 1911707453 persistentId = 1832160262 launchID = 10 parent = 1 position = 5.279443371364323E-08,0.30212020874023438,-0.60389792919158936 rotation = 0,0.707106709,-0.707106948,0 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 4 srfN = srfAttach, 1,collider attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 283.74852581688538 tempExt = 283.52651327750198 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = True animTime = 0.00719412602 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { deployPercent { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = RTLongAntenna2 cid = 4294035236 uid = 4237370997 mid = 1911707453 persistentId = 2350347381 launchID = 10 parent = 1 position = 2.3257830665708579E-17,0.30212020874023438,0.60389792919158936 rotation = -0.707106948,-3.09086161E-08,3.09086268E-08,-0.707106709 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 3 srfN = srfAttach, 1,collider attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 283.73606302818087 tempExt = 283.8057564701835 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.992852509 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { deployPercent { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294044122 uid = 1453770989 mid = 1911707453 persistentId = 1230372854 launchID = 10 parent = 0 position = 0.3398972749710083,-0.030898094177246094,2.025945811112706E-08 rotation = 2.90069618E-14,1,5.98942781E-21,2.52881108E-07 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 sym = 11 sym = 12 srfN = srfAttach, 0,collider.collider mass = 0.0175000001 shielded = False temp = 283.09629841107306 tempExt = 280.92029849489728 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 21893.256932604116 currentRotation = (-0.500734746, -0.500711739, -0.499277681, 0.499273807) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294036692 uid = 2060352973 mid = 1911707453 persistentId = 45887504 launchID = 10 parent = 0 position = 0.24034367501735687,-0.030898094177246094,-0.24034367501735687 rotation = 2.679894E-14,0.923879623,-1.11004786E-14,-0.382683218 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 5 sym = 7 sym = 8 sym = 9 sym = 10 sym = 11 sym = 12 srfN = srfAttach, 0,collider.collider mass = 0.0175000001 shielded = False temp = 283.09695048204725 tempExt = 280.91576861854452 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 21893.256932604116 currentRotation = (-0.488202095, -0.488220185, -0.511520028, 0.511514485) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294036588 uid = 3778843030 mid = 1911707453 persistentId = 2599842176 launchID = 10 parent = 0 position = 4.0518912669540441E-08,-0.030898094177246094,-0.33989724516868591 rotation = 2.05110231E-14,0.707106948,-2.05110146E-14,-0.70710659 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 5 sym = 6 sym = 8 sym = 9 sym = 10 sym = 11 sym = 12 srfN = srfAttach, 0,collider.collider mass = 0.0175000001 shielded = False temp = 283.15677793869008 tempExt = 281.27472687571378 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 21893.256932604116 currentRotation = (-0.482530236, -0.482532829, -0.516884029, 0.516872883) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294036484 uid = 1957636886 mid = 1911707453 persistentId = 1777878610 launchID = 10 parent = 0 position = -0.24034363031387329,-0.030898094177246094,-0.24034367501735687 rotation = 1.11004896E-14,0.382683694,-2.67989366E-14,-0.923879445 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 5 sym = 6 sym = 7 sym = 9 sym = 10 sym = 11 sym = 12 srfN = srfAttach, 0,collider.collider mass = 0.0175000001 shielded = False temp = 283.11195326381386 tempExt = 281.01910314235846 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 21893.256932604116 currentRotation = (-0.487173289, -0.487156808, -0.512510419, 0.512516975) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294036380 uid = 4257433353 mid = 1911707453 persistentId = 462571496 launchID = 10 parent = 0 position = -0.3398972749710083,-0.030898094177246094,9.4553049834189551E-09 rotation = 4.72149322E-21,2.09169713E-07,-2.90069618E-14,-1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 5 sym = 6 sym = 7 sym = 8 sym = 10 sym = 11 sym = 12 srfN = srfAttach, 0,collider.collider mass = 0.0175000001 shielded = False temp = 283.23874686679386 tempExt = 281.99763435408539 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 21893.256932604116 currentRotation = (-0.499282122, -0.499269933, -0.500721037, 0.500724792) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294036276 uid = 3329895953 mid = 1911707453 persistentId = 4116703653 launchID = 10 parent = 0 position = -0.24034366011619568,-0.030898094177246094,0.24034368991851807 rotation = -1.11004803E-14,-0.382683277,-2.679894E-14,-0.923879623 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 11 sym = 12 srfN = srfAttach, 0,collider.collider mass = 0.0175000001 shielded = False temp = 283.10692604134874 tempExt = 280.75811956324833 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 21893.256932604116 currentRotation = (-0.511512816, -0.511521757, -0.488218397, 0.488203883) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294036172 uid = 321525417 mid = 1911707453 persistentId = 3082811854 launchID = 10 parent = 0 position = -5.6879903534461573E-16,-0.030898094177246094,0.33989724516868591 rotation = -2.05110146E-14,-0.70710659,-2.05110231E-14,-0.707106948 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 sym = 12 srfN = srfAttach, 0,collider.collider mass = 0.0175000001 shielded = False temp = 283.02611331095147 tempExt = 280.28301975172394 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 21893.256932604116 currentRotation = (-0.516878605, -0.516877949, -0.482533693, 0.48252964) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294036068 uid = 348409233 mid = 1911707453 persistentId = 3383928777 launchID = 10 parent = 0 position = 0.24034373462200165,-0.030898094177246094,0.2403436154127121 rotation = -2.67989383E-14,-0.923879504,-1.11004845E-14,-0.382683516 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 5 sym = 6 sym = 7 sym = 8 sym = 9 sym = 10 sym = 11 srfN = srfAttach, 0,collider.collider mass = 0.0175000001 shielded = False temp = 283.2501054228494 tempExt = 282.24782982399847 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 21893.256932604116 currentRotation = (-0.512515366, -0.512512267, -0.487157762, 0.487171948) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } AxisGroupsModule { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = 44a9cad31a0e4100a68dff3d82dd3cbd persistentId = 3317374556 name = Maneuver Rocket type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 11.159999998213607 lct = 40092.856886205169 lastUT = 40104.016886203382 distanceTraveled = 19920.873392714449 root = 0 lat = -0.21967411707622106 lon = -178.96667995516981 alt = 1886750.9690637207 hgt = 1886751 nrm = 0.576490164,0.817094266,0.00400090218 rot = 0.334757745,-0.626053095,-0.623594105,-0.327300012 CoM = -5.21540642E-08,-1.1859858,1.1920929E-07 stg = 1 prst = False ref = 3534661919 ctrl = True PQSMin = 2 PQSMax = 9 GroupOverride = 0 OverrideDefault = False,False,False,False OverrideActionControl = 0,0,0,0 OverrideAxisControl = 0,0,0,0 OverrideGroupNames = ,,, altDispState = ASL cPch = 0.330097 cHdg = -3.520788 cMod = 0 ORBIT { SMA = 2586749.9999737148 ECC = 1.1846750127318654E-11 INC = 30.000000000183292 LPE = 25.186391642822517 LAN = 179.99999999991667 MNA = 2.7096753234885478 EPH = 40104.016886203382 REF = 5 } PART { name = probeCoreOcto.v2 cid = 4294063330 uid = 3534661919 mid = 2314375838 persistentId = 3086761452 launchID = 11 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = , -1 attN = bottom, 1 attN = top, 21 mass = 0.100000001 shielded = False temp = 306.41042359908187 tempExt = 305.78609292817805 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = _default modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False activeControlPointName = _default stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 40104.016886203382 ExtraDelayScheduledTimeStamp = 0 ExtraDelay = 0 CmdGuid = 273ea117-4858-4e9e-b77a-25caba88ab2e } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Eve } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 9.999985830685878 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = fuelTank cid = 4294062234 uid = 2657146047 mid = 2314375838 persistentId = 140982397 launchID = 11 parent = 0 position = 0,-1.1688060760498047,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = srfAttach, -1 attN = top, 0 attN = bottom, 2 mass = 0.25 shielded = False temp = 306.41439595748938 tempExt = 305.83586607983881 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = fuelTank modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } RESOURCE { name = LiquidFuel amount = 180 maxAmount = 180 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 220 maxAmount = 220 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = liquidEngine3.v2 cid = 4294057442 uid = 2256580626 mid = 2314375838 persistentId = 2749684688 launchID = 11 parent = 1 position = 0,-2.0813064575195313,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 0 sqor = 0 sepI = -1 sidx = 0 attm = 0 sameVesselCollision = False srfN = , -1 attN = top, 1 attN = bottom, -1 mass = 0.5 shielded = False temp = 306.41811483945941 tempExt = 306.21476182148029 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = liquidEngine3.v2 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True independentThrottle = False independentThrottlePercentage = 0 staged = False flameout = False EngineIgnited = False engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False includeinDVCalcs = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleThrottle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { independentThrottlePercentage { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } thrustPercentage { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } } UPGRADESAPPLIED { } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True gimbalActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } LockAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } FreeAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } TogglePitchAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleYawAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleRollAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleJettison isEnabled = True activejettisonName = ShortShroud isJettisoned = True shroudHideOverride = False stagingEnabled = True EVENTS { } ACTIONS { JettisonAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleSurfaceFX isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateThrottle isEnabled = True animState = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = solarPanels3 cid = 4294055832 uid = 1046989775 mid = 2314375838 persistentId = 695122334 launchID = 11 parent = 1 position = -0.60552936792373657,-1.0236167907714844,3.6092366428874811E-08 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 4 srfN = srfAttach, 1,COL3 mass = 0.0175000001 shielded = False temp = 306.33974915127806 tempExt = 304.56408752357464 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels3 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 40092.856886205169 currentRotation = (-0.707077086, 0.00631675124, -0.00631526019, 0.707080126) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels3 cid = 4294055398 uid = 1324331972 mid = 2314375838 persistentId = 2176333197 launchID = 11 parent = 1 position = 0.60552936792373657,-1.0236167907714844,-8.9029427385867166E-08 rotation = 0,1,0,-4.37113883E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 3 srfN = srfAttach, 1,COL3 mass = 0.0175000001 shielded = False temp = 306.38579836002481 tempExt = 305.27717258624239 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels3 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 40092.856886205169 currentRotation = (-0.707076013, -0.00631448533, 0.00631686952, 0.707081258) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = radialRCSTank cid = 4294051820 uid = 653383875 mid = 2314375838 persistentId = 1456260573 launchID = 11 parent = 1 position = 0,-0.47979068756103516,0.82516014575958252 rotation = 0,1,-1.78813934E-07,0 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 6 srfN = srfAttach, 1,COL3 mass = 0.0199999996 shielded = False temp = 306.40986587450777 tempExt = 305.7496595396193 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = MonoPropellant amount = 20 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = radialRCSTank cid = 4294051792 uid = 1062938712 mid = 2314375838 persistentId = 1426587875 launchID = 11 parent = 1 position = -7.2137794404625311E-08,-0.47979068756103516,-0.82516014575958252 rotation = -1.78813934E-07,-4.37113883E-08,7.81620489E-15,-1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 5 srfN = srfAttach, 1,COL3 mass = 0.0199999996 shielded = False temp = 306.40986587450777 tempExt = 305.7496595396193 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = MonoPropellant amount = 20 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = radialRCSTank cid = 4294051730 uid = 1836239357 mid = 2314375838 persistentId = 4229195950 launchID = 11 parent = 1 position = 0,-1.1602945327758789,0.82379698753356934 rotation = 0,1,-1.78813934E-07,0 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 8 srfN = srfAttach, 1,COL3 mass = 0.0199999996 shielded = False temp = 306.40989961508916 tempExt = 305.74967182256569 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = MonoPropellant amount = 20 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = radialRCSTank cid = 4294051702 uid = 1803163347 mid = 2314375838 persistentId = 1133228735 launchID = 11 parent = 1 position = -7.2018622176983627E-08,-1.1602945327758789,-0.82379698753356934 rotation = -1.78813934E-07,-4.37113883E-08,7.81620489E-15,-1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 7 srfN = srfAttach, 1,COL3 mass = 0.0199999996 shielded = False temp = 306.40989994984199 tempExt = 305.74967194494826 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = MonoPropellant amount = 20 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RCSBlock.v2 cid = 4294050896 uid = 954671179 mid = 2314375838 persistentId = 1526615160 launchID = 11 parent = 1 position = 0.42762815952301025,-1.9576854705810547,0.42762809991836548 rotation = -1.43069599E-07,0.923879564,-5.92613567E-08,0.382683396 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 10 sym = 11 sym = 12 srfN = srfAttach, 1,COL3 mass = 0.0399999991 shielded = False temp = 306.40611361284266 tempExt = 305.75596681739262 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RCSBlock.v2 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateRCS isEnabled = True stagingEnabled = True animStates = 0,0,0,0 EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = RCSBlock.v2 cid = 4294050796 uid = 1983839192 mid = 2314375838 persistentId = 1650365092 launchID = 11 parent = 1 position = 0.42762809991836548,-1.9576854705810547,-0.42762809991836548 rotation = -1.43069585E-07,0.923879504,5.92613745E-08,-0.382683486 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 9 sym = 11 sym = 12 srfN = srfAttach, 1,COL3 mass = 0.0399999991 shielded = False temp = 306.40611143546693 tempExt = 305.75596608928754 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RCSBlock.v2 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateRCS isEnabled = True stagingEnabled = True animStates = 0,0,0,0 EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = RCSBlock.v2 cid = 4294050706 uid = 2749230953 mid = 2314375838 persistentId = 524164955 launchID = 11 parent = 1 position = -0.42762818932533264,-1.9576854705810547,-0.42762807011604309 rotation = -5.92613496E-08,0.382683367,1.43069599E-07,-0.923879564 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 9 sym = 10 sym = 12 srfN = srfAttach, 1,COL3 mass = 0.0399999991 shielded = False temp = 306.40622854553277 tempExt = 305.76056682400355 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RCSBlock.v2 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateRCS isEnabled = True stagingEnabled = True animStates = 0,0,0,0 EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = RCSBlock.v2 cid = 4294050616 uid = 2265227377 mid = 2314375838 persistentId = 3592039136 launchID = 11 parent = 1 position = -0.4276280403137207,-1.9576854705810547,0.42762815952301025 rotation = 5.92613745E-08,-0.382683486,1.43069585E-07,-0.923879504 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 9 sym = 10 sym = 11 srfN = srfAttach, 1,COL3 mass = 0.0399999991 shielded = False temp = 306.40618398171938 tempExt = 305.75882380252034 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RCSBlock.v2 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateRCS isEnabled = True stagingEnabled = True animStates = 0,0,0,0 EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = RCSBlock.v2 cid = 4294051624 uid = 3339323733 mid = 2314375838 persistentId = 4258470042 launchID = 11 parent = 1 position = 0.43258336186408997,-0.2957763671875,0.43258330225944519 rotation = -8.26012538E-08,0.923879623,-3.42145619E-08,0.382683456 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 14 sym = 15 sym = 16 srfN = srfAttach, 1,COL3 mass = 0.0399999991 shielded = False temp = 306.41884073238549 tempExt = 306.20044052010019 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RCSBlock.v2 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateRCS isEnabled = True stagingEnabled = True animStates = 0,0,0,0 EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = RCSBlock.v2 cid = 4294050476 uid = 1046048324 mid = 2314375838 persistentId = 1673043858 launchID = 11 parent = 1 position = 0.43258330225944519,-0.2957763671875,-0.43258330225944519 rotation = -8.26012538E-08,0.923879564,3.42145583E-08,-0.382683456 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 13 sym = 15 sym = 16 srfN = srfAttach, 1,COL3 mass = 0.0399999991 shielded = False temp = 306.41869036770612 tempExt = 306.20268243030654 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RCSBlock.v2 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateRCS isEnabled = True stagingEnabled = True animStates = 0,0,0,0 EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = RCSBlock.v2 cid = 4294050386 uid = 549084095 mid = 2314375838 persistentId = 573577297 launchID = 11 parent = 1 position = -0.43258339166641235,-0.2957763671875,-0.4325832724571228 rotation = -3.42145583E-08,0.382683426,8.26012538E-08,-0.923879623 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 13 sym = 14 sym = 16 srfN = srfAttach, 1,COL3 mass = 0.0399999991 shielded = False temp = 306.4061069218738 tempExt = 305.75596458034767 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RCSBlock.v2 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateRCS isEnabled = True stagingEnabled = True animStates = 0,0,0,0 EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = RCSBlock.v2 cid = 4294050296 uid = 1392585146 mid = 2314375838 persistentId = 996470580 launchID = 11 parent = 1 position = -0.43258324265480042,-0.2957763671875,0.43258336186408997 rotation = 3.42145583E-08,-0.382683456,8.26012538E-08,-0.923879564 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 13 sym = 14 sym = 15 srfN = srfAttach, 1,COL3 mass = 0.0399999991 shielded = False temp = 306.4061069218738 tempExt = 305.75596458034767 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RCSBlock.v2 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateRCS isEnabled = True stagingEnabled = True animStates = 0,0,0,0 EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294049998 uid = 3432133328 mid = 2314375838 persistentId = 2305228211 launchID = 11 parent = 1 position = 0.60426855087280273,-1.5128755569458008,3.6017215876427144E-08 rotation = 0,0.707106829,0,0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 18 srfN = srfAttach, 1,COL3 mass = 0.00499999989 shielded = False temp = 306.38829268693968 tempExt = 305.75063127926001 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 40092.856886205169 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294049960 uid = 3052956744 mid = 2314375838 persistentId = 2709693038 launchID = 11 parent = 1 position = -0.60426855087280273,-1.5128755569458008,1.6809618585966746E-08 rotation = 0,0.707106769,0,-0.707106888 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 17 srfN = srfAttach, 1,COL3 mass = 0.00499999989 shielded = False temp = 306.38829268693968 tempExt = 305.75063127926001 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 40092.856886205169 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294049888 uid = 1696572013 mid = 2314375838 persistentId = 1845750628 launchID = 11 parent = 1 position = 0.60649234056472778,-2.0309581756591797,3.6149764071069512E-08 rotation = 0,0.707106829,0,0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 20 srfN = srfAttach, 1,COL3 mass = 0.00499999989 shielded = False temp = 306.38829268693968 tempExt = 305.75063127926001 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 40092.856886205169 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294049850 uid = 3162983187 mid = 2314375838 persistentId = 834464369 launchID = 11 parent = 1 position = -0.60649234056472778,-2.0309581756591797,1.6871480212898859E-08 rotation = 0,0.707106769,0,-0.707106888 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 19 srfN = srfAttach, 1,COL3 mass = 0.00499999989 shielded = False temp = 306.38829268693968 tempExt = 305.75063127926001 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 40092.856886205169 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = sasModule cid = 4294061316 uid = 2598901533 mid = 2314375838 persistentId = 399426845 launchID = 11 parent = 0 position = 0,0.27819252014160156,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = , -1 attN = bottom, 0 attN = top, -1 mass = 0.0500000007 shielded = False temp = 306.4222363774872 tempExt = 306.26507820286002 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = sasModule modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = ksp.r.largeBatteryPack cid = 4294059282 uid = 365124234 mid = 2314375838 persistentId = 1666848145 launchID = 11 parent = 0 position = -0.34098416566848755,0.15649795532226563,2.0324241845059987E-08 rotation = 6.45116316E-08,0.70710659,-6.45115961E-08,0.707106948 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 23 srfN = srfAttach, 0,collider.collider mass = 0.0199999996 shielded = False temp = 306.36792412459636 tempExt = 305.66643902282573 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = ksp.r.largeBatteryPack modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 399.99943322743513 maxAmount = 400 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = ksp.r.largeBatteryPack cid = 4294059254 uid = 2863749026 mid = 2314375838 persistentId = 3333645465 launchID = 11 parent = 0 position = 0.34098416566848755,0.15649795532226563,-5.0134023155123941E-08 rotation = -6.45115961E-08,0.707106888,-6.45116316E-08,-0.70710665 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 22 srfN = srfAttach, 0,collider.collider mass = 0.0199999996 shielded = False temp = 306.43805944771913 tempExt = 306.58482472662604 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = ksp.r.largeBatteryPack modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 399.99943322743513 maxAmount = 400 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTLongAntenna2 cid = 4294053842 uid = 1259892714 mid = 2314375838 persistentId = 4139932610 launchID = 11 parent = 0 position = -2.9685221392128369E-08,0.010565757751464844,-0.33955934643745422 rotation = 3.74699667E-08,0.707106829,-0.707106829,3.74699667E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False srfN = srfAttach, 0,collider.collider attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 306.47502794586342 tempExt = 306.79768525864984 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.993255496 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { deployPercent { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } AxisGroupsModule { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = 16d916a1430e4d83917f224b48fa9fb6 persistentId = 3933205611 name = Dish Gateway M (Minmus) type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 45.339999992742378 lct = 40113.576886201852 lastUT = 40158.916886194595 distanceTraveled = 49320.536730947948 root = 0 lat = -0.10311797232699058 lon = -40.707505362858477 alt = 3686749.9257605961 hgt = 3686750 nrm = 0.568499863,0.822675765,0.00355994701 rot = -0.701601386,-0.0875943378,-0.0926679969,0.701067388 CoM = -9.31322575E-09,0.0902261883,-2.23517418E-08 stg = 0 prst = False ref = 2290303508 ctrl = True PQSMin = 2 PQSMax = 9 GroupOverride = 0 OverrideDefault = False,False,False,False OverrideActionControl = 0,0,0,0 OverrideAxisControl = 0,0,0,0 OverrideGroupNames = ,,, altDispState = ASL cPch = -0.07687574 cHdg = -2.596578 cMod = 0 ORBIT { SMA = 4286749.9999985592 ECC = 3.7753807488274614E-12 INC = 29.999999999915179 LPE = 226.98125697971307 LAN = 179.99999999982742 MNA = -0.8163781189085827 EPH = 40158.916886194595 REF = 1 } PART { name = probeCoreOcto.v2 cid = 4294049416 uid = 2290303508 mid = 142988226 persistentId = 469587688 launchID = 12 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = , -1 attN = bottom, -1 attN = top, 1 mass = 0.100000001 shielded = False temp = 308.8794488348716 tempExt = 306.30989168750176 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = _default modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False activeControlPointName = _default stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 40158.916886194595 ExtraDelayScheduledTimeStamp = 0 ExtraDelay = 0 CmdGuid = 88b4188f-8128-4217-bf4a-f641885de494 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryBankMini cid = 4293799066 uid = 3314619214 mid = 142988226 persistentId = 179228724 launchID = 12 parent = 0 position = 0,0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = srfAttach, -1 attN = top, 2 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 308.91890294445761 tempExt = 307.90981003403573 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTShortDish2 cid = 4293801434 uid = 1837999101 mid = 142988226 persistentId = 3598055450 launchID = 12 parent = 1 position = 0,0.38708209991455078,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = srfAttach, -1 attN = bottom, 1 mass = 0.0500000007 shielded = False temp = 309.04621546033809 tempExt = 308.7269151162609 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 0.97629600711993336 RTOmniRange = 0 RTDishRange = 90000000 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 4d696e6d-7573-4d69-6e6d-75734d696e6d EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = RTLongAntenna2 cid = 4294047590 uid = 395433015 mid = 142988226 persistentId = 3033528019 launchID = 12 parent = 1 position = 2.6964942279050774E-08,0.29996204376220703,-0.30844298005104065 rotation = 2.3423377E-08,0.70710665,-0.707107008,2.34233664E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False srfN = srfAttach, 1,node_collider attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 309.1403264792732 tempExt = 308.73863198822386 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.991405547 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { deployPercent { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294036484 uid = 2924637221 mid = 142988226 persistentId = 3317170661 launchID = 12 parent = 0 position = -0.3395291268825531,-0.049163818359375,2.0237514775089949E-08 rotation = 2.5121481E-14,-2.52881108E-07,-9.12332041E-08,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 5 sym = 6 sym = 7 srfN = srfAttach, 0,collider.collider mass = 0.0175000001 shielded = False temp = 308.56725361030442 tempExt = 305.29294789802452 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 40113.576886201852 currentRotation = (-0.498305082, -0.498315006, -0.501684189, 0.501684427) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4293798134 uid = 2143757311 mid = 142988226 persistentId = 4099518530 launchID = 12 parent = 0 position = 5.7010696009429478E-16,-0.049163818359375,0.33952909708023071 rotation = -6.45115961E-08,0.70710659,-6.45116316E-08,0.707106948 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 4 sym = 6 sym = 7 srfN = srfAttach, 0,collider.collider mass = 0.0175000001 shielded = False temp = 308.95468084447504 tempExt = 307.38065906762336 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 40113.576886201852 currentRotation = (-0.321315169, -0.321312159, -0.629887521, 0.629886389) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4293798030 uid = 2597959225 mid = 142988226 persistentId = 307741682 launchID = 12 parent = 0 position = 0.3395291268825531,-0.049163818359375,-4.992009294824129E-08 rotation = -9.12332041E-08,1,-2.11335517E-14,2.09169713E-07 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 4 sym = 5 sym = 7 srfN = srfAttach, 0,collider.collider mass = 0.0175000001 shielded = False temp = 308.61664976946571 tempExt = 305.54558637058835 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 40113.576886201852 currentRotation = (-0.501679957, -0.501687944, -0.498311102, 0.498309642) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4293797926 uid = 257946309 mid = 142988226 persistentId = 765337028 launchID = 12 parent = 0 position = -4.0475025997466219E-08,-0.049163818359375,-0.33952909708023071 rotation = -6.45116316E-08,0.707106948,6.45115961E-08,-0.70710659 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 4 sym = 5 sym = 6 srfN = srfAttach, 0,collider.collider mass = 0.0175000001 shielded = False temp = 308.52595564968101 tempExt = 305.08740283123046 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 40113.576886201852 currentRotation = (-0.629886448, -0.629886627, -0.321314514, 0.321314305) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } AxisGroupsModule { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = 6c7b08a04d8941c6b6d555d03f4c1998 persistentId = 3933205611 name = Dish Gateway M type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 2162.8565527269311 lct = 40182.316886190849 lastUT = 42345.17343891778 distanceTraveled = 2601.2773387666457 root = 0 lat = 1.3106904580024138E-08 lon = 124.15238682183444 alt = 526749.93772590777 hgt = 526749.938 nrm = 0.723617077,0.690174103,0.00621604919 rot = -0.0726948231,-0.702303946,-0.703888535,0.0776256025 CoM = -1.39698386E-08,0.0902262628,-6.70552254E-08 stg = 0 prst = False ref = 1453510230 ctrl = True PQSMin = 2 PQSMax = 9 GroupOverride = 0 OverrideDefault = False,False,False,False OverrideActionControl = 0,0,0,0 OverrideAxisControl = 0,0,0,0 OverrideGroupNames = ,,, altDispState = ASL cPch = 0.106733 cHdg = -3.182871 cMod = 0 ORBIT { SMA = 586749.99999301124 ECC = 8.8796581594764177E-12 INC = 3.7652564909894348E-12 LPE = 333.88793264095011 LAN = 191.84066749693608 MNA = -2.6920480415567662 EPH = 42345.17343891778 REF = 3 } PART { name = probeCoreOcto.v2 cid = 4294049416 uid = 1453510230 mid = 3961440947 persistentId = 56820809 launchID = 13 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = , -1 attN = bottom, -1 attN = top, 1 mass = 0.100000001 shielded = False temp = 239.95953212775675 tempExt = 235.17634929996322 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = _default modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False activeControlPointName = _default stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 42345.17343891778 ExtraDelayScheduledTimeStamp = 0 ExtraDelay = 0 CmdGuid = d36cda90-d746-4d12-86ad-d7dba7037dd4 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Minmus } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryBankMini cid = 4293799066 uid = 3735689825 mid = 3961440947 persistentId = 4084619770 launchID = 13 parent = 0 position = 0,0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = srfAttach, -1 attN = top, 2 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 239.8234656832804 tempExt = 237.6496451481508 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTShortDish2 cid = 4293801434 uid = 2280544174 mid = 3961440947 persistentId = 4057223417 launchID = 13 parent = 1 position = 0,0.38708209991455078,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = srfAttach, -1 attN = bottom, 1 mass = 0.0500000007 shielded = False temp = 239.82354645159938 tempExt = 239.21000953458935 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 0.97629600711993336 RTOmniRange = 0 RTDishRange = 90000000 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 4b657262-696e-4b65-7262-696e4b657262 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = RTLongAntenna2 cid = 4294047590 uid = 1338614288 mid = 3961440947 persistentId = 3535449775 launchID = 13 parent = 1 position = 2.6964942279050774E-08,0.29996204376220703,-0.30844298005104065 rotation = 2.3423377E-08,0.70710665,-0.707107008,2.34233664E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False srfN = srfAttach, 1,node_collider attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 240.36621538994621 tempExt = 239.36399538905701 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.991405547 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { deployPercent { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294036484 uid = 3062466610 mid = 3961440947 persistentId = 3301636214 launchID = 13 parent = 0 position = -0.3395291268825531,-0.049163818359375,2.0237514775089949E-08 rotation = 2.5121481E-14,-2.52881108E-07,-9.12332041E-08,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 5 sym = 6 sym = 7 srfN = srfAttach, 0,collider.collider mass = 0.0175000001 shielded = False temp = 239.45846242419785 tempExt = 233.42658691120513 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 40182.316886190849 currentRotation = (-0.49841401, -0.498409837, -0.501581907, 0.501584113) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4293798134 uid = 3722895408 mid = 3961440947 persistentId = 2286468365 launchID = 13 parent = 0 position = 5.7010696009429478E-16,-0.049163818359375,0.33952909708023071 rotation = -6.45115961E-08,0.70710659,-6.45116316E-08,0.707106948 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 4 sym = 6 sym = 7 srfN = srfAttach, 0,collider.collider mass = 0.0175000001 shielded = False temp = 239.58519371366864 tempExt = 234.51834211202487 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 40182.316886190849 currentRotation = (-0.318624645, -0.31863153, -0.631251931, 0.631247461) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4293798030 uid = 1722312549 mid = 3961440947 persistentId = 135084841 launchID = 13 parent = 0 position = 0.3395291268825531,-0.049163818359375,-4.992009294824129E-08 rotation = -9.12332041E-08,1,-2.11335517E-14,2.09169713E-07 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 4 sym = 5 sym = 7 srfN = srfAttach, 0,collider.collider mass = 0.0175000001 shielded = False temp = 239.48079421623262 tempExt = 233.62120570445461 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 40182.316886190849 currentRotation = (-0.501588762, -0.501583993, -0.498400897, 0.498416305) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4293797926 uid = 4188919358 mid = 3961440947 persistentId = 1264154072 launchID = 13 parent = 0 position = -4.0475025997466219E-08,-0.049163818359375,-0.33952909708023071 rotation = -6.45116316E-08,0.707106948,6.45115961E-08,-0.70710659 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 4 sym = 5 sym = 6 srfN = srfAttach, 0,collider.collider mass = 0.0175000001 shielded = False temp = 239.44379139000105 tempExt = 233.27914812558907 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 40182.316886190849 currentRotation = (-0.631254017, -0.631245434, -0.318629295, 0.318626791) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } AxisGroupsModule { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = 3186cbc5e9594a4f8141dca267630af9 persistentId = 3933205611 name = Dish Gateway M (Mun) type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 244.99999996078259 lct = 42368.97343891397 lastUT = 42613.973438874753 distanceTraveled = 58880.430660027043 root = 0 lat = 2.3170426144681699 lon = -81.899751898017584 alt = 4086749.8769281665 hgt = 4086750 nrm = -0.103653371,0.993807912,0.0400218964 rot = -0.701619506,-0.0843684152,-0.088484481,0.701984763 CoM = -1.49011612E-08,0.0902261883,1.38580799E-06 stg = 0 prst = False ref = 2283957477 ctrl = True PQSMin = 2 PQSMax = 9 GroupOverride = 0 OverrideDefault = False,False,False,False OverrideActionControl = 0,0,0,0 OverrideAxisControl = 0,0,0,0 OverrideGroupNames = ,,, altDispState = ASL cPch = 0.24 cHdg = 2.066 cMod = 0 ORBIT { SMA = 4686749.9331780486 ECC = 7.1402695849996409E-09 INC = 90.000000001740688 LPE = 185.35344284358905 LAN = 359.99999995694083 MNA = 3.0885974706492161 EPH = 42613.973438874753 REF = 1 } PART { name = probeCoreOcto.v2 cid = 4294049416 uid = 2283957477 mid = 773578832 persistentId = 1434434172 launchID = 14 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = , -1 attN = bottom, -1 attN = top, 1 mass = 0.100000001 shielded = False temp = 300.2916938032663 tempExt = 296.58651362181712 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = _default modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False activeControlPointName = _default stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 42613.973438874753 ExtraDelayScheduledTimeStamp = 0 ExtraDelay = 0 CmdGuid = 07c9a491-9378-44de-88d9-0589591cf3b7 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Minmus 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryBankMini cid = 4293799066 uid = 643245922 mid = 773578832 persistentId = 1396020113 launchID = 14 parent = 0 position = 0,0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = srfAttach, -1 attN = top, 2 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 300.29512316939082 tempExt = 298.63116244248027 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTShortDish2 cid = 4293801434 uid = 1847097079 mid = 773578832 persistentId = 3361455826 launchID = 14 parent = 1 position = 0,0.38708209991455078,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = srfAttach, -1 attN = bottom, 1 mass = 0.0500000007 shielded = False temp = 300.37586219172573 tempExt = 300.11190559306397 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 0.97629600711993336 RTOmniRange = 0 RTDishRange = 90000000 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = e9404766-a5b3-438b-9ecf-5d58b6d7e139 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = RTLongAntenna2 cid = 4294047590 uid = 430653291 mid = 773578832 persistentId = 1242706752 launchID = 14 parent = 1 position = 2.6964942279050774E-08,0.29996204376220703,-0.30844298005104065 rotation = 2.3423377E-08,0.70710665,-0.707107008,2.34233664E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False srfN = srfAttach, 1,node_collider attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 300.85436334403755 tempExt = 300.13115870913333 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.991405547 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { deployPercent { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294036484 uid = 3504263972 mid = 773578832 persistentId = 2954406717 launchID = 14 parent = 0 position = -0.3395291268825531,-0.049163818359375,2.0237514775089949E-08 rotation = 2.5121481E-14,-2.52881108E-07,-9.12332041E-08,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 5 sym = 6 sym = 7 srfN = srfAttach, 0,collider.collider mass = 0.0175000001 shielded = False temp = 299.73911694271652 tempExt = 295.89233344352459 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 42368.97343891397 currentRotation = (-0.500013828, -0.500012755, -0.499967247, 0.500006139) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4293798134 uid = 975138076 mid = 773578832 persistentId = 4093921776 launchID = 14 parent = 0 position = 5.7010696009429478E-16,-0.049163818359375,0.33952909708023071 rotation = -6.45115961E-08,0.70710659,-6.45116316E-08,0.707106948 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 4 sym = 6 sym = 7 srfN = srfAttach, 0,collider.collider mass = 0.0175000001 shielded = False temp = 299.71734219783048 tempExt = 295.81016297897872 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 42368.97343891397 currentRotation = (-0.51867038, -0.518670917, -0.480602562, 0.480606616) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4293798030 uid = 2074468805 mid = 773578832 persistentId = 3336040180 launchID = 14 parent = 0 position = 0.3395291268825531,-0.049163818359375,-4.992009294824129E-08 rotation = -9.12332041E-08,1,-2.11335517E-14,2.09169713E-07 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 4 sym = 5 sym = 7 srfN = srfAttach, 0,collider.collider mass = 0.0175000001 shielded = False temp = 299.73053959458377 tempExt = 295.84421190829028 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 42368.97343891397 currentRotation = (-0.500009358, -0.499964178, -0.500018895, 0.50000751) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4293797926 uid = 1166197209 mid = 773578832 persistentId = 3978329998 launchID = 14 parent = 0 position = -4.0475025997466219E-08,-0.049163818359375,-0.33952909708023071 rotation = -6.45116316E-08,0.707106948,6.45115961E-08,-0.70710659 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 4 sym = 5 sym = 6 srfN = srfAttach, 0,collider.collider mass = 0.0175000001 shielded = False temp = 299.33942728253112 tempExt = 294.38805405655444 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 42368.97343891397 currentRotation = (-0.480603755, -0.48060587, -0.518669128, 0.518671811) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } AxisGroupsModule { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = e9404766a5b3438b9ecf5d58b6d7e139 persistentId = 3933205611 name = Dish Gateway M type = Probe sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 152.09999997565319 lct = 42433.913438903575 lastUT = 42586.033438879225 distanceTraveled = 97645.830244350494 root = 0 lat = 9.5404021991095853E-09 lon = 19.832528968618277 alt = 786749.91010708211 hgt = 786749.938 nrm = -0.0858451724,0.996307731,0.00120908022 rot = -0.379437268,-0.593670368,-0.597442806,0.382942528 CoM = 9.68575478E-08,0.0902261585,-1.49011612E-08 stg = 0 prst = False ref = 1341662266 ctrl = True PQSMin = 2 PQSMax = 9 GroupOverride = 0 OverrideDefault = False,False,False,False OverrideActionControl = 0,0,0,0 OverrideAxisControl = 0,0,0,0 OverrideGroupNames = ,,, altDispState = ASL cPch = 0.742 cHdg = 1.4 cMod = 0 ORBIT { SMA = 986749.9999956215 ECC = 4.5496859421317662E-12 INC = 1.0794318607333422E-12 LPE = 121.87244331370182 LAN = 54.276742176297091 MNA = -3.0719461035712041 EPH = 42586.013438879228 REF = 2 } PART { name = probeCoreOcto.v2 cid = 4294049416 uid = 1341662266 mid = 118166840 persistentId = 794781939 launchID = 15 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = , -1 attN = bottom, -1 attN = top, 1 mass = 0.100000001 shielded = False temp = 309.83948205911582 tempExt = 307.53889959073615 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = _default modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False activeControlPointName = _default stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 42586.033438879225 ExtraDelayScheduledTimeStamp = 0 ExtraDelay = 0 CmdGuid = 5cce8a8e-0a49-476f-bf02-7a980bd0441f } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Orbit,Mun 0 = Orbit,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryBankMini cid = 4293799066 uid = 195041335 mid = 118166840 persistentId = 2033042682 launchID = 15 parent = 0 position = 0,0.28708171844482422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = srfAttach, -1 attN = top, 2 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 309.87751641588881 tempExt = 308.7828211655488 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 200 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = RTShortDish2 cid = 4293801434 uid = 1692042562 mid = 118166840 persistentId = 143186638 launchID = 15 parent = 1 position = 0,0.38708209991455078,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = srfAttach, -1 attN = bottom, 1 mass = 0.0500000007 shielded = False temp = 310.08784875798563 tempExt = 309.86530188069685 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTShortDish2 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 0.97629600711993336 RTOmniRange = 0 RTDishRange = 90000000 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 3186cbc5-e959-4a4f-8141-dca267630af9 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = RTLongAntenna2 cid = 4294047590 uid = 2905636270 mid = 118166840 persistentId = 2410527280 launchID = 15 parent = 1 position = 2.6964942279050774E-08,0.29996204376220703,-0.30844298005104065 rotation = 2.3423377E-08,0.70710665,-0.707107008,2.34233664E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False srfN = srfAttach, 1,node_collider attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 310.24250198045917 tempExt = 309.77997603629973 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.991405547 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { deployPercent { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4294036484 uid = 2054268542 mid = 118166840 persistentId = 1566175837 launchID = 15 parent = 0 position = -0.3395291268825531,-0.049163818359375,2.0237514775089949E-08 rotation = 2.5121481E-14,-2.52881108E-07,-9.12332041E-08,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 5 sym = 6 sym = 7 srfN = srfAttach, 0,collider.collider mass = 0.0175000001 shielded = False temp = 309.61602564932605 tempExt = 307.3100029122561 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 42433.913438903575 currentRotation = (-0.499652565, -0.499652743, -0.500337303, 0.500357032) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4293798134 uid = 3388828585 mid = 118166840 persistentId = 3668059066 launchID = 15 parent = 0 position = 5.7010696009429478E-16,-0.049163818359375,0.33952909708023071 rotation = -6.45115961E-08,0.70710659,-6.45116316E-08,0.707106948 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 4 sym = 6 sym = 7 srfN = srfAttach, 0,collider.collider mass = 0.0175000001 shielded = False temp = 309.59888385092268 tempExt = 307.24492901917989 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 42433.913438903575 currentRotation = (-0.514899969, -0.514887571, -0.484646589, 0.48465094) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4293798030 uid = 207843712 mid = 118166840 persistentId = 3673319145 launchID = 15 parent = 0 position = 0.3395291268825531,-0.049163818359375,-4.992009294824129E-08 rotation = -9.12332041E-08,1,-2.11335517E-14,2.09169713E-07 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 4 sym = 5 sym = 7 srfN = srfAttach, 0,collider.collider mass = 0.0175000001 shielded = False temp = 309.60567265087843 tempExt = 307.26858325576615 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 42433.913438903575 currentRotation = (-0.500365913, -0.500328243, -0.499662906, 0.499642402) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels4 cid = 4293797926 uid = 2513361869 mid = 118166840 persistentId = 992245388 launchID = 15 parent = 0 position = -4.0475025997466219E-08,-0.049163818359375,-0.33952909708023071 rotation = -6.45116316E-08,0.707106948,6.45115961E-08,-0.70710659 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 4 sym = 5 sym = 6 srfN = srfAttach, 0,collider.collider mass = 0.0175000001 shielded = False temp = 309.14501751307517 tempExt = 305.80184961604283 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels4 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 42433.913438903575 currentRotation = (-0.484650552, -0.484648645, -0.514893115, 0.514892936) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = False, 0 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } AxisGroupsModule { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = abcff388a78c45bd91f0fc443cbabbd0 persistentId = 193290358 name = Rover (RT) type = Rover sit = LANDED landed = True skipGroundPositioning = True vesselSpawning = False launchedFrom = Runway landedAt = KSC displaylandedAt = #autoLOC_300900 splashed = False met = 823.41999956863583 lct = 147096.96800429601 lastUT = 147920.38800386465 distanceTraveled = 58.566147404175922 root = 0 lat = -0.035980263105037776 lon = -74.716408003605551 alt = 65.507294602226466 hgt = 0.713495374 nrm = -2.08616257E-05,-0.00682994723,0.999976695 rot = 0.751220703,-0.647227407,0.0987821668,-0.0837035701 CoM = -0.000619417988,0.0486951582,-0.0632368773 stg = 0 prst = False ref = 1802242151 ctrl = True PQSMin = 2 PQSMax = 9 GroupOverride = 0 OverrideDefault = False,False,False,False OverrideActionControl = 0,0,0,0 OverrideAxisControl = 0,0,0,0 OverrideGroupNames = ,,, altDispState = ASL cPch = 0 cHdg = 0 cMod = 0 ORBIT { SMA = 0 ECC = 1 INC = 90.035980884664582 LPE = 90.000000000000014 LAN = 100.10274978938548 MNA = 0 EPH = 182859.99163078857 REF = 1 } PART { name = roverBody.v2 cid = 4294276440 uid = 1802242151 mid = 3531985980 persistentId = 66693451 launchID = 16 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = , -1 attN = right, 2 attN = left, 1 attN = back, -1 attN = front, -1 attN = bottom, 4 attN = top, 3 mass = 0.150000006 shielded = False temp = 305.5964051092642 tempExt = 305.96505990013009 tempExtUnexp = 305.96496645999486 staticPressureAtm = 0.99032997114405996 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = _default modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False activeControlPointName = _default stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FlagDecal isEnabled = True flagDisplayed = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 147920.38800386465 ExtraDelayScheduledTimeStamp = 0 ExtraDelay = 0 CmdGuid = abc841d2-5ad8-445a-88aa-6f349854abd1 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Flight,Kerbin 0 = Land,Kerbin } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 89.266924744947517 maxAmount = 120 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryBankMini cid = 4294269054 uid = 3957093035 mid = 3531985980 persistentId = 1622126489 launchID = 16 parent = 0 position = -0.61022621393203735,0,0 rotation = 0,0,-0.707106948,0.707106948 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = srfAttach, -1 attN = top, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 305.61176570444235 tempExt = 305.91574650674488 tempExtUnexp = 305.91565331064646 staticPressureAtm = 0.99032997114405996 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 148.77820790825507 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryBankMini cid = 4294268776 uid = 2260676748 mid = 3531985980 persistentId = 1824699853 launchID = 16 parent = 0 position = 0.61022621393203735,0,0 rotation = 0,0,-0.707106948,0.707106948 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = srfAttach, -1 attN = top, -1 attN = bottom, 0 mass = 0.00999999978 shielded = False temp = 305.61176585038254 tempExt = 305.9157501873155 tempExtUnexp = 305.91565699121207 staticPressureAtm = 0.99033004644032963 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 148.77820790825507 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = sasModule cid = 4294263446 uid = 1533326341 mid = 3531985980 persistentId = 559141092 launchID = 16 parent = 0 position = 0,0.83739876747131348,-5.9604644775390625E-07 rotation = 0,0,0,1.00000024 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = , -1 attN = bottom, 0 attN = top, -1 mass = 0.0500000007 shielded = False temp = 305.55675419627039 tempExt = 305.89956346142333 tempExtUnexp = 305.89947122369102 staticPressureAtm = 0.99033087469929681 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = sasModule modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Disabled stagingEnabled = True WheelState = Disabled EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = batteryBankMini cid = 4294262868 uid = 3265751091 mid = 3531985980 persistentId = 4084239638 launchID = 16 parent = 0 position = 0,-0.84628784656524658,5.9604644775390625E-07 rotation = 0,0,0,1.00000024 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = srfAttach, -1 attN = top, 0 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 305.62509025788307 tempExt = 306.25192113688917 tempExtUnexp = 306.25182604750268 staticPressureAtm = 0.990329067588823 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBankMini modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 148.77820790825507 maxAmount = 200 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = seatExternalCmd cid = 4294261846 uid = 554520003 mid = 3531985980 persistentId = 3390202673 launchID = 16 parent = 0 position = -1.1920931797249068E-07,0.40436208248138428,0.40171003341674805 rotation = -1.20583122E-13,-1.00000024,3.37174839E-07,-2.92535503E-07 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False srfN = srfAttach, 0,collider.collider mass = 0.0500000007 shielded = False temp = 305.46257416675161 tempExt = 305.98514516148236 tempExtUnexp = 305.98506238988364 staticPressureAtm = 0.9902713906462034 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = seatExternalCmd modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = KerbalSeat isEnabled = True ejectionForcePercentage = 0 stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } LeaveSeat { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Flight,Kerbin 0 = Land,Kerbin } UPGRADESAPPLIED { } } } PART { name = SurfAntenna cid = 4294188096 uid = 2909435433 mid = 3531985980 persistentId = 1587311934 launchID = 16 parent = 0 position = -2.980232949312267E-08,-0.56307971477508545,0.25161135196685791 rotation = -0.707106769,2.06853926E-07,-2.06853755E-07,-0.707107186 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False srfN = srfAttach, 0,collider.collider mass = 0.0149999997 shielded = False temp = 305.5443401654486 tempExt = 305.89881615516083 tempExtUnexp = 305.89872458656606 staticPressureAtm = 0.99029239830546045 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = SurfAntenna modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 1500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = LgRadialSolarPanel cid = 4294261058 uid = 357385503 mid = 3531985980 persistentId = 4144163608 launchID = 16 parent = 0 position = 0,-0.22614139318466187,0.20148666203022003 rotation = 0,4.42541989E-07,0.707106948,-0.707106948 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False srfN = srfAttach, 0,collider.collider mass = 0.0399999991 shielded = False temp = 305.61700998531398 tempExt = 306.16243185609505 tempExtUnexp = 306.16233478759119 staticPressureAtm = 0.99030015382124348 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = LgRadialSolarPanel modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 147096.96800429601 currentRotation = (0, 0, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = BROKEN stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = roverWheel1 cid = 4294272580 uid = 219358359 mid = 3531985980 persistentId = 2266149752 launchID = 16 parent = 0 position = -0.89150857925415039,0.63818693161010742,-0.4025006890296936 rotation = 0.707106948,-2.10734328E-07,2.10734328E-07,0.707106948 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 9 srfN = srfAttach, 0,collider.collider mass = 0.075000003 shielded = False temp = 305.5958073470066 tempExt = 305.99830677509527 tempExtUnexp = 305.99821129315177 staticPressureAtm = 0.99038983167850203 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = ForceHeaviest rigidAttachment = False flag = Squad/Flags/default rTrf = roverWheel1 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = True autoFriction = True frictionMultiplier = 2.19959021 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 autoSpringDamper = True suspensionPos = (-0.310992718, 0.116622686, -1.38282837E-06) autoBoost = 1.34199595 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100.017082 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorEnable { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorDisable { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 50 brakeInput = 1 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = roverWheel1 cid = 4293414126 uid = 3881104826 mid = 3531985980 persistentId = 1718355322 launchID = 16 parent = 0 position = 0.89150857925415039,0.63818693161010742,-0.40250080823898315 rotation = -1.79825534E-07,-0.707107127,-0.707106829,2.41642908E-07 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 8 srfN = srfAttach, 0,collider.collider mass = 0.075000003 shielded = False temp = 305.60761955440978 tempExt = 306.04107064259443 tempExtUnexp = 306.04097561148581 staticPressureAtm = 0.99038990697477169 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = ForceHeaviest rigidAttachment = False flag = Squad/Flags/default rTrf = roverWheel1 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = True autoFriction = True frictionMultiplier = 2.19959021 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 autoSpringDamper = True suspensionPos = (-0.311013073, 0.116685443, 3.2812361E-06) autoBoost = 1.62800479 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100.017082 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorEnable { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorDisable { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 50 brakeInput = 1 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = roverWheel1 cid = 4294272150 uid = 3045398524 mid = 3531985980 persistentId = 586383473 launchID = 16 parent = 0 position = -0.89002037048339844,-0.7032630443572998,-0.40250015258789063 rotation = 0.707106948,-2.10734328E-07,2.10734328E-07,0.707106948 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 11 srfN = srfAttach, 0,collider.collider mass = 0.075000003 shielded = False temp = 305.61320108908347 tempExt = 306.16768222036757 tempExtUnexp = 306.16758868427178 staticPressureAtm = 0.99038840104937698 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = ForceHeaviest rigidAttachment = False flag = Squad/Flags/default rTrf = roverWheel1 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = True autoFriction = True frictionMultiplier = 2.19959021 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 autoSpringDamper = True suspensionPos = (-0.311000824, 0.109363772, 1.12056784E-06) autoBoost = 0.870000064 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = False steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100.017082 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorEnable { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorDisable { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 50 brakeInput = 1 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = roverWheel1 cid = 4293413170 uid = 2045119117 mid = 3531985980 persistentId = 873168535 launchID = 16 parent = 0 position = 0.89002037048339844,-0.70326328277587891,-0.40250015258789063 rotation = -1.79825534E-07,-0.707107127,-0.707106829,2.41642908E-07 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 10 srfN = srfAttach, 0,collider.collider mass = 0.075000003 shielded = False temp = 305.61385827769334 tempExt = 306.17396049648329 tempExtUnexp = 306.17386748011728 staticPressureAtm = 0.99038847634564675 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = ForceHeaviest rigidAttachment = False flag = Squad/Flags/default rTrf = roverWheel1 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = True autoFriction = True frictionMultiplier = 2.19959021 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 autoSpringDamper = True suspensionPos = (-0.311003894, 0.109424829, 1.44541286E-06) autoBoost = 0.870000064 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = False steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 100.017082 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorEnable { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorDisable { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 50 brakeInput = 1 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 0 Gear = False, 0 Light = False, 0 RCS = False, 0 SAS = False, 0 Brakes = True, 147258.748004211 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } AxisGroupsModule { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = be99f0e3fb0d4c7ea275b1c6f4771389 persistentId = 4083792016 name = Rover Rocket type = Ship sit = LANDED landed = True skipGroundPositioning = False vesselSpawning = False launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 35586.888350736728 lct = 147888.82800388118 lastUT = 183475.71635461791 distanceTraveled = 1034860.2478270757 root = 0 lat = -16.16504607569712 lon = 20.801654425220587 alt = 859.27590539693483 hgt = 1.21301496 nrm = 0.00204586983,-0.0215864629,-0.999764919 rot = -0.709169388,0.375980228,0.554234743,-0.220321789 CoM = -1.12950802E-05,-0.966154993,0.168269694 stg = 0 prst = False ref = 2308570411 ctrl = True PQSMin = 2 PQSMax = 8 GroupOverride = 0 OverrideDefault = False,False,False,False OverrideActionControl = 0,0,0,0 OverrideAxisControl = 0,0,0,0 OverrideGroupNames = ,,, altDispState = AGL cPch = 0.2680005 cHdg = -1.756003 cMod = 0 ORBIT { SMA = 100441.25735681668 ECC = 0.99976543043577326 INC = 16.164889621018432 LPE = 89.99299929756819 LAN = 96.051044376084519 MNA = 3.1415913287245987 EPH = 183475.71635461791 REF = 2 } PART { name = mk1pod.v2 cid = 4293343322 uid = 2308570411 mid = 742617758 persistentId = 455798222 launchID = 19 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = , -1 attN = bottom, 1 attN = top, -1 mass = 0.800000012 shielded = False temp = 202.07857931282322 tempExt = 202.44071950997301 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = _default modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False activeControlPointName = _default stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleColorChanger isEnabled = True animState = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = Light wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ResetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceContainer isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { CollectAllAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleConductionMultiplier isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleLiftingSurface isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FlagDecal isEnabled = True flagDisplayed = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Flight,Kerbin 0 = Suborbit,Kerbin 0 = Orbit,Kerbin 0 = Flyby,Mun 0 = Escape,Mun 0 = Orbit,Mun 0 = Suborbit,Mun 0 = Land,Mun } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 49.999433962254308 maxAmount = 50 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = MonoPropellant amount = 10 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = batteryBank cid = 4293334410 uid = 1089454367 mid = 742617758 persistentId = 1941761120 launchID = 19 parent = 0 position = 0,-0.51589202880859375,5.9604644775390625E-08 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = , -1 attN = top, 0 attN = bottom, 4 mass = 0.0500000007 shielded = False temp = 202.13377701685584 tempExt = 202.18194374692456 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = batteryBank modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = ElectricCharge amount = 999.98867924508625 maxAmount = 1000 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = roverWheel1 cid = 4293337834 uid = 99219560 mid = 742617758 persistentId = 3909996284 launchID = 19 parent = 1 position = -1,-0.51589202880859375,0.80000084638595581 rotation = 0.707106829,0,-4.21468478E-08,-0.707106829 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 3 srfN = srfAttach, 1,collider mass = 0.075000003 shielded = False temp = 202.15620648606875 tempExt = 202.32189944940964 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = ForceHeaviest rigidAttachment = False flag = Squad/Flags/default rTrf = roverWheel1 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = True autoFriction = True frictionMultiplier = 8.22644711 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 autoSpringDamper = True suspensionPos = (-0.311000288, 0.045945961, 9.4175175E-07) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 58.3028374 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorEnable { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorDisable { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 50 brakeInput = 1 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = roverWheel1 cid = 4294504996 uid = 3455352916 mid = 742617758 persistentId = 1791302932 launchID = 19 parent = 1 position = 1,-0.51589202880859375,0.80000084638595581 rotation = 7.30554746E-08,0.707106829,-0.707106829,-3.09086197E-08 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 2 srfN = srfAttach, 1,collider mass = 0.075000003 shielded = False temp = 202.13024179242259 tempExt = 202.18195875477227 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = ForceHeaviest rigidAttachment = False flag = Squad/Flags/default rTrf = roverWheel1 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = True autoFriction = True frictionMultiplier = 8.22644711 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 autoSpringDamper = True suspensionPos = (-0.311003596, 0.041282963, 3.48090794E-06) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 58.3028374 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorEnable { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorDisable { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 50 brakeInput = 1 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = ServiceBay.125.v2 cid = 4294513824 uid = 2723719402 mid = 742617758 persistentId = 2116481487 launchID = 19 parent = 1 position = 0,-0.92675018310546875,1.1920928955078125E-07 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = , -1 attN = top2, 5 attN = bottom2, -1 attN = top, 1 attN = bottom, 7 mass = 0.100000001 shielded = False temp = 202.28611093311196 tempExt = 202.46844199524631 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = ServiceBay.125.v2 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = True animTime = 0 animSpeed = -10 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { deployPercent { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } } UPGRADESAPPLIED { } } MODULE { name = ModuleCargoBay isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleConductionMultiplier isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = probeCoreOcto.v2 cid = 4293332840 uid = 2909854449 mid = 742617758 persistentId = 2183811907 launchID = 19 parent = 4 position = 0,-0.86383056640625,1.1920928955078125E-07 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = , -1 attN = bottom, -1 attN = top, 4 mass = 0.100000001 shielded = True temp = 203.12164739440763 tempExt = 203.12332919055785 tempExtUnexp = 306.60290007455069 staticPressureAtm = 0 expt = 0 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = _default modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True hibernation = False hibernateOnWarp = False activeControlPointName = _default stagingEnabled = True EVENTS { } ACTIONS { MakeReferenceToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } HibernateToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSAS isEnabled = True standaloneToggle = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleKerbNetAccess isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { OpenKerbNetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPU isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False RTCommandMinCrew = 6 AlwaysAllowLocalControl = False AllowSignalRelay = True stagingEnabled = True EVENTS { } ACTIONS { } FlightComputer { TotalDelay = 0 ActiveCommands { AttitudeCommand { Mode = Off Attitude = Prograde Frame = World Orientation = 0,0,0,1 Altitude = NaN TimeStamp = 183475.71635461791 ExtraDelayScheduledTimeStamp = 183393.28149570472 ExtraDelay = 0 CmdGuid = b094723d-6d8f-4e84-8a4c-742a0e0255f0 } TargetCommand { TimeStamp = 183475.71635461791 ExtraDelayScheduledTimeStamp = 148279.36233012716 ExtraDelay = 0 CmdGuid = 23f9e9f2-92e3-4462-a339-a55429210c56 } } Commands { } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntennaPassive isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = False IsRTBroken = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } Log { flight = 0 0 = Flight,Kerbin 0 = Suborbit,Kerbin 0 = Orbit,Kerbin 0 = Flyby,Mun 0 = Escape,Mun 0 = Orbit,Mun 0 = Suborbit,Mun 0 = Land,Mun } UPGRADESAPPLIED { } } RESOURCE { name = ElectricCharge amount = 9.9998867924508623 maxAmount = 10 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = SurfAntenna cid = 4293331470 uid = 742293049 mid = 742617758 persistentId = 831454684 launchID = 19 parent = 4 position = 0,-0.882354736328125,-0.66334480047225952 rotation = 1.68301983E-09,0.707106054,-0.707107604,1.68301584E-09 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False srfN = srfAttach, 4,COL_Back mass = 0.0149999997 shielded = False temp = 202.16093925174775 tempExt = 202.45021057734016 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = SurfAntenna modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 1500000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = Mk1FuselageStructural cid = 4293339798 uid = 1185458447 mid = 742617758 persistentId = 824991627 launchID = 19 parent = 4 position = 0,-2.16424560546875,2.384185791015625E-07 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = srfAttach, -1 attN = top, 4 attN = bottom, 14 mass = 0.100000001 shielded = False temp = 202.58446398713045 tempExt = 202.56922244018475 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = Mk1FuselageStructural modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } } PART { name = roverWheel1 cid = 4293331068 uid = 3123251123 mid = 742617758 persistentId = 2357548680 launchID = 19 parent = 7 position = 1,-1.5642471313476563,0.80000138282775879 rotation = -4.214683E-08,0.707106829,-0.707106829,-8.8817842E-15 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 9 srfN = srfAttach, 7,BoxCOL mass = 0.075000003 shielded = False temp = 202.62261877622043 tempExt = 202.58661458077026 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = ForceHeaviest rigidAttachment = False flag = Squad/Flags/default rTrf = roverWheel1 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = True autoFriction = True frictionMultiplier = 8.22644711 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 autoSpringDamper = True suspensionPos = (-0.311002254, 0.0232547503, 2.62260141E-06) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 58.3028374 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorEnable { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorDisable { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 50 brakeInput = 1 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = roverWheel1 cid = 4293330670 uid = 1136834240 mid = 742617758 persistentId = 544133363 launchID = 19 parent = 7 position = -1,-1.5642471313476563,0.80000114440917969 rotation = 0.707106829,-3.0908609E-08,7.30554532E-08,-0.707106829 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 8 srfN = srfAttach, 7,BoxCOL mass = 0.075000003 shielded = False temp = 202.6246622632093 tempExt = 202.69373207612139 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = ForceHeaviest rigidAttachment = False flag = Squad/Flags/default rTrf = roverWheel1 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = True autoFriction = True frictionMultiplier = 8.22644711 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 autoSpringDamper = True suspensionPos = (-0.310999602, 0.0277825333, 1.15632804E-06) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 58.3028374 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorEnable { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorDisable { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 50 brakeInput = 1 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = LgRadialSolarPanel cid = 4293333480 uid = 1945274951 mid = 742617758 persistentId = 4234358737 launchID = 19 parent = 7 position = -0.30499005317687988,-2.130126953125,-0.5282595157623291 rotation = -1.04308114E-07,0.965925813,-2.38418551E-07,-0.258819073 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 11 srfN = srfAttach, 7,BoxCOL mass = 0.0399999991 shielded = False temp = 202.63921213630712 tempExt = 203.12657736313733 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = LgRadialSolarPanel modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 147888.82800388118 currentRotation = (0, 0, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = LgRadialSolarPanel cid = 4294521676 uid = 3650071159 mid = 742617758 persistentId = 3458905517 launchID = 19 parent = 7 position = 0.30499005317687988,-2.130126953125,-0.5282595157623291 rotation = 1.49011612E-07,0.965925872,-1.78813934E-07,0.258819044 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 10 srfN = srfAttach, 7,BoxCOL mass = 0.0399999991 shielded = False temp = 202.62777513546774 tempExt = 202.76473393063304 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = LgRadialSolarPanel modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 147888.82800388118 currentRotation = (0, 0, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = roverWheel1 cid = 4294504174 uid = 1428538207 mid = 742617758 persistentId = 816385511 launchID = 19 parent = 7 position = -1,-2.764251708984375,0.80000162124633789 rotation = 0.707106709,-1.26440554E-07,1.26440554E-07,-0.707106948 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 13 srfN = srfAttach, 7,BoxCOL mass = 0.075000003 shielded = False temp = 202.62495498882319 tempExt = 202.70903353220251 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = ForceHeaviest rigidAttachment = False flag = Squad/Flags/default rTrf = roverWheel1 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = True autoFriction = True frictionMultiplier = 8.22644711 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 autoSpringDamper = True suspensionPos = (-0.311001271, 0.00695695356, 1.29937996E-06) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 58.3028374 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorEnable { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorDisable { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 50 brakeInput = 1 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = roverWheel1 cid = 4294503556 uid = 51926852 mid = 742617758 persistentId = 675845900 launchID = 19 parent = 7 position = 1,-2.764251708984375,0.80000209808349609 rotation = -9.55319521E-08,0.707107008,-0.70710665,9.55319379E-08 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 12 srfN = srfAttach, 7,BoxCOL mass = 0.075000003 shielded = False temp = 202.62453568964801 tempExt = 202.68634928894727 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = ForceHeaviest rigidAttachment = False flag = Squad/Flags/default rTrf = roverWheel1 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleWheelBase isEnabled = True wheelType = MOTORIZED isGrounded = True autoFriction = True frictionMultiplier = 8.22644711 stagingEnabled = True EVENTS { } ACTIONS { ActAutoFrictionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSuspension isEnabled = True springTweakable = 1 damperTweakable = 1 autoSpringDamper = True suspensionPos = (-0.31100142, 0.00248806225, 4.88757735E-07) autoBoost = 0 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelSteering isEnabled = True steeringEnabled = True steeringInvert = False stagingEnabled = True EVENTS { } ACTIONS { SteeringToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelMotor isEnabled = True autoTorque = True motorEnabled = True motorInverted = False driveLimiter = 58.3028374 tractionControlScale = 1 stagingEnabled = True EVENTS { } ACTIONS { MotorToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorEnable { actionGroup = None wasActiveBeforePartWasAdjusted = False } MotorDisable { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActAutoTorqueToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelBrakes isEnabled = True brakeTweakable = 50 brakeInput = 1 stagingEnabled = True EVENTS { } ACTIONS { BrakeAction { actionGroup = Brakes wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleWheelDamage isEnabled = True isDamaged = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = advSasModule cid = 4293253062 uid = 1544356943 mid = 742617758 persistentId = 3640838567 launchID = 19 parent = 7 position = 0,-3.30078125,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = , -1 attN = top, 7 attN = bottom, 15 mass = 0.100000001 shielded = False temp = 202.63416832754066 tempExt = 202.73968061613641 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = advSasModule modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 authorityLimiter = 100 stateString = Idle stagingEnabled = True WheelState = Active EVENTS { } ACTIONS { CycleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } Activate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Deactivate { actionGroup = None wasActiveBeforePartWasAdjusted = False } Toggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = adapterSmallMiniShort cid = 4293324888 uid = 1622877093 mid = 742617758 persistentId = 854427704 launchID = 19 parent = 14 position = 0,-3.4998092651367188,0 rotation = -1,0,0,0 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = , -1 attN = top, -1 attN = bottom, 14 mass = 0.0399999991 shielded = False temp = 202.64184940809204 tempExt = 202.62452303770743 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = adapterSmallMiniShort modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = RTLongAntenna2 cid = 4294520546 uid = 774756489 mid = 742617758 persistentId = 1673281816 launchID = 19 parent = 15 position = 0,-3.5847282409667969,-0.47997242212295532 rotation = 0.969668627,9.90257765E-10,3.92851529E-09,-0.244423538 mirror = 1,1,1 symMethod = Mirror istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False srfN = srfAttach, 15,node_collider attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 202.99831002681904 tempExt = 203.22393867634122 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = False animTime = 0.993999958 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { deployPercent { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = True IsRTPowered = True IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 5000000 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = True IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleRTDataTransmitter isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = sensorThermometer cid = 4294179684 uid = 240534708 mid = 742617758 persistentId = 1322868919 launchID = 19 parent = 0 position = 0.48960715532302856,0.03923797607421875,2.9802322387695313E-08 rotation = -0.098850064,0.700163364,-0.098850064,-0.700163245 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 0 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False srfN = srfAttach, 0,COL mass = 0.00499999989 shielded = False temp = 202.08175638561602 tempExt = 202.32991178474899 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = sensorThermometer modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleEnviroSensor isEnabled = True sensorActive = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { } ACTIONS { DeployAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ResetAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = True, 183431.416354641 Gear = False, 0 Light = False, 0 RCS = False, 148328.948003651 SAS = False, 183465.136354623 Brakes = True, 183458.096354627 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } AxisGroupsModule { } CommNetVessel { controlState = ProbeFull canComm = True } } } VESSEL { pid = a7ce0307523a4daa8279f2e75970a0d6 persistentId = 2095772789 name = Rover Rocket Debris type = Debris sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = True launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 75.418710932135582 lct = 168079.75061592783 lastUT = 168155.16932685996 distanceTraveled = 5900.7420708286136 root = 0 lat = -13.929900514867176 lon = 119.2168967554238 alt = 150277.2632598299 hgt = 150277.266 nrm = -0.271187693,-0.671944737,-0.68916446 rot = -0.742416203,-0.638869464,0.11080879,0.16847977 CoM = -2.41994858E-05,-4.17687464,0.000117063522 stg = 2 prst = False ref = 0 ctrl = False PQSMin = 2 PQSMax = 8 GroupOverride = 0 OverrideDefault = False,False,False,False OverrideActionControl = 0,0,0,0 OverrideAxisControl = 0,0,0,0 OverrideGroupNames = ,,, altDispState = DEFAULT cPch = 0 cHdg = 0 cMod = -1 ORBIT { SMA = 459969.6419523519 ECC = 0.23848262017665214 INC = 17.96242967417832 LPE = 307.95643749730829 LAN = 114.68740336736084 MNA = -0.045603966438045228 EPH = 168090.15061592238 REF = 2 } PART { name = Decoupler.2 cid = 4294220778 uid = 2212134657 mid = 742617758 persistentId = 3027752617 launchID = 19 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 1 resPri = 0 dstg = 5 sqor = 1 sepI = 1 sidx = 1 attm = 0 sameVesselCollision = False srfN = , -1 attN = top, -1 attN = bottom, 1 mass = 0.159999996 shielded = False temp = 218.07864633001094 tempExt = 218.14560836755814 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 1 PreFailState = 0 attached = False autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = Decoupler.2 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDecouple isEnabled = True ejectionForcePercent = 100 isDecoupled = True stagingEnabled = False EVENTS { } ACTIONS { DecoupleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleToggleCrossfeed isEnabled = True crossfeedStatus = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } EnableAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } DisableAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = Rockomax32.BW cid = 4294217888 uid = 2355120119 mid = 742617758 persistentId = 2578003506 launchID = 19 parent = 0 position = 0,-1.9600009918212891,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 1 resPri = 0 dstg = 6 sqor = -1 sepI = 1 sidx = -1 attm = 0 sameVesselCollision = False srfN = srfAttach, -1 attN = top, 0 attN = bottom, 2 mass = 2 shielded = False temp = 218.23371156103605 tempExt = 218.57565453472171 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 1 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = Rockomax32.BW modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } RESOURCE { name = LiquidFuel amount = 0 maxAmount = 1440 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 0 maxAmount = 1760 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = Rockomax16.BW cid = 4294215778 uid = 217252226 mid = 742617758 persistentId = 2015687920 launchID = 19 parent = 1 position = 0,-4.7400016784667969,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 1 resPri = 0 dstg = 6 sqor = -1 sepI = 1 sidx = -1 attm = 0 sameVesselCollision = False srfN = srfAttach, -1 attN = top, 1 attN = bottom, 3 mass = 1 shielded = False temp = 220.28398910623585 tempExt = 220.07254405572496 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 1 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = Rockomax16.BW modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } RESOURCE { name = LiquidFuel amount = 0 maxAmount = 720 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 0 maxAmount = 880 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = engineLargeSkipper cid = 4294217244 uid = 287763841 mid = 742617758 persistentId = 2419965887 launchID = 19 parent = 2 position = 0,-5.6600017547607422,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 2 resPri = 0 dstg = 6 sqor = 2 sepI = 1 sidx = 1 attm = 0 sameVesselCollision = False srfN = , -1 attN = top, 2 attN = bottom, -1 mass = 3 shielded = False temp = 225.62203687413111 tempExt = 223.46649762715057 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 1 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = engineLargeSkipper modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True independentThrottle = False independentThrottlePercentage = 0 staged = True flameout = True EngineIgnited = True engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False includeinDVCalcs = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleThrottle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { independentThrottlePercentage { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } thrustPercentage { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } } UPGRADESAPPLIED { } } MODULE { name = ModuleJettison isEnabled = True activejettisonName = obj_fairing isJettisoned = True shroudHideOverride = False stagingEnabled = True EVENTS { } ACTIONS { JettisonAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True gimbalActive = True stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } LockAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } FreeAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } TogglePitchAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleYawAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleRollAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateThrottle isEnabled = True animState = 0.017796373 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleAlternator isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleSurfaceFX isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = RCSBlock.v2 cid = 4294187562 uid = 1405150869 mid = 742617758 persistentId = 4212816373 launchID = 19 parent = 2 position = -1.0430812835693359E-07,-5.2912063598632813,-1.1993184089660645 rotation = 6.87177035E-08,0.707106948,-6.87176751E-08,-0.707106709 mirror = 1,1,1 symMethod = Radial istg = 1 resPri = 0 dstg = 6 sqor = -1 sepI = 1 sidx = -1 attm = 1 sameVesselCollision = False sym = 5 sym = 6 sym = 7 srfN = srfAttach, 2,collider mass = 0.0399999991 shielded = False temp = 217.83374080184294 tempExt = 218.98690056107995 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 1 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RCSBlock.v2 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateRCS isEnabled = True stagingEnabled = True animStates = 0,0,0,0 EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = RCSBlock.v2 cid = 4294187462 uid = 825549903 mid = 742617758 persistentId = 68619609 launchID = 19 parent = 2 position = -1.1993182897567749,-5.2912063598632813,2.9802322387695313E-08 rotation = 2.00971831E-14,1.68587391E-07,-9.71814842E-08,-1 mirror = 1,1,1 symMethod = Radial istg = 1 resPri = 0 dstg = 6 sqor = -1 sepI = 1 sidx = -1 attm = 1 sameVesselCollision = False sym = 4 sym = 6 sym = 7 srfN = srfAttach, 2,collider mass = 0.0399999991 shielded = False temp = 217.83370570784814 tempExt = 218.98688918889337 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 1 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RCSBlock.v2 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateRCS isEnabled = True stagingEnabled = True animStates = 0,0,0,0 EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = RCSBlock.v2 cid = 4294187372 uid = 556380345 mid = 742617758 persistentId = 585856555 launchID = 19 parent = 2 position = 2.0861625671386719E-07,-5.2912063598632813,1.1993184089660645 rotation = -6.87176751E-08,-0.707106769,-6.87177035E-08,-0.707106888 mirror = 1,1,1 symMethod = Radial istg = 1 resPri = 0 dstg = 6 sqor = -1 sepI = 1 sidx = -1 attm = 1 sameVesselCollision = False sym = 4 sym = 5 sym = 7 srfN = srfAttach, 2,collider mass = 0.0399999991 shielded = False temp = 217.83374164538606 tempExt = 218.9869008344296 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 1 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RCSBlock.v2 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateRCS isEnabled = True stagingEnabled = True animStates = 0,0,0,0 EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = RCSBlock.v2 cid = 4294187282 uid = 2807036820 mid = 742617758 persistentId = 427049581 launchID = 19 parent = 2 position = 1.1993182897567749,-5.2912063598632813,-1.7881393432617188E-07 rotation = -9.71814842E-08,-1,-2.00971831E-14,-1.68587391E-07 mirror = 1,1,1 symMethod = Radial istg = 1 resPri = 0 dstg = 6 sqor = -1 sepI = 1 sidx = -1 attm = 1 sameVesselCollision = False sym = 4 sym = 5 sym = 6 srfN = srfAttach, 2,collider mass = 0.0399999991 shielded = False temp = 217.83380221131239 tempExt = 218.98754892509459 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 1 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RCSBlock.v2 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleRCSFX isEnabled = True rcsEnabled = True thrustPercentage = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True enableX = True enableY = True enableZ = True useThrottle = False fullThrust = False stagingEnabled = False EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateRCS isEnabled = True stagingEnabled = True animStates = 0,0,0,0 EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = False, 168079.750615928 Gear = False, 0 Light = False, 0 RCS = False, 148328.948003651 SAS = False, 148814.833267307 Brakes = True, 148176.088003731 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } AxisGroupsModule { } } } VESSEL { pid = 5e14a1dd52bc4bff8998759322d30729 persistentId = 512721609 name = Ast. FFA-233 type = SpaceObject sit = ORBITING landed = False skipGroundPositioning = False vesselSpawning = True launchedFrom = landedAt = displaylandedAt = splashed = False met = 173970.09576655366 lct = 173970.09576655366 lastUT = -1 distanceTraveled = 0 root = 0 lat = 0.058347316780455849 lon = 50.296583407599677 alt = 14152534568.990211 hgt = -1 nrm = 0,1,0 rot = -0.582151651,0.742903829,0.330054104,0.0160492342 CoM = 0,0,0 stg = 0 prst = False ref = 0 ctrl = False PQSMin = 0 PQSMax = 0 GroupOverride = 0 OverrideDefault = False,False,False,False OverrideActionControl = 0,0,0,0 OverrideAxisControl = 0,0,0,0 OverrideGroupNames = ,,, altDispState = DEFAULT ORBIT { SMA = 14009012883.268852 ECC = 0.028965197356108953 INC = 0.9532759029722534 LPE = 186.66533910583399 LAN = 191.76288052704146 MNA = -0.085763928761721508 EPH = 4942983.1939110849 REF = 0 } PART { name = PotatoRoid cid = 0 uid = 1697760526 mid = 1697760526 persistentId = 1322267451 launchID = 0 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 0 sqor = 0 sepI = 0 sidx = 0 attm = 0 sameVesselCollision = False srfN = None, -1 mass = 150 shielded = False temp = -1 tempExt = 0 tempExtUnexp = 0 staticPressureAtm = 0 expt = 1 state = 0 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = rTrf = modCost = 0 } ACTIONGROUPS { } DISCOVERY { state = 1 lastObservedTime = 173970.09576655366 lifetime = 1519983.6547851563 refTime = 1728000 size = 2 } FLIGHTPLAN { } CTRLSTATE { } VESSELMODULES { FlightIntegrator { } AxisGroupsModule { } } } VESSEL { pid = cfd1866059e649fd8c967e181b89cd7e persistentId = 2597954772 name = Rover Rocket Debris type = Debris sit = LANDED landed = True skipGroundPositioning = False vesselSpawning = True launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 44.299999976792606 lct = 183431.41635464111 lastUT = 183475.71635461791 distanceTraveled = 0 root = 0 lat = -16.16126482956513 lon = 20.793220222031898 alt = 854.66590324946446 hgt = 1.36171687 nrm = -0.101328343,0.0454923511,-0.993812561 rot = -0.626706123,0.494195133,0.553346276,-0.238366753 CoM = 7.50866093E-05,-1.80176067,-1.06095986E-05 stg = 1 prst = False ref = 0 ctrl = False PQSMin = 2 PQSMax = 8 GroupOverride = 0 OverrideDefault = False,False,False,False OverrideActionControl = 0,0,0,0 OverrideAxisControl = 0,0,0,0 OverrideGroupNames = ,,, altDispState = DEFAULT cPch = 0 cHdg = 0 cMod = -1 ORBIT { SMA = 100439.04019820783 ECC = 0.99976544767027775 INC = 16.161080424608379 LPE = 89.918930122309618 LAN = 96.119454358533289 MNA = -3.1415838168981103 EPH = 183475.71635461791 REF = 2 } PART { name = trussAdapter cid = 4294191188 uid = 3221466831 mid = 742617758 persistentId = 715545906 launchID = 19 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 2 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = , -1 attN = bottom, 1 attN = top, -1 mass = 0.25 shielded = False temp = 207.65738806679957 tempExt = 207.98425266831597 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 1 PreFailState = 0 attached = False autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = trussAdapter modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } } PART { name = fairingSize2 cid = 4294247294 uid = 833528965 mid = 742617758 persistentId = 851012701 launchID = 19 parent = 0 position = 0,-0.630828857421875,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 1 resPri = 0 dstg = 3 sqor = 1 sepI = -1 sidx = 0 attm = 0 sameVesselCollision = False srfN = , -1 attN = interstage01a, -1 attN = interstage01b, -1 attN = interstage02a, -1 attN = interstage02b, -1 attN = interstage03a, -1 attN = interstage03b, -1 attN = interstage04a, -1 attN = interstage04b, -1 attN = interstage05a, -1 attN = interstage05b, -1 attN = interstage06a, -1 attN = interstage06b, -1 attN = top, 0 attN = bottom, 2 mass = 0.174999997 shielded = False temp = 208.74413984920068 tempExt = 209.42852235048471 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 1 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = fairingSize2 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleProceduralFairing isEnabled = True interstageCraftID = 0 nArcs = 3 ejectionForce = 100 useClamshell = False stagingEnabled = True fsm = st_flight_deployed EVENTS { } ACTIONS { DeployFairingAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleCargoBay isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNode isEnabled = True spawnState = False visibilityState = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleStructuralNodeToggle isEnabled = True showMesh = True showNodes = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = Rockomax16.BW cid = 4294235402 uid = 1145982161 mid = 742617758 persistentId = 3475421386 launchID = 19 parent = 1 position = 0,-1.7508296966552734,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 4 sqor = -1 sepI = -1 sidx = -1 attm = 0 sameVesselCollision = False srfN = srfAttach, -1 attN = top, 1 attN = bottom, 3 mass = 1 shielded = False temp = 209.0184005867427 tempExt = 209.59436954814694 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 1 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = Rockomax16.BW modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModulePartVariants isEnabled = True useVariantMass = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } RESOURCE { name = LiquidFuel amount = 402.73784073997638 maxAmount = 720 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = Oxidizer amount = 492.2351200052409 maxAmount = 880 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = liquidEngine2-2.v2 cid = 4294227968 uid = 1385380403 mid = 742617758 persistentId = 1269979519 launchID = 19 parent = 2 position = 0,-2.6708297729492188,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 1 resPri = 0 dstg = 4 sqor = 1 sepI = -1 sidx = 1 attm = 0 sameVesselCollision = False srfN = , -1 attN = top, 2 attN = bottom, -1 mass = 1.75 shielded = False temp = 210.68499582561384 tempExt = 210.60007860253921 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 1 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = liquidEngine2-2.v2 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleEngines isEnabled = True independentThrottle = False independentThrottlePercentage = 0 staged = True flameout = False EngineIgnited = True engineShutdown = False currentThrottle = 0 thrustPercentage = 100 manuallyOverridden = False includeinDVCalcs = False stagingEnabled = True EVENTS { } ACTIONS { OnAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ShutdownAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActivateAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleThrottle { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { independentThrottlePercentage { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } thrustPercentage { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } } UPGRADESAPPLIED { } } MODULE { name = ModuleJettison isEnabled = True activejettisonName = Shroud isJettisoned = True shroudHideOverride = False stagingEnabled = True EVENTS { } ACTIONS { JettisonAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleGimbal isEnabled = True gimbalLock = False gimbalLimiter = 100 currentShowToggles = False enableYaw = True enablePitch = True enableRoll = True gimbalActive = True stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } LockAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } FreeAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } TogglePitchAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleYawAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } ToggleRollAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = FXModuleLookAtConstraint isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = FXModuleAnimateThrottle isEnabled = True animState = 0.0221156962 stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleAlternator isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } MODULE { name = ModuleSurfaceFX isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294213206 uid = 2153797597 mid = 742617758 persistentId = 326144552 launchID = 19 parent = 2 position = 1.0430812835693359E-07,-1.2838916778564453,-1.2074375152587891 rotation = 1.79043029E-14,1,-9.71814842E-08,1.84235745E-07 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 4 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 5 sym = 6 sym = 7 srfN = srfAttach, 2,collider mass = 0.00499999989 shielded = False temp = 209.16771774613454 tempExt = 209.40198528969285 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 1 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 147888.82800388118 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294213108 uid = 3230663536 mid = 742617758 persistentId = 2433643052 launchID = 19 parent = 2 position = -1.2074373960494995,-1.2838916778564453,-1.7881393432617188E-07 rotation = -6.87176751E-08,0.707106888,-6.87176964E-08,-0.70710665 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 4 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 4 sym = 6 sym = 7 srfN = srfAttach, 2,collider mass = 0.00499999989 shielded = False temp = 209.16771774613454 tempExt = 209.40198528969285 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 1 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 147888.82800388118 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294213076 uid = 3362422893 mid = 742617758 persistentId = 983018342 launchID = 19 parent = 2 position = 0,-1.2838916778564453,1.2074375152587891 rotation = -9.71814842E-08,1.40524349E-07,-1.36563649E-14,-1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 4 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 4 sym = 5 sym = 7 srfN = srfAttach, 2,collider mass = 0.00499999989 shielded = False temp = 209.16771774613454 tempExt = 209.40198528969285 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 1 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 147888.82800388118 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = solarPanels5 cid = 4294213044 uid = 3207631362 mid = 742617758 persistentId = 226890683 launchID = 19 parent = 2 position = 1.2074373960494995,-1.2838916778564453,2.9802322387695313E-08 rotation = -6.87176964E-08,-0.70710665,6.87176751E-08,-0.707106888 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 4 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 4 sym = 5 sym = 6 srfN = srfAttach, 2,collider mass = 0.00499999989 shielded = False temp = 209.16771868298707 tempExt = 209.40198558845589 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 1 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = solarPanels5 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDeployableSolarPanel isEnabled = True efficiencyMult = 1 launchUT = 147888.82800388118 currentRotation = (0, -6.057208E-07, 0, 1) storedAnimationTime = 0 storedAnimationSpeed = 0 deployState = EXTENDED stagingEnabled = True EVENTS { } ACTIONS { ExtendPanelsAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } ExtendAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } RetractAction { actionGroup = None active = False wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } } PART { name = RTLongAntenna2 cid = 4293988928 uid = 4111615287 mid = 742617758 persistentId = 4212972221 launchID = 19 parent = 2 position = -0.86831432580947876,-1.4370880126953125,0.86831414699554443 rotation = 0.65328145,-0.270598114,0.270598054,0.653281569 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 4 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False srfN = srfAttach, 2,collider attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 208.64610051111501 tempExt = 209.29024928250757 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 1 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = RTLongAntenna2 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = True animTime = 0.00406716345 animSpeed = 0 deployPercent = 100 animationIsDisabled = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } AXISGROUPS { deployPercent { axisGroup = None axisIncremental = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 axisInverted = None overrideIncremental0 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental1 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental2 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 overrideIncremental3 = Pitch, Yaw, Roll, TranslateX, TranslateY, TranslateZ, WheelSteer, WheelThrottle, Custom01, Custom02, Custom03, Custom04 } } UPGRADESAPPLIED { } } MODULE { name = ModuleRTAntenna isEnabled = True IsRTAntenna = True IsRTActive = False IsRTPowered = False IsRTBroken = False IsNonRetractable = False RTDishCosAngle = 1 RTOmniRange = 0 RTDishRange = -1 RTDeactivatePowerThreshold = 20 RTActivatePowerThreshold = 80 stagingEnabled = True RTAntennaTarget = 00000000-0000-0000-0000-000000000000 EVENTS { } ACTIONS { ActionToggle { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionOpen { actionGroup = None wasActiveBeforePartWasAdjusted = False } ActionClose { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleSPUPassive isEnabled = True IsRTPowered = False IsRTSignalProcessor = True IsRTCommandStation = False stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } PART { name = radialRCSTank cid = 4294195844 uid = 1596527679 mid = 742617758 persistentId = 3927753117 launchID = 19 parent = 0 position = -5.9604644775390625E-08,-0.20244026184082031,-0.82415300607681274 rotation = 1.78813934E-07,0,0,-1 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 2 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 10 sym = 11 sym = 12 srfN = srfAttach, 0,collider mass = 0.0199999996 shielded = False temp = 206.56823431297911 tempExt = 207.27618818047523 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 1 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = MonoPropellant amount = 17.860022431959568 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = radialRCSTank cid = 4294187994 uid = 3285231763 mid = 742617758 persistentId = 2965804916 launchID = 19 parent = 0 position = -0.82415294647216797,-0.20244026184082031,7.4505805969238281E-09 rotation = 1.26440554E-07,-0.707106829,-1.26440554E-07,-0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 2 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 9 sym = 11 sym = 12 srfN = srfAttach, 0,collider mass = 0.0199999996 shielded = False temp = 206.56757415718252 tempExt = 207.27589677496402 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 1 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = MonoPropellant amount = 17.860022431959568 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = radialRCSTank cid = 4294187968 uid = 2787480554 mid = 742617758 persistentId = 973839131 launchID = 19 parent = 0 position = 1.3411045074462891E-07,-0.20244026184082031,0.82415300607681274 rotation = -7.81620489E-15,-1,-1.78813934E-07,4.37113883E-08 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 2 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 9 sym = 10 sym = 12 srfN = srfAttach, 0,collider mass = 0.0199999996 shielded = False temp = 206.56881916080832 tempExt = 207.2855765187079 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 1 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = MonoPropellant amount = 17.860022431959568 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { name = radialRCSTank cid = 4294187942 uid = 191514308 mid = 742617758 persistentId = 693645967 launchID = 19 parent = 0 position = 0.82415294647216797,-0.20244026184082031,-1.1175870895385742E-07 rotation = -1.26440554E-07,-0.707106829,-1.26440554E-07,0.707106829 mirror = 1,1,1 symMethod = Radial istg = -1 resPri = 0 dstg = 2 sqor = -1 sepI = -1 sidx = -1 attm = 1 sameVesselCollision = False sym = 9 sym = 10 sym = 11 srfN = srfAttach, 0,collider mass = 0.0199999996 shielded = False temp = 206.57362526194342 tempExt = 207.27856784933377 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 1 PreFailState = 0 attached = True autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = radialRCSTank modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } RESOURCE { name = MonoPropellant amount = 17.860022431959568 maxAmount = 20 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } ACTIONGROUPS { Stage = True, 183431.416354641 Gear = False, 0 Light = False, 0 RCS = False, 148328.948003651 SAS = True, 183395.33635466 Brakes = True, 148176.088003731 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } AxisGroupsModule { } } } VESSEL { pid = f3959a08073a4790a74ab78cd891ea64 persistentId = 2737380811 name = Rover Rocket Debris type = Debris sit = LANDED landed = True skipGroundPositioning = False vesselSpawning = True launchedFrom = LaunchPad landedAt = displaylandedAt = splashed = False met = 44.299999976792606 lct = 183431.41635464111 lastUT = 183475.71635461791 distanceTraveled = 9.0524060870685723 root = 0 lat = -16.161294199428937 lon = 20.793349176426705 alt = 853.5093567474396 hgt = 0.197797775 nrm = -0.151162505,0.811523318,-0.564428627 rot = -0.417755693,0.233043194,0.73392415,-0.482209921 CoM = 0,0,0 stg = 0 prst = False ref = 0 ctrl = False PQSMin = 2 PQSMax = 8 GroupOverride = 0 OverrideDefault = False,False,False,False OverrideActionControl = 0,0,0,0 OverrideAxisControl = 0,0,0,0 OverrideGroupNames = ,,, altDispState = DEFAULT cPch = 0 cHdg = 0 cMod = -1 ORBIT { SMA = 100438.57594060493 ECC = 0.9997646085076769 INC = 16.161326213992378 LPE = 89.887519090349997 LAN = 96.152814266950543 MNA = 3.1414877416037528 EPH = 183475.71635461791 REF = 2 } PART { name = Separator.0 cid = 4294412338 uid = 1371245223 mid = 742617758 persistentId = 1098134093 launchID = 19 parent = 0 position = 0,0,0 rotation = 0,0,0,1 mirror = 1,1,1 symMethod = Radial istg = 0 resPri = 0 dstg = 1 sqor = 0 sepI = 0 sidx = 0 attm = 0 sameVesselCollision = False srfN = , -1 attN = top, -1 attN = bottom, -1 mass = 0.00999999978 shielded = False temp = 206.03676080736071 tempExt = 206.95095760157542 tempExtUnexp = 4 staticPressureAtm = 0 expt = 0.5 state = 1 PreFailState = 0 attached = False autostrutMode = Off rigidAttachment = False flag = Squad/Flags/default rTrf = Separator.0 modCost = 0 EVENTS { } ACTIONS { ToggleSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } SetSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } RemoveSameVesselInteraction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } PARTDATA { } MODULE { name = ModuleDecouple isEnabled = True ejectionForcePercent = 100 isDecoupled = True stagingEnabled = False EVENTS { } ACTIONS { DecoupleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleToggleCrossfeed isEnabled = True crossfeedStatus = False stagingEnabled = True EVENTS { } ACTIONS { ToggleAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } EnableAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } DisableAction { actionGroup = None wasActiveBeforePartWasAdjusted = False } } UPGRADESAPPLIED { } } MODULE { name = ModuleTestSubject isEnabled = True stagingEnabled = True EVENTS { } ACTIONS { } UPGRADESAPPLIED { } } } ACTIONGROUPS { Stage = True, 183431.416354641 Gear = False, 0 Light = False, 0 RCS = False, 148328.948003651 SAS = True, 183395.33635466 Brakes = True, 148176.088003731 Abort = False, 0 Custom01 = False, 0 Custom02 = False, 0 Custom03 = False, 0 Custom04 = False, 0 Custom05 = False, 0 Custom06 = False, 0 Custom07 = False, 0 Custom08 = False, 0 Custom09 = False, 0 Custom10 = False, 0 } DISCOVERY { state = -1 lastObservedTime = 0 lifetime = Infinity refTime = Infinity size = 2 } FLIGHTPLAN { } CTRLSTATE { pitch = 0 yaw = 0 roll = 0 trimPitch = 0 trimYaw = 0 trimRoll = 0 mainThrottle = 0 } VESSELMODULES { FlightIntegrator { } AxisGroupsModule { } } } } LoaderInfo { ModuleManager v4.1.3.0 = True Assembly-CSharp-firstpass v0.0.0.0 = True Ionic.Zip v1.9.1.8 = True KSPAssets v1.4.0.0 = True KSPAssets.XmlSerializers v1.4.0.0 = True KSPTrackIR v1.0.0.0 = True Mono.Cecil v0.9.6.0 = True RemoteTech v1.9.0.0 / v1.9.4 = True TDx.TDxInput v1.1.0.0 = True Unity.Analytics.DataPrivacy v0.0.0.0 = True Unity.Analytics.StandardEvents v1.0.0.0 = True UnityEngine.AccessibilityModule v0.0.0.0 = True UnityEngine.AIModule v0.0.0.0 = True UnityEngine.AndroidJNIModule v0.0.0.0 = True UnityEngine.AnimationModule v0.0.0.0 = True UnityEngine.ARModule v0.0.0.0 = True UnityEngine.AssetBundleModule v0.0.0.0 = True UnityEngine.AudioModule v0.0.0.0 = True UnityEngine.ClothModule v0.0.0.0 = True UnityEngine.ClusterInputModule v0.0.0.0 = True UnityEngine.ClusterRendererModule v0.0.0.0 = True UnityEngine.CoreModule v0.0.0.0 = True UnityEngine.CrashReportingModule v0.0.0.0 = True UnityEngine.DirectorModule v0.0.0.0 = True UnityEngine v0.0.0.0 = True UnityEngine.DSPGraphModule v0.0.0.0 = True UnityEngine.GameCenterModule v0.0.0.0 = True UnityEngine.GridModule v0.0.0.0 = True UnityEngine.ImageConversionModule v0.0.0.0 = True UnityEngine.IMGUIModule v0.0.0.0 = True UnityEngine.InputLegacyModule v0.0.0.0 = True UnityEngine.InputModule v0.0.0.0 = True UnityEngine.JSONSerializeModule v0.0.0.0 = True UnityEngine.LocalizationModule v0.0.0.0 = True UnityEngine.ParticleSystemModule v0.0.0.0 = True UnityEngine.PerformanceReportingModule v0.0.0.0 = True UnityEngine.Physics2DModule v0.0.0.0 = True UnityEngine.PhysicsModule v0.0.0.0 = True UnityEngine.ScreenCaptureModule v0.0.0.0 = True UnityEngine.SharedInternalsModule v0.0.0.0 = True UnityEngine.SpriteMaskModule v0.0.0.0 = True UnityEngine.SpriteShapeModule v0.0.0.0 = True UnityEngine.StreamingModule v0.0.0.0 = True UnityEngine.TerrainModule v0.0.0.0 = True UnityEngine.TerrainPhysicsModule v0.0.0.0 = True UnityEngine.TextCoreModule v0.0.0.0 = True UnityEngine.TextRenderingModule v0.0.0.0 = True UnityEngine.TilemapModule v0.0.0.0 = True UnityEngine.UI v1.0.0.0 = True UnityEngine.UIElementsModule v0.0.0.0 = True UnityEngine.UIModule v0.0.0.0 = True UnityEngine.UNETModule v0.0.0.0 = True UnityEngine.UnityAnalyticsModule v0.0.0.0 = True UnityEngine.UnityConnectModule v0.0.0.0 = True UnityEngine.UnityWebRequestAssetBundleModule v0.0.0.0 = True UnityEngine.UnityWebRequestAudioModule v0.0.0.0 = True UnityEngine.UnityWebRequestModule v0.0.0.0 = True UnityEngine.UnityWebRequestTextureModule v0.0.0.0 = True UnityEngine.UnityWebRequestWWWModule v0.0.0.0 = True UnityEngine.VehiclesModule v0.0.0.0 = True UnityEngine.VFXModule v0.0.0.0 = True UnityEngine.VideoModule v0.0.0.0 = True UnityEngine.VRModule v0.0.0.0 = True UnityEngine.WindModule v0.0.0.0 = True UnityEngine.XRModule v0.0.0.0 = True RemoteTech = True ModuleManager.4.1.3.dll = True ModuleManager.ConfigCache = True ModuleManager.ConfigSHA = True ModuleManager.Physics = True ModuleManager.TechTree = True } ROSTER { KERBAL { name = Jebediah Kerman gender = Male type = Crew trait = Pilot brave = 0.5 dumb = 0.5 badS = True veteran = True tour = False state = Available inactive = False inactiveTimeEnd = 0 gExperienced = 0 outDueToG = False ToD = 0 idx = -1 extraXP = 0 hasHelmetOn = False hasNeckRingOn = False lightR = 1 lightG = 0.5176 lightB = 0 completedFirstEVA = False suit = Default hero = True CAREER_LOG { flight = 0 } FLIGHT_LOG { flight = 0 } } KERBAL { name = Bill Kerman gender = Male type = Crew trait = Engineer brave = 0.5 dumb = 0.800000012 badS = False veteran = True tour = False state = Available inactive = False inactiveTimeEnd = 0 gExperienced = 0 outDueToG = False ToD = 0 idx = -1 extraXP = 0 hasHelmetOn = False hasNeckRingOn = False lightR = 1 lightG = 0.5176 lightB = 0 completedFirstEVA = False suit = Default hero = True CAREER_LOG { flight = 0 } FLIGHT_LOG { flight = 0 } } KERBAL { name = Bob Kerman gender = Male type = Crew trait = Scientist brave = 0.300000012 dumb = 0.100000001 badS = False veteran = True tour = False state = Available inactive = False inactiveTimeEnd = 0 gExperienced = 0 outDueToG = False ToD = 0 idx = -1 extraXP = 0 hasHelmetOn = False hasNeckRingOn = False lightR = 1 lightG = 0.5176 lightB = 0 completedFirstEVA = False suit = Default hero = True CAREER_LOG { flight = 0 } FLIGHT_LOG { flight = 0 } } KERBAL { name = Valentina Kerman gender = Female type = Crew trait = Pilot brave = 0.550000012 dumb = 0.400000006 badS = True veteran = True tour = False state = Available inactive = False inactiveTimeEnd = 0 gExperienced = 0 outDueToG = False ToD = 0 idx = -1 extraXP = 0 hasHelmetOn = False hasNeckRingOn = False lightR = 1 lightG = 0.5176 lightB = 0 completedFirstEVA = False suit = Default hero = True CAREER_LOG { flight = 0 } FLIGHT_LOG { flight = 0 } } } MESSAGESYSTEM { flash = False MESSAGE { title = World First Milestones message = The recent accomplishments of our space program have attracted contributions from numerous organizations!~n~nWe have broken a speed record of 2,500m/s.~n 9,600 1 2 ~n~n We have entered into suborbital spaceflight above The Mun.~n 26,000 2 4 ~n~n We have landed on the surface of The Mun.~n 31,200 2 5 ~n color = 3 icon = 6 read = False } } } ================================================ FILE: src/RemoteTech/API/API.cs ================================================ using RemoteTech.RangeModel; using RemoteTech.Modules; using RemoteTech.SimpleTypes; using System; using System.Collections.Generic; using System.Linq; using WrappedEvent = RemoteTech.FlightComputer.UIPartActionMenuPatcher.WrappedEvent; namespace RemoteTech.API { public static class API { /// If true then RTCore will be available in the Space Center internal static bool enabledInSPC = false; public static bool IsRemoteTechEnabled() { if (RTCore.Instance != null) return true; return false; } public static void EnableInSPC(bool state) // its advised that modders who need RTCore active in the SPC should set this from the MainMenu Scene { enabledInSPC = state; // setting to true will only take effect after a scene change RTLog.Verbose("Flag for RemoteTech running in Space Center scene is set: {0}", RTLogLevel.API, enabledInSPC); if (!enabledInSPC && RTCore.Instance != null && HighLogic.LoadedScene == GameScenes.SPACECENTER) { RTLog.Verbose("RemoteTech is terminated in Space Center scene", RTLogLevel.API); RTCore.Instance.OnDestroy(); } } public static bool HasLocalControl(Guid id) { var vessel = RTUtil.GetVesselById(id); if (vessel == null) return false; RTLog.Verbose("Flight: {0} HasLocalControl: {1}", RTLogLevel.API, id, vessel.HasLocalControl()); return vessel.HasLocalControl(); } public static bool HasFlightComputer(Guid id) { if (RTCore.Instance == null) return false; var satellite = RTCore.Instance.Satellites.Where(sat => sat.Guid.Equals(id)).FirstOrDefault(); if (satellite == null) return false; var hasFlightComputer = satellite.FlightComputer != null; RTLog.Verbose("Flight: {0} HasFlightComputer: {1}", RTLogLevel.API, id, hasFlightComputer); return hasFlightComputer; } public static void AddSanctionedPilot(Guid id, Action autopilot) { if (RTCore.Instance == null) return; var satellite = RTCore.Instance.Satellites.Where(sat => sat.Guid.Equals(id)).FirstOrDefault(); if (satellite == null || satellite.SignalProcessor == null) return; foreach (var spu in satellite.SignalProcessors) { if (spu.FlightComputer == null || spu.FlightComputer.SanctionedPilots == null) continue; if (spu.FlightComputer.SanctionedPilots.Contains(autopilot)) continue; RTLog.Verbose("Flight: {0} Adding Sanctioned Pilot", RTLogLevel.API, id); spu.FlightComputer.SanctionedPilots.Add(autopilot); } } public static void RemoveSanctionedPilot(Guid id, Action autopilot) { if (RTCore.Instance == null) return; var satellite = RTCore.Instance.Satellites.Where(sat => sat.Guid.Equals(id)).FirstOrDefault(); if (satellite == null || satellite.SignalProcessor == null) return; foreach (var spu in satellite.SignalProcessors) { if (spu.FlightComputer == null || spu.FlightComputer.SanctionedPilots == null) continue; RTLog.Verbose("Flight: {0} Removing Sanctioned Pilot", RTLogLevel.API, id); spu.FlightComputer.SanctionedPilots.Remove(autopilot); } } public static bool HasAnyConnection(Guid id) { if (RTCore.Instance == null) return false; var satellite = RTCore.Instance.Satellites.Where(sat => sat.Guid.Equals(id)).FirstOrDefault(); if (satellite == null) return false; var hasConnection = RTCore.Instance.Network[satellite].Any(); RTLog.Verbose("Flight: {0} Has Connection: {1}", RTLogLevel.API, id, hasConnection); return hasConnection; } public static bool HasConnectionToKSC(Guid id) { if (RTCore.Instance == null) return false; var satellite = RTCore.Instance.Satellites.Where(sat => sat.Guid.Equals(id)).FirstOrDefault(); if (satellite == null) return false; var connectedToKerbin = RTCore.Instance.Network[satellite].Any(r => RTCore.Instance.Network.GroundStations.ContainsKey(r.Goal.Guid)); RTLog.Verbose("Flight: {0} Has Connection to Kerbin: {1}", RTLogLevel.API, id, connectedToKerbin); return connectedToKerbin; } /// Determines if a satellite directly targets a ground station. /// The satellite id. /// true if the satellite has an antenna with a ground station as its first link, false otherwise. public static bool HasDirectGroundStation(Guid id) { if (RTCore.Instance == null) return false; var satellite = RTCore.Instance.Satellites.Where(sat => sat.Guid.Equals(id)).FirstOrDefault(); if (satellite == null) return false; var targetsGroundStation = RTCore.Instance.Network[satellite].Any(r => RTCore.Instance.Network.GroundStations.ContainsKey(r.Links.FirstOrDefault().Target.Guid)); RTLog.Verbose("Flight: {0} Directly targets a ground station: {1}", RTLogLevel.API, id, targetsGroundStation); return targetsGroundStation; } /// Gets the name of the ground station directly targeted with the shortest link to the satellite. /// The satellite id. /// name of the ground station if one is found, null otherwise. public static string GetClosestDirectGroundStation(Guid id) { if (RTCore.Instance == null) return null; var satellite = RTCore.Instance.Satellites.Where(sat => sat.Guid.Equals(id)).FirstOrDefault(); if (satellite == null) return null; var namedGroundStation = RTCore.Instance.Network[satellite].Where (r => RTCore.Instance.Network.GroundStations.ContainsKey(r.Links.FirstOrDefault().Target.Guid)).Min().Goal.Name; RTLog.Verbose("Flight: {0} Directly targets the closest ground station: {1}", RTLogLevel.API, id, namedGroundStation); return namedGroundStation; } /// Gets the name of the first hop satellite with the shortest link to KSC by the specified satellite. /// The satellite id. /// name of the satellite if one is found, null otherwise. public static string GetFirstHopToKSC(Guid id) { if (RTCore.Instance == null) return null; var satellite = RTCore.Instance.Satellites.Where(sat => sat.Guid.Equals(id)).FirstOrDefault(); if (satellite == null) return null; var namedSatellite = RTCore.Instance.Network[satellite].Where (r => RTCore.Instance.Network.GroundStations.ContainsKey(r.Goal.Guid)).Min().Links.FirstOrDefault().Target.Name; RTLog.Verbose("Flight: {0} Has first hop satellite with shortest link to KSC: {1}", RTLogLevel.API, id, namedSatellite); return namedSatellite; } public static bool AntennaHasConnection(Part part) { if (RTCore.Instance == null) return false; var antennaModules = part.Modules.OfType(); return antennaModules.Any(m => m.Connected); } public static Guid GetAntennaTarget(Part part) { ModuleRTAntenna module = part.Modules.OfType().First(); if (module == null) { throw new ArgumentException(); } return module.Target; } /// Gets Guids of all satellites in the control route /// The satellite id /// Guid array of all satellite in ground station router public static Guid[] GetControlPath(Guid id) { if (RTCore.Instance == null) return new Guid[]{ }; var satellite = RTCore.Instance.Satellites.Where(sat => sat.Guid.Equals(id)).FirstOrDefault(); if (satellite == null) return new Guid[] { }; if (!RTCore.Instance.Network[satellite].Any(r => RTCore.Instance.Network.GroundStations.ContainsKey(r.Goal.Guid))) return new Guid[] { }; List> bestRouter = RTCore.Instance.Network[satellite].Where(r => RTCore.Instance.Network.GroundStations.ContainsKey(r.Goal.Guid)).Min().Links; Guid[] guids = new Guid[bestRouter.Count]; // Get all satellites till the ground station for (int i = 0; i < bestRouter.Count; i++) { guids[i] = bestRouter[i].Target.Guid; } return guids; } public static void SetAntennaTarget(Part part, Guid id) { ModuleRTAntenna module = part.Modules.OfType().First(); if (module == null) { throw new ArgumentException(); } module.Target = id; } public static IEnumerable GetGroundStations() { return RTSettings.Instance.GroundStations.Select(s => ((ISatellite)s).Name); } public static Guid GetGroundStationGuid(String name) { MissionControlSatellite groundStation = RTSettings.Instance.GroundStations.Where(station => station.GetName().Equals(name)).FirstOrDefault(); if (groundStation == null) { return Guid.Empty; } return groundStation.mGuid; } /// Gets the name of a satellite. /// The satellite id. /// name of the satellite with matching id if found, otherwise null public static string GetName(Guid id) { if (RTCore.Instance == null) return null; var satellite = RTCore.Instance.Network.Where(sat => sat.Guid.Equals(id)).FirstOrDefault(); if (satellite == null) return null; string satellitename = satellite.Name; RTLog.Verbose("Flight: {0} is: {1}", RTLogLevel.API, id, satellitename); return satellitename; } public static Guid GetCelestialBodyGuid(CelestialBody celestialBody) { return RTUtil.Guid(celestialBody); } public static Guid GetNoTargetGuid() { return new Guid(RTSettings.Instance.NoTargetGuid); } public static Guid GetActiveVesselGuid() { return new Guid(RTSettings.Instance.ActiveVesselGuid); } public static double GetShortestSignalDelay(Guid id) { if (RTCore.Instance == null) return double.PositiveInfinity; var satellite = RTCore.Instance.Satellites.Where(sat => sat.Guid.Equals(id)).FirstOrDefault(); if (satellite == null) return double.PositiveInfinity; if (!RTCore.Instance.Network[satellite].Any()) return double.PositiveInfinity; var shortestDelay = RTCore.Instance.Network[satellite].Min().Delay; RTLog.Verbose("Flight: Shortest signal delay from {0} to {1}", RTLogLevel.API, id, shortestDelay); return shortestDelay; } public static double GetSignalDelayToKSC(Guid id) { if (RTCore.Instance == null) return double.PositiveInfinity; var satellite = RTCore.Instance.Satellites.Where(sat => sat.Guid.Equals(id)).FirstOrDefault(); if (satellite == null) return double.PositiveInfinity; if (!RTCore.Instance.Network[satellite].Any(r => RTCore.Instance.Network.GroundStations.ContainsKey(r.Goal.Guid))) return double.PositiveInfinity; var signalDelaytoKerbin = RTCore.Instance.Network[satellite].Where(r => RTCore.Instance.Network.GroundStations.ContainsKey(r.Goal.Guid)).Min().Delay; RTLog.Verbose("Connection from {0} to Kerbin Delay: {1}", RTLogLevel.API, id, signalDelaytoKerbin); return signalDelaytoKerbin; } public static double GetSignalDelayToSatellite(Guid a, Guid b) { if (RTCore.Instance == null) return double.PositiveInfinity; var satelliteA = RTCore.Instance.Satellites.Where(sat => sat.Guid.Equals(a)).FirstOrDefault(); var satelliteB = RTCore.Instance.Satellites.Where(sat => sat.Guid.Equals(b)).FirstOrDefault(); if (satelliteA == null || satelliteB == null) return double.PositiveInfinity; Func>> neighbors = RTCore.Instance.Network.FindNeighbors; Func, double> cost = RangeModelExtensions.DistanceTo; Func heuristic = RangeModelExtensions.DistanceTo; var path = NetworkPathfinder.Solve(satelliteA, satelliteB, neighbors, cost, heuristic); var delayBetween = path.Delay; RTLog.Verbose("Connection from {0} to {1} Delay: {2}", RTLogLevel.API, a, b, delayBetween); return delayBetween; } //exposed method called by other mods, passing a ConfigNode to RemoteTech public static bool QueueCommandToFlightComputer(ConfigNode externalData) { if (RTCore.Instance == null) return false; //check we were actually passed a config node if (externalData == null) return false; // check our min values if (!externalData.HasValue("GUIDString") && !externalData.HasValue("Executor") && !externalData.HasValue("ReflectionType")) { return false; } try { Guid externalVesselId = new Guid(externalData.GetValue("GUIDString")); // you can only push a new external command if the vessel guid is the current active vessel if (FlightGlobals.ActiveVessel.id != externalVesselId) { RTLog.Verbose("Passed Guid is not the active Vessels guid", RTLogLevel.API); return false; } // maybe we should look if this vessel hasLocal control or not. If so, we can execute the command // immediately // get the flight computer FlightComputer.FlightComputer computer = RTCore.Instance.Satellites[externalVesselId].FlightComputer; var extCmd = FlightComputer.Commands.ExternalAPICommand.FromExternal(externalData); computer.Enqueue(extCmd); return true; } catch(Exception ex) { RTLog.Verbose(ex.Message, RTLogLevel.API); } return false; } // this method provides a workaround for issue #437, it may be possible to remove it in the future public static void InvokeOriginalEvent(BaseEvent e) { if (e is WrappedEvent) { WrappedEvent wrappedEvent = e as WrappedEvent; wrappedEvent.InvokeOriginalEvent(); } else { e.Invoke(); } } public static Guid AddGroundStation(string name, double latitude, double longitude, double height, int body) { RTLog.Notify ("Trying to add ground station {0}", RTLogLevel.API, name); Guid newStationId = RTSettings.Instance.AddGroundStation(name, latitude, longitude, height, body); return newStationId; } public static bool RemoveGroundStation(Guid stationid) { RTLog.Notify ("Trying to remove ground station {0}", RTLogLevel.API, stationid); // do not allow to remove the default mission control if (stationid.ToString ("N").Equals ("5105f5a9d62841c6ad4b21154e8fc488")) { RTLog.Notify ("Cannot remove KSC Mission Control!", RTLogLevel.API); return false; } return RTSettings.Instance.RemoveGroundStation(stationid); } /// /// Change the Omni range of a ground station. /// Note that this change is temporary. For example it is overridden to the value written in the settings file if the tracking station is upgraded. /// /// The station ID for which to change the antenna range. /// The new range in meters. /// true if the ground station antenna range was changed, false otherwise. public static bool ChangeGroundStationRange(Guid stationId, float newRange) { RTLog.Notify("Trying to change ground station {0} Omni range to {1}", RTLogLevel.API, stationId.ToString(), newRange); if (RTSettings.Instance == null) return false; if(RTSettings.Instance.GroundStations.Count > 0) { MissionControlSatellite groundStation = RTSettings.Instance.GroundStations.First(gs => gs.mGuid == stationId); if (groundStation == null) return false; IEnumerable antennas = groundStation.MissionControlAntennas.ToArray(); if (antennas.Count() > 0) { // first antenna IAntenna antenna = antennas.ToArray()[0]; if (antenna is MissionControlAntenna) { ((MissionControlAntenna)antenna).SetOmniAntennaRange(newRange); RTLog.Notify("Ground station Omni range successfully changed.", RTLogLevel.API); return true; } } } return false; } /// /// Enforce or remove the radio blackout on target vessel (e.g. coronal mass ejection) /// /// Indicator on whether this request is executed successfully public static bool SetRadioBlackoutGuid(Guid id, bool flag, string reason = "") { if (RTCore.Instance == null) return false; var satellite = RTCore.Instance.Satellites.Where(sat => sat.Guid.Equals(id)).FirstOrDefault(); if (satellite == null) return false; satellite.IsInRadioBlackout = flag; RTLog.Verbose("Flight: {0} has radio blackout flag updated due to reason '{2}': {1}", RTLogLevel.API, id, satellite.IsInRadioBlackout, reason); return true; } /// /// Check if target vessel is currently in radio blackout /// /// Indicator on whether target vessel is in radio blackout public static bool GetRadioBlackoutGuid(Guid id) { if (RTCore.Instance == null) return false; var satellite = RTCore.Instance.Satellites.Where(sat => sat.Guid.Equals(id)).FirstOrDefault(); if (satellite == null) return false; var blackoutFlag = satellite.IsInRadioBlackout; RTLog.Verbose("Flight: {0} is in radio blackout: {1}", RTLogLevel.API, id, blackoutFlag); return blackoutFlag; } /// /// Enforce or remove the power down on target vessel /// /// Indicator on whether this request is executed successfully public static bool SetPowerDownGuid(Guid id, bool flag, string reason = "") { if (RTCore.Instance == null) return false; var satellite = RTCore.Instance.Satellites.Where(sat => sat.Guid.Equals(id)).FirstOrDefault(); if (satellite == null) return false; satellite.PowerShutdownFlag = flag; RTLog.Verbose("Flight: {0} has power down flag updated due to reason '{2}': {1}", RTLogLevel.API, id, satellite.PowerShutdownFlag, reason); return true; } /// /// Check if target vessel is currently in power down state /// /// Indicator on whether target vessel is in power down state public static bool GetPowerDownGuid(Guid id) { if (RTCore.Instance == null) return false; var satellite = RTCore.Instance.Satellites.Where(sat => sat.Guid.Equals(id)).FirstOrDefault(); if (satellite == null) return false; var flag = satellite.PowerShutdownFlag; RTLog.Verbose("Flight: {0} is in power down: {1}", RTLogLevel.API, id, flag); return flag; } /// /// Get the maximum range distance between the satellites A and B based on current Range Model /// and valid direct connection. /// /// The satellite id. /// The satellite id. /// Positive number public static double GetMaxRangeDistance(Guid sat_a, Guid sat_b) { if (RTCore.Instance == null) return 0.0; //sanity check var satelliteA = RTCore.Instance.Network.Where(sat => sat.Guid.Equals(sat_a)).FirstOrDefault(); var satelliteB = RTCore.Instance.Network.Where(sat => sat.Guid.Equals(sat_b)).FirstOrDefault(); if (satelliteA == null || satelliteB == null) return 0.0; //get link object NetworkLink link = null; switch (RTSettings.Instance.RangeModelType) { case RangeModel.RangeModel.Additive: link = RangeModelRoot.GetLink(satelliteA, satelliteB); break; default: link = RangeModelStandard.GetLink(satelliteA, satelliteB); break; } if (link == null) return 0.0; //no connection possible //get max distance out of multiple antenna connections var distance = 0.0; var maxDistance = 0.0; for(int i=0; i < link.Interfaces.Count; i++) { switch (RTSettings.Instance.RangeModelType) { case RangeModel.RangeModel.Additive: distance = RangeModelRoot.GetRangeInContext(link.Interfaces[i], satelliteB, satelliteA); break; default: distance = RangeModelStandard.GetRangeInContext(link.Interfaces[i], satelliteB, satelliteA); break; } maxDistance = Math.Max(maxDistance, Double.IsNaN(distance) ? 0.0 : distance); } return maxDistance; } /// /// Get the range distance between the satellites A and B. /// /// The satellite id. /// The satellite id. /// Positive number public static double GetRangeDistance(Guid sat_a, Guid sat_b) { if (RTCore.Instance == null) return 0.0; //sanity check var satelliteA = RTCore.Instance.Network.Where(sat => sat.Guid.Equals(sat_a)).FirstOrDefault(); var satelliteB = RTCore.Instance.Network.Where(sat => sat.Guid.Equals(sat_b)).FirstOrDefault(); if (satelliteA == null || satelliteB == null) return 0.0; return RangeModelExtensions.DistanceTo(satelliteA, satelliteB); } } } ================================================ FILE: src/RemoteTech/AddOns/KerbalAlarmClockAPI.cs ================================================ using RemoteTech.SimpleTypes; using System; using System.Reflection; // required by KAC using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using RemoteTech_KACWrapper; namespace RemoteTech.AddOns { /// /// This class connects to the KSP-Addon KerbalAlarmClock, created by triggerAU /// Topic: http://forum.kerbalspaceprogram.com/threads/24786 /// public class KerbalAlarmClockAddon : AddOn { public KerbalAlarmClockAddon() : base("KerbalAlarmClock", "KerbalAlarmClock.KerbalAlarmClock") { if (!AssemblyLoaded) return; KACWrapper.InitKACWrapper(); var message = KACWrapper.APIReady ? "KerbalAlarmClockAddon.loadInstance: Successfully loaded KAC!" : "KerbalAlarmClockAddon.loadInstance: Couldn't load Instance."; RTLog.Verbose(message, RTLogLevel.Assembly); } /// /// Create a new Alarm /// /// What type of alarm are we creating /// Name of the Alarm for the display /// Universal Time for the alarm /// The id of the vessel for which to set an alarm. /// ID of the newly created alarm or string.empty if alarm couldn't be created. public string CreateAlarm(KACWrapper.KACAPI.AlarmTypeEnum alarmType, string name, double UT, Guid vesselId) { // Is KaC Ready? if (!AssemblyLoaded && !KACWrapper.APIReady) return string.Empty; // create alarm and get its ID. var alarmId = KACWrapper.KAC.CreateAlarm(alarmType, name, UT); if (string.IsNullOrEmpty(alarmId)) return string.Empty; // find alarm from ID. var kacAlarm = KACWrapper.KAC.Alarms.Find(alarm => alarm.ID == alarmId); if (kacAlarm == null) return string.Empty; // set vessel ID in alarm (might be necessary for the "jump to ship" feature from the alarm). kacAlarm.VesselID = vesselId.ToString(); return alarmId; } /// /// Delete Alarm Method for calling via API /// /// Unique ID of the alarm /// true if alarm was deleted, false otherwise. public bool DeleteAlarm(string alarmId) { // Is KaC Ready? if (!AssemblyLoaded && !KACWrapper.APIReady) return false; return KACWrapper.KAC.DeleteAlarm(alarmId); } } } // this is a 1:1 copy of KACWrapper from https://github.com/TriggerAu/KerbalAlarmClock/blob/master/KerbalAlarmClock/API/KACWrapper.cs // see http://triggerau.github.io/KerbalAlarmClock/api.html for help namespace RemoteTech_KACWrapper { /////////////////////////////////////////////////////////////////////////////////////////// // BELOW HERE SHOULD NOT BE EDITED - this links to the loaded KAC module without requiring a Hard Dependancy /////////////////////////////////////////////////////////////////////////////////////////// /// /// The Wrapper class to access KAC from another plugin /// public class KACWrapper { protected static System.Type KACType; protected static System.Type KACAlarmType; protected static Object actualKAC = null; /// /// This is the Kerbal Alarm Clock object /// /// SET AFTER INIT /// public static KACAPI KAC = null; /// /// Whether we found the KerbalAlarmClock assembly in the loadedassemblies. /// /// SET AFTER INIT /// public static Boolean AssemblyExists { get { return (KACType != null); } } /// /// Whether we managed to hook the running Instance from the assembly. /// /// SET AFTER INIT /// public static Boolean InstanceExists { get { return (KAC != null); } } /// /// Whether we managed to wrap all the methods/functions from the instance. /// /// SET AFTER INIT /// private static Boolean _KACWrapped = false; /// /// Whether the object has been wrapped and the APIReady flag is set in the real KAC /// public static Boolean APIReady { get { return _KACWrapped && KAC.APIReady && !NeedUpgrade; } } public static Boolean NeedUpgrade { get; private set; } /// /// This method will set up the KAC object and wrap all the methods/functions /// /// This option will force the Init function to rebind everything /// public static Boolean InitKACWrapper() { //if (!_KACWrapped ) //{ //reset the internal objects _KACWrapped = false; actualKAC = null; KAC = null; LogFormatted("Attempting to Grab KAC Types..."); //find the base type AssemblyLoader.loadedAssemblies.TypeOperation(t => { if (t.FullName == "KerbalAlarmClock.KerbalAlarmClock") KACType = t; }); if (KACType == null) { return false; } LogFormatted("KAC Version:{0}", KACType.Assembly.GetName().Version.ToString()); if (KACType.Assembly.GetName().Version.CompareTo(new System.Version(3, 0, 0, 5)) < 0) { //No TimeEntry or alarmchoice options = need a newer version NeedUpgrade = true; } //now the Alarm Type KACAlarmType = AssemblyLoader.loadedAssemblies .Select(a => a.assembly.GetExportedTypes()) .SelectMany(t => t) .FirstOrDefault(t => t.FullName == "KerbalAlarmClock.KACAlarm"); if (KACAlarmType == null) { return false; } //now grab the running instance LogFormatted("Got Assembly Types, grabbing Instance"); try { actualKAC = KACType.GetField("APIInstance", BindingFlags.Public | BindingFlags.Static).GetValue(null); } catch (Exception) { NeedUpgrade = true; LogFormatted("No APIInstance found - most likely you have KAC v2 installed"); //throw; } if (actualKAC == null) { LogFormatted("Failed grabbing Instance"); return false; } //If we get this far we can set up the local object and its methods/functions LogFormatted("Got Instance, Creating Wrapper Objects"); KAC = new KACAPI(actualKAC); //} _KACWrapped = true; return true; } /// /// The Type that is an analogue of the real KAC. This lets you access all the API-able properties and Methods of the KAC /// public class KACAPI { internal KACAPI(Object KAC) { //store the actual object actualKAC = KAC; //these sections get and store the reflection info and actual objects where required. Later in the properties we then read the values from the actual objects //for events we also add a handler LogFormatted("Getting APIReady Object"); APIReadyField = KACType.GetField("APIReady", BindingFlags.Public | BindingFlags.Static); LogFormatted("Success: " + (APIReadyField != null).ToString()); //WORK OUT THE STUFF WE NEED TO HOOK FOR PEOPEL HERE LogFormatted("Getting Alarms Object"); AlarmsField = KACType.GetField("alarms", BindingFlags.Public | BindingFlags.Static); actualAlarms = AlarmsField.GetValue(actualKAC); LogFormatted("Success: " + (actualAlarms != null).ToString()); //Events LogFormatted("Getting Alarm State Change Event"); onAlarmStateChangedEvent = KACType.GetEvent("onAlarmStateChanged", BindingFlags.Public | BindingFlags.Instance); LogFormatted_DebugOnly("Success: " + (onAlarmStateChangedEvent != null).ToString()); LogFormatted_DebugOnly("Adding Handler"); AddHandler(onAlarmStateChangedEvent, actualKAC, AlarmStateChanged); //Methods LogFormatted("Getting Create Method"); CreateAlarmMethod = KACType.GetMethod("CreateAlarm", BindingFlags.Public | BindingFlags.Instance); LogFormatted_DebugOnly("Success: " + (CreateAlarmMethod != null).ToString()); LogFormatted("Getting Delete Method"); DeleteAlarmMethod = KACType.GetMethod("DeleteAlarm", BindingFlags.Public | BindingFlags.Instance); LogFormatted_DebugOnly("Success: " + (DeleteAlarmMethod != null).ToString()); LogFormatted("Getting DrawAlarmAction"); DrawAlarmActionChoiceMethod = KACType.GetMethod("DrawAlarmActionChoiceAPI", BindingFlags.Public | BindingFlags.Instance); LogFormatted_DebugOnly("Success: " + (DrawAlarmActionChoiceMethod != null).ToString()); //LogFormatted("Getting DrawTimeEntry"); //DrawTimeEntryMethod = KACType.GetMethod("DrawTimeEntryAPI", BindingFlags.Public | BindingFlags.Instance); //LogFormatted_DebugOnly("Success: " + (DrawTimeEntryMethod != null).ToString()); //Commenting out rubbish lines //MethodInfo[] mis = KACType.GetMethods(BindingFlags.Public | BindingFlags.Instance); //foreach (MethodInfo mi in mis) //{ // LogFormatted("M:{0}-{1}", mi.Name, mi.DeclaringType); //} } private Object actualKAC; private FieldInfo APIReadyField; /// /// Whether the APIReady flag is set in the real KAC /// public Boolean APIReady { get { if (APIReadyField == null) return false; return (Boolean)APIReadyField.GetValue(null); } } #region Alarms private Object actualAlarms; private FieldInfo AlarmsField; /// /// The list of Alarms that are currently active in game /// internal KACAlarmList Alarms { get { return ExtractAlarmList(actualAlarms); } } /// /// This converts the KACAlarmList actual object to a new List for consumption /// /// /// private KACAlarmList ExtractAlarmList(Object actualAlarmList) { KACAlarmList ListToReturn = new KACAlarmList(); try { //iterate each "value" in the dictionary foreach (var item in (IList)actualAlarmList) { KACAlarm r1 = new KACAlarm(item); ListToReturn.Add(r1); } } catch (Exception) { //LogFormatted("Arrggg: {0}", ex.Message); //throw ex; // } return ListToReturn; } #endregion #region Events /// /// Takes an EventInfo and binds a method to the event firing /// /// EventInfo of the event we want to attach to /// actual object the eventinfo is gathered from /// Method that we are going to hook to the event protected void AddHandler(EventInfo Event, Object KACObject, Action Handler) { //build a delegate Delegate d = Delegate.CreateDelegate(Event.EventHandlerType, Handler.Target, Handler.Method); //get the Events Add method MethodInfo addHandler = Event.GetAddMethod(); //and add the delegate addHandler.Invoke(KACObject, new System.Object[] { d }); } //the info about the event; private EventInfo onAlarmStateChangedEvent; /// /// Event that fires when the State of an Alarm changes /// public event AlarmStateChangedHandler onAlarmStateChanged; /// /// Structure of the event delegeate /// /// public delegate void AlarmStateChangedHandler(AlarmStateChangedEventArgs e); /// /// This is the structure that holds the event arguments /// public class AlarmStateChangedEventArgs { public AlarmStateChangedEventArgs(System.Object actualEvent, KACAPI kac) { Type type = actualEvent.GetType(); this.alarm = new KACAlarm(type.GetField("alarm").GetValue(actualEvent)); this.eventType = (KACAlarm.AlarmStateEventsEnum)type.GetField("eventType").GetValue(actualEvent); } /// /// Alarm that has had the state change /// public KACAlarm alarm; /// /// What the state was before the event /// public KACAlarm.AlarmStateEventsEnum eventType; } /// /// private function that grabs the actual event and fires our wrapped one /// /// actual event from the KAC private void AlarmStateChanged(object actualEvent) { if (onAlarmStateChanged != null) { onAlarmStateChanged(new AlarmStateChangedEventArgs(actualEvent, this)); } } #endregion #region Methods private MethodInfo CreateAlarmMethod; /// /// Create a new Alarm /// /// What type of alarm are we creating /// Name of the Alarm for the display /// Universal Time for the alarm /// ID of the newly created alarm internal String CreateAlarm(AlarmTypeEnum AlarmType, String Name, Double UT) { return (String)CreateAlarmMethod.Invoke(actualKAC, new System.Object[] { (Int32)AlarmType, Name, UT }); } private MethodInfo DeleteAlarmMethod; /// /// Delete an Alarm /// /// Unique ID of the alarm /// Success of the deletion internal Boolean DeleteAlarm(String AlarmID) { return (Boolean)DeleteAlarmMethod.Invoke(actualKAC, new System.Object[] { AlarmID }); } private MethodInfo DrawAlarmActionChoiceMethod; /// /// Delete an Alarm /// /// Unique ID of the alarm /// Success of the deletion internal Boolean DrawAlarmActionChoice(ref AlarmActionEnum Choice, String LabelText, Int32 LabelWidth, Int32 ButtonWidth) { Int32 InValue = (Int32)Choice; Int32 OutValue = (Int32)DrawAlarmActionChoiceMethod.Invoke(actualKAC, new System.Object[] { InValue, LabelText, LabelWidth, ButtonWidth }); Choice = (AlarmActionEnum)OutValue; return (InValue != OutValue); } //Remmed out due to it borking window layout //private MethodInfo DrawTimeEntryMethod; ///// ///// Delete an Alarm ///// ///// Unique ID of the alarm ///// Success of the deletion //internal Boolean DrawTimeEntry(ref Double Time, TimeEntryPrecisionEnum Prec, String LabelText, Int32 LabelWidth) //{ // Double InValue = Time; // Double OutValue = (Double)DrawTimeEntryMethod.Invoke(actualKAC, new System.Object[] { InValue, (Int32)Prec, LabelText, LabelWidth }); // Time = OutValue; // return (InValue != OutValue); //} #endregion public class KACAlarm { internal KACAlarm(Object a) { actualAlarm = a; VesselIDField = KACAlarmType.GetField("VesselID"); IDField = KACAlarmType.GetField("ID"); NameField = KACAlarmType.GetField("Name"); NotesField = KACAlarmType.GetField("Notes"); AlarmTypeField = KACAlarmType.GetField("TypeOfAlarm"); AlarmTimeProperty = KACAlarmType.GetProperty("AlarmTimeUT"); AlarmMarginField = KACAlarmType.GetField("AlarmMarginSecs"); AlarmActionField = KACAlarmType.GetField("AlarmAction"); RemainingField = KACAlarmType.GetField("Remaining"); XferOriginBodyNameField = KACAlarmType.GetField("XferOriginBodyName"); //LogFormatted("XFEROrigin:{0}", XferOriginBodyNameField == null); XferTargetBodyNameField = KACAlarmType.GetField("XferTargetBodyName"); RepeatAlarmField = KACAlarmType.GetField("RepeatAlarm"); RepeatAlarmPeriodProperty = KACAlarmType.GetProperty("RepeatAlarmPeriodUT"); //PropertyInfo[] pis = KACAlarmType.GetProperties(); //foreach (PropertyInfo pi in pis) //{ // LogFormatted("P:{0}-{1}", pi.Name, pi.DeclaringType); //} //FieldInfo[] fis = KACAlarmType.GetFields(); //foreach (FieldInfo fi in fis) //{ // LogFormatted("F:{0}-{1}", fi.Name, fi.DeclaringType); //} } private Object actualAlarm; private FieldInfo VesselIDField; /// /// Unique Identifier of the Vessel that the alarm is attached to /// public String VesselID { get { return (String)VesselIDField.GetValue(actualAlarm); } set { VesselIDField.SetValue(actualAlarm, value); } } private FieldInfo IDField; /// /// Unique Identifier of this alarm /// public String ID { get { return (String)IDField.GetValue(actualAlarm); } } private FieldInfo NameField; /// /// Short Text Name for the Alarm /// public String Name { get { return (String)NameField.GetValue(actualAlarm); } set { NameField.SetValue(actualAlarm, value); } } private FieldInfo NotesField; /// /// Longer Text Description for the Alarm /// public String Notes { get { return (String)NotesField.GetValue(actualAlarm); } set { NotesField.SetValue(actualAlarm, value); } } private FieldInfo XferOriginBodyNameField; /// /// Name of the origin body for a transfer /// public String XferOriginBodyName { get { return (String)XferOriginBodyNameField.GetValue(actualAlarm); } set { XferOriginBodyNameField.SetValue(actualAlarm, value); } } private FieldInfo XferTargetBodyNameField; /// /// Name of the destination body for a transfer /// public String XferTargetBodyName { get { return (String)XferTargetBodyNameField.GetValue(actualAlarm); } set { XferTargetBodyNameField.SetValue(actualAlarm, value); } } private FieldInfo AlarmTypeField; /// /// What type of Alarm is this - affects icon displayed and some calc options /// public AlarmTypeEnum AlarmType { get { return (AlarmTypeEnum)AlarmTypeField.GetValue(actualAlarm); } } private PropertyInfo AlarmTimeProperty; /// /// In game UT value of the alarm /// public Double AlarmTime { get { return (Double)AlarmTimeProperty.GetValue(actualAlarm, null); } set { AlarmTimeProperty.SetValue(actualAlarm, value, null); } } private FieldInfo AlarmMarginField; /// /// In game seconds the alarm will fire before the event it is for /// public Double AlarmMargin { get { return (Double)AlarmMarginField.GetValue(actualAlarm); } set { AlarmMarginField.SetValue(actualAlarm, value); } } private FieldInfo AlarmActionField; /// /// What should the Alarm Clock do when the alarm fires /// public AlarmActionEnum AlarmAction { get { return (AlarmActionEnum)AlarmActionField.GetValue(actualAlarm); } set { AlarmActionField.SetValue(actualAlarm, (Int32)value); } } private FieldInfo RemainingField; /// /// How much Game time is left before the alarm fires /// public Double Remaining { get { return (Double)RemainingField.GetValue(actualAlarm); } } private FieldInfo RepeatAlarmField; /// /// Whether the alarm will be repeated after it fires /// public Boolean RepeatAlarm { get { return (Boolean)RepeatAlarmField.GetValue(actualAlarm); } set { RepeatAlarmField.SetValue(actualAlarm, value); } } private PropertyInfo RepeatAlarmPeriodProperty; /// /// Value in Seconds after which the alarm will repeat /// public Double RepeatAlarmPeriod { get { try { return (Double)RepeatAlarmPeriodProperty.GetValue(actualAlarm, null); } catch (Exception) { return 0; } } set { RepeatAlarmPeriodProperty.SetValue(actualAlarm, value, null); } } public enum AlarmStateEventsEnum { Created, Triggered, Closed, Deleted, } } public enum AlarmTypeEnum { Raw, Maneuver, ManeuverAuto, Apoapsis, Periapsis, AscendingNode, DescendingNode, LaunchRendevous, Closest, SOIChange, SOIChangeAuto, Transfer, TransferModelled, Distance, Crew, EarthTime, Contract, ContractAuto, ScienceLab } public enum AlarmActionEnum { [Description("Do Nothing-Delete When Past")] DoNothingDeleteWhenPassed, [Description("Do Nothing")] DoNothing, [Description("Message Only-No Affect on warp")] MessageOnly, [Description("Kill Warp Only-No Message")] KillWarpOnly, [Description("Kill Warp and Message")] KillWarp, [Description("Pause Game and Message")] PauseGame, } public enum TimeEntryPrecisionEnum { Seconds = 0, Minutes = 1, Hours = 2, Days = 3, Years = 4 } public class KACAlarmList : List { } } #region Logging Stuff /// /// Some Structured logging to the debug file - ONLY RUNS WHEN DLL COMPILED IN DEBUG MODE /// /// Text to be printed - can be formatted as per String.format /// Objects to feed into a String.format [System.Diagnostics.Conditional("DEBUG")] internal static void LogFormatted_DebugOnly(String Message, params Object[] strParams) { LogFormatted(Message, strParams); } /// /// Some Structured logging to the debug file /// /// Text to be printed - can be formatted as per String.format /// Objects to feed into a String.format internal static void LogFormatted(String Message, params Object[] strParams) { Message = String.Format(Message, strParams); String strMessageLine = String.Format("{0},{2}-{3},{1}", DateTime.Now, Message, System.Reflection.Assembly.GetExecutingAssembly().GetName().Name, System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.Name); UnityEngine.Debug.Log(strMessageLine); } #endregion } } ================================================ FILE: src/RemoteTech/AddOns/Kerbalism.cs ================================================ using System; namespace RemoteTech.AddOns { /// Simple class to detect if Kerbalism is loaded public static class Kerbalism { private static readonly Type API; // constructor static Kerbalism() { foreach (AssemblyLoader.LoadedAssembly a in AssemblyLoader.loadedAssemblies) { if (a.name == "Kerbalism") { API = a.assembly.GetType("KERBALISM.API"); break; } } } /// Returns true if Kerbalism is detected for the current game public static bool Exists { get { return API != null; } } } } ================================================ FILE: src/RemoteTech/AntennaManager.cs ================================================ using System; using System.Linq; using System.Collections; using System.Collections.Generic; using RemoteTech.Modules; namespace RemoteTech { /// /// Class keeping track of RemoteTech antennas. /// Acts as a list of antennas managed by RemoteTech. /// public class AntennaManager : IDisposable, IEnumerable { public event Action OnRegister = delegate { }; public event Action OnUnregister = delegate { }; public IEnumerable this[ISatellite s] { get { return For(s.Guid); } } public IEnumerable this[Vessel v] { get { return For(v.id); } } public IEnumerable this[Guid g] { get { return For(g); } } private readonly Dictionary> mLoadedAntennaCache = new Dictionary>(); private readonly Dictionary> mProtoAntennaCache = new Dictionary>(); public AntennaManager() { GameEvents.onVesselGoOnRails.Add(OnVesselGoOnRails); OnRegister += a => RTLog.Notify("AntennaManager: OnRegister({0})", a.Name); OnUnregister += a => RTLog.Notify("AntennaManager: OnUnregister({0})", a.Name); } public void Dispose() { GameEvents.onVesselGoOnRails.Remove(OnVesselGoOnRails); } public void Register(Guid key, IAntenna antenna) { RTLog.Notify("AntennaManager: Register({0})", antenna); if (!mLoadedAntennaCache.ContainsKey(key)) { mLoadedAntennaCache[key] = new List(); } IAntenna instance = mLoadedAntennaCache[key].Find(a => a == antenna); if (instance == null) { if (mProtoAntennaCache.ContainsKey(key)) { UnregisterProtos(key); } mLoadedAntennaCache[key].Add(antenna); OnRegister.Invoke(antenna); } } public void Unregister(Guid key, IAntenna antenna) { RTLog.Notify("AntennaManager: Unregister({0})", antenna); if (!mLoadedAntennaCache.ContainsKey(key)) return; int instance_id = mLoadedAntennaCache[key].FindIndex(x => x == antenna); if (instance_id != -1) { mLoadedAntennaCache[key].RemoveAt(instance_id); if (mLoadedAntennaCache[key].Count == 0) { mLoadedAntennaCache.Remove(key); } OnUnregister(antenna); Vessel vessel = RTUtil.GetVesselById(key); if (vessel != null) { // trigger the onRails on more time // to reregister the antenna as a protoSat this.OnVesselGoOnRails(vessel); } } } public void RegisterProtos(Vessel v) { Guid key = v.id; RTLog.Notify("AntennaManager: RegisterProtos({0}, {1})", v.vesselName, key); if (mLoadedAntennaCache.ContainsKey(key)) return; foreach (ProtoPartSnapshot pps in v.protoVessel.protoPartSnapshots) { foreach (ProtoPartModuleSnapshot ppms in pps.modules.Where(ppms => ppms.IsAntenna())) { if (!mProtoAntennaCache.ContainsKey(key)) { mProtoAntennaCache[key] = new List(); } ProtoAntenna proto = new ProtoAntenna(v, pps, ppms); mProtoAntennaCache[key].Add(proto); OnRegister(proto); } } } public void UnregisterProtos(Guid key) { RTLog.Notify("AntennaManager: UnregisterProtos({0})", key); if (!mProtoAntennaCache.ContainsKey(key)) return; foreach (IAntenna a in mProtoAntennaCache[key]) { OnUnregister.Invoke(a); } mProtoAntennaCache.Remove(key); } private IEnumerable For(Guid key) { if (mLoadedAntennaCache.ContainsKey(key)) { return mLoadedAntennaCache[key]; } if (mProtoAntennaCache.ContainsKey(key)) { return mProtoAntennaCache[key]; } return Enumerable.Empty(); } private void OnVesselGoOnRails(Vessel v) { if (v.parts.Count == 0) { RegisterProtos(v); } } public IEnumerator GetEnumerator() { return mLoadedAntennaCache.Values.SelectMany(l => l).Concat( mProtoAntennaCache.Values.SelectMany(l => l)).GetEnumerator(); } IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } } public static partial class RTUtil { public static bool IsAntenna(this ProtoPartModuleSnapshot ppms) { return ppms.GetBool("IsRTAntenna") && ppms.GetBool("IsRTPowered") && ppms.GetBool("IsRTActive"); } public static bool IsAntenna(this PartModule pm) { return pm.Fields.GetValue("IsRTAntenna") && pm.Fields.GetValue("IsRTPowered") && pm.Fields.GetValue("IsRTActive"); } } } ================================================ FILE: src/RemoteTech/FlightComputer/Commands/AbstractCommand.cs ================================================ using System; using KSP.Localization; namespace RemoteTech.FlightComputer.Commands { public abstract class AbstractCommand : ICommand { public double TimeStamp { get; set; } public double ExtraDelayScheduledTimeStamp { get; set; } public Guid CmdGuid { get; private set; } public virtual double ExtraDelay { get; set; } public virtual double Delay { get { return Math.Max(TimeStamp - RTUtil.GameTime, 0); } } public virtual String Description { get { double delay = this.Delay; if (delay > 0 || ExtraDelay > 0) { var extra = ExtraDelay > 0 ? String.Format("{0} + {1}", RTUtil.FormatDuration(delay), RTUtil.FormatDuration(ExtraDelay)) : RTUtil.FormatDuration(delay); return Localizer.Format("#RT_Command_Signaldelay") + " " + extra;//"Signal delay: " } return ""; } } public abstract String ShortName { get; } public virtual int Priority { get { return 255; } } /// /// Creates a new Guid for the current command /// public AbstractCommand() { this.CmdGuid = Guid.NewGuid(); } // true: move to active. public virtual bool Pop(FlightComputer f) { return false; } // true: delete afterwards. public virtual bool Execute(FlightComputer f, FlightCtrlState fcs) { return true; } public virtual void Abort() { } public int CompareTo(ICommand dc) { return TimeStamp.CompareTo(dc.TimeStamp); } /// /// Save the basic informations for every command. /// /// Node to save in /// Current flightcomputer public virtual void Save(ConfigNode node, FlightComputer computer) { try { // try to serialize 'this' ConfigNode.CreateConfigFromObject(this, 0, node); } catch (Exception) {} if (this.Delay == 0) { // only save the current gametime if we have no signal delay. // We need this to calculate the correct delta time for the // ExtraDelay if we come back to this satellite. this.TimeStamp = RTUtil.GameTime; } node.AddValue("TimeStamp", this.TimeStamp); node.AddValue("ExtraDelayScheduledTimeStamp", this.ExtraDelayScheduledTimeStamp); node.AddValue("ExtraDelay", this.ExtraDelay); node.AddValue("CmdGuid", this.CmdGuid); } /// /// Load the basic informations for every command. /// /// Node with the command infos /// Current flightcomputer /// true - loaded successfull public virtual bool Load(ConfigNode n, FlightComputer fc) { // nothing if (n.HasValue("TimeStamp")) { TimeStamp = double.Parse(n.GetValue("TimeStamp")); } if (n.HasValue("ExtraDelayScheduledTimeStamp")) { ExtraDelayScheduledTimeStamp = double.Parse(n.GetValue("ExtraDelayScheduledTimeStamp")); } if (n.HasValue("ExtraDelay")) { ExtraDelay = double.Parse(n.GetValue("ExtraDelay")); } if (n.HasValue("CmdGuid")) { this.CmdGuid = new Guid(n.GetValue("CmdGuid")); } return true; } /// /// Load and creates a command after saving a command. Returns null if no object /// has been loaded. /// /// Node with the command infos /// Current flightcomputer public static ICommand LoadCommand(ConfigNode n, FlightComputer fc) { ICommand command = null; // switch the different commands switch (n.name) { case "AttitudeCommand": { command = new AttitudeCommand(); break; } case "ActionGroupCommand": { command = new ActionGroupCommand(); break; } case "BurnCommand": { command = new BurnCommand(); break; } case "ManeuverCommand": { command = new ManeuverCommand(); break; } case "CancelCommand": { command = new CancelCommand(); break; } case "TargetCommand": { command = new TargetCommand(); break; } case "EventCommand": { command = new EventCommand(); break; } case "DriveCommand": { command = new DriveCommand(); break; } case "ExternalAPICommand": { command = new ExternalAPICommand(); break; } case "PartActionCommand": { command = new PartActionCommand(); break; } case "StockAutopilotCommand": { command = new StockAutopilotCommand(); break; } case "HibernationCommand": { command = new HibernationCommand(); break; } case "AxisGroupCommand": { command = new AxisGroupCommand(); break; } case "PIDCommand": { command = new PIDCommand(); break; } case "FlightControlCommand": { command = new FlightControlCommand(); break; } } if (command != null) { ConfigNode.LoadObjectFromConfig(command, n); // additional loadings var result = command.Load(n, fc); RTLog.Verbose("Loading command {0}({1})={2}", RTLogLevel.LVL1, n.name, command.CmdGuid, result); // delete command if we can't load the command correctlys if (result == false) command = null; } return command; } /// /// This method will be triggerd right after the command was enqueued to /// the flight computer list. /// /// Current flightcomputer public virtual void CommandEnqueued(FlightComputer computer) { } /// /// This method will be triggerd after deleting a command from the list. /// /// Current flight computer public virtual void CommandCanceled(FlightComputer computer) { } } } ================================================ FILE: src/RemoteTech/FlightComputer/Commands/ActionGroupCommand.cs ================================================ using System; namespace RemoteTech.FlightComputer.Commands { public class ActionGroupCommand : AbstractCommand { [Persistent] public KSPActionGroup ActionGroup; public override string Description { get { return ShortName + Environment.NewLine + base.Description; } } public override string ShortName { get { return "Toggle Action Group " + ActionGroup; } } public override bool Pop(FlightComputer f) { f.Vessel.ActionGroups.ToggleGroup(ActionGroup); if (ActionGroup == KSPActionGroup.Stage && !(f.Vessel == FlightGlobals.ActiveVessel && FlightInputHandler.fetch.stageLock)) { try { KSP.UI.Screens.StageManager.ActivateNextStage(); } catch(Exception ex) { RTLog.Notify("Exception during ActivateNextStage(): " + ex.Message, RTLogLevel.LVL4); } KSP.UI.Screens.ResourceDisplay.Instance.Refresh(); } if (ActionGroup == KSPActionGroup.RCS && f.Vessel == FlightGlobals.ActiveVessel) { FlightInputHandler.fetch.rcslock = !FlightInputHandler.RCSLock; } return false; } public static ActionGroupCommand WithGroup(KSPActionGroup group) { return new ActionGroupCommand() { ActionGroup = group, TimeStamp = RTUtil.GameTime, }; } } } ================================================ FILE: src/RemoteTech/FlightComputer/Commands/AttitudeCommand.cs ================================================ using System; using System.Collections.Generic; using UnityEngine; using KSP.Localization; namespace RemoteTech.FlightComputer.Commands { public enum FlightMode { Off, KillRot, AttitudeHold, AltitudeHold, Rover, } public enum FlightAttitude { Null, Prograde, Retrograde, NormalPlus, NormalMinus, RadialPlus, RadialMinus, Surface, } public enum ReferenceFrame { Orbit, Surface, TargetVelocity, TargetParallel, North, Maneuver, World, } public class AttitudeCommand : AbstractCommand { public static readonly Dictionary FormatMode = new Dictionary() { { FlightMode.Off, Localizer.Format("#RT_AttitudeCommand_Off") },//"Mode: Off" { FlightMode.KillRot, Localizer.Format("#RT_AttitudeCommand_Killrotation") },//"Mode: Kill rotation" { FlightMode.AttitudeHold, Localizer.Format("#RT_AttitudeCommand_Hold") + " {0} {1}" },//"Mode: Hold" { FlightMode.AltitudeHold, Localizer.Format("#RT_AttitudeCommand_Hold") + " {0}" },//"Mode: Hold" { FlightMode.Rover, "" }, }; public static readonly Dictionary FormatAttitude = new Dictionary() { { FlightAttitude.Prograde, Localizer.Format("#RT_AttitudeCommand_Prograde") },//"Prograde" { FlightAttitude.Retrograde, Localizer.Format("#RT_AttitudeCommand_Retrograde") },//"Retrograde" { FlightAttitude.RadialMinus, Localizer.Format("#RT_AttitudeCommand_RadialMinus") },//"Radial -" { FlightAttitude.RadialPlus, Localizer.Format("#RT_AttitudeCommand_RadialPlus") },//"Radial +" { FlightAttitude.NormalMinus, Localizer.Format("#RT_AttitudeCommand_NormalMinus") },//"Normal -" { FlightAttitude.NormalPlus, Localizer.Format("#RT_AttitudeCommand_NormalPlus") },//"Normal +" { FlightAttitude.Surface, Localizer.Format("#RT_AttitudeCommand_Direction") },//"Direction" }; public static readonly Dictionary FormatReference = new Dictionary() { { ReferenceFrame.Orbit, Localizer.Format("#RT_AttitudeCommand_Orbit") },//"OBT" { ReferenceFrame.Surface, Localizer.Format("#RT_AttitudeCommand_Surface") },//"SRF" { ReferenceFrame.TargetVelocity, Localizer.Format("#RT_AttitudeCommand_TargetVelocity") },//"RVEL" { ReferenceFrame.TargetParallel, Localizer.Format("#RT_AttitudeCommand_TargetParallel") },//"TGT" { ReferenceFrame.North, Localizer.Format("#RT_AttitudeCommand_North") },//"North" { ReferenceFrame.Maneuver, Localizer.Format("#RT_AttitudeCommand_Maneuver") },//"Maneuver" { ReferenceFrame.World, Localizer.Format("#RT_AttitudeCommand_World") },//"World" }; [Persistent] public FlightMode Mode; [Persistent] public FlightAttitude Attitude; [Persistent] public ReferenceFrame Frame; [Persistent] public Quaternion Orientation; [Persistent] public float Altitude; public override int Priority { get { return 0; } } public override string Description { get { return ShortName + Environment.NewLine + base.Description; } } public override string ShortName { get { String res = ""; switch (Mode) { default: res = FormatMode[Mode]; break; case FlightMode.AltitudeHold: res = String.Format(FormatMode[Mode], RTUtil.FormatSI(Altitude, "m")); break; case FlightMode.AttitudeHold: if (Attitude == FlightAttitude.Surface) { res = String.Format(FormatMode[Mode], Orientation.eulerAngles.x.ToString("F1") + "°, " + (360 - Orientation.eulerAngles.y).ToString("F1") + "°, " + RTUtil.Format360To180(180 - Orientation.eulerAngles.z).ToString("F1") + "°", ""); break; } res = String.Format(FormatMode[Mode], FormatReference[Frame], FormatAttitude[Attitude]); break; } return res; } } private bool mAbort; public override bool Pop(FlightComputer f) { if (Mode == FlightMode.KillRot) { Orientation = f.Vessel.transform.rotation; } f.PIDController.setPIDParameters(FlightComputer.PIDKp, FlightComputer.PIDKi, FlightComputer.PIDKd); return true; } public override bool Execute(FlightComputer f, FlightCtrlState fcs) { if (mAbort) { Mode = FlightMode.Off; mAbort = false; } switch (Mode) { case FlightMode.Off: break; case FlightMode.KillRot: FlightCore.HoldOrientation(fcs, f, Orientation * Quaternion.AngleAxis(90, Vector3.left)); break; case FlightMode.AttitudeHold: FlightCore.HoldAttitude(fcs, f, Frame, Attitude, Orientation); break; case FlightMode.AltitudeHold: break; } return false; } public override void Abort() { mAbort = true; } public static AttitudeCommand Off() { return new AttitudeCommand() { Mode = FlightMode.Off, Attitude = FlightAttitude.Prograde, Frame = ReferenceFrame.World, Orientation = Quaternion.identity, Altitude = Single.NaN, TimeStamp = RTUtil.GameTime, }; } public static AttitudeCommand KillRot() { return new AttitudeCommand() { Mode = FlightMode.KillRot, Attitude = FlightAttitude.Prograde, Frame = ReferenceFrame.World, Orientation = Quaternion.identity, Altitude = Single.NaN, TimeStamp = RTUtil.GameTime, }; } public static AttitudeCommand ManeuverNode(double timetoexec = 0) { return new AttitudeCommand() { Mode = FlightMode.AttitudeHold, Attitude = FlightAttitude.Prograde, Frame = ReferenceFrame.Maneuver, Orientation = Quaternion.identity, Altitude = Single.NaN, TimeStamp = (timetoexec == 0) ? RTUtil.GameTime:timetoexec, }; } public static AttitudeCommand WithAttitude(FlightAttitude att, ReferenceFrame frame) { return new AttitudeCommand() { Mode = FlightMode.AttitudeHold, Attitude = att, Frame = frame, Orientation = Quaternion.identity, Altitude = Single.NaN, TimeStamp = RTUtil.GameTime, }; } public static AttitudeCommand WithAltitude(float height) { return new AttitudeCommand() { Mode = FlightMode.AltitudeHold, Attitude = FlightAttitude.Prograde, Frame = ReferenceFrame.North, Orientation = Quaternion.identity, Altitude = height, TimeStamp = RTUtil.GameTime, }; } public static AttitudeCommand WithSurface(double pitch, double yaw, double roll) { Quaternion rotation = Quaternion.Euler(new Vector3d(Double.IsNaN(pitch) ? 0 : pitch, Double.IsNaN(yaw) ? 0 : -yaw, Double.IsNaN(roll) ? 0 : 180 - roll)); return new AttitudeCommand() { Mode = FlightMode.AttitudeHold, Attitude = FlightAttitude.Surface, Frame = ReferenceFrame.North, Orientation = rotation, Altitude = Single.NaN, TimeStamp = RTUtil.GameTime, }; } /// /// Convert this AttitudeCommand values to a ComputerMode /// public SimpleTypes.ComputerModeMapper mapFlightMode() { SimpleTypes.ComputerModeMapper computerMode = new SimpleTypes.ComputerModeMapper(); computerMode.mapFlightMode(Mode,Attitude,Frame); return computerMode; } } } ================================================ FILE: src/RemoteTech/FlightComputer/Commands/AxisGroupCommand.cs ================================================ using System; namespace RemoteTech.FlightComputer.Commands { public class AxisGroupCommand : AbstractCommand { #if !KSP131 [Persistent] public KSPAxisGroup AxisGroup; [Persistent] public float AxisValue; #endif public override string Description { get { return ShortName + Environment.NewLine + base.Description; } } public override string ShortName { get { #if KSP131 return "Unavailable in KSP 1.3.1"; #else return "Press Axis Group " + AxisGroup + " with value " + AxisValue; #endif } } public override bool Pop(FlightComputer f) { #if !KSP131 for (int i = 0; i < f.Vessel.vesselModules.Count; i++) { if (f.Vessel.vesselModules[i] is AxisGroupsModule) { var agModule = f.Vessel.vesselModules[i] as AxisGroupsModule; agModule.UpdateAxisGroup(AxisGroup, AxisValue); } } #endif return false; } #if !KSP131 public static AxisGroupCommand WithGroup(KSPAxisGroup group, float value) { return new AxisGroupCommand() { AxisGroup = group, AxisValue = value, TimeStamp = RTUtil.GameTime, }; } #endif } } ================================================ FILE: src/RemoteTech/FlightComputer/Commands/BurnCommand.cs ================================================ using System; namespace RemoteTech.FlightComputer.Commands { public class BurnCommand : AbstractCommand { [Persistent] public float Throttle; [Persistent] public double Duration; [Persistent] public double DeltaV; [Persistent] public string KaCItemId = string.Empty; public override int Priority { get { return 2; } } public override String Description { get { return String.Format("Burn {0}, {1}", Throttle.ToString("P2"), burnLength()) + Environment.NewLine + base.Description; } } public override string ShortName { get { return String.Format("Execute burn for {0}", burnLength()); } } private string burnLength() { return Duration > 0 ? RTUtil.FormatDuration(Duration) : (DeltaV.ToString("F2") + "m/s"); } private bool mAbort; public override bool Pop(FlightComputer f) { return true; } public override bool Execute(FlightComputer f, FlightCtrlState fcs) { if (mAbort) { fcs.mainThrottle = 0.0f; return true; } if (Duration > 0) { fcs.mainThrottle = Throttle; Duration -= TimeWarp.deltaTime; } else if (DeltaV > 0) { fcs.mainThrottle = Throttle; DeltaV -= (Throttle * FlightCore.GetTotalThrust(f.Vessel) / f.Vessel.GetTotalMass()) * TimeWarp.deltaTime; } else { fcs.mainThrottle = 0.0f; return true; } return false; } /// /// Returns the total time for this burn in seconds /// /// Flightcomputer for the current vessel /// max burn time public double getMaxBurnTime(FlightComputer f) { if (Duration > 0) return Duration; return DeltaV / (Throttle * FlightCore.GetTotalThrust(f.Vessel) / f.Vessel.GetTotalMass()); } public override void Abort() { mAbort = true; } public static BurnCommand Off() { return new BurnCommand() { Throttle = Single.NaN, Duration = 0, DeltaV = 0, TimeStamp = RTUtil.GameTime, }; } public static BurnCommand WithDuration(float throttle, double duration) { return new BurnCommand() { Throttle = throttle, Duration = duration, DeltaV = 0, TimeStamp = RTUtil.GameTime, }; } public static BurnCommand WithDeltaV(float throttle, double delta) { return new BurnCommand() { Throttle = throttle, Duration = 0, DeltaV = delta, TimeStamp = RTUtil.GameTime, }; } /// /// This method will be triggerd right after the command was enqueued to /// the flight computer list. /// /// Current flightcomputer public override void CommandEnqueued(FlightComputer computer) { var timetoexec = (TimeStamp + ExtraDelay) - 180; // only insert if we've no negative time and the option is set if (!(timetoexec - RTUtil.GameTime > 0) || !RTSettings.Instance.AutoInsertKaCAlerts) return; // set kac alarm label var kaCAddonLabel = "Burn " + computer.Vessel.vesselName + " for "; if (Duration > 0) kaCAddonLabel += RTUtil.FormatDuration(this.Duration); else kaCAddonLabel += this.DeltaV; // create the alarm if (RTCore.Instance != null && RTCore.Instance.KacAddon != null) { KaCItemId = RTCore.Instance.KacAddon.CreateAlarm(RemoteTech_KACWrapper.KACWrapper.KACAPI.AlarmTypeEnum.Raw, kaCAddonLabel, timetoexec, computer.Vessel.id); } } /// /// This method will be triggerd after deleting a command from the list. /// /// Current flight computer public override void CommandCanceled(FlightComputer computer) { if (KaCItemId == string.Empty || RTCore.Instance == null || RTCore.Instance.KacAddon == null) return; // Cancel also the kac entry RTCore.Instance.KacAddon.DeleteAlarm(KaCItemId); KaCItemId = string.Empty; } } } ================================================ FILE: src/RemoteTech/FlightComputer/Commands/CancelCommand.cs ================================================ using System; using System.Linq; namespace RemoteTech.FlightComputer.Commands { public class CancelCommand : AbstractCommand { public override double ExtraDelay { get { return base.ExtraDelay; } set { return; } } private Guid CancelCmdGuid; public override string Description { get { return "Cancelling a command." + Environment.NewLine + base.Description; } } public override string ShortName { get { return "Cancel command"; } } public override bool Pop(FlightComputer computer) { if (this.CancelCmdGuid != Guid.Empty) { this.cancelQueuedCommand(this.CancelCmdGuid, computer); } else { // we've no CancelCmdGuid for an active command. But // maybe we'll use this later this.cancelActiveCommand(this.CancelCmdGuid, computer); } return false; } public static CancelCommand WithCommand(ICommand cmd) { return new CancelCommand() { CancelCmdGuid = cmd.CmdGuid, TimeStamp = RTUtil.GameTime, }; } public static CancelCommand ResetActive() { return new CancelCommand() { CancelCmdGuid = Guid.Empty, TimeStamp = RTUtil.GameTime, }; } /// /// Load the saved CancelCommand and find the element to cancel, based on the saved queue position /// /// true - loaded successfull public override bool Load(ConfigNode n, FlightComputer computer) { if(base.Load(n, computer)) { if (n.HasValue("CancelCmdGuid")) { this.CancelCmdGuid = new Guid(n.GetValue("CancelCmdGuid")); } // old way to cancel a command if (n.HasValue("queueIndex")) { try { int queueIndex = int.Parse(n.GetValue("queueIndex")); // try to find the command to cancel this.CancelCmdGuid = computer.QueuedCommands.ElementAt(queueIndex).CmdGuid; } catch (Exception) { } } // loaded successfull if (this.CancelCmdGuid != Guid.Empty) return true; } return false; } /// /// Saves the queue index for this command to the persist /// public override void Save(ConfigNode n, FlightComputer computer) { base.Save(n, computer); n.AddValue("CancelCmdGuid", this.CancelCmdGuid); } /// /// Cancels a queued command by it's guid /// /// Guid for the command to cancel /// Current flightcomputer /// True if we canceld the command private bool cancelQueuedCommand(Guid cmdGuid, FlightComputer computer) { ICommand searchCmd = computer.QueuedCommands.Where(cmd => cmd.CmdGuid == cmdGuid).FirstOrDefault(); if (searchCmd != null) { searchCmd.CommandCanceled(computer); computer.Remove(searchCmd); return true; } return false; } /// /// Cancels the current active command. /// /// Unused right now /// Current flightcomputer /// private bool cancelActiveCommand(Guid cmdGuid, FlightComputer computer) { computer.Reset(); return true; } } } ================================================ FILE: src/RemoteTech/FlightComputer/Commands/DriveCommand.cs ================================================ using System; using System.Text; using UnityEngine; namespace RemoteTech.FlightComputer.Commands { public class DriveCommand : AbstractCommand { public enum DriveMode { Off, Turn, Distance, DistanceHeading, Coord } [Persistent] public float steering; [Persistent] public float target; [Persistent] public float target2; [Persistent] public float speed; [Persistent] public DriveMode mode; private bool mAbort; private RoverComputer mRoverComputer; public override void Abort() { mAbort = true; } public override bool Pop(FlightComputer f) { mRoverComputer = f.RoverComputer; mRoverComputer.InitMode(this); return true; } public override bool Execute(FlightComputer f, FlightCtrlState fcs) { if (mAbort) { fcs.wheelThrottle = 0.0f; f.Vessel.ActionGroups.SetGroup(KSPActionGroup.Brakes, true); return true; } return f.RoverComputer.Drive(this, fcs); } public static DriveCommand Off() { return new DriveCommand() { mode = DriveMode.Off, TimeStamp = RTUtil.GameTime }; } public static DriveCommand Turn(float steering, float degrees, float speed) { return new DriveCommand() { mode = DriveMode.Turn, steering = steering, target = degrees, speed = speed, TimeStamp = RTUtil.GameTime }; } public static DriveCommand Distance(float distance, float steerClamp, float speed) { return new DriveCommand() { mode = DriveMode.Distance, steering = steerClamp, target = distance, speed = speed, TimeStamp = RTUtil.GameTime }; } public static DriveCommand DistanceHeading(float distance, float heading, float steerClamp, float speed) { return new DriveCommand() { mode = DriveMode.DistanceHeading, steering = steerClamp, target = distance, target2 = heading, speed = speed, TimeStamp = RTUtil.GameTime }; } public static DriveCommand Coord(float steerClamp, float latitude, float longitude, float speed) { return new DriveCommand() { mode = DriveMode.Coord, steering = steerClamp, target = latitude, target2 = longitude, speed = speed, TimeStamp = RTUtil.GameTime }; } public override String Description { get { StringBuilder s = new StringBuilder(); switch (mode) { case DriveMode.Coord: s.Append("Drive to: "); s.Append(new Vector2(target, target2).ToString("0.000")); s.Append(" @ "); s.Append(RTUtil.FormatSI(Math.Abs(speed), "m/s")); if (mRoverComputer != null) { s.Append(" ("); s.Append(RTUtil.FormatSI(mRoverComputer.Delta, "m")); s.Append(" "); s.Append(RTUtil.FormatDuration(mRoverComputer.DeltaT, false)); s.Append(")"); ; } break; case DriveMode.Distance: s.Append("Drive: "); s.Append(RTUtil.FormatSI(target, "m")); if (speed > 0) s.Append(" forwards @"); else s.Append(" backwards @"); s.Append(RTUtil.FormatSI(Math.Abs(speed), "m/s")); if (mRoverComputer != null) { s.Append(" ("); s.Append(RTUtil.FormatSI(mRoverComputer.Delta, "m")); s.Append(" "); s.Append(RTUtil.FormatDuration(mRoverComputer.DeltaT, false)); s.Append(")"); ; } break; case DriveMode.Turn: s.Append("Turn: "); s.Append(target.ToString("0.0")); if (steering < 0) s.Append("° right @"); else s.Append("° left @"); s.Append(Math.Abs(steering).ToString("P")); s.Append(" Steering"); if (mRoverComputer != null) { s.Append(" ("); s.Append(mRoverComputer.Delta.ToString("F2")); s.Append("° "); s.Append(RTUtil.FormatDuration(mRoverComputer.DeltaT, false)); s.Append(")"); ; } break; case DriveMode.DistanceHeading: s.Append("Drive: "); s.Append(RTUtil.FormatSI(target, "m")); s.Append(", Hdg: "); s.Append(target2.ToString("0")); s.Append("° @ "); s.Append(RTUtil.FormatSI(Math.Abs(speed), "m/s")); if (mRoverComputer != null) { s.Append(" ("); s.Append(RTUtil.FormatSI(mRoverComputer.Delta, "m")); s.Append(" "); s.Append(RTUtil.FormatDuration(mRoverComputer.DeltaT, false)); s.Append(")"); } break; case DriveMode.Off: s.Append("Turn rover computer off"); break; } return s.ToString() + Environment.NewLine + base.Description; } } public override string ShortName { get { return "Drive"; } } } } ================================================ FILE: src/RemoteTech/FlightComputer/Commands/EventCommand.cs ================================================ using System; using System.Linq; using RemoteTech.FlightComputer.Commands; namespace RemoteTech.FlightComputer { public class EventCommand : AbstractCommand { // Guiname of the BaseEvent [Persistent] public string GUIName; // Name of the BaseEvent [Persistent] public string Name; // flight id of the part by this BaseEvent [Persistent] public uint flightID; // PartModule of the part by this BaseEvent [Persistent] public string Module; // BaseEvent to invoke public BaseEvent BaseEvent = null; public override String Description { get { return ((this.BaseEvent != null) ? this.BaseEvent.listParent.part.partInfo.title + ": " + this.GUIName : "none") + Environment.NewLine + base.Description; } } public override string ShortName { get { return (this.BaseEvent != null) ? this.BaseEvent.GUIName : "none"; } } public override bool Pop(FlightComputer f) { if (this.BaseEvent != null) { try { // invoke the baseevent this.BaseEvent.Invoke(); } catch (Exception invokeException) { RTLog.Notify("BaseEvent invokeException by '{0}' with message: {1}", RTLogLevel.LVL1, this.BaseEvent.guiName, invokeException.Message); } } return false; } public static EventCommand Event(BaseEvent ev) { return new EventCommand() { BaseEvent = ev, GUIName = ev.GUIName, TimeStamp = RTUtil.GameTime, }; } /// /// Load infos into this object and create a new BaseEvent /// /// true - loaded successfull public override bool Load(ConfigNode n, FlightComputer fc) { if(base.Load(n, fc)) { // deprecated since 1.6.2, we need this for upgrading from 1.6.x => 1.6.2 int PartId = 0; { if (n.HasValue("PartId")) PartId = int.Parse(n.GetValue("PartId")); } if (n.HasValue("flightID")) this.flightID = uint.Parse(n.GetValue("flightID")); this.Module = n.GetValue("Module"); this.GUIName = n.GetValue("GUIName"); this.Name = n.GetValue("Name"); RTLog.Notify("Try to load an EventCommand from persistent with {0},{1},{2},{3},{4}", PartId, this.flightID, this.Module, this.GUIName, this.Name); Part part = null; var partlist = FlightGlobals.ActiveVessel.parts; if (this.flightID == 0) { // only look with the partid if we've enough parts if (PartId < partlist.Count) part = partlist.ElementAt(PartId); } else { part = partlist.Where(p => p.flightID == this.flightID).FirstOrDefault(); } if (part == null) return false; PartModule partmodule = part.Modules[Module]; if (partmodule == null) return false; BaseEventList eventlist = new BaseEventList(part, partmodule); if (eventlist.Count <= 0) return false; this.BaseEvent = eventlist.Where(ba => (ba.GUIName == this.GUIName || ba.name == this.Name)).FirstOrDefault(); return true; } return false; } /// /// Save the BaseEvent to the persistent /// public override void Save(ConfigNode n, FlightComputer fc) { this.GUIName = this.BaseEvent.GUIName; this.flightID = this.BaseEvent.listParent.module.part.flightID; this.Module = this.BaseEvent.listParent.module.ClassName.ToString(); this.Name = this.BaseEvent.name; base.Save(n, fc); } } } ================================================ FILE: src/RemoteTech/FlightComputer/Commands/ExternalAPICommand.cs ================================================ using System; using System.Reflection; namespace RemoteTech.FlightComputer.Commands { public class ExternalAPICommand : AbstractCommand { /// original ConfigNode object passed from the api private ConfigNode externalData; /// Name of the mod who passed this command private string Executor; /// Label for this command on the queue private string QueueLabel; /// Label for this command if its active private string ActiveLabel; /// Label for alert on no power private string ShortLabel; /// The ReflectionType for the methods to invoke private string ReflectionType; /// Name of the Pop-method on the ReflectionType private string ReflectionPopMethod = ""; /// Name of the Execution-method on the ReflectionType private string ReflectionExecuteMethod = ""; /// Name of the Abort-method on the ReflectionType private string ReflectionAbortMethod = ""; /// GUID of the vessel private string GUIDString; /// true - when this command will be aborted private bool AbortCommand = false; public override int Priority { get { return 0; } } /// /// Returns the of this command on the queue and the /// if this command is active. If no one is defined /// the will be returned. /// public override string Description { get { var desc = (this.QueueLabel == "") ? this.Executor : this.QueueLabel; if(this.Delay <= 0 && this.ExtraDelay <= 0) desc = (this.ActiveLabel == "") ? this.Executor : this.ActiveLabel; return desc + Environment.NewLine + base.Description; } } /// /// Returns the of this command. If no /// is defined the name of the will be returned. /// public override string ShortName { get { return (this.ShortLabel == "") ? this.Executor : this.ShortLabel; } } /// /// Pops the command and invokes the on the /// . /// /// Current flightcomputer /// true: move to active. public override bool Pop(FlightComputer computer) { bool moveToActive = false; if (this.ReflectionPopMethod != "") { // invoke the Pop-method moveToActive = (bool)this.callReflectionMember(this.ReflectionPopMethod); // set moveToActive to false if we've no Execute-method. if (this.ReflectionExecuteMethod == "") moveToActive = false; } return moveToActive; } /// /// Executes this command and invokes the /// on the . When this command is aborted the /// fallback commnd is "KillRot". /// /// Current flightcomputer /// Current FlightCtrlState /// true: delete afterwards. public override bool Execute(FlightComputer computer, FlightCtrlState ctrlState) { bool finished = true; if (this.ReflectionExecuteMethod != "") { // invoke the Execution-method finished = (bool)this.callReflectionMember(this.ReflectionExecuteMethod); if (this.AbortCommand) { if (RTSettings.Instance.FCOffAfterExecute) { computer.Enqueue(AttitudeCommand.Off(), true, true, true); finished = true; } if (!RTSettings.Instance.FCOffAfterExecute) { computer.Enqueue(AttitudeCommand.KillRot(), true, true, true); finished = true; } } } return finished; } /// /// Aborts the active external command and invokes the /// on the . /// public override void Abort() { this.AbortCommand = true; if (this.ReflectionAbortMethod != "") { this.callReflectionMember(this.ReflectionAbortMethod); } } /// /// Configures an ExternalAPICommand. /// /// Data passed by the Api.QueueCommandToFlightComputer /// Configured ExternalAPICommand public static ExternalAPICommand FromExternal(ConfigNode externalData) { ExternalAPICommand command = new ExternalAPICommand(); command.TimeStamp = RTUtil.GameTime; command.ConfigNodeToObject(command,externalData); return command; } /// /// Maps the ConfigNode object passed from the api or loading to an ExternalAPICommand. /// /// Map the data to this object /// Data to map onto the command private void ConfigNodeToObject(ExternalAPICommand command, ConfigNode data) { command.externalData = new ConfigNode("ExternalData").AddNode(data); command.Executor = data.GetValue("Executor"); command.ReflectionType = data.GetValue("ReflectionType"); command.GUIDString = data.GetValue("GUIDString"); if (data.HasValue("QueueLabel")) command.QueueLabel = data.GetValue("QueueLabel"); if (data.HasValue("ActiveLabel")) command.ActiveLabel = data.GetValue("ActiveLabel"); if (data.HasValue("ShortLabel")) command.ShortLabel = data.GetValue("ShortLabel"); if (data.HasValue("ReflectionPopMethod")) command.ReflectionPopMethod = data.GetValue("ReflectionPopMethod"); if (data.HasValue("ReflectionExecuteMethod")) command.ReflectionExecuteMethod = data.GetValue("ReflectionExecuteMethod"); if (data.HasValue("ReflectionAbortMethod")) command.ReflectionAbortMethod = data.GetValue("ReflectionAbortMethod"); } /// /// Saves the original configNode passed from the api /// to the persistent /// /// Node with the command infos to save in /// Current flightcomputer public override void Save(ConfigNode node, FlightComputer computer) { base.Save(node, computer); node.AddNode("ExternalData"); node.SetNode("ExternalData", this.externalData); } /// /// Loads the ExternalAPICommand from the persistent file. If the loading /// can't find the we'll notify a ScreenMessage /// and remove the command. /// /// Node with the command infos to load /// Current flightcomputer /// true - loaded successfull public override bool Load(ConfigNode node, FlightComputer computer) { try { if(base.Load(node, computer)) { if (node.HasNode("ExternalData")) { this.ConfigNodeToObject(this, node.GetNode("ExternalData")); // try loading the reflectionType this.getReflectionType(this.ReflectionType); return true; } } } catch(Exception) { RTUtil.ScreenMessage(string.Format("Mod '{0}' not found. Queued command '{1}' will be removed.", this.Executor, this.ShortName)); } return false; } /// /// Prepare the data to pass back to the mod. /// /// ConfigNode to pass over to the reflection methods private ConfigNode prepareDataForExternalMod() { ConfigNode externalData = new ConfigNode(); this.externalData.CopyTo(externalData); externalData.AddValue("AbortCommand",this.AbortCommand); return externalData; } /// /// Calls the rflection method. /// /// Name of the reflection method /// Object from the invoked reflection method private object callReflectionMember(string reflectionMember) { Type externalType = this.getReflectionType(this.ReflectionType); var result = externalType.InvokeMember(reflectionMember, BindingFlags.InvokeMethod | BindingFlags.Public | BindingFlags.Static, null, null, new System.Object[] { this.prepareDataForExternalMod() }); return result; } /// /// Trys to load the reflectionType. Throws an exception if we can't /// find the type. /// /// Type to load /// loaded type private Type getReflectionType(string reflectionType) { Type type = Type.GetType(reflectionType); if (type == null) throw new NullReferenceException(); return type; } } } ================================================ FILE: src/RemoteTech/FlightComputer/Commands/FlightControlCommand.cs ================================================ using System; namespace RemoteTech.FlightComputer.Commands { public class FlightControlCommand : AbstractCommand { [Persistent] public bool ignorePitchOutput; [Persistent] public bool ignoreHeadingOutput; [Persistent] public bool ignoreRollOutput; private bool mAbort; private string stringReady = ""; public override string ShortName { get { return "Pitch, Heading and Roll controls"; } } public override string Description { get { return ShortName + ":" + Environment.NewLine + stringReady + base.Description; } } public static FlightControlCommand WithPHR(bool ignore_pitch, bool ignore_heading, bool ignore_roll) { return new FlightControlCommand() { ignorePitchOutput = ignore_pitch, ignoreHeadingOutput = ignore_heading, ignoreRollOutput = ignore_roll, TimeStamp = RTUtil.GameTime, }; } public override bool Pop(FlightComputer fc) { if (fc != null) { //remove active command if existing var activeCommand = FlightControlCommand.findActiveControlCmd(fc); if(activeCommand != null && activeCommand.CmdGuid != this.CmdGuid) { activeCommand.Abort(); } //build custom string var list = new string[3]; var count = 0; if (ignorePitchOutput) { list[count++] = "Pitch ignored"; } if (ignoreHeadingOutput) { list[count++] = "Heading ignored"; } if (ignoreRollOutput) { list[count++] = "Roll ignored"; } for(int i=0; i 0) { stringReady += Environment.NewLine; } return true; } return false; } public override bool Execute(FlightComputer fc, FlightCtrlState ctrlState) { SteeringHelper.FlightOutputControlMask = 0; //blank off if (mAbort || (!ignorePitchOutput && !ignoreHeadingOutput && !ignoreRollOutput)) { return true; } if (ignorePitchOutput) { SteeringHelper.FlightOutputControlMask |= SteeringHelper.FlightControlOutput.IgnorePitch; } if (ignoreHeadingOutput) { SteeringHelper.FlightOutputControlMask |= SteeringHelper.FlightControlOutput.IgnoreHeading; } if (ignoreRollOutput) { SteeringHelper.FlightOutputControlMask |= SteeringHelper.FlightControlOutput.IgnoreRoll; } return false; } public static FlightControlCommand findActiveControlCmd(FlightComputer fc) { var cmdItr = fc.ActiveCommands.GetEnumerator(); while (cmdItr.MoveNext()) { if (cmdItr.Current is FlightControlCommand) { return cmdItr.Current as FlightControlCommand; } } return null; } public override void Abort() { mAbort = true; } } } ================================================ FILE: src/RemoteTech/FlightComputer/Commands/HibernationCommand.cs ================================================ using RemoteTech.Modules; using System; using System.Collections.Generic; using System.Linq; using KSP.Localization; namespace RemoteTech.FlightComputer.Commands { public class HibernationCommand : AbstractCommand { public enum PowerModes { Normal, Wake, //exit from any power-low state Sleep, //future but complex feature - low-power (not as low as hibernate) and reduced comm range Hibernate, //probe hibernate and antenna retraction AntennaSaver, //deactivate/re-activate antennas with power thresholds } [Persistent] public PowerModes PowerMode; [Persistent] private List AntennaIDs = new List(); private Dictionary antennaLastChangedDates = new Dictionary(); private bool mAbort = false; private bool mStartHibernation = false; private Vessel vesselReference; public override string ShortName { get { switch(PowerMode) { case PowerModes.Hibernate: return Localizer.Format("#RT_PowerModecmd_Hibernate", (AntennaIDs.Count==0? Localizer.Format("#RT_PowerModecmd_Hibernate_deact") : Localizer.Format("#RT_PowerModecmd_Hibernate_inact", AntennaIDs.Count)));//"Power: Hibernation (" + +" antennas)""deactivating""inactive "+ case PowerModes.AntennaSaver: return Localizer.Format("#RT_PowerModecmd_AntennaSaver");//"Power: Automatically de/re-activating antennas on thresholds" case PowerModes.Normal: case PowerModes.Wake: return Localizer.Format("#RT_PowerModecmd_Wake");//"Power: Terminating active power state" default: return Localizer.Format("#RT_PowerModecmd_Unknown");//"Power: Unknown" } } } public override string Description { get { return ShortName + Environment.NewLine + base.Description; } } public static HibernationCommand Hibernate() { return new HibernationCommand() { PowerMode = PowerModes.Hibernate, TimeStamp = RTUtil.GameTime, }; } public static HibernationCommand AntennaSaver() { return new HibernationCommand() { PowerMode = PowerModes.AntennaSaver, TimeStamp = RTUtil.GameTime, }; } public static HibernationCommand WakeUp() { return new HibernationCommand() { PowerMode = PowerModes.Wake, TimeStamp = RTUtil.GameTime, }; } public override bool Pop(FlightComputer fc) { this.vesselReference = fc.Vessel; var activeHibCommand = HibernationCommand.findActiveHibernationCmd(fc); if(activeHibCommand != null) //what to do with active hibernation cmd under this new hib cmd? { if(this.PowerMode == PowerModes.Wake) { activeHibCommand.Abort(); return false; } else if(this.PowerMode == PowerModes.Hibernate && activeHibCommand.PowerMode == PowerModes.AntennaSaver) { activeHibCommand.Abort(); } else if (this.PowerMode == PowerModes.Hibernate && activeHibCommand.PowerMode == PowerModes.Hibernate) { return false; } else if (this.PowerMode == PowerModes.AntennaSaver&& activeHibCommand.PowerMode == PowerModes.Hibernate) { activeHibCommand.Abort(); } else if (this.PowerMode == PowerModes.AntennaSaver && activeHibCommand.PowerMode == PowerModes.AntennaSaver) { return false; } } if (PowerMode == PowerModes.Hibernate) { if(AntennaIDs.Count == 0)//no saved list found { mStartHibernation = true; } return true; } else if (PowerMode == PowerModes.AntennaSaver) { return true; } return false; } public override bool Execute(FlightComputer fc, FlightCtrlState ctrlState) { if (mAbort) { mAbort = false; return true; } else if (mStartHibernation) { AntennaIDs = getActiveAntennas(RTCore.Instance.Satellites[fc.Vessel.id].Antennas.ToList()); EnterHibernation(fc.Vessel, safeGetAntennas(AntennaIDs, RTCore.Instance.Satellites[fc.Vessel.id].Antennas.ToList())); mStartHibernation = false; return false; } else if (this.PowerMode == PowerModes.AntennaSaver) //run until mAbort is issued { RunThresholdControl(fc.Vessel, RTCore.Instance.Satellites[fc.Vessel.id].Antennas); return false; } else//active hiberation { //check if stock input lock is engaged on maneuver node when probe is in hibernation mode if(fc.Vessel.HasLocalControl() && ((InputLockManager.lockMask & (ulong)ControlTypes.MANNODE_ADDEDIT) != 0uL || (InputLockManager.lockMask & (ulong)ControlTypes.MANNODE_DELETE) != 0uL)) { InputLockManager.lockStack["vessel_noControl_" + fc.Vessel.id] &= ~((ulong)ControlTypes.MANNODE_ADDEDIT); InputLockManager.lockStack["vessel_noControl_" + fc.Vessel.id] &= ~((ulong)ControlTypes.MANNODE_DELETE); InputLockManager.lockMask &= ~((ulong)ControlTypes.MANNODE_ADDEDIT); InputLockManager.lockMask &= ~((ulong)ControlTypes.MANNODE_DELETE); } /*//unnecessary as it is locked back by stock ksp else if(!fc.Vessel.HasLocalControl() && ((InputLockManager.lockMask & (ulong)ControlTypes.MANNODE_ADDEDIT) == 0uL || (InputLockManager.lockMask & (ulong)ControlTypes.MANNODE_DELETE) == 0uL)) { InputLockManager.lockStack["vessel_noControl_" + fc.Vessel.id] |= (ulong)ControlTypes.MANNODE_ADDEDIT; InputLockManager.lockStack["vessel_noControl_" + fc.Vessel.id] |= (ulong)ControlTypes.MANNODE_DELETE; InputLockManager.lockMask |= (ulong)ControlTypes.MANNODE_ADDEDIT; InputLockManager.lockMask |= (ulong)ControlTypes.MANNODE_DELETE; } */ //drop any queued non-power command up to next hiberation command (wake) var cmdsToDrop = new List(); for(int i=0; i antennas) { //set all parts with ModuleCommand to hibernate var parts = vessel.Parts; for(int i=0; i< parts.Count; i++) { var moduleCommand = parts[i].Modules.GetModule(); if(moduleCommand != null) { moduleCommand.hibernation = true; } } //retract activated antennas for(int i=0; i antennas) { //wake all parts with ModuleCommand up var parts = vessel.Parts; for (int i = 0; i < parts.Count; i++) { var moduleCommand = parts[i].Modules.GetModule(); if (moduleCommand != null) { moduleCommand.hibernation = false; } } //extend antennas that were activated prior to hibernation for (int i = 0; i < antennas.Count; i++) { antennas[i].Activated = true; } } public static HibernationCommand findActiveHibernationCmd(FlightComputer fc) { var cmdItr = fc.ActiveCommands.GetEnumerator(); while (cmdItr.MoveNext()) { if (cmdItr.Current is HibernationCommand) { var hibCmd = cmdItr.Current as HibernationCommand; if ((hibCmd.PowerMode == PowerModes.Hibernate || hibCmd.PowerMode == PowerModes.Sleep || hibCmd.PowerMode == PowerModes.AntennaSaver)) { return hibCmd; } } } return null; } private List getActiveAntennas(List antennas) { //get all activated antennas, except for probe cores' built-in comms List ids = new List(); for (int i = 0; i < antennas.Count; i++) { if (antennas[i].Activated && !(antennas[i] is ModuleRTAntennaPassive)) { ids.Add((antennas[i] as PartModule).part.flightID); } } return ids; } /// /// Safely obtain the marked antennas between play-sessions/staging since one modded part can have 2 or more antenna modules. /// private List safeGetAntennas(List antennaIDs, List antennas) { List desiredAntennas = new List(); for(int i=0; i antennas) { //FC does not run in time wrap (>= 5x) //do EC calculation double currentECAmount = 1; double maxECAmount = 1; double percentage; vessel.GetConnectedResourceTotals(PartResourceLibrary.ElectricityHashcode, out currentECAmount, out maxECAmount); percentage = (currentECAmount / maxECAmount) * 100.00; //run on each antenna for (int i = 0; i < antennas.Count(); i++) { if (!(antennas.ElementAt(i) is ModuleRTAntennaPassive)) { var thisAntenna = antennas.ElementAt(i) as ModuleRTAntenna; thisAntenna.GUI_DeReactivation_Status = string.Format("EC {0:0.0}%", percentage); if (thisAntenna.Activated && percentage <= thisAntenna.RTDeactivatePowerThreshold) { SetDelayedAntennaState(false, thisAntenna); } else if(!thisAntenna.Activated && percentage >= thisAntenna.RTActivatePowerThreshold) { SetDelayedAntennaState(true, thisAntenna); } } } } private void TerminateThresholdControl(List antennas) { //update antenna's gui status for (int i = 0; i < antennas.Count; i++) { if (!(antennas[i] is ModuleRTAntennaPassive)) { (antennas[i] as ModuleRTAntenna).GUI_DeReactivation_Status = "Off"; } } antennaLastChangedDates.Clear(); } private void SetDelayedAntennaState(bool active, ModuleRTAntenna antenna) { var nowDate = DateTime.Now; if (!antennaLastChangedDates.ContainsKey(antenna.part.flightID)) { antennaLastChangedDates.Add(antenna.part.flightID, nowDate); antenna.Activated = active; } else if(nowDate.Subtract(antennaLastChangedDates[antenna.part.flightID]).TotalSeconds > 5) { antennaLastChangedDates[antenna.part.flightID] = nowDate; antenna.Activated = active; } } } } ================================================ FILE: src/RemoteTech/FlightComputer/Commands/ICommand.cs ================================================ using System; namespace RemoteTech.FlightComputer.Commands { public interface ICommand : IComparable { double TimeStamp { get; set; } double ExtraDelayScheduledTimeStamp { get; set; } //required for precise time operations double ExtraDelay { get; set; } Guid CmdGuid { get; } double Delay { get; } // The command description displayed in the flight computer String Description { get; } // An abbreviated version of the description for inline inclusion in messages String ShortName { get; } int Priority { get; } bool Pop(FlightComputer f); bool Execute(FlightComputer f, FlightCtrlState fcs); void Abort(); /// void Save(ConfigNode n, FlightComputer fc); bool Load(ConfigNode n, FlightComputer fc); /// void CommandEnqueued(FlightComputer computer); void CommandCanceled(FlightComputer computer); } } ================================================ FILE: src/RemoteTech/FlightComputer/Commands/ManeuverCommand.cs ================================================ using System; using System.Linq; using UnityEngine; namespace RemoteTech.FlightComputer.Commands { public class ManeuverCommand : AbstractCommand { /// Index id of this maneuver node from patchedConicSolver.maneuverNodes list [Persistent] public int NodeIndex; /// [Persistent] public string KaCItemId = String.Empty; public double OriginalDelta; public double RemainingTime; public double RemainingDelta; public ManeuverNode Node; public bool EngineActivated { get; private set; } public override int Priority { get { return 0; } } private double throttle = 1.0f; private double lowestDeltaV = 0.0; private double smallestRemainingTime = 0.0; private bool abortOnNextExecute = false; public override string Description { get { if (RemainingTime > 0 || RemainingDelta > 0) { string flightInfo = "Executing maneuver: " + RemainingDelta.ToString("F2") + "m/s" + Environment.NewLine + "Remaining duration: "; flightInfo += this.EngineActivated ? RTUtil.FormatDuration(RemainingTime) : "-:-"; return flightInfo + Environment.NewLine + base.Description; } else { return "Execute planned maneuver"+ Environment.NewLine + base.Description; } } } public override string ShortName { get { return "Execute maneuver node"; } } public override bool Pop(FlightComputer f) { if(f.Vessel.patchedConicSolver == null) { f.Vessel.AttachPatchedConicsSolver(); f.Vessel.patchedConicSolver.Update(); } if (this.Node.solver == null) // need to repair (due to the scenario of 2 vessels within phyical range) { if (f.Vessel.patchedConicSolver.maneuverNodes.Count < 1) // no nodes { RTUtil.ScreenMessage("[Flight Computer]: No maneuver node to execute."); return false; } this.Node = f.Vessel.patchedConicSolver.maneuverNodes.Find(x => x.UT == this.Node.UT); } var burn = f.ActiveCommands.FirstOrDefault(c => c is BurnCommand); if (burn != null) { f.Remove (burn); } OriginalDelta = Node.DeltaV.magnitude; RemainingDelta = this.getRemainingDeltaV(f); this.EngineActivated = true; double thrustToMass = FlightCore.GetTotalThrust(f.Vessel) / f.Vessel.GetTotalMass(); if (thrustToMass == 0.0) { this.EngineActivated = false; RTUtil.ScreenMessage("[Flight Computer]: No engine to carry out the maneuver."); } else { RemainingTime = RemainingDelta / thrustToMass; } f.PIDController.setPIDParameters(FlightComputer.PIDKp, FlightComputer.PIDKi, FlightComputer.PIDKd); return true; } /// /// Gets the current remaining delta velocity for this maneuver burn determined by the vessels burn vector of the passed FlightComputer instance. /// /// FlightComputer instance to determine remaining delta velocity by. /// Remaining delta velocity in m/s^2 private double getRemainingDeltaV(FlightComputer computer) { return this.Node.GetBurnVector(computer.Vessel.orbit).magnitude; } /// /// Remove the current maneuver node from MapView /// /// FlightComputer instance of the computer of the vessel. private void AbortManeuver(FlightComputer computer) { RTUtil.ScreenMessage("[Flight Computer]: Maneuver node removed"); if (computer.Vessel.patchedConicSolver != null) { this.Node.RemoveSelf(); } // Flight Computer mode after execution based on settings if (RTSettings.Instance.FCOffAfterExecute) { computer.Enqueue(AttitudeCommand.Off(), true, true, true); } if (!RTSettings.Instance.FCOffAfterExecute) { computer.Enqueue(AttitudeCommand.KillRot(), true, true, true); } } /// /// Executes the maneuver burn for the configured maneuver node. /// /// FlightComputer instance of the computer of the vessel the ManeuverCommand is for. /// FlightCtrlState instance of the current state of the vessel. /// true if the command has finished its work, false otherwise. public override bool Execute(FlightComputer computer, FlightCtrlState ctrlState) { // Halt the command if we reached our target or were command to abort by the previous tick if (this.RemainingDelta <= 0.1 || this.abortOnNextExecute) { this.AbortManeuver(computer); return true; } // Orientate vessel to maneuver prograde var forward = Node.GetBurnVector(computer.Vessel.orbit).normalized; var up = (computer.SignalProcessor.Body.position - computer.SignalProcessor.Position).normalized; var orientation = Quaternion.LookRotation(forward, up); FlightCore.HoldOrientation(ctrlState, computer, orientation, true); // This represents the theoretical acceleration but is off by a few m/s^2, probably because some parts are partially physicsless double thrustToMass = (FlightCore.GetTotalThrust(computer.Vessel) / computer.Vessel.GetTotalMass()); // We need to know if the engine was activated or not to show the proper info text in the command if (thrustToMass == 0.0) { this.EngineActivated = false; return false; } this.EngineActivated = true; // Before any throttling, those two values may differ from after the throttling took place this.RemainingDelta = this.getRemainingDeltaV(computer); this.RemainingTime = this.RemainingDelta / thrustToMass; // In case we would overpower with 100% thrust, calculate how much we actually need and set it. if (computer.Vessel.acceleration.magnitude > this.RemainingDelta) { // Formula which leads to this: a = ( vE vS ) / dT this.throttle = this.RemainingDelta / computer.Vessel.acceleration.magnitude; } ctrlState.mainThrottle = (float)this.throttle; // TODO: THIS CAN PROBABLY BE REMOVED? RemainingDelta = this.getRemainingDeltaV(computer); // After throttling, the remaining time differs from beforehand (dividing delta by throttled thrustToMass) this.RemainingTime = this.RemainingDelta / (ctrlState.mainThrottle * thrustToMass); // We need to abort if the remaining delta was already low enough so it only takes exactly one more tick! double ticksRemaining = this.RemainingTime / TimeWarp.deltaTime; if (ticksRemaining <= 1) { this.throttle *= ticksRemaining; ctrlState.mainThrottle = (float)this.throttle; this.abortOnNextExecute = true; return false; } // we only compare up to the fiftieth part due to some burn-up delay when just firing up the engines if (this.lowestDeltaV > 0 // Do ignore the first tick && (this.RemainingDelta - 0.02) > this.lowestDeltaV //&& this.RemainingDelta < 1.0 // be safe that we do not abort the command to early // comment: not always < 1 because lowest dV was over 10 when acceleration was huge && this.RemainingTime > this.smallestRemainingTime) { // Aborting because deltaV & remaining time were rising again! this.AbortManeuver(computer); return true; /* Sample from one test on a craft of huge acceleration RemoteTech: lowest dV, remaining dV, remaining time RemoteTech: 1.81, 1.73, 0.16 RemoteTech: 1.73, 1.68, 0.16 RemoteTech: 1.68, 1.65, 0.15 // lowest dV RemoteTech: 1.65, 1.65, 0.15 RemoteTech: 1.65, 1.68, 0.14 RemoteTech: 1.65, 1.74, 0.14 RemoteTech: 1.65, 1.83, 0.13 // smallest time RemoteTech: 1.65, 1.97, 0.13 */ } // Lowest delta always has to be stored to be able to compare it in the next tick if (this.lowestDeltaV == 0 // Always do it on the first tick || this.RemainingDelta < this.lowestDeltaV) { this.lowestDeltaV = this.RemainingDelta; } // smallest remaining duration if (this.smallestRemainingTime == 0 || this.RemainingTime < this.smallestRemainingTime) { this.smallestRemainingTime = this.RemainingTime; } return false; } /// /// Returns the total time for this burn in seconds /// /// Flightcomputer for the current vessel /// max burn time public double getMaxBurnTime(FlightComputer f) { if (Node == null) return 0; return Node.DeltaV.magnitude / (FlightCore.GetTotalThrust(f.Vessel) / f.Vessel.GetTotalMass()); } public static ManeuverCommand WithNode(int nodeIndex, FlightComputer f) { double thrust = FlightCore.GetTotalThrust(f.Vessel); ManeuverNode node = f.Vessel.patchedConicSolver.maneuverNodes[nodeIndex]; double advance = f.Delay; if (thrust > 0) { advance += (node.DeltaV.magnitude / (thrust / f.Vessel.GetTotalMass())) / 2; // add 1 second for the throttle down time @ the end of the burn advance += 1; } var newNode = new ManeuverCommand() { Node = node, TimeStamp = node.UT - advance, }; return newNode; } /// /// Find the maneuver node by the saved node id (index id of the meneuver list) /// /// Node with the command infos /// Current flightcomputer /// true - loaded successfull public override bool Load(ConfigNode n, FlightComputer fc) { //Additional notes: Load() is never called when cold-launching KSP and resuming flight. if(base.Load(n,fc)) { if(n.HasValue("NodeIndex")) { this.NodeIndex = int.Parse(n.GetValue("NodeIndex")); if (fc.Vessel.patchedConicSolver == null) { fc.Vessel.AttachPatchedConicsSolver(); fc.Vessel.patchedConicSolver.Update(); } RTLog.Notify("Trying to get Maneuver {0} in the list of {1} maneuver nodes", this.NodeIndex, fc.Vessel.patchedConicSolver.maneuverNodes.Count); if (this.NodeIndex >= 0 && fc.Vessel.patchedConicSolver.maneuverNodes.Count > 0) { // Set the ManeuverNode into this command this.Node = fc.Vessel.patchedConicSolver.maneuverNodes[this.NodeIndex]; RTLog.Notify("Found Maneuver {0} with {1} dV", this.NodeIndex, this.Node.DeltaV); return true; } } } return false; } /// /// Save the index of the maneuver node to the persistent /// public override void Save(ConfigNode n, FlightComputer fc) { if (fc.Vessel.patchedConicSolver == null) { fc.Vessel.AttachPatchedConicsSolver(); fc.Vessel.patchedConicSolver.Update(); } // search the node on the List this.NodeIndex = fc.Vessel.patchedConicSolver.maneuverNodes.FindIndex(x => x.UT == this.Node.UT); // only save this command if we are on the maneuverNode list if (this.NodeIndex >= 0) { base.Save(n, fc); } } /// /// This method will be triggerd right after the command was enqueued to /// the flight computer list. /// /// Current flightcomputer public override void CommandEnqueued(FlightComputer computer) { var timetoexec = (TimeStamp + ExtraDelay) - RTSettings.Instance.FCLeadTime; if (timetoexec - RTUtil.GameTime >= 0 && RTSettings.Instance.AutoInsertKaCAlerts) { var kaCAddonLabel = computer.Vessel.vesselName + " Maneuver"; if (RTCore.Instance != null && RTCore.Instance.KacAddon != null) { KaCItemId = RTCore.Instance.KacAddon.CreateAlarm(RemoteTech_KACWrapper.KACWrapper.KACAPI.AlarmTypeEnum.Maneuver, kaCAddonLabel, timetoexec, computer.Vessel.id); } } // also add a maneuver node command to the queue computer.Enqueue(AttitudeCommand.ManeuverNode(timetoexec), true, true, true); } /// /// This method will be triggerd after deleting a command from the list. /// /// Current flight computer public override void CommandCanceled(FlightComputer computer) { if (KaCItemId == string.Empty || RTCore.Instance == null || RTCore.Instance.KacAddon == null) return; // Cancel also the kac entry RTCore.Instance.KacAddon.DeleteAlarm(KaCItemId); this.KaCItemId = string.Empty; } } } ================================================ FILE: src/RemoteTech/FlightComputer/Commands/PIDCommand.cs ================================================ using System; namespace RemoteTech.FlightComputer.Commands { public class PIDCommand : AbstractCommand { [Persistent] public double kp; [Persistent] public double ki; [Persistent] public double kd; public override string ShortName { get { return "Flight PID Controller parameters"; } } public override string Description { get { return ShortName +":" + Environment.NewLine + "Term P of " + kp + Environment.NewLine + "Term I of " + ki + Environment.NewLine + "Term D of " + kd + Environment.NewLine + base.Description; } } public static PIDCommand WithNewChanges(double new_kp, double new_ki, double new_kd) { return new PIDCommand() { kp = new_kp, ki = new_ki, kd = new_kd, TimeStamp = RTUtil.GameTime, }; } public override bool Pop(FlightComputer f) { if (f != null) { FlightComputer.PIDKp = kp; FlightComputer.PIDKi = ki; FlightComputer.PIDKd = kd; f.PIDController.setPIDParameters(kp, ki, kd); } return false; } } } ================================================ FILE: src/RemoteTech/FlightComputer/Commands/PartActionCommand.cs ================================================ using System; using System.Text; using System.Linq; using RemoteTech.FlightComputer.Commands; using static RemoteTech.FlightComputer.UIPartActionMenuPatcher; #if !KSP131 using Expansions.Serenity; #endif namespace RemoteTech.FlightComputer { public class PartActionCommand : AbstractCommand { // Guiname of the BaseField [Persistent] public string GUIName; // Name of the BaseField [Persistent] public string Name; // flight id of the part [Persistent] public uint flightID; // PartModule of the part [Persistent] public string Module; // new value for the field public object NewValue; // the value as a string, once loaded from config public string NewValueString; // the original BaseField public BaseField BaseField = null; public override string Description { get { var sb = new StringBuilder(); if (BaseField != null) { sb.Append(BaseField.guiName + ": " + BaseField.name); } else { sb.Append("none"); } sb.Append(Environment.NewLine + base.Description); return sb.ToString(); } } public override string ShortName { get { return (BaseField != null) ? BaseField.guiName : "none"; } } public override bool Pop(FlightComputer f) { if (BaseField != null) { try { var field = (BaseField as WrappedField); if (field == null) // we lost the Wrapped field instance, this is due to the fact that the command was loaded from a save { if (NewValue != null) { var newfield = new WrappedField(BaseField, WrappedField.KspFieldFromBaseField(BaseField)); if(newfield.NewValueFromString(NewValueString)) { newfield.Invoke(); } } } else { // invoke the field value change field.Invoke(); } if (UIPartActionController.Instance != null) UIPartActionController.Instance.UpdateFlight(); #if !KSP131 for (int i = 0; i < f.Vessel.parts.Count; i++) { for (int j = 0; j < f.Vessel.parts[i].Modules.Count; j++) { if (f.Vessel.parts[i].Modules[j] is ModuleRoboticServoPiston) { // stock bug: targetExtension set by player in PartActionMenu is not passed to targetPosition unlike other robotic parts like hinge var agModule = f.Vessel.parts[i].Modules[j] as ModuleRoboticServoPiston; RTUtil.SetInstanceField(typeof(ModuleRoboticServoPiston), agModule, "targetPosition", agModule.targetExtension); } } } #endif } catch (Exception invokeException) { RTLog.Notify("BaseField InvokeAction() by '{0}' with message: {1}", RTLogLevel.LVL1, this.BaseField.guiName, invokeException.Message); } } return false; } public static PartActionCommand Field(BaseField baseField, object newValue) { return new PartActionCommand() { BaseField = baseField, GUIName = baseField.guiName, TimeStamp = RTUtil.GameTime, NewValue = newValue }; } /// /// Load infos into this object and create a new BaseEvent /// /// true - loaded successfull public override bool Load(ConfigNode n, FlightComputer fc) { if (base.Load(n, fc)) { // deprecated since 1.6.2, we need this for upgrading from 1.6.x => 1.6.2 int PartId = 0; { if (n.HasValue("PartId")) PartId = int.Parse(n.GetValue("PartId")); } if (n.HasValue("flightID")) this.flightID = uint.Parse(n.GetValue("flightID")); this.Module = n.GetValue("Module"); this.GUIName = n.GetValue("GUIName"); this.Name = n.GetValue("Name"); NewValueString = n.GetValue("NewValue"); RTLog.Notify("Try to load an PartActionCommand from persistent with {0},{1},{2},{3},{4}", PartId, this.flightID, this.Module, this.GUIName, this.Name); Part part = null; var partlist = FlightGlobals.ActiveVessel.parts; if (this.flightID == 0) { // only look with the partid if we've enough parts if (PartId < partlist.Count) part = partlist.ElementAt(PartId); } else { part = partlist.Where(p => p.flightID == this.flightID).FirstOrDefault(); } if (part == null) return false; PartModule partmodule = part.Modules[Module]; if (partmodule == null) return false; BaseFieldList fieldList = new BaseFieldList(partmodule); if (fieldList.Count <= 0) return false; this.BaseField = fieldList[this.Name]; return (this.BaseField != null); } return false; } /// /// Save the BaseEvent to the persistent /// public override void Save(ConfigNode n, FlightComputer fc) { PartModule pm = (BaseField.host as PartModule); if(pm == null) { RTLog.Notify("On PartActionCommand.Save(): Can't save because BaseField.host is not a PartModule instance. Type is: {0}", BaseField.host.GetType()); return; } GUIName = BaseField.guiName; flightID = pm.part.flightID; Module = pm.ClassName.ToString(); Name = BaseField.name; n.AddValue("NewValue", this.NewValue); base.Save(n, fc); } } } ================================================ FILE: src/RemoteTech/FlightComputer/Commands/PartActionFieldCommand.cs ================================================ using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace RemoteTech.FlightComputer.Commands { public class PartActionFieldCommand : AbstractCommand { [Persistent] public UIPartActionFieldItem FieldItem; public override string Description { get { return ShortName + Environment.NewLine + base.Description; } } public override string ShortName { get { return "Toggle field " + FieldItem.Field.name; } } public static PartActionFieldCommand FromField(UIPartActionFieldItem fieldItem) { return new PartActionFieldCommand() { FieldItem = fieldItem, TimeStamp = RTUtil.GameTime, }; } } } ================================================ FILE: src/RemoteTech/FlightComputer/Commands/StockAutopilotCommand.cs ================================================ using System; using static VesselAutopilot; namespace RemoteTech.FlightComputer.Commands { public class StockAutopilotCommand : AbstractCommand { [Persistent] public AutopilotMode AutopilotMode; public static VesselAutopilotUI UIreference = null; private static AutopilotMode savedAutopilotMode = AutopilotMode.StabilityAssist; public override string ShortName { get { return AutopilotMode.ToString(); } } public override string Description { get { return "Autopilot: " + ShortName + Environment.NewLine + base.Description; } } public override bool Pop(FlightComputer f) { if (f.Vessel.Autopilot.CanSetMode(AutopilotMode)) { f.Vessel.Autopilot.SetMode(AutopilotMode); savedAutopilotMode = AutopilotMode; // be sure to update the saved mode after setting autpilot mode return false; } return true; } public static StockAutopilotCommand WithNewMode(AutopilotMode newMode) { return new StockAutopilotCommand() { AutopilotMode = newMode, TimeStamp = RTUtil.GameTime, }; } /// /// Action to be called by a RT listener on KSP's autopilot buttons /// public static void AutopilotButtonClick(int index, FlightComputer flightCom) { var satellite = flightCom.Vessel; if (!satellite.HasLocalControl() && flightCom.InputAllowed) { //Note: the VesselAutopilotUI's OnClickButton is delayed by FlightComputer so no further action needed //Note: KSP bug #13199 (http://bugs.kerbalspaceprogram.com/issues/13199) on wrong-placed Radial In & Out buttons var currentMode = flightCom.Vessel.Autopilot.Mode; var nextMode = (AutopilotMode)index; if (currentMode != nextMode) { savedAutopilotMode = currentMode; // autopilot's stock actionlistener will set to new mode so we need to roll back to prev mode via IsAutoPilotEngaged() var newCommand = WithNewMode(nextMode); flightCom.Enqueue(newCommand); //Note: Timer of returning to prev mode doesn't really work too well in Unity and KSP architecture } } } /// /// Check if KSP's autopilot is performing one SAS function in presence of long delay /// public static bool IsAutoPilotEngaged(FlightComputer flightCom) { if (!flightCom.Vessel.Autopilot.Enabled) // autopilot is off { if(savedAutopilotMode != AutopilotMode.StabilityAssist) savedAutopilotMode = AutopilotMode.StabilityAssist; // matched to KSP's default to SAS mode when turned on return false; } if (flightCom.Vessel.Autopilot.Mode != savedAutopilotMode && flightCom.Vessel.Autopilot.CanSetMode(savedAutopilotMode)) flightCom.Vessel.Autopilot.SetMode(savedAutopilotMode); // purpose: return to the pre-click mode if (GameSettings.PITCH_DOWN.GetKey() || GameSettings.PITCH_UP.GetKey() || GameSettings.ROLL_LEFT.GetKey() || GameSettings.ROLL_RIGHT.GetKey() || GameSettings.YAW_LEFT.GetKey() || GameSettings.YAW_RIGHT.GetKey()) // player trying to manually rotate return false; if (GameSettings.TRANSLATE_FWD.GetKey() || GameSettings.TRANSLATE_BACK.GetKey() || GameSettings.TRANSLATE_LEFT.GetKey() || GameSettings.TRANSLATE_RIGHT.GetKey() || GameSettings.TRANSLATE_UP.GetKey() || GameSettings.TRANSLATE_DOWN.GetKey()) // player trying to manually translate return false; if (!GameSettings.AXIS_PITCH.IsNeutral() || !GameSettings.AXIS_ROLL.IsNeutral() || !GameSettings.AXIS_YAW.IsNeutral()) // player trying to joystick return false; return true; } } } ================================================ FILE: src/RemoteTech/FlightComputer/Commands/TargetCommand.cs ================================================ using System; using System.Linq; namespace RemoteTech.FlightComputer.Commands { public class TargetCommand : AbstractCommand { /// Defines which target we have. Can be CelestialBody or Vessel [Persistent] public String TargetType; /// Target identifier, CelestialBody=Body-id or Vessel=GUID. Depends on TargetType [Persistent] public String TargetId; public override double ExtraDelay { get { return 0.0; } set { return; } } public ITargetable Target { get; set; } public override int Priority { get { return 1; } } public override String Description { get { return ShortName + Environment.NewLine + base.Description; } } public override string ShortName { get { return "Target: " + (Target != null ? Target.GetName() : "None"); } } public override bool Pop(FlightComputer f) { f.DelayedTarget = Target; return true; } public override bool Execute(FlightComputer f, FlightCtrlState fcs) { return false; } public static TargetCommand WithTarget(ITargetable target) { return new TargetCommand() { Target = target, TimeStamp = RTUtil.GameTime, }; } /// /// Load the saved TargetCommand. Open a new ITargetable object by /// the objects id. /// /// Node with the command infos /// Current flightcomputer /// true - loaded successfull public override bool Load(ConfigNode n, FlightComputer fc) { if(base.Load(n, fc)) { switch (TargetType) { case "Vessel": { Guid Vesselid = new Guid(TargetId); Target = RTUtil.GetVesselById(Vesselid); break; } case "CelestialBody": { Target = FlightGlobals.Bodies.ElementAt(int.Parse(TargetId)); break; } default: { Target = null; break; } } return true; } return false; } /// /// Save the TargetCommand. By targeting a vessel we'll save the guid, /// by a CelestialBody we save the bodys id. /// /// Node to save in /// Current flightcomputer public override void Save(ConfigNode n, FlightComputer fc) { if (Target != null) { TargetType = Target.GetType().ToString(); switch (TargetType) { case "Vessel": { TargetId = ((Vessel)Target).id.ToString(); break; } case "CelestialBody": { TargetId = FlightGlobals.Bodies.ToList().IndexOf(((CelestialBody)Target)).ToString(); break; } default: { TargetId = null; break; } } } base.Save(n, fc); } } } ================================================ FILE: src/RemoteTech/FlightComputer/DelayedCommand.cs ================================================ using System; using System.Text; using UnityEngine; namespace RemoteTech.FlightComputer { public class DelayedFlightCtrlState : IComparable { public FlightCtrlState State { get; private set; } public double TimeStamp { get; set; } public DelayedFlightCtrlState(FlightCtrlState fcs) { State = new FlightCtrlState(); State.CopyFrom(fcs); TimeStamp = RTUtil.GameTime; } public int CompareTo(DelayedFlightCtrlState dfcs) { return TimeStamp.CompareTo(dfcs.TimeStamp); } } public class DelayedManeuver : IComparable { public ManeuverNode Node { get; set; } public double TimeStamp { get; set; } public DelayedManeuver(ManeuverNode node) { Node = new ManeuverNode() { DeltaV = node.DeltaV, patch = node.patch, solver = node.solver, scaledSpaceTarget = node.scaledSpaceTarget, nextPatch = node.nextPatch, UT = node.UT, nodeRotation = node.nodeRotation, }; TimeStamp = RTUtil.GameTime; } public int CompareTo(DelayedManeuver dm) { return TimeStamp.CompareTo(dm.TimeStamp); } } } ================================================ FILE: src/RemoteTech/FlightComputer/FlightComputer.cs ================================================ using System; using System.Collections.Generic; using System.Linq; using UnityEngine; using RemoteTech.FlightComputer.Commands; using RemoteTech.Modules; using RemoteTech.SimpleTypes; using RemoteTech.UI; using KSP.Localization; namespace RemoteTech.FlightComputer { /// /// This class describe the RemoteTech Flight Computer (FC). /// A FC is mostly used to handle the delay ('normal' + manual delay) if any and queue commands. /// public class FlightComputer : IDisposable { /// Flight computer loaded configuration from persistent save. private ConfigNode _fcLoadedConfigs; /// List of active commands in the flight computer. private readonly SortedDictionary _activeCommands = new SortedDictionary(); /// List of commands queued in the flight computer. private readonly List _commandQueue = new List(); /// Flight control queue: this is a priority queue used to delay . private readonly PriorityQueue _flightCtrlQueue = new PriorityQueue(); /// The window of the flight computer. private FlightComputerWindow _flightComputerWindow; /// Current state of the flight computer. [Flags] public enum State { /// Normal state. Normal = 0, /// The flight computer (and its vessel) are packed: vessels are only packed when they come within about 300m of the active vessel. Packed = 2, /// The flight computer (and its vessel) are out of power. OutOfPower = 4, /// The flight computer (and its vessel) have no connection. NoConnection = 8, /// The flight computer signal processor is not the vessel main signal processor (see ). NotMaster = 16, } /// Gets whether or not it is possible to give input to the flight computer (and consequently, to the vessel). public bool InputAllowed { get { var satellite = RTCore.Instance.Network[SignalProcessor.VesselId]; var connection = RTCore.Instance.Network[satellite]; return (satellite != null && satellite.HasLocalControl) || (SignalProcessor.Powered && connection.Any()); } } /// Gets the delay applied to a flight computer (and hence, its vessel). public double Delay { get { var satellite = RTCore.Instance.Network[SignalProcessor.VesselId]; if (satellite != null && satellite.HasLocalControl) return 0.0; var connection = RTCore.Instance.Network[satellite]; return !connection.Any() ? double.PositiveInfinity : connection.Min().Delay; } } /// Gets the current status of the flight computer. public State Status { get { var satellite = RTCore.Instance.Network[SignalProcessor.VesselId]; var connection = RTCore.Instance.Network[satellite]; var status = State.Normal; if (!SignalProcessor.Powered) status |= State.OutOfPower; if (!SignalProcessor.IsMaster) status |= State.NotMaster; if (!connection.Any()) status |= State.NoConnection; if (Vessel.packed) status |= State.Packed; return status; } } /// Returns true to keep the throttle on the current position without a connection, otherwise false. public bool KeepThrottleNoConnect => !RTSettings.Instance.ThrottleZeroOnNoConnection; /// Returns true to lock the throttle on the current position without a connection, otherwise false. public bool LockedThrottleNoConnect = false; /// Returns the last known position of throttle prior to connection loss. public float LockedThrottlePositionNoConnect = 0f; /// Returns true to set the time wrap factor to 1 upon a connection reestablished, otherwise false public bool StopTimeWrapOnReconnect => RTSettings.Instance.StopTimeWrapOnReConnection; /// Returns true to indicate whether a connection loss occurs private bool TimeWrapConnectionLoss = false; /// Gets or sets the total delay which is the usual light speed delay + any manual delay. public double TotalDelay { get; set; } /// The target () of a . public ITargetable DelayedTarget { get; set; } /// The last used by the Flight Computer. public TargetCommand LastTarget; /// The vessel owning this flight computer. public Vessel Vessel { get; private set; } /// The signal processor (; ) used by this flight computer. public ISignalProcessor SignalProcessor { get; } /// List of autopilots for this flight computer. Used by external mods to add their own autopilots ( class). public List> SanctionedPilots { get; } /// List of commands that are currently active (not queued). public IEnumerable ActiveCommands => _activeCommands.Values; /// List of queued commands in the flight computer. public IEnumerable QueuedCommands => _commandQueue; /// Action triggered if the active command is aborted. public Action OnActiveCommandAbort; /// Action triggered if a new command popped to an active command. public Action OnNewCommandPop; /// Get the active Flight mode as an (). public AttitudeCommand CurrentFlightMode => _activeCommands[0] as AttitudeCommand; /// Proportional Integral Derivative vessel controller. public PIDController PIDController; public static double PIDKp = 2.0, PIDKi = 0.8, PIDKd = 1.0; public static readonly double RoverPIDKp = 1.0, RoverPIDKi = 0.0, RoverPIDKd = 0.0; /// The window of the flight computer. public FlightComputerWindow Window { get { _flightComputerWindow?.Hide(); return _flightComputerWindow = new FlightComputerWindow(this); } } /// Computer able to pilot a rover (part of the flight computer). public RoverComputer RoverComputer { get; } /// Flight Computer constructor. /// A signal processor (most probably a instance.) public FlightComputer(ISignalProcessor s) { SignalProcessor = s; Vessel = s.Vessel; SanctionedPilots = new List>(); LastTarget = TargetCommand.WithTarget(null); var attitude = AttitudeCommand.Off(); _activeCommands[attitude.Priority] = attitude; //Use http://www.ni.com/white-paper/3782/en/ to fine-tune PIDController = new PIDController(PIDKp, PIDKi, PIDKd, 1.0, -1.0, true); PIDController.SetVessel(Vessel); GameEvents.onVesselChange.Add(OnVesselChange); GameEvents.onVesselSwitching.Add(OnVesselSwitching); GameEvents.onGameSceneSwitchRequested.Add(OnSceneSwitchRequested); RoverComputer = new RoverComputer(this, RoverPIDKp, RoverPIDKi, RoverPIDKd); RoverComputer.SetVessel(Vessel); // Add RT listeners from KSP Autopilot StockAutopilotCommand.UIreference = GameObject.FindObjectOfType(); if (StockAutopilotCommand.UIreference != null) { for (var index = 0; index < StockAutopilotCommand.UIreference.modeButtons.Length; index++) { var buttonIndex = index; // prevent compiler optimisation from assigning static final index value StockAutopilotCommand.UIreference.modeButtons[index].onClick.AddListener(delegate { StockAutopilotCommand.AutopilotButtonClick(buttonIndex, this); }); // bad idea to use RemoveAllListeners() since no easy way to re-add the original stock listener to onClick } } } /// Called when a game switch is requested: close the current computer. /// data with from and to scenes. private void OnSceneSwitchRequested(GameEvents.FromToAction data) { if (data.to != GameScenes.FLIGHT) Dispose(); } /// Called when there's a vessel switch, switching from `fromVessel` to `toVessel`. /// The vessel we switch from. /// The vessel we're switching to. private void OnVesselSwitching(Vessel fromVessel, Vessel toVessel) { RTLog.Notify("OnVesselSwitching - from: " + (fromVessel != null ? fromVessel.vesselName : "N/A") + " to: " + toVessel.vesselName); if(fromVessel != null) { // remove flight code controls. fromVessel.OnFlyByWire -= OnFlyByWirePre; fromVessel.OnFlyByWire -= OnFlyByWirePost; } _flightComputerWindow?.Hide(); } /// After switching the vessel hide the current flight computer UI. /// The **new** vessel we are changing to. public void OnVesselChange(Vessel vessel) { RTLog.Notify("OnVesselChange - new vessel: " + (vessel != null ? vessel.vesselName : "N/A")); _flightComputerWindow?.Hide(); } /// Called when the flight computer is disposed. This happens when the is destroyed. public void Dispose() { RTLog.Notify("FlightComputer: Dispose"); GameEvents.onVesselChange.Remove(OnVesselChange); GameEvents.onVesselSwitching.Remove(OnVesselSwitching); GameEvents.onGameSceneSwitchRequested.Remove(OnSceneSwitchRequested); if (Vessel != null) { // remove flight code controls. Vessel.OnFlyByWire -= OnFlyByWirePre; Vessel.OnFlyByWire -= OnFlyByWirePost; } _flightComputerWindow?.Hide(); // Remove RT listeners from KSP Autopilot if (StockAutopilotCommand.UIreference != null) { for (var index = 0; index < StockAutopilotCommand.UIreference.modeButtons.Length; index++) { var buttonIndex = index; // prevent compiler optimisation from assigning static final index value StockAutopilotCommand.UIreference.modeButtons[index].onClick.RemoveListener(delegate { StockAutopilotCommand.AutopilotButtonClick(buttonIndex, this); }); } StockAutopilotCommand.UIreference = null; } } /// Abort all active commands. public void Reset() { foreach (var cmd in _activeCommands.Values) { cmd.Abort(); } OnActiveCommandAbort.Invoke(); } /// Enqueue a command in the flight computer command queue. /// The command to be enqueued. /// If true the command is not enqueued. /// If true, the command is executed immediately, otherwise the light speed delay is applied. /// If true, the command is executed without manual delay (if any). The normal light speed delay still applies. public void Enqueue(ICommand cmd, bool ignoreControl = false, bool ignoreDelay = false, bool ignoreExtra = false) { if (!InputAllowed && !ignoreControl) return; if (!ignoreDelay) cmd.TimeStamp += Delay; if (!ignoreExtra) { cmd.ExtraDelay += Math.Max(0, TotalDelay - Delay); cmd.ExtraDelayScheduledTimeStamp = cmd.TimeStamp + cmd.ExtraDelay; } var pos = _commandQueue.BinarySearch(cmd); if (pos < 0) { _commandQueue.Insert(~pos, cmd); cmd.CommandEnqueued(this); OrderCommandList(); } } /// Remove a command from the flight computer command queue. /// The command to be removed from the command queue. public void Remove(ICommand cmd) { _commandQueue.Remove(cmd); if (_activeCommands.ContainsValue(cmd)) _activeCommands.Remove(cmd.Priority); } /// Called by the method during the Update() "Game Logic" engine phase. /// This checks if there are any commands that can be removed from the FC queue if their delay has elapsed. public void OnUpdate() { if (RTCore.Instance == null) return; if (!SignalProcessor.IsMaster) return; PopCommand(); ExecuteConnectionStatusActions(); } /// Called by the method during the "Physics" engine phase. public void OnFixedUpdate() { if (RTCore.Instance == null) return; if (Vessel == null) { Vessel = SignalProcessor.Vessel; RoverComputer.SetVessel(Vessel); PIDController.SetVessel(Vessel); } // only handle onFixedUpdate if the ship is unpacked if (Vessel.packed) return; // Do we have a loaded configuration? if (_fcLoadedConfigs != null) { // than load Load(_fcLoadedConfigs); _fcLoadedConfigs = null; } // Re-attach periodically Vessel.OnFlyByWire -= OnFlyByWirePre; Vessel.OnFlyByWire -= OnFlyByWirePost; if (Vessel != SignalProcessor.Vessel) { SanctionedPilots.Clear(); Vessel = SignalProcessor.Vessel; RoverComputer.SetVessel(Vessel); PIDController.SetVessel(Vessel); } // set flight control. Vessel.OnFlyByWire = OnFlyByWirePre + Vessel.OnFlyByWire + OnFlyByWirePost; //Update PID loop PIDController.OnFixedUpdate(); // Send updates for Target if (Vessel == FlightGlobals.ActiveVessel && FlightGlobals.fetch.VesselTarget != LastTarget.Target) { Enqueue(TargetCommand.WithTarget(FlightGlobals.fetch.VesselTarget)); UpdateLastTarget(); } } /// Updates the last target command used by the flight computer. private void UpdateLastTarget() { int lastTargetIndex = _commandQueue.FindLastIndex(c => (c is TargetCommand)); if (lastTargetIndex >= 0) { LastTarget = _commandQueue[lastTargetIndex] as TargetCommand; } else if (_activeCommands.ContainsKey(LastTarget.Priority) && _activeCommands[LastTarget.Priority] is TargetCommand) { LastTarget = _activeCommands[LastTarget.Priority] as TargetCommand; } else { LastTarget = TargetCommand.WithTarget(null); } } /// Enqueue a to the flight control queue. /// The to be queued. private void Enqueue(FlightCtrlState fs) { var dfs = new DelayedFlightCtrlState(fs); dfs.TimeStamp += Delay; if (StockAutopilotCommand.IsAutoPilotEngaged(this) && RTSettings.Instance.EnableSignalDelay) // remove the delay if the autopilot is engaged { var autopilotfs = new DelayedFlightCtrlState(fs); // make copy of FS and apply no delay //nullify autopilot inputs in the delayed fs dfs.State.roll = 0f; dfs.State.rollTrim = 0f; dfs.State.pitch = 0f; dfs.State.pitchTrim = 0f; dfs.State.yaw = 0f; dfs.State.yawTrim = 0f; //nullify throttle autopilotfs.State.mainThrottle = 0f; _flightCtrlQueue.Enqueue(autopilotfs); } _flightCtrlQueue.Enqueue(dfs); } /// Remove a from the flight control queue. /// The to be removed from the queue. /// The satellite from which the should be removed. private void PopFlightCtrl(FlightCtrlState fcs, ISatellite sat) { var delayed = new FlightCtrlState(); float maxThrottle = (Delay >= 0.01) ? 0.0f : fcs.mainThrottle; //Comment: if rocket at launchpad is Local Control and switchs to Remote Control upon launching, throttle is initially zero in this transition //however, it is lethal RO issue as zero throttle even once will count against engine's limited number of ignitions //Workaround: just pipe FCS throttle to delayed state until delay is large enough to revert back to normal RT operation while (_flightCtrlQueue.Count > 0 && _flightCtrlQueue.Peek().TimeStamp <= RTUtil.GameTime) { delayed = _flightCtrlQueue.Dequeue().State; maxThrottle = Math.Max(maxThrottle, delayed.mainThrottle); } delayed.mainThrottle = maxThrottle; if (!KeepThrottleNoConnect && !InputAllowed) // enforce the rule of shutting throttle down on connection loss { delayed.mainThrottle = 0f; } else if (KeepThrottleNoConnect && LockedThrottleNoConnect) // when connection is lost with the disabled rule of shutting throttle down, throttle is locked { delayed.mainThrottle = LockedThrottlePositionNoConnect; } fcs.CopyFrom(delayed); } /// Check whether there are commands that can be removed from the flight computer command queue (when their delay time has elapsed). /// This is done during the Update() phase of the game engine. method. private void PopCommand() { // something in command queue? if (_commandQueue.Count <= 0) return; // Can come out of time warp even if ship is not powered; workaround for KSP 0.24 power consumption bug if (RTSettings.Instance.ThrottleTimeWarp && TimeWarp.CurrentRate > 4.0f) { var time = TimeWarp.deltaTime; foreach (var dc in _commandQueue.TakeWhile(c => c.TimeStamp <= RTUtil.GameTime + (2 * time + 1.0))) { var message = new ScreenMessage(Localizer.Format("#RT_FC_msg1"), 4.0f, ScreenMessageStyle.UPPER_LEFT);//"[Flight Computer]: Throttling back time warp..." while ((2 * TimeWarp.deltaTime + 1.0) > (Math.Max(dc.TimeStamp - RTUtil.GameTime, 0) + dc.ExtraDelay) && TimeWarp.CurrentRate > 1.0f)// { TimeWarp.SetRate(TimeWarp.CurrentRateIndex - 1, true); ScreenMessages.PostScreenMessage(message); } } } // Proceed the extraDelay for every command where the normal delay is over foreach (var dc in _commandQueue.Where(s => s.Delay == 0).ToList()) { // Use time decrement instead of comparing scheduled time, in case we later want to // reinstate event clocks stopping under certain conditions if (dc.ExtraDelay > 0) { //issue: deltaTime is floating point -/+0.001, not great for long-term time-senitive operation if (dc.ExtraDelayScheduledTimeStamp > RTUtil.GameTime) { dc.ExtraDelay = dc.ExtraDelayScheduledTimeStamp - RTUtil.GameTime; } else //fallback { dc.ExtraDelay -= TimeWarp.deltaTime; } } else { if (SignalProcessor.Powered) { // Note: depending on implementation, dc.Pop() may execute the event if (dc.Pop(this)) { _activeCommands[dc.Priority] = dc; if (OnNewCommandPop != null) { OnNewCommandPop.Invoke(); } } } else { string message = Localizer.Format("#RT_FC_msg2", dc.ShortName);//$"[Flight Computer]: Out of power, cannot run \"{}\" on schedule." ScreenMessages.PostScreenMessage(new ScreenMessage( message, 4.0f, ScreenMessageStyle.UPPER_LEFT)); } _commandQueue.Remove(dc); UpdateLastTarget(); } } } /// Control the flight. Called before the method. /// The input flight control state. private void OnFlyByWirePre(FlightCtrlState fcs) { if (!SignalProcessor.IsMaster) return; var satellite = RTCore.Instance.Satellites[SignalProcessor.VesselId]; if (Vessel == FlightGlobals.ActiveVessel && InputAllowed && !satellite.HasLocalControl) { Enqueue(fcs); } if (!satellite.HasLocalControl) { if (InputAllowed) // working connection { LockedThrottleNoConnect = false; } else // connection loss { if (!LockedThrottleNoConnect) { LockedThrottleNoConnect = true; LockedThrottlePositionNoConnect = fcs.mainThrottle; } } PopFlightCtrl(fcs, satellite); } } /// Control the flight. Called after the method. /// The input flight control state. private void OnFlyByWirePost(FlightCtrlState fcs) { if (!SignalProcessor.IsMaster) return; if (!InputAllowed && KeepThrottleNoConnect == false) { fcs.Neutralize(); } if (SignalProcessor.Powered) { foreach (var dc in _activeCommands.Values.ToList()) { if (dc.Execute(this, fcs)) _activeCommands.Remove(dc.Priority); } } foreach (var pilot in SanctionedPilots) { pilot.Invoke(fcs); } } /// Orders the command queue to be chronological. public void OrderCommandList() { if (_commandQueue.Count <= 0) return; var backupList = _commandQueue; // sort the backup queue backupList = backupList.OrderBy(s => (s.Delay + s.ExtraDelay)).ToList(); // clear the old queue _commandQueue.Clear(); // add the sorted queue foreach (var command in backupList) { _commandQueue.Add(command); } } /// Restores the flight computer from the persistent save. /// Node with the informations for the flight computer public void Load(ConfigNode configNode) { RTLog.Notify("Loading Flightcomputer from persistent!"); if (!configNode.HasNode("FlightComputer")) return; // Wait while we are packed and store the current configNode if (Vessel.packed) { RTLog.Notify("Save Flightconfig after unpacking"); _fcLoadedConfigs = configNode.CreateCopy(); //Apparently, _fcLoadedConfigs (resided at memory pointer of configNode) is changed at 1 point before loading into FC. CreateCopy() duplicates the content to a separate memory space. return; } // Load the current vessel from signal processor if we haven't one the flight computer if (Vessel == null) { Vessel = SignalProcessor.Vessel; RoverComputer.SetVessel(Vessel); PIDController.SetVessel(Vessel); } // Read Flight computer informations var flightNode = configNode.GetNode("FlightComputer"); TotalDelay = double.Parse(flightNode.GetValue("TotalDelay")); var activeCommands = flightNode.GetNode("ActiveCommands"); var commands = flightNode.GetNode("Commands"); // Read active commands if (activeCommands.HasNode()) { if (_activeCommands.Count > 0) _activeCommands.Clear(); foreach (ConfigNode cmdNode in activeCommands.nodes) { var cmd = AbstractCommand.LoadCommand(cmdNode, this); if (cmd == null) continue; _activeCommands[cmd.Priority] = cmd; cmd.Pop(this); } } // Read queued commands if (commands.HasNode()) { // clear the current list if (_commandQueue.Count > 0) _commandQueue.Clear(); RTLog.Notify("Loading queued commands from persistent ..."); foreach (ConfigNode cmdNode in commands.nodes) { var cmd = AbstractCommand.LoadCommand(cmdNode, this); if (cmd == null) continue; // if delay = 0 we're ready for the extraDelay if (cmd.Delay == 0) { if (cmd is ManeuverCommand) { RTUtil.ScreenMessage(Localizer.Format("#RT_FC_msg3"));//"A maneuver burn is required" continue; } // if extraDelay is set, we've to calculate the elapsed time // and set the new extra delay based on the current time if (cmd.ExtraDelay > 0) { cmd.ExtraDelay = cmd.TimeStamp + cmd.ExtraDelay - RTUtil.GameTime; // Are we ready to handle the command ? if (cmd.ExtraDelay <= 0) { if (cmd is BurnCommand) { RTUtil.ScreenMessage(Localizer.Format("#RT_FC_msg4"));//"A burn command is required" continue; } // change the extra delay to x/100 cmd.ExtraDelay = Math.Abs(cmd.ExtraDelay) / 100; } } } // add command to queue _commandQueue.Add(cmd); } } UpdateLastTarget(); } /// Saves all values for the flight computer to the persistent. /// Node to save in public void Save(ConfigNode n) { if (n.HasNode("FlightComputer")) n.RemoveNode("FlightComputer"); var activeCommands = new ConfigNode("ActiveCommands"); var commands = new ConfigNode("Commands"); // save active commands foreach (var cmd in _activeCommands) { // Save each active command on his own node var activeCommandNode = new ConfigNode(cmd.Value.GetType().Name); cmd.Value.Save(activeCommandNode, this); activeCommands.AddNode(activeCommandNode); } // save commands foreach (var cmd in _commandQueue) { // Save each command on his own node var commandNode = new ConfigNode(cmd.GetType().Name); cmd.Save(commandNode, this); commands.AddNode(commandNode); } var flightNode = new ConfigNode("FlightComputer"); flightNode.AddValue("TotalDelay", TotalDelay); flightNode.AddNode(activeCommands); flightNode.AddNode(commands); n.AddNode(flightNode); } /// Returns true if there's a least one on the queue. public bool HasManeuverCommands() { if (_commandQueue.Count <= 0) return false; // look for ManeuverCommands var maneuverFound = _commandQueue.FirstOrDefault(command => command is ManeuverCommand); return maneuverFound != null; } /// Looks for the passed on the command queue and returns true if the node is already on the list. /// Node to search in the queued commands public bool HasManeuverCommandByNode(ManeuverNode node) { if (_commandQueue.Count <= 0) return false; // look for ManeuverCommands var maneuverFound = _commandQueue.FirstOrDefault(command => (command is ManeuverCommand && ((ManeuverCommand)command).Node == node)); return maneuverFound != null; } /// Triggers a for the given /// Node to cancel from the queue public void RemoveManeuverCommandByNode(ManeuverNode node) { if (_commandQueue.Count <= 0) return; // look for ManeuverCommands for(var i = _commandQueue.Count - 1; i>= 0; i--) { var maneuverCmd = _commandQueue[i] as ManeuverCommand; if(maneuverCmd != null && maneuverCmd.Node == node) { // remove Node Enqueue(CancelCommand.WithCommand(maneuverCmd)); return; } } } /// /// Execute actions depending on connection status /// private void ExecuteConnectionStatusActions() { //stop time wrap if re-connection occurred if (StopTimeWrapOnReconnect && TimeWarp.CurrentRate > 1.0f) { if (!RTCore.Instance.Satellites[SignalProcessor.VesselId].Connections.Any()) // no connection { TimeWrapConnectionLoss = true; } else // working connection { if (TimeWrapConnectionLoss) { TimeWrapConnectionLoss = false; var message = new ScreenMessage(Localizer.Format("#RT_FC_msg1"), 4.0f, ScreenMessageStyle.UPPER_LEFT);//"[Flight Computer]: Throttling back time warp..." TimeWarp.SetRate(0, false); //gentle stopping ScreenMessages.PostScreenMessage(message); } } } } } } ================================================ FILE: src/RemoteTech/FlightComputer/FlightCore.cs ================================================ using System; using System.Linq; using UnityEngine; using RemoteTech.FlightComputer.Commands; namespace RemoteTech.FlightComputer { public static class FlightCore { public static bool UseSas = true; public static void HoldAttitude(FlightCtrlState fs, FlightComputer f, ReferenceFrame frame, FlightAttitude attitude, Quaternion extra) { var v = f.Vessel; var forward = Vector3.zero; var up = Vector3.zero; bool ignoreRoll = false; switch (frame) { case ReferenceFrame.Orbit: ignoreRoll = true; forward = v.GetObtVelocity(); up = (v.mainBody.position - v.CoM); break; case ReferenceFrame.Surface: ignoreRoll = true; forward = v.GetSrfVelocity(); up = (v.mainBody.position - v.CoM); break; case ReferenceFrame.North: up = (v.mainBody.position - v.CoM); forward = Vector3.ProjectOnPlane(v.mainBody.position + v.mainBody.transform.up * (float)v.mainBody.Radius - v.CoM, up); break; case ReferenceFrame.Maneuver: ignoreRoll = true; if (f.Vessel.patchedConicSolver == null)//scenario: two vessels within physical range with FC attitude hold cmds. Unloaded one doesn't have solver instance { f.Vessel.AttachPatchedConicsSolver(); f.Vessel.patchedConicSolver.Update(); } if (f.Vessel.patchedConicSolver.maneuverNodes.Count != 0) { forward = f.Vessel.patchedConicSolver.maneuverNodes[0].GetBurnVector(v.orbit); up = (v.mainBody.position - v.CoM); } else { forward = v.GetObtVelocity(); up = (v.mainBody.position - v.CoM); } break; case ReferenceFrame.TargetVelocity: // f.DelayedTarget may be any ITargetable, including a planet // Velocity matching only makes sense for vessels and part modules // Can test for Vessel but not PartModule, so instead test that it's not the third case (CelestialBody) if (f.DelayedTarget != null && !(f.DelayedTarget is CelestialBody)) { forward = v.GetObtVelocity() - f.DelayedTarget.GetObtVelocity(); up = (v.mainBody.position - v.CoM); } else { up = (v.mainBody.position - v.CoM); forward = v.GetObtVelocity(); } break; case ReferenceFrame.TargetParallel: if (f.DelayedTarget != null) // either target vessel or celestial body { forward = f.DelayedTarget.GetTransform().position - v.CoM; up = (v.mainBody.position - v.CoM); } else // no target to aim; default to orbital prograde { up = (v.mainBody.position - v.CoM); forward = v.GetObtVelocity(); } break; } Vector3.OrthoNormalize(ref forward, ref up); Quaternion rotationReference = Quaternion.LookRotation(forward, up); switch (attitude) { case FlightAttitude.Prograde: break; case FlightAttitude.Retrograde: rotationReference = rotationReference * Quaternion.AngleAxis(180, Vector3.up); break; case FlightAttitude.NormalPlus: rotationReference = rotationReference * Quaternion.AngleAxis(90, Vector3.up); break; case FlightAttitude.NormalMinus: rotationReference = rotationReference * Quaternion.AngleAxis(90, Vector3.down); break; case FlightAttitude.RadialPlus: rotationReference = rotationReference * Quaternion.AngleAxis(90, Vector3.right); break; case FlightAttitude.RadialMinus: rotationReference = rotationReference * Quaternion.AngleAxis(90, Vector3.left); break; case FlightAttitude.Surface: rotationReference = rotationReference * extra; break; } HoldOrientation(fs, f, rotationReference, ignoreRoll); } /// /// Single entry point of all Flight Computer orientation holding, including maneuver node. /// public static void HoldOrientation(FlightCtrlState fs, FlightComputer f, Quaternion target, bool ignoreRoll = false, bool ignorePitch = false, bool ignoreHeading = false) { f.Vessel.ActionGroups.SetGroup(KSPActionGroup.SAS, false); SteeringHelper.SteerShipToward(target, fs, f, ignoreRoll, ignorePitch, ignoreHeading); } /// /// Checks the needed propellant of an engine. Its always true if infinite fuel is activ /// /// Propellant for an engine /// True if there are enough propellant to perform public static bool hasPropellant(System.Collections.Generic.List propellants) { if (CheatOptions.InfinitePropellant) return true; foreach (var props in propellants) { var total = props.totalResourceCapacity; var require = props.currentRequirement; // check the total capacity and the required amount of proppelant if (total <= 0 || require > total) { return false; } } return true; } /// /// Get the total thrust of all activated, not flamed out engines. /// /// Current vessel /// Total thrust in kN public static double GetTotalThrust(Vessel v) { double thrust = 0.0; foreach (var pm in v.parts.SelectMany(p => p.FindModulesImplementing())) { // Notice: flameout is only true if you try to perform with this engine not before if (!pm.EngineIgnited || pm.flameout) continue; // check for the needed propellant before changing the total thrust if (!FlightCore.hasPropellant(pm.propellants)) continue; thrust += (double)pm.maxThrust * (pm.thrustPercentage / 100); } return thrust; } } public static class SteeringHelper { public enum FlightControlOutput { IgnorePitch = 1, IgnoreHeading = 2, IgnoreRoll = 4, } private const double outputDeadband = 0.001; private const float driveLimit = 1.0f; private static FlightControlOutput outputControlMask = 0; public static FlightControlOutput FlightOutputControlMask { get { return outputControlMask; } set { outputControlMask = value; } } /* MechJeb2 torque variables */ private static Vector6 torqueReactionWheel = new Vector6(); private static Vector6 torqueGimbal = new Vector6(); private static Vector6 torqueOthers = new Vector6(); private static Vector6 torqueControlSurface = new Vector6(); private static Vector6 rcsThrustAvailable = new Vector6(); private static Vector6 rcsTorqueAvailable = new Vector6(); private static Vector3d torqueAvailable = Vector3d.zero; public static Vector3d TorqueAvailable { get { return torqueAvailable; } } private static Vector3d torqueReactionSpeed; public static Vector3d TorqueReactionSpeed { get { return torqueReactionSpeed; } } /// /// Automatically guides the ship to face a desired orientation /// /// The desired orientation /// The FlightCtrlState for the current vessel. /// The flight computer carrying out the slew /// [optional] to ignore the roll public static void SteerShipToward(Quaternion target, FlightCtrlState c, FlightComputer fc, bool ignoreRoll, bool ignorePitch, bool ignoreHeading) { var actuation = fc.PIDController.GetActuation(target); // deadband actuation.x = Math.Abs(actuation.x) >= outputDeadband ? actuation.x : 0.0; actuation.y = Math.Abs(actuation.y) >= outputDeadband ? actuation.y : 0.0; actuation.z = Math.Abs(actuation.z) >= outputDeadband ? actuation.z : 0.0; // update the flight controls c.pitch = (ignorePitch || (FlightOutputControlMask & FlightControlOutput.IgnorePitch) == FlightControlOutput.IgnorePitch) ? 0.0f : Mathf.Clamp((float) actuation.x, -driveLimit, driveLimit); c.roll = (ignoreRoll || (FlightOutputControlMask & FlightControlOutput.IgnoreRoll) == FlightControlOutput.IgnoreRoll) ? 0.0f : Mathf.Clamp((float) actuation.y, -driveLimit, driveLimit); c.yaw = (ignoreHeading || (FlightOutputControlMask & FlightControlOutput.IgnoreHeading) == FlightControlOutput.IgnoreHeading) ? 0.0f : Mathf.Clamp((float) actuation.z, -driveLimit, driveLimit); } /// /// Import from MechJeb2 /// https://github.com/MuMech/MechJeb2/blob/dev/MechJeb2/VesselState.cs /// public static void AnalyzeParts(Vessel vessel) { torqueAvailable = Vector3d.zero; Vector6 torqueReactionSpeed6 = new Vector6(); torqueReactionWheel.Reset(); torqueControlSurface.Reset(); torqueGimbal.Reset(); torqueOthers.Reset(); UpdateRCSThrustAndTorque(vessel); for (int i = 0; i < vessel.parts.Count; i++) { Part p = vessel.parts[i]; for (int m = 0; m < p.Modules.Count; m++) { PartModule pm = p.Modules[m]; if (!pm.isEnabled) { continue; } ModuleReactionWheel rw = pm as ModuleReactionWheel; if (rw != null) { Vector3 pos; Vector3 neg; rw.GetPotentialTorque(out pos, out neg); // GetPotentialTorque reports the same value for pos & neg on ModuleReactionWheel torqueReactionWheel.Add(pos); torqueReactionWheel.Add(-neg); } else if (pm is ModuleControlSurface) // also does ModuleAeroSurface { ModuleControlSurface cs = (pm as ModuleControlSurface); Vector3 ctrlTorquePos; Vector3 ctrlTorqueNeg; cs.GetPotentialTorque(out ctrlTorquePos, out ctrlTorqueNeg); torqueControlSurface.Add(ctrlTorquePos); torqueControlSurface.Add(-ctrlTorqueNeg); torqueReactionSpeed6.Add(Mathf.Abs(cs.ctrlSurfaceRange) / cs.actuatorSpeed * Vector3d.Max(ctrlTorquePos.Abs(), ctrlTorqueNeg.Abs())); } else if (pm is ModuleGimbal) { ModuleGimbal g = (pm as ModuleGimbal); Vector3 pos; Vector3 neg; g.GetPotentialTorque(out pos, out neg); // GetPotentialTorque reports the same value for pos & neg on ModuleGimbal torqueGimbal.Add(pos); torqueGimbal.Add(-neg); if (g.useGimbalResponseSpeed) torqueReactionSpeed6.Add((Mathf.Abs(g.gimbalRange) / g.gimbalResponseSpeed) * Vector3d.Max(pos.Abs(), neg.Abs())); } else if (pm is ModuleRCS) { // Handled separately } else if (pm is ITorqueProvider) { ITorqueProvider tp = pm as ITorqueProvider; Vector3 pos; Vector3 neg; tp.GetPotentialTorque(out pos, out neg); torqueOthers.Add(pos); torqueOthers.Add(-neg); } } } torqueAvailable += Vector3d.Max(torqueReactionWheel.positive, torqueReactionWheel.negative); torqueAvailable += Vector3d.Max(rcsTorqueAvailable.positive, rcsTorqueAvailable.negative); torqueAvailable += Vector3d.Max(torqueControlSurface.positive, torqueControlSurface.negative); torqueAvailable += Vector3d.Max(torqueGimbal.positive, torqueGimbal.negative); torqueAvailable += Vector3d.Max(torqueOthers.positive, torqueOthers.negative); if (torqueAvailable.sqrMagnitude > 0) { torqueReactionSpeed = Vector3d.Max(torqueReactionSpeed6.positive, torqueReactionSpeed6.negative); torqueReactionSpeed.Scale(torqueAvailable.InvertNoNaN()); } else { torqueReactionSpeed = Vector3d.zero; } } /// /// Minor helpers for MechJeb2 work /// public static Vector3d InvertNoNaN(this Vector3d vector) { return new Vector3d(vector.x != 0 ? 1 / vector.x : 0, vector.y != 0 ? 1 / vector.y : 0, vector.z != 0 ? 1 / vector.z : 0); } public static Vector3 Abs(this Vector3 vector) { return new Vector3(Math.Abs(vector.x), Math.Abs(vector.y), Math.Abs(vector.z)); } /// /// Import from MechJeb2 /// https://github.com/MuMech/MechJeb2/blob/dev/MechJeb2/VesselState.cs /// public static void UpdateRCSThrustAndTorque(Vessel vessel) { rcsThrustAvailable.Reset(); rcsTorqueAvailable.Reset(); if (!vessel.ActionGroups[KSPActionGroup.RCS]) { return; } Vector3d movingCoM = vessel.CurrentCoM; for (int i = 0; i < vessel.parts.Count; i++) { Part p = vessel.parts[i]; for (int m = 0; m < p.Modules.Count; m++) { ModuleRCS rcs = p.Modules[m] as ModuleRCS; if (rcs == null) continue; if (!p.ShieldedFromAirstream && rcs.rcsEnabled && rcs.isEnabled && !rcs.isJustForShow) { Vector3 attitudeControl = new Vector3(rcs.enablePitch ? 1 : 0, rcs.enableRoll ? 1 : 0, rcs.enableYaw ? 1 : 0); Vector3 translationControl = new Vector3(rcs.enableX ? 1 : 0f, rcs.enableZ ? 1 : 0, rcs.enableY ? 1 : 0); for (int j = 0; j < rcs.thrusterTransforms.Count; j++) { Transform t = rcs.thrusterTransforms[j]; Vector3d thrusterPosition = t.position - movingCoM; Vector3d thrustDirection = rcs.useZaxis ? -t.forward : -t.up; float power = rcs.thrusterPower; if (FlightInputHandler.fetch.precisionMode) { if (rcs.useLever) { float lever = rcs.GetLeverDistance(t, thrustDirection, movingCoM); if (lever > 1) { power = power / lever; } } else { power *= rcs.precisionFactor; } } Vector3d thrusterThrust = thrustDirection * power; rcsThrustAvailable.Add(Vector3.Scale(vessel.GetTransform().InverseTransformDirection(thrusterThrust), translationControl)); Vector3d thrusterTorque = Vector3.Cross(thrusterPosition, thrusterThrust); // Convert in vessel local coordinate rcsTorqueAvailable.Add(Vector3.Scale(vessel.GetTransform().InverseTransformDirection(thrusterTorque), attitudeControl)); } } } } } } } ================================================ FILE: src/RemoteTech/FlightComputer/PIDController.cs ================================================ using System; using System.Collections.Generic; using UnityEngine; /// /// Easy way to test the effectiveness of PID Controller is to launch a tiny rocket with a mammoth engine at the /// bottom with FC's GRD+ command & infinite propellent cheat set. KSP's autopilot passes this test with flying colors. /// namespace RemoteTech.FlightComputer { //Based on https://github.com/lamont-granquist/MechJim/blob/577002bccd3558d53efcee873d4bb982540c9cdf/Source/Manager/SteeringManager.cs //and https://github.com/KSP-KOS/KOS/blob/master/src/kOS/Control/SteeringManager.cs public class PIDController { private const double MaxStoppingTime = 10.0; // upper limit to artifically raise the torque amount by factor private const double Phi1FStoppingTime = 0.1; // phi threshold to target orientation, where stopping time will be 1 factor private const double OmegaThreshold = 0.1; // threshold ratio of torque to MoI to apply MaxStoppingTime or not (useful for huge rocket with tiny torque) public const double EPSILON = 1e-16; /* error */ private double phiTotal; /* error in pitch, roll, yaw */ private Vector3d phiVector = Vector3d.zero; private Vector3d TargetOmega = Vector3d.zero; /* max angular rotation */ private Vector3d MaxOmega = Vector3d.zero; private float StoppingTime; private Vector3d Actuation = Vector3d.zero; private Vector3d TargetTorque = Vector3d.zero; private Vector3d Omega = Vector3d.zero; public PIDLoop pitchRatePI; public PIDLoop yawRatePI; public PIDLoop rollRatePI; public TorquePI pitchPI; public TorquePI yawPI; public TorquePI rollPI; public Vessel Vessel; public Quaternion Target; /* temporary state vectors */ public Quaternion VesselRotation; private Vector3d vesselForward; private Vector3d vesselTop; private Vector3d vesselStarboard; private Vector3d targetForward; private Vector3d targetTop; //private Vector3d targetStarboard; public Vector3d getDeviationErrors() { return phiVector; } private double rollControlRange; public double RollControlRange { get { return this.rollControlRange; } set { this.rollControlRange = Math.Max(EPSILON, Math.Min(Math.PI, value)); } } public PIDController(double kp, double ki, double kd, double maxoutput = double.MaxValue, double minoutput = double.MinValue, bool extraUnwind = false) { Vessel = null; Target = new Quaternion(); RollControlRange = 5.0 * Mathf.Deg2Rad; //Use http://www.ni.com/white-paper/3782/en/ to fine-tune pitchRatePI = new PIDLoop(kp, ki, kd, maxoutput, minoutput, extraUnwind); yawRatePI = new PIDLoop(kp, ki, kd, maxoutput, minoutput, extraUnwind); rollRatePI = new PIDLoop(kp, ki, kd, maxoutput, minoutput, extraUnwind); pitchPI = new TorquePI(); yawPI = new TorquePI(); rollPI = new TorquePI(); Reset(); } public void SetVessel(Vessel vessel) { this.Vessel = vessel; } public void setPIDParameters(double kp, double ki, double kd) { pitchRatePI.Kd = kp; pitchRatePI.Ki = ki; pitchRatePI.Kd = kd; yawRatePI.Kd = kp; yawRatePI.Ki = ki; yawRatePI.Kd = kd; rollRatePI.Kd = kp; rollRatePI.Ki = ki; rollRatePI.Kd = kd; Reset(); } public void OnFixedUpdate() { if (Vessel != null) { UpdateStateVectors(Vessel, Target); SteeringHelper.AnalyzeParts(Vessel); Vector3 Torque = SteeringHelper.TorqueAvailable; var CoM = Vessel.CoM; var MoI = Vessel.MOI; phiTotal = calculatePhiTotal(); phiVector = calculatePhiVector();//deviation errors from orientation target for (int i = 0; i < 3; i++) { //Edge case: Very low (torque/MoI) (like 0.0078!) rate so need to rise max acceleration artifically StoppingTime = (OmegaThreshold <= (Torque[i] / MoI[i])) ? 1.0f : (float)RTUtil.Clamp((1.0 / (Torque[i] / MoI[i])) * (Math.Abs(phiVector[i]) - Phi1FStoppingTime), 1.0, MaxStoppingTime); MaxOmega[i] = Mathf.Max((Torque[i] * StoppingTime) / MoI[i], 0.0001f); } TargetOmega[0] = pitchRatePI.Update(-phiVector[0], 0, MaxOmega[0]); TargetOmega[1] = rollRatePI.Update(-phiVector[1], 0, MaxOmega[1]); TargetOmega[2] = yawRatePI.Update(-phiVector[2], 0, MaxOmega[2]); if (Math.Abs(phiTotal) > RollControlRange) { TargetOmega[1] = 0; rollRatePI.ResetI(); } TargetTorque[0] = pitchPI.Update(Omega[0], TargetOmega[0], Vessel.MOI[0], Torque[0]); TargetTorque[1] = rollPI.Update(Omega[1], TargetOmega[1], Vessel.MOI[1], Torque[1]); TargetTorque[2] = yawPI.Update(Omega[2], TargetOmega[2], Vessel.MOI[2], Torque[2]); } } public Vector3d GetActuation(Quaternion thisTarget) { Target = thisTarget; UpdateStateVectors(Vessel, Target); SteeringHelper.UpdateRCSThrustAndTorque(Vessel); Vector3 Torque = SteeringHelper.TorqueAvailable; for (int i = 0; i < 3; i++) { Actuation[i] = TargetTorque[i] / Torque[i]; if (Math.Abs(Actuation[i]) < EPSILON || double.IsNaN(Actuation[i]) || double.IsInfinity(Actuation[i])) { Actuation[i] = 0; } } return Actuation; } public Vector3d calculatePhiVector() { Vector3d Phi = Vector3d.zero; Phi[0] = Vector3d.Angle(vesselForward, Vector3d.Exclude(vesselStarboard, targetForward)) * Mathf.Deg2Rad; if (Vector3d.Angle(vesselTop, Vector3d.Exclude(vesselStarboard, targetForward)) > 90) Phi[0] *= -1; Phi[1] = Vector3d.Angle(vesselTop, Vector3d.Exclude(vesselForward, targetTop)) * Mathf.Deg2Rad; if (Vector3d.Angle(vesselStarboard, Vector3d.Exclude(vesselForward, targetTop)) > 90) Phi[1] *= -1; Phi[2] = Vector3d.Angle(vesselForward, Vector3d.Exclude(vesselTop, targetForward)) * Mathf.Deg2Rad; if (Vector3d.Angle(vesselStarboard, Vector3d.Exclude(vesselTop, targetForward)) > 90) Phi[2] *= -1; return Phi; } public double calculatePhiTotal() { double PhiTotal = Vector3d.Angle(vesselForward, targetForward) * Mathf.Deg2Rad; if (Vector3d.Angle(vesselTop, targetForward) > 90) PhiTotal *= -1; return PhiTotal; } private void UpdateStateVectors(Vessel thisVessel, Quaternion thisTarget) { if (thisVessel != null) { VesselRotation = thisVessel.ReferenceTransform.rotation * Quaternion.Euler(-90, 0, 0); vesselForward = VesselRotation * Vector3d.forward; vesselTop = VesselRotation * Vector3d.up; vesselStarboard = VesselRotation * Vector3d.right; Omega = -thisVessel.angularVelocity; } if (thisTarget != null) { targetForward = thisTarget * Vector3d.forward; targetTop = thisTarget * Vector3d.up; //targetStarboard = thisTarget * Vector3d.right; // comment: no use? } } public void Reset() { pitchPI.ResetI(); yawPI.ResetI(); rollPI.ResetI(); pitchRatePI.ResetI(); yawRatePI.ResetI(); rollRatePI.ResetI(); } } /// /// Imported from kOS with minor modifications /// 9 Sept 2017 /// https://github.com/KSP-KOS/KOS/blob/3ccee6786e52be7a2276b24837fcb1a562e51be4/src/kOS.Safe/Encapsulation/PIDLoop.cs /// Based on https://github.com/lamont-granquist/MechJim/blob/6a10e09b86b969b1b0ffe00881c6f4626ba52bd7/Source/PIDLoop.cs /// public class PIDLoop { public double Kp { get; set; } public double Ki { get; set; } public double Kd { get; set; } public double Input { get; set; } public double Setpoint { get; set; } public double Error { get; set; } public double Output { get; set; } public double MaxOutput { get; set; } public double MinOutput { get; set; } public double ErrorSum { get; set; } public double PTerm { get; set; } public double ITerm { get; set; } public double DTerm { get; set; } public bool ExtraUnwind { get; set; } public double ChangeRate { get; set; } private bool unWinding; public PIDLoop() : this(1, 0, 0) { } public PIDLoop(double kp, double ki, double kd, double maxoutput = double.MaxValue, double minoutput = double.MinValue, bool extraUnwind = false) { Kp = kp; Ki = ki; Kd = kd; Input = 0; Setpoint = 0; Error = 0; Output = 0; MaxOutput = maxoutput; MinOutput = minoutput; ErrorSum = 0; PTerm = 0; ITerm = 0; DTerm = 0; ExtraUnwind = extraUnwind; } public double Update(double input, double setpoint, double minOutput, double maxOutput) { MaxOutput = maxOutput; MinOutput = minOutput; Setpoint = setpoint; return Update(input); } public double Update(double input, double setpoint, double maxOutput) { return Update(input, setpoint, -maxOutput, maxOutput); } public double Update(double input) { double error = Setpoint - input; double pTerm = error * Kp; double iTerm = 0; double dTerm = 0; double dt = TimeWarp.fixedDeltaTime; if (Ki != 0) { if (ExtraUnwind) { if (Math.Sign(error) != Math.Sign(ErrorSum)) { if (!unWinding) { Ki *= 2; unWinding = true; } } else if (unWinding) { Ki /= 2; unWinding = false; } } iTerm = ITerm + error * dt * Ki; } ChangeRate = (input - Input) / dt; if (Kd != 0) { dTerm = -ChangeRate * Kd; } Output = pTerm + iTerm + dTerm; if (Output > MaxOutput) { Output = MaxOutput; if (Ki != 0) { iTerm = Output - Math.Min(pTerm + dTerm, MaxOutput); } } if (Output < MinOutput) { Output = MinOutput; if (Ki != 0) { iTerm = Output - Math.Max(pTerm + dTerm, MinOutput); } } Input = input; Error = error; PTerm = pTerm; ITerm = iTerm; DTerm = dTerm; if (Ki != 0) ErrorSum = iTerm / Ki; else ErrorSum = 0; return Output; } public void ResetI() { ErrorSum = 0; ITerm = 0; } public override string ToString() { return string.Format("PIDLoop(Kp:{0}, Ki:{1}, Kd:{2}, Setpoint:{3}, Error:{4}, Output:{5})", Kp, Ki, Kd, Setpoint, Error, Output); } public string ConstrutorString() { return string.Format("pidloop({0}, {1}, {2}, {3}, {4})", Ki, Kp, Kd, MaxOutput, ExtraUnwind); } } /// /// Imported along with PIDLoop /// 9 Sept 2017 /// public class TorquePI { public PIDLoop Loop { get; set; } public double I { get; private set; } public MovingAverage TorqueAdjust { get; set; } private double tr; public double Tr { get { return tr; } set { tr = value; ts = 4.0 * tr / 2.76; } } private double ts; public double Ts { get { return ts; } set { ts = value; tr = 2.76 * ts / 4.0; } } public TorquePI() { Loop = new PIDLoop(); Ts = 2; TorqueAdjust = new MovingAverage(); } public double Update(double input, double setpoint, double MomentOfInertia, double maxOutput) { I = MomentOfInertia; Loop.Ki = MomentOfInertia * (Math.Pow(4.0 / ts, 2)); //weird bug pf Ki = 1 without () Loop.Kp = 2 * Math.Pow(MomentOfInertia * Loop.Ki, 0.5); return TorqueAdjust.Update(Loop.Update(input, setpoint, maxOutput)); } public void ResetI() { Loop.ResetI(); TorqueAdjust.Reset(); } } /// /// Imported along with PIDLoop /// 9 Sept 2017 /// public class MovingAverage { public List Values { get; set; } public double Mean { get; private set; } public int ValueCount { get { return Values.Count; } } public int SampleLimit { get; set; } public MovingAverage() { Reset(); SampleLimit = 10; } public void Reset() { Mean = 0; if (Values == null) Values = new List(); else Values.Clear(); } public double Update(double value) { if (double.IsInfinity(value) || double.IsNaN(value)) return value; Values.Add(value); while (Values.Count > SampleLimit) { Values.RemoveAt(0); } double sum = 0; double count = 0; double max = double.MinValue; double min = double.MaxValue; for (int i = 0; i < Values.Count; i++) { double val = Values[i]; if (val > max) { if (max != double.MinValue) { sum += max; count++; } max = val; } else if (val < min) { if (min != double.MaxValue) { sum += min; count++; } min = val; } else { sum += val; count++; } } if (count == 0) { if (max != double.MinValue) { sum += max; count++; } if (min != double.MaxValue) { sum += min; count++; } } Mean = sum / count; return Mean; } } /// /// Imported from MechJeb2 for torque calculations /// 17 June 2019 /// public class Vector6 { public Vector3d positive = Vector3d.zero, negative = Vector3d.zero; public enum Direction { FORWARD = 0, BACK = 1, UP = 2, DOWN = 3, RIGHT = 4, LEFT = 5 }; public static readonly Vector3d[] directions = { Vector3d.forward, Vector3d.back, Vector3d.up, Vector3d.down, Vector3d.right, Vector3d.left }; public static readonly Direction[] Values = (Direction[])Enum.GetValues(typeof(Direction)); public double forward { get { return positive.z; } set { positive.z = value; } } public double back { get { return negative.z; } set { negative.z = value; } } public double up { get { return positive.y; } set { positive.y = value; } } public double down { get { return negative.y; } set { negative.y = value; } } public double right { get { return positive.x; } set { positive.x = value; } } public double left { get { return negative.x; } set { negative.x = value; } } public double this[Direction index] { get { switch (index) { case Direction.FORWARD: return forward; case Direction.BACK: return back; case Direction.UP: return up; case Direction.DOWN: return down; case Direction.RIGHT: return right; case Direction.LEFT: return left; } return 0; } set { switch (index) { case Direction.FORWARD: forward = value; break; case Direction.BACK: back = value; break; case Direction.UP: up = value; break; case Direction.DOWN: down = value; break; case Direction.RIGHT: right = value; break; case Direction.LEFT: left = value; break; } } } public Vector6() { } public Vector6(Vector3d positive, Vector3d negative) { this.positive = positive; this.negative = negative; } public void Reset() { positive = Vector3d.zero; negative = Vector3d.zero; } public void Add(Vector3d vector) { for (int i = 0; i < Values.Length; i++) { Direction d = Values[i]; double projection = Vector3d.Dot(vector, directions[(int)d]); if (projection > 0) { this[d] += projection; } } } public double GetMagnitude(Vector3d direction) { double sqrMagnitude = 0; for (int i = 0; i < Values.Length; i++) { Direction d = Values[i]; double projection = Vector3d.Dot(direction.normalized, directions[(int)d]); if (projection > 0) { sqrMagnitude += Math.Pow(projection * this[d], 2); } } return Math.Sqrt(sqrMagnitude); } } } ================================================ FILE: src/RemoteTech/FlightComputer/RoverComputer.cs ================================================ using System; using UnityEngine; namespace RemoteTech.FlightComputer { public class RoverComputer { private const float driveLimit = 1.0f; private const double minRadarAlt = 2.0; // in meters private double Kp, Ki, Kd; private Vessel mVessel; private PIDLoop throttlePID; private PIDLoop steerPID; private PIDController pidController; private float mRoverAlt, mRoverLat, mRoverLon, mTargetLat, mTargetLon; private Quaternion mRoverRot; private Vector3 ForwardAxis; public Quaternion targetRotation; public float Delta { get; private set; } public float DeltaT { get; private set; } private float RoverHDG { get { Vector3d up = (mVessel.CoM - mVessel.mainBody.position).normalized; Vector3d north = Vector3d.Exclude(up, (mVessel.mainBody.position + mVessel.mainBody.transform.up * (float)mVessel.mainBody.Radius) - mVessel.CoM).normalized; if (ForwardAxis == Vector3.zero) return RTUtil.GetHeading(mVessel.srf_velocity.normalized, up, north); else return RTUtil.GetHeading(mVessel.ReferenceTransform.TransformDirection(ForwardAxis), up, north); } } private float TargetHDG { get { Vector3d up = (mVessel.CoM - mVessel.mainBody.position).normalized; Vector3d north = Vector3d.Exclude(up, (mVessel.mainBody.position + mVessel.mainBody.transform.up * (float)mVessel.mainBody.Radius) - mVessel.CoM).normalized; return RTUtil.GetHeading((TargetPos - mVessel.CoM).normalized, up, north); } } private Vector3 TargetPos { get { return mVessel.mainBody.GetWorldSurfacePosition(mTargetLat, mTargetLon, mVessel.altitude); } } private Vector3 RoverOrigPos { get { return mVessel.mainBody.GetWorldSurfacePosition(mRoverLat, mRoverLon, mRoverAlt); } } private float RoverSpeed { get { if (ForwardAxis == Vector3.zero) return (float)mVessel.srf_velocity.magnitude; else return Vector3.Dot(mVessel.srf_velocity, mVessel.ReferenceTransform.TransformDirection(ForwardAxis)); } } public RoverComputer(FlightComputer fc, double kp, double ki, double kd) { throttlePID = new PIDLoop(1, 0, 0); steerPID = new PIDLoop(1, 0, 0); pidController = fc.PIDController; //don't think of putting second copy of PID here this.Kp = kp; this.Ki = ki; this.Kd = kd; } public void SetVessel(Vessel v) { mVessel = v; } public void InitMode(RemoteTech.FlightComputer.Commands.DriveCommand dc) { if (mVessel == null) { RTLog.Verbose("Vessel is null!"); return; } ForwardAxis = Vector3.zero; mRoverAlt = (float) mVessel.altitude; mRoverLat = (float) mVessel.latitude; mRoverLon = (float) mVessel.longitude; Delta = 0; DeltaT = 0; /* Explanation on targetRotation * Quaternion.Euler(x,y,z) - Returns a rotation that rotates z degrees around the z axis, * x degrees around the x axis, and y degrees around the y axis * in that order. * * Unity Q.Euler(0,0,0) isn't matched to KSP's rotation "(0,0,0)" (-90, varying UP-axis, 90) so need to * match the target rotation to the KSP's rotation. * * Rover-specific rotation is Forward (y) to HDG 0, Up (x) to North and * Right (z) to East. */ const float KSPRotXAxis = -90f, KSPRotZAxis = 90f; double AngleFromUpAxis = Mathf.Rad2Deg * Math.Atan(-mVessel.upAxis.z / -mVessel.upAxis.x); float KSPRotYAxis = (float) -AngleFromUpAxis; switch (dc.mode) { case RemoteTech.FlightComputer.Commands.DriveCommand.DriveMode.Turn: mRoverRot = mVessel.ReferenceTransform.rotation; break; case RemoteTech.FlightComputer.Commands.DriveCommand.DriveMode.Distance: targetRotation = Quaternion.Euler(KSPRotXAxis, KSPRotYAxis, KSPRotZAxis); break; case RemoteTech.FlightComputer.Commands.DriveCommand.DriveMode.DistanceHeading: targetRotation = Quaternion.Euler(KSPRotXAxis - dc.target2, KSPRotYAxis, KSPRotZAxis); break; case RemoteTech.FlightComputer.Commands.DriveCommand.DriveMode.Coord: mTargetLat = dc.target; mTargetLon = dc.target2; targetRotation = Quaternion.Euler(KSPRotXAxis - TargetHDG, KSPRotYAxis, KSPRotZAxis); break; } pidController.setPIDParameters(Kp, Ki, Kd); throttlePID.ResetI(); steerPID.ResetI(); mVessel.ActionGroups.SetGroup(KSPActionGroup.Brakes, false); } public bool Drive(RemoteTech.FlightComputer.Commands.DriveCommand dc, FlightCtrlState fs) { if (dc != null) { if (mVessel.srf_velocity.magnitude > 0.5) { float degForward = Mathf.Abs(RTUtil.ClampDegrees90(Vector3.Angle(mVessel.srf_velocity, mVessel.ReferenceTransform.forward))); float degUp = Mathf.Abs(RTUtil.ClampDegrees90(Vector3.Angle(mVessel.srf_velocity, mVessel.ReferenceTransform.up))); float degRight = Mathf.Abs(RTUtil.ClampDegrees90(Vector3.Angle(mVessel.srf_velocity, mVessel.ReferenceTransform.right))); if (degForward < degUp && degForward < degRight) ForwardAxis = Vector3.forward; else if (degRight < degUp && degRight < degForward) ForwardAxis = Vector3.right; else ForwardAxis = Vector3.up; } switch (dc.mode) { case RemoteTech.FlightComputer.Commands.DriveCommand.DriveMode.Turn: return Turn(dc, fs); case RemoteTech.FlightComputer.Commands.DriveCommand.DriveMode.Distance: return Distance(dc, fs); case RemoteTech.FlightComputer.Commands.DriveCommand.DriveMode.DistanceHeading: return DistanceHeading(dc, fs); case RemoteTech.FlightComputer.Commands.DriveCommand.DriveMode.Coord: return Coord(dc, fs); } return true; } return true; } private bool Turn(RemoteTech.FlightComputer.Commands.DriveCommand dc, FlightCtrlState fs) { Delta = Math.Abs(Quaternion.Angle(mRoverRot, mVessel.ReferenceTransform.rotation)); DeltaT = Delta / mVessel.GetComponent().angularVelocity.magnitude; if (Delta < dc.target) { fs.wheelThrottle = (float)throttlePID.Update(RoverSpeed, dc.speed, -1.0, 1.0); fs.wheelSteer = dc.steering; return false; } else { fs.wheelThrottle = 0; fs.wheelSteer = 0; mVessel.ActionGroups.SetGroup(KSPActionGroup.Brakes, true); dc.mode = RemoteTech.FlightComputer.Commands.DriveCommand.DriveMode.Off; return true; } } private bool Distance(RemoteTech.FlightComputer.Commands.DriveCommand dc, FlightCtrlState fs) { Delta = Math.Abs(dc.target) - Vector3.Distance(RoverOrigPos, mVessel.CoM); DeltaT = Delta / Math.Abs(RoverSpeed); if (Delta > 0) { fs.wheelThrottle = (float)throttlePID.Update(RoverSpeed, dc.speed, -1.0, 1.0); if (mVessel.radarAltitude > minRadarAlt) { Vector3d actuation = pidController.GetActuation(targetRotation); fs.pitch = Mathf.Clamp((float)actuation.x, -driveLimit, driveLimit); fs.roll = Mathf.Clamp((float)actuation.y, -driveLimit, driveLimit); } return false; } else { fs.wheelThrottle = 0; fs.wheelSteer = 0; mVessel.ActionGroups.SetGroup(KSPActionGroup.Brakes, true); dc.mode = RemoteTech.FlightComputer.Commands.DriveCommand.DriveMode.Off; return true; } } private bool DistanceHeading(RemoteTech.FlightComputer.Commands.DriveCommand dc, FlightCtrlState fs) { Delta = Math.Abs(dc.target) - Vector3.Distance(RoverOrigPos, mVessel.CoM); DeltaT = Delta / RoverSpeed; if (Delta > 0) { fs.wheelThrottle = (float)throttlePID.Update(RoverSpeed, dc.speed, -1.0, 1.0); if (ForwardAxis != Vector3.zero) { Vector3d actuation = pidController.GetActuation(targetRotation); float steeringOutput = (float)-steerPID.Update(RTUtil.AngleBetween(RoverHDG, dc.target2), 0, -1.0, 1.0); if (mVessel.radarAltitude > minRadarAlt) { fs.pitch = Mathf.Clamp((float)actuation.x, -driveLimit, driveLimit); fs.roll = Mathf.Clamp((float)actuation.y, -driveLimit, driveLimit); } fs.yaw = Mathf.Clamp((float)actuation.z, -driveLimit, driveLimit); //keep if u want jet car fs.wheelSteer = SmoothenWheelSteering(RTUtil.AngleBetween(RoverHDG, dc.target2), steeringOutput, -dc.steering, dc.steering); } return false; } else { fs.wheelThrottle = 0; fs.wheelSteer = 0; mVessel.ActionGroups.SetGroup(KSPActionGroup.Brakes, true); dc.mode = RemoteTech.FlightComputer.Commands.DriveCommand.DriveMode.Off; return true; } } private bool Coord(RemoteTech.FlightComputer.Commands.DriveCommand dc, FlightCtrlState fs) { Delta = Vector3.Distance(mVessel.CoM, TargetPos); DeltaT = Delta / RoverSpeed; if (Delta >= 0.1f) //zero is inpractical due to float nature { fs.wheelThrottle = (float)throttlePID.Update(RoverSpeed, dc.speed, -1.0, 1.0); if (ForwardAxis != Vector3.zero) { Vector3d actuation = pidController.GetActuation(targetRotation); float steeringOutput = (float) -steerPID.Update(RTUtil.AngleBetween(RoverHDG, TargetHDG), -1.0, 1.0); if (mVessel.radarAltitude > minRadarAlt) { fs.pitch = Mathf.Clamp((float)actuation.x, -driveLimit, driveLimit); fs.roll = Mathf.Clamp((float)actuation.y, -driveLimit, driveLimit); } fs.yaw = Mathf.Clamp((float)actuation.z, -driveLimit, driveLimit); //keep if u want jet car fs.wheelSteer = SmoothenWheelSteering(RTUtil.AngleBetween(RoverHDG, TargetHDG), steeringOutput, -dc.steering, dc.steering); } return false; } else { fs.wheelThrottle = 0; fs.wheelSteer = 0; mVessel.ActionGroups.SetGroup(KSPActionGroup.Brakes, true); dc.mode = RemoteTech.FlightComputer.Commands.DriveCommand.DriveMode.Off; return true; } } private float SmoothenWheelSteering(float angleBetweenHDGs, float outputSteer, float maxLeftSteerLimit, float maxRightSteerLimit) { angleBetweenHDGs = Math.Abs(angleBetweenHDGs); if (angleBetweenHDGs <= 1) { outputSteer = Mathf.Clamp(outputSteer, -0.005f, 0.005f); } else if (angleBetweenHDGs <= 3) { outputSteer = Mathf.Clamp(outputSteer, -0.01f, 0.01f); } else if (angleBetweenHDGs <= 10) { outputSteer = Mathf.Clamp(outputSteer, -0.05f, 0.05f); } else if (angleBetweenHDGs <= 20) { outputSteer = Mathf.Clamp(outputSteer, -0.1f, 0.1f); } else if (angleBetweenHDGs <= 30) { outputSteer = Mathf.Clamp(outputSteer, -0.4f, 0.4f); } else { outputSteer = Mathf.Clamp(outputSteer, maxLeftSteerLimit, maxRightSteerLimit); } return outputSteer; } } } ================================================ FILE: src/RemoteTech/FlightComputer/UIPartActionMenuPatcher.cs ================================================ using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Globalization; using UnityEngine; namespace RemoteTech.FlightComputer { public static class UIPartActionMenuPatcher { // UI types that we are actually hooking public static Type[] UIPartActionFieldItemAllowedTypes = { typeof(UIPartActionToggle), typeof(UIPartActionFloatRange), typeof(UIPartActionCycle) }; public static List ParsedPartActions = new List(); public static void WrapPartActionEventItem(Part part, Action passthrough) { var controller = UIPartActionController.Instance; if (!controller) return; // get the part action window corresponding to the part var window = controller.GetItem(part); if (window == null) return; // get all the items that makes this window (toggle buttons, sliders, etc.) var partActionItems = window.ListItems; // loop through all of those UI components for (var i = 0; i < partActionItems.Count(); i++) { // check that the part action item is actually a UIPartActionFieldItem (it could be a UIPartActionEventItem) var uiPartActionEventItem = (partActionItems[i] as UIPartActionEventItem); if (uiPartActionEventItem == null) continue; // get event from button BaseEvent originalEvent = uiPartActionEventItem.Evt; // Search for the BaseEventDelegate (BaseEvent.onEvent) field defined for the current BaseEvent type. // Note that 'onEvent' is protected, so we have to go through reflection. FieldInfo partEventFieldInfo = typeof(BaseEvent).GetFields(BindingFlags.Instance | BindingFlags.NonPublic) .First(fi => fi.FieldType == typeof(BaseEventDelegate)); // Get the actual value of the 'onEvent' field BaseEventDelegate partEvent = (BaseEventDelegate)partEventFieldInfo.GetValue(originalEvent); // Gets the method represented by the delegate and from this method returns an array of custom attributes applied to this member. // Simply put, we want all [KSPEvent] attributes applied to the BaseEventDelegate.Method field. object[] customAttributes = partEvent.Method.GetCustomAttributes(typeof(KSPEvent), true); // Look for the custom attribute skip_control bool skipControl = customAttributes.Any(a => ((KSPEvent)a).category.Contains("skip_control")); if (skipControl) continue; /* * Override the old BaseEvent with our BaseEvent to the button */ // fix problems with other mods (behavior not seen with KSP) when the customAttributes list is empty. KSPEvent kspEvent = !customAttributes.Any() ? WrappedEvent.KspEventFromBaseEvent(originalEvent) : (KSPEvent)customAttributes[0]; // Look for the custom attribute skip_delay bool ignoreDelay = customAttributes.Any(a => ((KSPEvent)a).category.Contains("skip_delay")); // create the new BaseEvent BaseEvent hookedEvent = EventWrapper.CreateWrapper(originalEvent, passthrough, ignoreDelay, kspEvent); // get the original event index in the event list BaseEventList eventList = originalEvent.listParent; int listIndex = eventList.IndexOf(originalEvent); // remove the original event in the event list and add our hooked event eventList.RemoveAt(listIndex); eventList.Add(hookedEvent); // get the baseEvent field from UIPartActionEventItem (note: this is uiPartActionEventItem.Evt, but we can't set its value...) FieldInfo baseEventField = typeof(UIPartActionEventItem).GetFields(BindingFlags.Instance | BindingFlags.NonPublic) .First(fi => fi.FieldType == typeof(BaseEvent)); // replace the button baseEvent value with our hooked event baseEventField.SetValue(uiPartActionEventItem, hookedEvent); } } public static void WrapPartActionFieldItem(Part part, Action passthrough) { var controller = UIPartActionController.Instance; if (!controller) return; // get the part action window corresponding to the part var window = controller.GetItem(part); if (window == null) return; // get all the items that makes this window (toggle buttons, sliders, etc.) var partActionItems = window.ListItems; // loop through all of those UI components for (var i = 0; i < partActionItems.Count(); i++) { // check that the part action item is actually a UIPartActionFieldItem (it could be a UIPartActionEventItem) var uiPartActionFieldItem = (partActionItems[i] as UIPartActionFieldItem); if (uiPartActionFieldItem == null) continue; // now check that the UIPartActionFieldItem type (e.g UIPartActionToggle; UIPartActionCycle; UIPartActionFloatRange, etc.) // is actually something we can handle. if (UIPartActionFieldItemAllowedTypes.All(type => uiPartActionFieldItem.GetType() != type)) continue; var fieldWrapper = new FieldWrapper(uiPartActionFieldItem, passthrough, false); } } #region FieldWrapper public class WrappedField : BaseField { public WrappedField(BaseField baseField, KSPField field) : base(field, baseField.FieldInfo, baseField.host) { } /// Gets or sets the future field value. public object NewValue { get; set; } public Type NewValueType => FieldInfo.FieldType; public bool NewValueFromString(string stringValue) { if (string.IsNullOrEmpty(stringValue)) return false; try { if (NewValueType != typeof(string)) NewValue = Convert.ChangeType(NewValue, this.NewValueType, CultureInfo.InvariantCulture); else NewValue = stringValue; return true; } catch(Exception ex) when(ex is InvalidCastException || ex is FormatException || ex is OverflowException) { RTLog.Notify("WrappedField.NewValueFromString() : can't convert {0} to new type: {1} ; for field name: {2}", stringValue, NewValueType, FieldInfo.Name); return false; } } /// /// Effectively change the value of the underlying field. /// /// This gets called by the flight computer either immediately if there's no delay or later if the command is queued. public void Invoke() { if(NewValue != null) FieldInfo.SetValue(host, NewValue); } public static KSPField KspFieldFromBaseField(BaseField baseField) { var kspField = new KSPField { isPersistant = baseField.isPersistant, guiActive = baseField.guiActive, guiActiveEditor = baseField.guiActiveEditor, guiName = baseField.guiName, guiUnits = baseField.guiUnits, guiFormat = baseField.guiFormat, category = baseField.category, advancedTweakable = baseField.advancedTweakable }; return kspField; } } public class FieldWrapper { private readonly Action _passthrough; private readonly bool _ignoreDelay; private readonly UIPartActionFieldItem _uiPartAction; private readonly WrappedField _wrappedField; private Action _delayInvoke; private object _lastNewValue; public FieldWrapper(UIPartActionFieldItem uiPartAction, Action passthrough, bool ignoreDelay) { _uiPartAction = uiPartAction; SetDefaultListener(); _passthrough = passthrough; _ignoreDelay = ignoreDelay; _wrappedField = new WrappedField(uiPartAction.Field, WrappedField.KspFieldFromBaseField(uiPartAction.Field)); } public void Invoke() { if (_passthrough == null) return; _wrappedField.NewValue = _lastNewValue; _passthrough.Invoke(_wrappedField, _ignoreDelay); } public void DelayInvoke(float waitTime) { HighLogic.fetch.StartCoroutine(DelayInvokeCoroutine(waitTime)); } private IEnumerator DelayInvokeCoroutine(float waitTime) { yield return new WaitForSeconds(waitTime); _delayInvoke = null; Invoke(); } private void SetDefaultListener() { switch (_uiPartAction.GetType().Name) { case nameof(UIPartActionCycle): { var partCycle = _uiPartAction as UIPartActionCycle; if (partCycle != null) { partCycle.toggle.onToggle.RemoveListener(partCycle.OnTap); partCycle.toggle.onToggle.AddListener(GetNewValue0); } } break; case nameof(UIPartActionToggle): { var partToggle = _uiPartAction as UIPartActionToggle; if (partToggle != null) { partToggle.toggle.onToggle.RemoveListener(partToggle.OnTap); partToggle.toggle.onToggle.AddListener(GetNewValue0); } } break; case nameof(UIPartActionFloatRange): var partFloat = _uiPartAction as UIPartActionFloatRange; if(partFloat != null) { partFloat.slider.onValueChanged.RemoveAllListeners(); partFloat.slider.onValueChanged.AddListener(GetNewValueFloat); } break; } } private void GetNewValue0() { GetNewValue(); } private void GetNewValueFloat(float obj) { GetNewValue(); } private void GetNewValue() { switch (_uiPartAction.GetType().Name) { // Handle toggle button, usually just a ON/OFF feature case nameof(UIPartActionToggle): { var partToggle = _uiPartAction as UIPartActionToggle; if (partToggle != null) { var uiToggle = (partToggle.Control as UI_Toggle); if (uiToggle != null) { _lastNewValue = partToggle.toggle.state ^ uiToggle.invertButton; // invoke now Invoke(); } } } break; // handle cycle button case nameof(UIPartActionCycle): { var partCycle = _uiPartAction as UIPartActionCycle; if (partCycle != null) { var uiCycle = (partCycle.Control as UI_Cycle); if (uiCycle != null) { // get current value int currentValue; if (partCycle.PartModule != null) currentValue = partCycle.Field.GetValue(partCycle.PartModule); else currentValue = partCycle.Field.GetValue(partCycle.Part); _lastNewValue = (currentValue + 1) % uiCycle.stateNames.Length; // invoke now Invoke(); } } } break; // handle sliders (using float value) case nameof(UIPartActionFloatRange): { var partFloat = _uiPartAction as UIPartActionFloatRange; if (partFloat != null) { var uiFloatRange = (partFloat.Control as UI_FloatRange); if (uiFloatRange != null) { // get current value float currentValue; if (partFloat.PartModule != null) currentValue = partFloat.Field.GetValue(partFloat.PartModule); else currentValue = partFloat.Field.GetValue(partFloat.Part); // get new value var newValue = HandleFloatRange(currentValue, uiFloatRange, partFloat.slider); if (!float.IsNaN(newValue)) { _lastNewValue = newValue; if (_delayInvoke == null) { // invoke later _delayInvoke = DelayInvoke; _delayInvoke(0.0f); // comment: not sure why this delay is needed when FC can queue it } } } } } break; } } private static float HandleFloatRange(float fieldValue, UI_FloatRange uiFloatRange, UnityEngine.UI.Slider slider) { var lerpedValue = Mathf.Lerp(uiFloatRange.minValue, uiFloatRange.maxValue, slider.value); var moddedValue = lerpedValue % uiFloatRange.stepIncrement; var num = fieldValue; if (moddedValue != 0f) { if (moddedValue < uiFloatRange.stepIncrement * 0.5f) { fieldValue = lerpedValue - moddedValue; } else { fieldValue = lerpedValue + (uiFloatRange.stepIncrement - moddedValue); } } else { fieldValue = lerpedValue; } slider.value = Mathf.InverseLerp(uiFloatRange.minValue, uiFloatRange.maxValue, fieldValue); fieldValue = (float)Math.Round(fieldValue, 5); return Mathf.Abs(fieldValue - num) > uiFloatRange.stepIncrement * 0.98f ? fieldValue : float.NaN; } } #endregion #region EventWrapper public class WrappedEvent : BaseEvent { private readonly BaseEvent _originalEvent; public WrappedEvent(BaseEvent originalEvent, BaseEventList baseParentList, string name, BaseEventDelegate baseActionDelegate, KSPEvent kspEvent) : base(baseParentList, name, baseActionDelegate, kspEvent) { _originalEvent = originalEvent; } public void InvokeOriginalEvent() { _originalEvent.Invoke(); } /// /// Given a BaseEvent, obtain a KSPEvent. /// Note : This is used in UIPartActionMenuPatcher.Wrap in case there no KSPEvent in the custom attributes of the BaseEventDelegate from the button event. /// /// BaseEvent from which to obtain a KSPEvent. /// KSPEvent instance from the BaseEvent parameter. public static KSPEvent KspEventFromBaseEvent(BaseEvent baseEvent) { var kspEvent = new KSPEvent { active = baseEvent.active, guiActive = baseEvent.guiActive, requireFullControl = baseEvent.requireFullControl, guiActiveEditor = baseEvent.guiActiveEditor, guiActiveUncommand = baseEvent.guiActiveUncommand, guiIcon = baseEvent.guiIcon, guiName = baseEvent.guiName, category = baseEvent.category, advancedTweakable = baseEvent.advancedTweakable, guiActiveUnfocused = baseEvent.guiActiveUnfocused, unfocusedRange = baseEvent.unfocusedRange, externalToEVAOnly = baseEvent.externalToEVAOnly, isPersistent = baseEvent.isPersistent }; return kspEvent; } } public class EventWrapper { private readonly Action _passthrough; private readonly BaseEvent _event; private readonly bool _ignoreDelay; private EventWrapper(BaseEvent original, Action passthrough, bool ignoreDelay) { _passthrough = passthrough; _event = original; _ignoreDelay = ignoreDelay; } public static BaseEvent CreateWrapper(BaseEvent original, Action passthrough, bool ignoreDelay, KSPEvent kspEvent) { // Create a new configuration node and fill this node with the original base event with the values ConfigNode cn = new ConfigNode(); original.OnSave(cn); // create the wrapper (used solely for its Invoke() method) // this class keeps the: // * pass through event (leading to the ModuleSPU.InvokeEvent() method) // * the original event (button click event) // * the ignore delay boolean value (true if the event ignore delay, false otherwise) EventWrapper wrapper = new EventWrapper(original, passthrough, ignoreDelay); // Create a new event, its main features are: // 1. It retains its original base event invokable method: invokable directly through its InvokeOriginalEvent() method [useful for other mods, e.g. kOS] // 2. Its new invoke() method which is in this wrapper class and decorated with and new KSPEvent category, namely "skip_control" (meaning we have already seen this event). BaseEvent newEvent = new WrappedEvent(original, original.listParent, original.name, wrapper.Invoke, kspEvent); // load the original base event values into the new base event newEvent.OnLoad(cn); return newEvent; } [KSPEvent(category = "skip_control")] public void Invoke() { // call the pass through event, leading to call the ModuleSPU.InvokeEvent() method _passthrough.Invoke(_event, _ignoreDelay); } } #endregion } } ================================================ FILE: src/RemoteTech/IAntenna.cs ================================================ using System; namespace RemoteTech { public interface IAntenna : IComparable { String Name { get; } Guid Guid { get; } bool Activated { get; set; } bool Powered { get; } bool Connected { get; } bool CanTarget { get; } Guid Target { get; set; } float Dish { get; } double CosAngle { get; } float Omni { get; } float Consumption { get; } void OnConnectionRefresh(); } } ================================================ FILE: src/RemoteTech/ISatellite.cs ================================================ using System; using System.Collections.Generic; using UnityEngine; using RemoteTech.SimpleTypes; namespace RemoteTech { public interface ISatellite { /// Gets whether or not a satellite if visible in the Tracking station or the Flight Map view. bool Visible { get; } /// Gets or sets the name of the satellite. string Name { get; set; } /// Gets the satellite id. Guid Guid { get; } /// Gets a double precision vector for the satellite's world space position. Vector3d Position { get; } /// Gets the celestial body around which the satellite is orbiting. CelestialBody Body { get; } /// Gets the color of the ground station mark in Tracking station or Flight map view. Color MarkColor { get; } /// Gets if the satellite is actually powered or not. bool Powered { get; } /// Gets if the satellite is a RemoteTech command station. bool IsCommandStation { get; } /// Gets whether the satellite has local control or not (that is, if it is locally controlled or not). bool HasLocalControl { get; } /// Indicates whether the ISatellite corresponds to a vessel /// true if satellite is vessel or asteroid; otherwise (e.g. a ground station), false. bool isVessel { get; } /// The vessel hosting the ISatellite, if one exists. /// The vessel corresponding to this ISatellite. Returns null if !isVessel. Vessel parentVessel { get; } /// Gets a list of antennas for this satellite. IEnumerable Antennas { get; } /// Called on connection refresh to update the connections. /// List of network routes. void OnConnectionRefresh(List> routes); /// Gets if the satellite is capable to forward other signals. bool CanRelaySignal { get; } /// Indicates whether the satellite is in radio blackout. bool IsInRadioBlackout { get; set; } /// Indicates whether the manual power override is engaged. bool PowerShutdownFlag { get; set; } } } ================================================ FILE: src/RemoteTech/ISignalProcessor.cs ================================================ using System; using UnityEngine; namespace RemoteTech { public interface ISignalProcessor { String Name { get; } String VesselName { get; set; } bool VesselLoaded { get; } Guid VesselId { get; } Vector3 Position { get; } CelestialBody Body { get; } bool Visible { get; } bool Powered { get; } bool IsCommandStation { get; } bool IsMaster { get; } bool CanRelaySignal { get; } // Reserved for Flight Computer FlightComputer.FlightComputer FlightComputer { get; } Vessel Vessel { get; } } } ================================================ FILE: src/RemoteTech/Modules/MissionControlAntenna.cs ================================================ using System; using System.Linq; namespace RemoteTech.Modules { public sealed class MissionControlAntenna : IAntenna { [Persistent] public float Omni = 75000000; [Persistent] public float Dish = 0.0f; [Persistent] public double CosAngle = 1.0; /// /// Semicolon seperated list with omni ranges for each tech lvl of the tracking station /// [Persistent] public string UpgradeableOmni = String.Empty; /// /// Semicolon seperated list with dish ranges for each tech lvl of the tracking station /// [Persistent] public string UpgradeableDish = String.Empty; /// /// Semicolon seperated list with CosAngle ranges for each tech lvl of the tracking station /// [Persistent] public string UpgradeableCosAngle = String.Empty; public ISatellite Parent { get; set; } float IAntenna.Omni { get { return Omni * MissionControlRangeMultiplier; } } Guid IAntenna.Guid { get { return Parent.Guid; } } String IAntenna.Name { get { return "Dummy Antenna"; } } bool IAntenna.Powered { get { return true; } } public bool Connected { get { return RTCore.Instance.Network.Graph [((IAntenna)this).Guid].Any (l => l.Interfaces.Contains (this)); } } bool IAntenna.Activated { get { return true; } set { return; } } float IAntenna.Consumption { get { return 0.0f; } } bool IAntenna.CanTarget { get { return false; } } Guid IAntenna.Target { get { return new Guid(RTSettings.Instance.ActiveVesselGuid); } set { return; } } float IAntenna.Dish { get { return Dish * MissionControlRangeMultiplier; } } double IAntenna.CosAngle { get { return CosAngle; } } private float MissionControlRangeMultiplier { get { return RTSettings.Instance.MissionControlRangeMultiplier; } } public void reloadUpgradeableAntennas(int techlvl = 0) { if (this.UpgradeableCosAngle != String.Empty && this.UpgradeableDish != String.Empty && this.UpgradeableOmni != String.Empty) return; int missionControlTechLevel = techlvl; if(missionControlTechLevel == 0) { missionControlTechLevel = (int)((2 * ScenarioUpgradeableFacilities.GetFacilityLevel(SpaceCenterFacility.TrackingStation)) + 1); } // when the option is disabled, use always the thrid tech lvl if (!RTSettings.Instance.UpgradeableMissionControlAntennas) { missionControlTechLevel = 3; } RTLog.Verbose("Reload upgradeable Antennas, TechLvl: {0}", RTLogLevel.LVL4, missionControlTechLevel); if (this.UpgradeableOmni != String.Empty) { int missionControlTechLevelForOmni = missionControlTechLevel; string[] omniRanges = this.UpgradeableOmni.Split(';'); if (missionControlTechLevelForOmni > omniRanges.Count()) { missionControlTechLevelForOmni = omniRanges.Count(); } float.TryParse(omniRanges[missionControlTechLevelForOmni - 1], out this.Omni); } if (this.UpgradeableDish != String.Empty) { int missionControlTechLevelForDish = missionControlTechLevel; string[] dishRanges = this.UpgradeableDish.Split(';'); if (missionControlTechLevelForDish > dishRanges.Count()) { missionControlTechLevelForDish = dishRanges.Count(); } float.TryParse(dishRanges[missionControlTechLevelForDish - 1], out this.Dish); } if (this.UpgradeableCosAngle != String.Empty) { int missionControlTechLevelForCAngle = missionControlTechLevel; string[] cAngleRanges = this.UpgradeableCosAngle.Split(';'); if (missionControlTechLevelForCAngle > cAngleRanges.Count()) { missionControlTechLevelForCAngle = cAngleRanges.Count(); } double.TryParse(cAngleRanges[missionControlTechLevelForCAngle - 1], out this.CosAngle); } } public void OnConnectionRefresh() { } public int CompareTo(IAntenna antenna) { return ((IAntenna)this).Consumption.CompareTo(antenna.Consumption); } public void SetOmniAntennaRange(float range) { this.Omni = range; } } } ================================================ FILE: src/RemoteTech/Modules/ModuleRTAntenna.cs ================================================ using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Text; using RemoteTech.UI; using UnityEngine; using KSP.Localization; using KSP.UI.Screens; namespace RemoteTech.Modules { /// This module represents a part that can receive control transmissions from another vessel or a ground station. /// You must remove any modules from the antenna if using . [KSPModule("#RT_Editor_Antenna")]//Antenna public class ModuleRTAntenna : PartModule, IAntenna, IContractObjectiveModule, IResourceConsumer { public String Name { get { return part.partInfo.title; } } public Guid Guid { get { return mRegisteredId; } } public bool Powered { get { return IsRTPowered; } } public bool Connected { get { return (RTCore.Instance != null && RTCore.Instance.Network.Graph [Guid].Any (l => l.Interfaces.Contains (this))); } } public bool Activated { get { return IsRTActive; } set { SetState(value); } } public bool CanAnimate { get { return mDeployFxModules.Count > 0; } } public bool AnimClosed { get { return mDeployFxModules.Any(fx => fx.GetScalar <= 0.1f ); } } public bool Animating { get { return mDeployFxModules.Any(fx => fx.GetScalar > 0.1f && fx.GetScalar < 0.9f); } } public bool AnimOpen { get { return mDeployFxModules.Any(fx => fx.GetScalar >= 0.9f); } } public bool CanTarget { get { return Mode1DishRange != -1.0f; } } public Guid Target { get { return RTAntennaTarget; } set { RTAntennaTarget = value; Events["EventTarget"].guiName = RTUtil.TargetName(Target); foreach (UIPartActionWindow w in GameObject.FindObjectsOfType(typeof(UIPartActionWindow)).Where(w => ((UIPartActionWindow) w).part == part)) { w.displayDirty = true; } } } public float Dish { get { return IsRTBroken ? 0.0f : ((IsRTActive && IsRTPowered) ? Mode1DishRange : Mode0DishRange) * RangeMultiplier; } } public double CosAngle { get { return RTDishCosAngle; } } public float Omni { get { return IsRTBroken ? 0.0f : ((IsRTActive && IsRTPowered) ? Mode1OmniRange : Mode0OmniRange) * RangeMultiplier; } } public float Consumption { get { return IsRTBroken ? 0.0f : IsRTActive ? EnergyCost * ConsumptionMultiplier : 0.0f; } } public Vector3d Position { get { return vessel.GetWorldPos3D(); } } private float RangeMultiplier { get { return RTSettings.Instance.RangeMultiplier; } } private float ConsumptionMultiplier { get { return RTSettings.Instance.ConsumptionMultiplier; } } [KSPField] public bool ShowGUI_DishRange = true, ShowGUI_OmniRange = true, ShowGUI_EnergyReq = true, ShowGUI_Status = true, ShowEditor_OmniRange = true, ShowEditor_DishRange = true, ShowEditor_EnergyReq = true, ShowEditor_DishAngle = true, ShowGUI_DeReactivation_Status = true; [KSPField(guiName = "#RT_ModuleUI_DishRange")]//Dish range public String GUI_DishRange; [KSPField(guiName = "#RT_ModuleUI_EnergyReq")]//Energy public String GUI_EnergyReq; [KSPField(guiName = "#RT_ModuleUI_Omnirange")]//Omni range public String GUI_OmniRange; [KSPField(guiName = "#RT_ModuleUI_Status")]//Status public String GUI_Status; [KSPField] public String Mode0Name = Localizer.Format("#RT_ModuleUI_Off"),//"Off" Mode1Name = Localizer.Format("#RT_ModuleUI_Operational"),//"Operational" ActionMode0Name = Localizer.Format("#RT_ModuleUI_Deactivate"),//"Deactivate" ActionMode1Name = Localizer.Format("#RT_ModuleUI_Activate"),//"Activate" ActionToggleName = Localizer.Format("#RT_ModuleUI_Toggle"),//"Toggle" resourceName = "ElectricCharge"; [KSPField] public float Mode0DishRange = -1.0f, Mode1DishRange = -1.0f, Mode0OmniRange = 0.0f, Mode1OmniRange = 0.0f, EnergyCost = 0.0f, DishAngle = 0.0f, MaxQ = -1; [KSPField(isPersistant = true)] public bool IsRTAntenna = true, IsRTActive = false, IsRTPowered = false, IsRTBroken = false, IsNonRetractable = false; [KSPField(isPersistant = true)] public double RTDishCosAngle = 1.0f; [KSPField(isPersistant = true)] public float RTOmniRange = 0.0f, RTDishRange = 0.0f; [KSPField] // Persistence handled by Save() public Guid RTAntennaTarget = Guid.Empty; [KSPField(guiName = "#RT_ModuleUI_Autothreshold")]//Auto threshold public String GUI_DeReactivation_Status = Localizer.Format("#RT_ModuleUI_Autothreshold_Off");//"Off" [KSPField(isPersistant = true, guiName = "#RT_ModuleUI_DeactivateatEC", guiActive = true, guiActiveEditor = true, guiUnits = "%"),//Deactivate at EC % UI_FloatRange(minValue = 0f, maxValue = 100f, stepIncrement = 1f)] public float RTDeactivatePowerThreshold = 20; [KSPField(isPersistant = true, guiName = "#RT_ModuleUI_ActivateatEC", guiActive = true, guiActiveEditor = true, guiUnits = "%"),//Activate at EC % UI_FloatRange(minValue = 0f, maxValue = 100f, stepIncrement = 1f)] public float RTActivatePowerThreshold = 80; // workarround for ksp 1.0 [KSPField] public float RTPacketInterval = 0.0f, RTPacketSize = 0.0f, RTPacketResourceCost = 0.0f; [KSPField(guiName = "#RT_ModuleUI_SciencePacketSize", guiActive = false , guiActiveEditor = true)] //Science packet size public String GUI_SciencePacketSize; [KSPField(guiName = "#RT_ModuleUI_SciencePacketInterval", guiActive = false , guiActiveEditor = true)] //Science packet interval public String GUI_SciencePacketInterval; [KSPField(guiName = "#RT_ModuleUI_SciencePacketCost", guiActive = false , guiActiveEditor = true)] //Science packet cost public String GUI_SciencePacketCost; public int[] mDeployFxModuleIndices, mProgressFxModuleIndices; private List mDeployFxModules = new List(); private List mProgressFxModules = new List(); public ConfigNode mTransmitterConfig; private IScienceDataTransmitter mTransmitter; private int killCounter; private List consumedResources; private bool isPartActionUIOpened; private UI_FloatRange deactivatePowerThresholdFloatRange; private UI_FloatRange activatePowerThresholdFloatRange; private enum State { Off, Operational, Connected, NoResources, Malfunction, } private Guid mRegisteredId; public override string GetInfo() { var info = new StringBuilder(); if (ShowEditor_OmniRange && Mode1OmniRange > 0) { info.AppendFormat(Localizer.Format("#RT_Editor_Omni") +" {0}: {1} / {2}", AntennaInfoDescriptionFromRangeModel(), RTUtil.FormatSI(Mode0OmniRange * RangeMultiplier, "m"), RTUtil.FormatSI(Mode1OmniRange * RangeMultiplier, "m")).AppendLine();//"Omni" } if (ShowEditor_DishRange && Mode1DishRange > 0) { info.AppendFormat(Localizer.Format("#RT_Editor_Dish") +" {0}: {1} / {2}", AntennaInfoDescriptionFromRangeModel(), RTUtil.FormatSI(Mode0DishRange * RangeMultiplier, "m"), RTUtil.FormatSI(Mode1DishRange * RangeMultiplier, "m")).AppendLine();//"Dish" } if (ShowEditor_DishAngle && CanTarget) { info.AppendFormat(Localizer.Format("#RT_Editor_Coneangle") +" {0} "+Localizer.Format("#RT_degrees"), DishAngle.ToString("F3")).AppendLine();//"Cone angle:degrees" } if (IsRTActive) { info.AppendLine("" + Localizer.Format("#RT_Editor_Activatedbydefault") + "");//"Activated by default" } if (MaxQ > 0) { info.AppendLine("" + Localizer.Format("#RT_Editor_Snaps") + "");//"Snaps under high dynamic pressure" } if (this.IsNonRetractable) { info.AppendLine("" + Localizer.Format("#RT_Editor_Notretractable") + "");//"Antenna is not retractable" } if (ShowEditor_EnergyReq && EnergyCost > 0) { info.AppendLine().Append("" + Localizer.Format("#RT_Editor_Requires") + "").AppendLine();//"Requires:" info.AppendFormat("" + Localizer.Format("#RT_Editor_ElectricCharge") + " " + "{0}", RTUtil.FormatConsumption(EnergyCost * ConsumptionMultiplier)).AppendLine();//"ElectricCharge: } return info.ToString().TrimEnd(Environment.NewLine.ToCharArray()); } /// /// Displaying the stored "range" of the antenna/dish is confusing to players when rangeModel Root is selected, because that's not actually the 'range'. /// /// Returns a description for an antenna given the current range model (either 'range' or 'power'). An empty string if RTSettings instance is not available. private string AntennaInfoDescriptionFromRangeModel() { string description = string.Empty; if (RTSettings.Instance == null) return description; switch(RTSettings.Instance.RangeModelType) { case RangeModel.RangeModel.Standard: description = Localizer.Format("#RT_Editor_range");//"range" break; case RangeModel.RangeModel.Root: //case RangeModel.RangeModel.Additive: description = Localizer.Format("#RT_Editor_power");//"power" break; default: description = Localizer.Format("#RT_Editor_range");//"range" break; } return description; } public virtual void SetState(bool state) { IsRTActive = state && !IsRTBroken; Events["EventOpen"].guiActive = Events["EventOpen"].active = Events["EventEditorOpen"].guiActiveEditor = Events["OverrideOpen"].guiActiveUnfocused = !IsRTActive && !IsRTBroken; Events["EventClose"].guiActive = Events["EventClose"].active = Events["EventEditorClose"].guiActiveEditor = Events["OverrideClose"].guiActiveUnfocused = IsRTActive && !IsRTBroken; // deactivate event close if this antenna is non retractable if (this.IsNonRetractable) { Events["EventClose"].guiActive = false; Events["EventClose"].active = false; } UpdateContext(); StartCoroutine(SetFXModules_Coroutine(mDeployFxModules, IsRTActive ? 1.0f : 0.0f)); if (RTCore.Instance != null) { var satellite = RTCore.Instance.Network[Guid]; bool route_home = RTCore.Instance.Network[satellite].Any(r => r.Links[0].Interfaces.Contains(this) && RTCore.Instance.Network.GroundStations.ContainsKey(r.Goal.Guid)); if (mTransmitter == null && route_home) { AddTransmitter(); } else if (!route_home && mTransmitter != null) { RemoveTransmitter(); } } else { AddTransmitter(); } if (mTransmitter != null) { Events["EventTransmit"].guiActive = true; Fields["GUI_SciencePacketInterval"].guiActive = true; Fields["GUI_SciencePacketSize"].guiActive = true; Fields["GUI_SciencePacketCost"].guiActive = true; } else { Events["EventTransmit"].guiActive = false; Fields["GUI_SciencePacketInterval"].guiActive = false; Fields["GUI_SciencePacketSize"].guiActive = false; Fields["GUI_SciencePacketCost"].guiActive = false; } } [KSPEvent(name = "EventToggle", guiActive = false)] public void EventToggle() { if (Animating) return; if (IsRTActive) { EventClose(); } else { EventOpen(); } } [KSPEvent(name = "EventTarget", guiActive = false, guiActiveEditor = false, guiName = "#RT_ModuleUI_Target", category = "skip_delay")]//Target public void EventTarget() { if (HighLogic.LoadedScene == GameScenes.EDITOR) { (new AntennaWindowStandalone(this)).Show(); } else { (new AntennaWindow(this)).Show(); } } [KSPEvent(name = "EventEditorOpen", guiActive = false, guiName = "#RT_ModuleUI_DeployAntenna")]//Deploy Antenna public void EventEditorOpen() { SetState(true); } [KSPEvent(name = "EventEditorClose", guiActive = false, guiName = "#RT_ModuleUI_RetractAntenna")]//Retract Antenna public void EventEditorClose() { SetState(false); } [KSPEvent(name = "EventOpen", guiActive = false)] public void EventOpen() { if (!Animating) { SetState(true); } } [KSPEvent(name = "EventClose", guiActive = false)] public void EventClose() { if (!Animating) { SetState(false); } } [KSPAction("ActionToggle", KSPActionGroup.None)] public void ActionToggle(KSPActionParam param) { EventToggle(); } [KSPAction("ActionOpen", KSPActionGroup.None)] public void ActionOpen(KSPActionParam param) { EventOpen(); } [KSPAction("ActionClose", KSPActionGroup.None)] public void ActionClose(KSPActionParam param) { EventClose(); } [KSPEvent(name = "OverrideTarget", active = true, guiActiveUnfocused = true, unfocusedRange = 5, externalToEVAOnly = true, guiName = "#RT_ModuleUI_SetTarget", category = "skip_delay;skip_control")]//[EVA] Set Target public void OverrideTarget() { (new AntennaWindow(this)).Show(); } [KSPEvent(name = "OverrideOpen", active = true, guiActiveUnfocused = true, unfocusedRange = 5, externalToEVAOnly = true, guiName = "#RT_ModuleUI_ForceOpen", category = "skip_delay;skip_control")]//[EVA] Force Open public void OverrideOpen() { EventOpen(); } [KSPEvent(name = "OverrideClose", active = true, guiActiveUnfocused = true, unfocusedRange = 5, externalToEVAOnly = true, guiName = "#RT_ModuleUI_ForceClose", category = "skip_delay;skip_control")]//[EVA] Force Close public void OverrideClose() { EventClose(); } [KSPEvent(name = "EventTransmit", guiActive = false, guiActiveEditor = false, guiName = "#RT_ModuleUI_Transmit")]//Transmit all science public void EventTransmit() { if (mTransmitter != null && mTransmitter.CanTransmit()) { List scienceDataList = new List(); for(int i = 0; i < vessel.parts.Count; i++) { //get experiments var experiments = vessel.parts[i].FindModulesImplementing(); for (int j = 0; j < experiments.Count; j++) { if(experiments[j].HasExperimentData) { var scienceData = experiments[j].GetData(); for (int k = 0; k < scienceData.Length; k++) { experiments[j].DumpData(scienceData[k]); } scienceDataList.AddRange(scienceData); } } //get containers of stored experiments var scienceContainers = vessel.parts[i].FindModulesImplementing(); for (int j = 0; j < scienceContainers.Count; j++) { if(scienceContainers[j].GetStoredDataCount() > 0) { var scienceData = scienceContainers[j].GetData(); for (int k = 0; k < scienceData.Length; k++) { scienceContainers[j].DumpData(scienceData[k]); } scienceDataList.AddRange(scienceData); } } } if (scienceDataList.Count > 0) { mTransmitter.TransmitData(scienceDataList); } } } public void OnConnectionRefresh() { SetState(IsRTActive); } public override void OnLoad(ConfigNode node) { base.OnLoad(node); if (node.HasValue("RTAntennaTarget")) { try { Target = new Guid(node.GetValue("RTAntennaTarget")); } catch (FormatException) { Target = Guid.Empty; } } // Have RTDishRadians as a fallback to avoid corrupting save games if (node.HasValue("RTDishRadians")) { double temp_double; RTDishCosAngle = Double.TryParse(node.GetValue("RTDishRadians"), out temp_double) ? temp_double : 1.0; } if (node.HasValue("DishAngle")) { RTDishCosAngle = Math.Cos(DishAngle / 2 * Math.PI / 180); } if (node.HasValue("DeployFxModules")) { mDeployFxModuleIndices = KSPUtil.ParseArray(node.GetValue("DeployFxModules"), new ParserMethod(Int32.Parse)); } if (node.HasValue("ProgressFxModules")) { mProgressFxModuleIndices = KSPUtil.ParseArray(node.GetValue("ProgressFxModules"), new ParserMethod(Int32.Parse)); } if (node.HasNode("TRANSMITTER")) { RTLog.Notify("ModuleRTAntenna: Found TRANSMITTER block."); mTransmitterConfig = node.GetNode("TRANSMITTER"); mTransmitterConfig.AddValue("name", "ModuleRTDataTransmitter"); // workarround for ksp 1.0 if (mTransmitterConfig.HasValue("PacketInterval")) RTPacketInterval = float.Parse(mTransmitterConfig.GetValue("PacketInterval")); if (mTransmitterConfig.HasValue("PacketSize")) RTPacketSize = float.Parse(mTransmitterConfig.GetValue("PacketSize")); if (mTransmitterConfig.HasValue("PacketResourceCost")) RTPacketResourceCost = float.Parse(mTransmitterConfig.GetValue("PacketResourceCost")); } if (this.resHandler.inputResources.Count == 0) { ModuleResource moduleResource = new ModuleResource(); moduleResource.name = this.resourceName; moduleResource.title = KSPUtil.PrintModuleName(this.resourceName); moduleResource.id = this.resourceName.GetHashCode(); moduleResource.rate = EnergyCost * ConsumptionMultiplier; this.resHandler.inputResources.Add(moduleResource); } //apply the consumption multiplier this.resHandler.inputResources.Find(x => x.name == this.resourceName).rate = EnergyCost * ConsumptionMultiplier; } public override void OnSave(ConfigNode node) { base.OnSave(node); if (node.HasValue("RTAntennaTarget")) { node.SetValue("RTAntennaTarget", RTAntennaTarget.ToString()); } else { node.AddValue("RTAntennaTarget", RTAntennaTarget.ToString()); } } public override void OnAwake() { base.OnAwake(); if (consumedResources == null) { consumedResources = new List(); } else { consumedResources.Clear(); } for (var i = 0; i < resHandler.inputResources.Count; i++) { consumedResources.Add(PartResourceLibrary.Instance.GetDefinition(resHandler.inputResources[i].name)); } } public override void OnStart(StartState state) { Actions["ActionOpen"].guiName = ActionMode1Name; Actions["ActionOpen"].active = !IsRTBroken; Actions["ActionClose"].guiName = ActionMode0Name; Actions["ActionClose"].active = !IsRTBroken; Actions["ActionToggle"].guiName = ActionToggleName; Actions["ActionToggle"].active = !IsRTBroken; Events["EventOpen"].guiName = ActionMode1Name; Events["EventClose"].guiName = ActionMode0Name; Events["EventToggle"].guiName = ActionToggleName; Events["EventTarget"].guiActive = (Mode1DishRange > 0); Events["EventTarget"].guiActiveEditor = Events["EventTarget"].guiActive; Events["EventTarget"].active = Events["EventTarget"].guiActive; // deactivate action close and toggle if this antenna is non retractable if (this.IsNonRetractable) { Actions["ActionClose"].active = false; Actions["ActionToggle"].active = false; } Fields["GUI_OmniRange"].guiActive = (Mode1OmniRange > 0) && ShowGUI_OmniRange; Fields["GUI_DishRange"].guiActive = (Mode1DishRange > 0) && ShowGUI_DishRange; Fields["GUI_EnergyReq"].guiActive = (EnergyCost > 0) && ShowGUI_EnergyReq; Fields["GUI_Status"].guiActive = ShowGUI_Status; Fields["GUI_DeReactivation_Status"].guiActive = ShowGUI_DeReactivation_Status; // workarround for ksp 1.0 if (mTransmitterConfig == null) { mTransmitterConfig = new ConfigNode("TRANSMITTER"); mTransmitterConfig.AddValue("PacketInterval", RTPacketInterval); mTransmitterConfig.AddValue("PacketSize", RTPacketSize); mTransmitterConfig.AddValue("PacketResourceCost", RTPacketResourceCost); mTransmitterConfig.AddValue("name", "ModuleRTDataTransmitter"); } if (RTCore.Instance != null) { GameEvents.onVesselWasModified.Add(OnVesselModified); GameEvents.onPartUndock.Add(OnPartUndock); GameEvents.onPartActionUICreate.Add(OnPartActionUiCreate); GameEvents.onPartActionUIDismiss.Add(OnPartActionUiDismiss); mRegisteredId = vessel.id; RTCore.Instance.Antennas.Register(vessel.id, this); } LoadAnimations(); SetState(IsRTActive); } public List GetConsumedResources() { return consumedResources; } private void LoadAnimations() { mDeployFxModules = FindFxModules(this.mDeployFxModuleIndices, true); mProgressFxModules = FindFxModules(this.mProgressFxModuleIndices, false); mDeployFxModules.ForEach(fx => { fx.SetUIRead(false); fx.SetUIWrite(false); }); mProgressFxModules.ForEach(fx => { fx.SetUIRead(false); fx.SetUIWrite(false); }); } private void AddTransmitter() { if (mTransmitterConfig == null || !mTransmitterConfig.HasValue("name")) return; var transmitters = part.FindModulesImplementing(); if (transmitters.Count > 0) { RTLog.Notify("ModuleRTAntenna: Find TRANSMITTER success."); mTransmitter = transmitters.First(); } else { var copy = new ConfigNode(); mTransmitterConfig.CopyTo(copy); part.AddModule(copy); AddTransmitter(); RTLog.Notify("ModuleRTAntenna: Add TRANSMITTER success."); // Trigger onVesselWasModified after adding a new transmitter GameEvents.onVesselWasModified.Fire(this.part.vessel); } if (mTransmitter != null) { //overwrite default parameters of ModuleRTDataTransmitter (mTransmitter as ModuleRTDataTransmitter).PacketSize = RTPacketSize; (mTransmitter as ModuleRTDataTransmitter).PacketInterval = RTPacketInterval; (mTransmitter as ModuleRTDataTransmitter).PacketResourceCost = RTPacketResourceCost; } GUI_SciencePacketInterval = String.Format("{0} sec", RTPacketInterval); GUI_SciencePacketSize = String.Format("{0} Mits", RTPacketSize); GUI_SciencePacketCost = String.Format("{0} charge", RTPacketResourceCost); } private void RemoveTransmitter() { RTLog.Notify("ModuleRTAntenna: Remove TRANSMITTER success."); if (mTransmitter == null) return; part.RemoveModule((PartModule) mTransmitter); mTransmitter = null; // Trigger onVesselWasModified after removing the transmitter GameEvents.onVesselWasModified.Fire(this.part.vessel); } private State UpdateControlState() { if (RTCore.Instance == null) return State.Operational; if (IsRTBroken) return State.Malfunction; if (!IsRTActive) return State.Off; string resErr = ""; double resourceAmount = resHandler.UpdateModuleResourceInputs(ref resErr, Consumption > 0 ? 1.0 : 0.0, 0.9, true, false, false); if (resourceAmount < 0.9) return State.NoResources; return Connected ? State.Connected : State.Operational; } private void FixedUpdate() { switch (UpdateControlState()) { case State.Off: GUI_Status = Mode0Name; IsRTPowered = false; break; case State.Operational: GUI_Status = Mode1Name; IsRTPowered = true; break; case State.Connected: GUI_Status = Localizer.Format("#RT_ModuleUI_Connected");//"Connected" IsRTPowered = true; break; case State.NoResources: GUI_Status = Localizer.Format("#RT_ModuleUI_NoResources");//"Out of power" IsRTPowered = false; break; case State.Malfunction: GUI_Status = Localizer.Format("#RT_ModuleUI_Malfunction");//"Malfunction" IsRTPowered = false; break; } RTDishRange = Dish; RTOmniRange = Omni; HandleDynamicPressure(); UpdateContext(); ValidateAntennaThresholds(); } private void UpdateContext() { GUI_OmniRange = RTUtil.FormatSI(Omni, "m"); GUI_DishRange = RTUtil.FormatSI(Dish, "m"); GUI_EnergyReq = RTUtil.FormatConsumption(Consumption); Events["EventTarget"].guiName = RTUtil.TargetName(Target); } /// /// Returns the FAR module managing aerodynamics for this part, if one exists /// /// /// /// If FAR is installed and the antenna has a module of type ferram4.FARBaseAerodynamics, returns a /// reference to that module. Otherwise, returns null. Behavior is undefined if the antenna has more than /// one FARBaseAerodynamics module. /// /// /// this.part is not null /// /// Does not throw exceptions private PartModule GetFARModule() { if (part.Modules.Contains("FARBasicDragModel")) { return part.Modules["FARBasicDragModel"]; } else if (part.Modules.Contains ("FARWingAerodynamicModel")) { return part.Modules["FARWingAerodynamicModel"]; } else if (part.Modules.Contains ("FARControlSys")) { return part.Modules["FARControlSys"]; } else { return null; } } /// /// Determines whether or not the antenna is shielded from aerodynamic forces /// /// true, if the antenna is shielded, false otherwise. /// /// this.part is not null /// /// Does not throw exceptions private bool GetShieldedState() { PartModule FARPartModule = GetFARModule(); if (FARPartModule != null) { try { FieldInfo fi = FARPartModule.GetType().GetField("isShielded"); return (bool)(fi.GetValue(FARPartModule)); } catch (Exception e) { RTLog.Notify("GetShieldedState: {0}", e); // otherwise go further and try to get the stock shielded value } } // For KSP 1.0 return this.part.ShieldedFromAirstream; } /// /// Gets the ram pressure experienced by the antenna. /// /// /// The pressure, in N/m^2. /// /// this.vessel is not null /// /// Does not throw exceptions private double GetDynamicPressure() { return 0.5 * vessel.atmDensity * vessel.srf_velocity.sqrMagnitude; } private void HandleDynamicPressure() { if (vessel == null) return; if (!vessel.HoldPhysics && vessel.atmDensity > 0 && MaxQ > 0 && (!this.CanAnimate || this.AnimOpen)) { if (GetDynamicPressure() > MaxQ && GetShieldedState() == false) { // See https://github.com/RemoteTechnologiesGroup/RemoteTech/issues/528 killCounter++; } else { killCounter = 0; } if (killCounter > 2) { // TODO: Make sure this formatting is correct, the new method isn't tested too well right now. // Express flight clock in stockalike formatting FlightLogger.eventLog.Add(Localizer.Format("#RT_ModuleUI_rippedoff",KSPUtil.dateTimeFormatter.PrintTimeStamp(FlightLogger.met, true, true),part.partInfo.title));//String.Format("[{0}]: {1} was ripped off by strong airflow.",, ) MaxQ = -1.0f; part.decouple(0.0f); } } else { killCounter = 0; } } private List FindFxModules(int[] indices, bool showUI) { var modules = new List(); if (indices == null) return modules; foreach (PartModule partModule in this.part.Modules) { var item = partModule as IScalarModule; // skip this module if it has no IScalarModule if (item == null) continue; item.SetUIWrite(showUI); item.SetUIRead(showUI); modules.Add(item); } return modules; } private IEnumerator SetFXModules_Coroutine(List modules, float tgtValue) { bool done = false; while (!done) { done = true; foreach (var module in modules) { if (Mathf.Abs(module.GetScalar - tgtValue) > 0.01f) { module.SetScalar(tgtValue); done = false; } } yield return true; } } private void OnDestroy() { RTLog.Notify("ModuleRTAntenna: OnDestroy"); GameEvents.onVesselWasModified.Remove(OnVesselModified); GameEvents.onPartUndock.Remove(OnPartUndock); if (RTCore.Instance != null && mRegisteredId != Guid.Empty) { RTCore.Instance.Antennas.Unregister(mRegisteredId, this); mRegisteredId = Guid.Empty; } } private void OnPartUndock(Part p) { if (p.vessel == vessel) { OnVesselModified(p.vessel); } } private void OnVesselModified(Vessel v) { if (RTCore.Instance != null && vessel != null && mRegisteredId != vessel.id) { RTCore.Instance.Antennas.Unregister(mRegisteredId, this); mRegisteredId = vessel.id; RTCore.Instance.Antennas.Register(vessel.id, this); } } public int CompareTo(IAntenna antenna) { return Consumption.CompareTo(antenna.Consumption); } public override string ToString() { return String.Format("ModuleRTAntenna(Name: {0}, Guid: {1}, Dish: {2}, Omni: {3}, Target: {4}, CosAngle: {5})", Name, mRegisteredId, Dish, Omni, Target, CosAngle); } /* * IContractObjectiveModule implementation; required for contracts verification. * Note that it must be implemented on a PartModule, which means we could implement it on ModuleRTAntenna rather than here. * KSP implements it on its ModuleDataTransmitter though, so we do the same here. */ /// /// Return the type of contracts this module can fulfill. In this case "Antenna". /// /// The type of contract that can be fulfilled. public string GetContractObjectiveType() { return "Antenna";// } /// /// Check that the part implementing this is actually really an antenna. This check is quite redundant, but it does no harm. /// /// True if the owning part is an antenna (implementing , false otherwise. public bool CheckContractObjectiveValidity() { var antennas = part.FindModulesImplementing(); return antennas != null && antennas.Any(); } //Credit: rsparkyc //https://github.com/rsparkyc/AntennaPowerSaver/blob/master/AntennaPowerSaver/ModuleAntennaPowerSaver.cs private void ValidateAntennaThresholds() { if(!isPartActionUIOpened) { return; } // Make sure that the threshold to deactivate an antenna is less than the threshold to re-activate it if (RTActivatePowerThreshold < RTDeactivatePowerThreshold) { RTDeactivatePowerThreshold = RTActivatePowerThreshold; } if (deactivatePowerThresholdFloatRange != null && activatePowerThresholdFloatRange != null) { activatePowerThresholdFloatRange.minValue = RTDeactivatePowerThreshold; deactivatePowerThresholdFloatRange.maxValue = RTActivatePowerThreshold; } } public void OnPartActionUiCreate(Part partForUi) { // check if the part is actually one from this vessel if (partForUi.vessel != vessel) return; // check if the current scene is not in flight if (HighLogic.fetch && !HighLogic.LoadedSceneIsFlight) return; // obtain required items for later uses. if (deactivatePowerThresholdFloatRange == null) { deactivatePowerThresholdFloatRange = (UI_FloatRange)Fields["RTDeactivatePowerThreshold"].uiControlEditor; } if (activatePowerThresholdFloatRange == null) { activatePowerThresholdFloatRange = (UI_FloatRange)Fields["RTActivatePowerThreshold"].uiControlEditor; } isPartActionUIOpened = true; } public void OnPartActionUiDismiss(Part partForUi) { //final check if (RTActivatePowerThreshold < RTDeactivatePowerThreshold) { RTDeactivatePowerThreshold = RTActivatePowerThreshold; } //release UI references deactivatePowerThresholdFloatRange = null; activatePowerThresholdFloatRange = null; isPartActionUIOpened = false; } } } ================================================ FILE: src/RemoteTech/Modules/ModuleRTAntennaPassive.cs ================================================ using System; using System.Collections.Generic; using System.Linq; using System.Text; using KSP.Localization; namespace RemoteTech.Modules { /// /// This module represents an omni-directional antenna that is always on, but consumes no power. Intended as a secondary function on non-antenna parts, such as probe cores. /// [KSPModule("#RT_Editor_TechnologyPerk")]//Technology Perk public class ModuleRTAntennaPassive : PartModule, IAntenna { public String Name { get { return part.partInfo.title; } } public Guid Guid { get { return vessel.id; } } public bool Powered { get { return Activated; } } public bool Connected { get { return (RTCore.Instance != null && RTCore.Instance.Network.Graph [Guid].Any (l => l.Interfaces.Contains (this))); } } public bool Activated { get { return Unlocked; } set { return; } } public bool Animating { get { return false; } } public bool CanTarget { get { return false; } } public Guid Target { get { return Guid.Empty; } set { return; } } public float Dish { get { return -1.0f; } } public double CosAngle { get { return 1.0f; } } public float Omni { get { return Activated ? OmniRange * RangeMultiplier : 0.0f; } } public float Consumption { get { return 0.0f; } } public Vector3d Position { get { return vessel.GetWorldPos3D(); } } private float RangeMultiplier { get { return RTSettings.Instance.RangeMultiplier; } } public bool Unlocked { get { return RTUtil.IsTechUnlocked(TechRequired); } } [KSPField] public bool ShowEditor_OmniRange = true, ShowGUI_OmniRange = true; [KSPField(guiName = "#RT_ModuleUI_Omnirange")]//Omni range public String GUI_OmniRange; [KSPField] public String TechRequired = "None"; [KSPField] public float OmniRange; [KSPField(isPersistant = true)] public bool IsRTAntenna = true, IsRTActive = true, IsRTPowered = false, IsRTBroken = false; [KSPField(isPersistant = true)] public double RTDishCosAngle = 1.0f; [KSPField(isPersistant = true)] public float RTOmniRange = 0.0f, RTDishRange = -1.0f; [KSPField] // Persistence handled by Save() public Guid RTAntennaTarget = Guid.Empty; // workarround for ksp 1.0 [KSPField] public float RTPacketInterval = 0.0f, RTPacketSize = 0.0f, RTPacketResourceCost = 0.0f; public int[] mDeployFxModuleIndices, mProgressFxModuleIndices; public ConfigNode mTransmitterConfig; private IScienceDataTransmitter mTransmitter; private Guid mRegisteredId; public override string GetInfo() { var info = new StringBuilder(); if (ShowEditor_OmniRange && Unlocked) { info.AppendFormat(Localizer.Format("#RT_Editor_TechnologyPerk_info1","{1}"), RTUtil.FormatSI(OmniRange, "m"), RTUtil.FormatSI(OmniRange, "m"));//"Integrated Omni: {1} always-on" } return info.ToString(); } public virtual void SetState(bool state) { IsRTActive = state; if(RTCore.Instance != null) { var satellite = RTCore.Instance.Network[Guid]; bool route_home = RTCore.Instance.Network[satellite].Any(r => r.Links[0].Interfaces.Contains(this) && RTCore.Instance.Network.GroundStations.ContainsKey(r.Goal.Guid)); if (mTransmitter == null && route_home) { AddTransmitter(); } else if (!route_home && mTransmitter != null) { RemoveTransmitter(); } } } public void OnConnectionRefresh() { SetState(IsRTActive); } public override void OnLoad(ConfigNode node) { base.OnLoad(node); if (node.HasNode("TRANSMITTER")) { RTLog.Notify("ModuleRTAntennaPassive: Found TRANSMITTER block."); mTransmitterConfig = node.GetNode("TRANSMITTER"); mTransmitterConfig.AddValue("name", "ModuleRTDataTransmitter"); // workarround for ksp 1.0 if (mTransmitterConfig.HasValue("PacketInterval")) RTPacketInterval = float.Parse(mTransmitterConfig.GetValue("PacketInterval")); if (mTransmitterConfig.HasValue("PacketSize")) RTPacketSize = float.Parse(mTransmitterConfig.GetValue("PacketSize")); if (mTransmitterConfig.HasValue("PacketResourceCost")) RTPacketResourceCost = float.Parse(mTransmitterConfig.GetValue("PacketResourceCost")); } } public override void OnStart(StartState state) { // workarround for ksp 1.0 if (mTransmitterConfig == null) { mTransmitterConfig = new ConfigNode("TRANSMITTER"); mTransmitterConfig.AddValue("PacketInterval", RTPacketInterval); mTransmitterConfig.AddValue("PacketSize", RTPacketSize); mTransmitterConfig.AddValue("PacketResourceCost", RTPacketResourceCost); mTransmitterConfig.AddValue("name", "ModuleRTDataTransmitter"); } if (RTCore.Instance != null) { GameEvents.onVesselWasModified.Add(OnVesselModified); GameEvents.onPartUndock.Add(OnPartUndock); mRegisteredId = vessel.id; RTCore.Instance.Antennas.Register(vessel.id, this); SetState(true); GUI_OmniRange = RTUtil.FormatSI(Omni, "m"); } } private void FixedUpdate() { RTOmniRange = Omni; RTDishRange = Dish; IsRTPowered = Powered; Fields["GUI_OmniRange"].guiActive = Activated && ShowGUI_OmniRange; } private void AddTransmitter() { if (mTransmitterConfig == null || !mTransmitterConfig.HasValue("name")) return; var transmitters = part.FindModulesImplementing(); if (transmitters.Count > 0) { RTLog.Notify("ModuleRTAntennaPassive: Find TRANSMITTER success."); mTransmitter = transmitters.First(); } else { var copy = new ConfigNode(); mTransmitterConfig.CopyTo(copy); part.AddModule(copy); AddTransmitter(); RTLog.Notify("ModuleRTAntennaPassive: Add TRANSMITTER success."); } } private void RemoveTransmitter() { RTLog.Notify("ModuleRTAntennaPassive: Remove TRANSMITTER success."); if (mTransmitter == null) return; part.RemoveModule((PartModule) mTransmitter); mTransmitter = null; } /// /// Deprecated? /// private List FindFxModules(int[] indices, bool showUI) { var modules = new List(); if (indices == null) return modules; foreach (int i in indices) { var item = base.part.Modules[i] as IScalarModule; if (item != null) { item.SetUIWrite(showUI); item.SetUIRead(showUI); modules.Add(item); } else { RTLog.Notify("ModuleRTAntennaPassive: Part Module {0} doesn't implement IScalarModule", part.Modules[i].name); } } return modules; } private void OnDestroy() { RTLog.Notify("ModuleRTAntennaPassive: OnDestroy"); GameEvents.onVesselWasModified.Remove(OnVesselModified); GameEvents.onPartUndock.Remove(OnPartUndock); if (RTCore.Instance != null && mRegisteredId != Guid.Empty) { RTCore.Instance.Antennas.Unregister(mRegisteredId, this); mRegisteredId = Guid.Empty; } } private void OnPartUndock(Part p) { if (p.vessel == vessel) { OnVesselModified(p.vessel); } } private void OnVesselModified(Vessel v) { if (RTCore.Instance != null && mRegisteredId != vessel.id) { RTCore.Instance.Antennas.Unregister(mRegisteredId, this); mRegisteredId = vessel.id; RTCore.Instance.Antennas.Register(vessel.id, this); } } public int CompareTo(IAntenna antenna) { return Consumption.CompareTo(antenna.Consumption); } public override string ToString() { return String.Format("ModuleRTAntennaPassive(Name: {0}, Guid: {1}, Omni: {2})", Name, mRegisteredId, Omni); } } } ================================================ FILE: src/RemoteTech/Modules/ModuleRTDataTransmitter.cs ================================================ using System; using System.Collections; using System.Collections.Generic; using System.Linq; using UnityEngine; using KSP.Localization; namespace RemoteTech.Modules { /// Used to transmit science from a vessel with an antenna. public sealed class ModuleRTDataTransmitter : PartModule, IScienceDataTransmitter { //Default parameters unless loaded from antenna configuration [KSPField] public float PacketInterval = 0.5f, PacketSize = 1.0f, PacketResourceCost = 10f; [KSPField] public String RequiredResource = "ElectricCharge"; [KSPField(guiName = "#RT_ModuleUI_Comms", guiActive = true)]//Comms public String GUIStatus = ""; private bool isBusy; private readonly List scienceDataQueue = new List(); private double timeElapsed = 0; // Compatible with ModuleDataTransmitter public override void OnLoad(ConfigNode node) { RTLog.Notify("ModuleRTDataTransmitter::OnLoad"); foreach (ConfigNode data in node.GetNodes("CommsData")) { scienceDataQueue.Add(new ScienceData(data)); } GUIStatus = Localizer.Format("#RT_ModuleUI_Comms_Status");//"Idle" } // Compatible with ModuleDataTransmitter public override void OnSave(ConfigNode node) { RTLog.Notify("ModuleRTDataTransmitter::OnSave"); scienceDataQueue.ForEach(d => d.Save(node.AddNode("CommsData"))); } bool IScienceDataTransmitter.CanTransmit() { RTLog.Notify("ModuleRTDataTransmitter::CanTransmit"); return true; } void IScienceDataTransmitter.TransmitData(List dataQueue) { RTLog.Notify("ModuleRTDataTransmitter::TransmitData(2p)"); scienceDataQueue.AddRange(dataQueue); if (!isBusy) { StartCoroutine(Transmit()); } } float IScienceDataTransmitter.DataRate { get { return PacketSize / PacketInterval; } } double IScienceDataTransmitter.DataResourceCost { get { return PacketResourceCost / PacketSize; } } bool IScienceDataTransmitter.IsBusy() { return isBusy; } public void FixedUpdate() { if (isBusy) { timeElapsed += TimeWarp.fixedDeltaTime; } } private IEnumerator Transmit(Callback callback = null) { RTLog.Notify("ModuleRTDataTransmitter::Transmit"); var msg = new ScreenMessage(Localizer.Format("#RT_ModuleUI_TransmitMsg", part.partInfo.title), 4f, ScreenMessageStyle.UPPER_LEFT);//String.Format("[{0}]: Starting Transmission...", ) var msgStatus = new ScreenMessage(String.Empty, 4.0f, ScreenMessageStyle.UPPER_LEFT); ScreenMessages.PostScreenMessage(msg); isBusy = true; while (scienceDataQueue.Any()) { var scienceData = scienceDataQueue[0]; var dataAmount = scienceData.dataAmount; scienceDataQueue.RemoveAt(0); bool aborted = false; var subject = ResearchAndDevelopment.GetSubjectByID(scienceData.subjectID); if (subject == null) subject = new ScienceSubject("", "", 1, 0, 0); int packets = Mathf.CeilToInt(scienceData.dataAmount / PacketSize); RnDCommsStream commStream = null; if (ResearchAndDevelopment.Instance != null && !scienceData.triggered) { // pre-calculate the time interval - fix for x64 systems // workaround for issue #136 //float time1 = Time.time; //yield return new WaitForSeconds(PacketInterval); // get the delta time //float x64PacketInterval = (Time.time - time1); //RTLog.Notify("Changing RnDCommsStream timeout from {0} to {1}", PacketInterval, x64PacketInterval); //(porting to 1.2): check if scienceData.baseTransmitValue alone or with scienceData.transmitBonus //commStream = new RnDCommsStream(subject, scienceData.dataAmount, x64PacketInterval, commStream = new RnDCommsStream(subject, scienceData.dataAmount, PacketInterval, scienceData.baseTransmitValue, false, ResearchAndDevelopment.Instance); } //StartCoroutine(SetFXModules_Coroutine(modules_progress, 0.0f)); float power = 0; timeElapsed = 0; while (packets > 0) { if (timeElapsed >= PacketInterval) { timeElapsed -= PacketInterval; power += part.RequestResource("ElectricCharge", PacketResourceCost - power); if (power >= PacketResourceCost * 0.95) { GUIStatus = Localizer.Format("#RT_ModuleUI_Comms_Status2");//"Uploading Data..." // remove some power due to transmission power -= PacketResourceCost; // transmitted size float frame = Math.Min(PacketSize, dataAmount); // subtract current packet size from data left to transmit // and clamp it to 1 digit precision to avoid large float precision error (#667) dataAmount -= frame; dataAmount = (float)Math.Round(dataAmount, 1); packets--; float progress = (scienceData.dataAmount - dataAmount) / scienceData.dataAmount; msgStatus.message = Localizer.Format("#RT_ModuleUI_TransmitMsg2",part.partInfo.title, String.Format("{0:P0}", progress));//String.Format("[{0}]: Uploading Data... {1:P0}",,part.partInfo.title ,progress ) ScreenMessages.PostScreenMessage(msgStatus); RTLog.Notify("[Transmitter]: Uploading Data... ({0}) - {1} Mits/sec. Packets to go: {2} - Other experiments waiting to transfer: {3}", scienceData.title, (PacketSize / PacketInterval).ToString("0.00"), packets, scienceDataQueue.Count); // if we've a defined callback parameter so skip to stream each packet if (commStream != null) { RTLog.Notify( "[Transmitter]: PacketSize: {0}; Transmitted size (frame): {1}; Data left to transmit (dataAmount): {2}; Packets left (packets): {3}", PacketSize, frame, dataAmount, packets); // use try / catch to prevent NRE spamming in KSP code when RT is used with other mods. try { // check if it's the last packet to send if (packets == 0) { // issue #667, issue #714 ; floating point error in RnDCommsStream.StreamData method when adding to dataIn private field // e.g scienceData.dataAmount is 10 but in the end RnDCommsStream.dataIn will be 9.999999, so the science never // gets registered to the ResearchAndDevelopment center. // Let's just go ahead and send the full amount so there's no question if we sent it all // KSP will clamp the final size to PacketSize anyway. frame = scienceData.dataAmount; } commStream.StreamData(frame, vessel.protoVessel); } catch (NullReferenceException nre) { RTLog.Notify("[Transmitter] A problem occurred during science transmission: {0}", RTLogLevel.LVL2, nre); } } else { RTLog.Notify("[Transmitter]: [DEBUG] commstream is null and no callback"); } } else { // not enough power msg.message = "" + Localizer.Format("#RT_ModuleUI_TransmitMsg3", part.partInfo.title,RequiredResource)+ "";//String.Format("[{0}]: Warning! Not Enough {1}!", , ) ScreenMessages.PostScreenMessage(msg); aborted = true; GUIStatus = String.Format("{0}/{1} {2}", power, PacketResourceCost, RequiredResource); } } yield return new WaitForFixedUpdate(); } // effectively inform the game that science has been transmitted if (scienceData.triggered) { GameEvents.OnTriggeredDataTransmission.Fire(scienceData, vessel, aborted); } yield return new WaitForSeconds(PacketInterval * 2); } isBusy = false; msg.message = Localizer.Format("#RT_ModuleUI_TransmitMsg4", part.partInfo.title);//String.Format("[{0}]: Done!", ) ScreenMessages.PostScreenMessage(msg); if (callback != null) callback.Invoke(); GUIStatus = Localizer.Format("#RT_ModuleUI_Comms_Status");//"Idle" } } } ================================================ FILE: src/RemoteTech/Modules/ModuleSPU.cs ================================================ using System; using System.Collections.Generic; using System.Linq; using RemoteTech.FlightComputer; using UnityEngine; using KSP.Localization; #if !KSP131 using Expansions.Serenity.DeployedScience.Runtime; #endif namespace RemoteTech.Modules { /// /// Module Signal Processing Unit. /// This module represents the “autopilot” living in a probe core. A vessel will only filter commands according to network availability and time delay if all parts with ModuleCommand also have ModuleSPU; otherwise, the vessel can be controlled in real time. Having at least one ModuleSPU on board is also required to use the flight computer. /// Signal Processors are any part that can receive commands over a working connection (this include all stock probe cores). /// Thus, controlling a vessel is made only through the ModuleSPU unit. Players are only able to control a signal processor 5SPU) as long as they have a working connection (which by default is subject to signal delay). /// [KSPModule("#RT_Editor_SignalProcessor")]//Signal Processor public class ModuleSPU : PartModule, ISignalProcessor { public string Name => $"ModuleSPU({VesselName})"; public string VesselName { get { return vessel != null ? vessel.vesselName : "vessel-null"; } set { if(vessel != null) vessel.vesselName = value; } } public bool VesselLoaded => vessel != null && vessel.loaded; public Guid VesselId { get; private set; } public Vector3 Position { get { return vessel != null ? vessel.GetWorldPos3D() : new Vector3d(); } } public CelestialBody Body { get { return vessel != null ? vessel.mainBody : null; } } public bool Visible => MapViewFiltering.CheckAgainstFilter(vessel); public bool Powered => vessel != null && IsRTPowered; public bool IsCommandStation => IsRTPowered && IsRTCommandStation && vessel != null && vessel.GetVesselCrew().Count >= RTCommandMinCrew; public FlightComputer.FlightComputer FlightComputer { get; private set; } public Vessel Vessel => vessel; public bool IsMaster => Satellite != null && ReferenceEquals(Satellite.SignalProcessor, this); public bool CanRelaySignal => AllowSignalRelay; /* KSP fields */ [KSPField(isPersistant = true)] public bool IsRTPowered; [KSPField(isPersistant = true)] public bool IsRTSignalProcessor = true; [KSPField(isPersistant = true)] public bool IsRTCommandStation = false; [KSPField(isPersistant = true)] public int RTCommandMinCrew = 6; [KSPField(isPersistant = true)] public bool AlwaysAllowLocalControl = false; [KSPField(isPersistant = true)] public bool AllowSignalRelay = true; [KSPField] public bool ShowGUI_Status = true; [KSPField] public bool ShowEditor_Type = true; [KSPField(guiName = "#RT_ModuleUI_SPU", guiActive = true)] public string GUI_Status;//SPU private enum State { Operational, ParentDefect, NoConnection } private VesselSatellite Satellite => RTCore.Instance.Satellites[VesselId]; /// Contains the names of any events that should always be run, /// regardless of connection status or signal delay /// private static readonly HashSet EventWhiteList = new HashSet { "RenameVessel", "RenameAsteroidEvent", // allow renaming vessels and Asteroids. "SpawnTransferDialog", // allow Kerbals to transfer even if no connection "AimCamera", "ResetCamera" // advanced tweakables: camera events }; /// Contains the names of any fields that should always be run, /// regardless of connection status or signal delay. /// private static readonly HashSet FieldWhiteList = new HashSet{}; /* * Private methods */ private State UpdateControlState() { IsRTPowered = part.isControlSource > Vessel.ControlLevel.NONE; if (RTCore.Instance == null) { return State.Operational; } if (!IsRTPowered) { #if !KSP131 // check if the part is itself a Module var moduleExpControlStation = part.Modules.GetModule(); #endif // check if the part is itself a ModuleCommand var moduleCommand = part.Modules.GetModule(); #if !KSP131 if (moduleExpControlStation != null) { if (moduleExpControlStation.ScienceClusterData != null) { IsRTPowered = moduleExpControlStation.ScienceClusterData.IsPowered; // issue: ground science transmission and much of science cluster are not moddable // unwilling to spend large effort for low return } else { IsRTPowered = false; } } #endif #if !KSP131 else if (moduleCommand != null) #else if (moduleCommand != null) #endif { // it's a module command *and* a ModuleSPU, so in this case it's still RTPowered (controllable)! // e.g. even if there's no crew in the pod, we should be able to control it because it's a SPU. IsRTPowered = true; } else { return State.ParentDefect; } } if (Satellite == null || !RTCore.Instance.Network[Satellite].Any()) { return State.NoConnection; } return State.Operational; } /* * PartModule overridden methods */ public override void OnStart(StartState state) { if (state != StartState.Editor) { if (vessel == null) { RTLog.Notify("ModuleSPU: OnStart : No vessel!", RTLogLevel.LVL2); return; } RTLog.Notify($"ModuleSPU: OnStart [{VesselName}]"); GameEvents.onVesselWasModified.Add(OnVesselModified); GameEvents.onPartUndock.Add(OnPartUndock); GameEvents.onPartActionUICreate.Add(OnPartActionUiCreate); GameEvents.onPartActionUIDismiss.Add(OnPartActionUiDismiss); VesselId = vessel.id; if(RTCore.Instance != null) { RTCore.Instance.Satellites.Register(vessel, this); if (FlightComputer == null) FlightComputer = new FlightComputer.FlightComputer(this); } } Fields["GUI_Status"].guiActive = ShowGUI_Status; } public void Update() { FlightComputer?.OnUpdate(); } public void FixedUpdate() { FlightComputer?.OnFixedUpdate(); switch (UpdateControlState()) { case State.Operational: GUI_Status = Localizer.Format("#RT_ModuleUI_SPU_Status");//"Operational." break; case State.ParentDefect: case State.NoConnection: GUI_Status = Localizer.Format("#RT_ModuleUI_SPU_Status2");//"No connection." break; } } public override string ToString() { return $"ModuleSPU({(Vessel != null ? Vessel.vesselName : "null")}, {VesselId})"; } public override string GetInfo() { if (!ShowEditor_Type) return string.Empty; return IsRTCommandStation ? Localizer.Format("#RT_Editor_SignalProcessor_info1", "" + RTCommandMinCrew+ "")//$"Remote Command capable ({}+ crew)" : Localizer.Format("#RT_Editor_SignalProcessor_info2");//"Remote Control capable" } public override void OnSave(ConfigNode node) { base.OnSave(node); try { if (HighLogic.fetch && HighLogic.LoadedSceneIsFlight) { if (FlightComputer == null) FlightComputer = new FlightComputer.FlightComputer(this); FlightComputer.Save(node); } } catch (Exception e) { RTLog.Notify("An exception occurred in ModuleSPU.OnSave(): ", RTLogLevel.LVL4, e); print(e); } } public override void OnLoad(ConfigNode node) { base.OnLoad(node); try { if (HighLogic.fetch && HighLogic.LoadedSceneIsFlight) { if (FlightComputer == null) FlightComputer = new FlightComputer.FlightComputer(this); FlightComputer.Load(node); } } catch (Exception e) { RTLog.Notify("An exception occurred in ModuleSPU.OnLoad(): ", RTLogLevel.LVL4, e); print(e); }; } /* * Unity engine overridden methods */ public void OnDestroy() { if (vessel == null) { RTLog.Notify("ModuleSPU: OnDestroy: no vessel!", RTLogLevel.LVL2); FlightComputer?.Dispose(); return; } RTLog.Notify($"ModuleSPU: OnDestroy [{VesselName}]"); GameEvents.onVesselWasModified.Remove(OnVesselModified); GameEvents.onPartUndock.Remove(OnPartUndock); GameEvents.onPartActionUICreate.Remove(OnPartActionUiCreate); GameEvents.onPartActionUIDismiss.Remove(OnPartActionUiDismiss); if (RTCore.Instance == null) return; RTCore.Instance.Satellites.Unregister(VesselId, this); VesselId = Guid.Empty; FlightComputer?.Dispose(); } /* * KSP game events callbacks */ public void OnVesselModified(Vessel v) { if (RTCore.Instance == null || vessel == null || VesselId == vessel.id) return; RTCore.Instance.Satellites.Unregister(VesselId, this); VesselId = vessel.id; RTCore.Instance.Satellites.Register(vessel, this); } public void OnPartUndock(Part p) { OnVesselModified(p.vessel); } public void OnPartActionUiCreate(Part partForUi) { // check if the part is actually one from this vessel if (partForUi.vessel != vessel) return; // check if the current scene is not in flight if (HighLogic.fetch && !HighLogic.LoadedSceneIsFlight) return; // hook part menu UIPartActionMenuPatcher.WrapPartActionEventItem(partForUi, InvokeEvent); UIPartActionMenuPatcher.WrapPartActionFieldItem(partForUi, InvokePartAction); } public void OnPartActionUiDismiss(Part partForUi) { UIPartActionMenuPatcher.ParsedPartActions.Clear(); } /* * UIPartActionMenuPatcher actions */ private static void InvokeEvent(BaseEvent baseEvent, bool ignoreDelay) { // note: this gets called when the event is invoked through: // RemoteTech.FlightComputer.UIPartActionMenuPatcher.Wrapper.Invoke() var v = FlightGlobals.ActiveVessel; if (v == null || v.isEVA || RTCore.Instance == null) { baseEvent.Invoke(); return; } VesselSatellite vs = null; if (RTCore.Instance != null) { vs = RTCore.Instance.Satellites[v]; } if (vs == null || vs.HasLocalControl) { baseEvent.Invoke(); } else if (EventWhiteList.Contains(baseEvent.name)) { baseEvent.Invoke(); } else if (vs.FlightComputer != null && vs.FlightComputer.InputAllowed) { if (ignoreDelay) { baseEvent.Invoke(); } else { vs.SignalProcessor.FlightComputer.Enqueue(EventCommand.Event(baseEvent)); } } else if (baseEvent.listParent.part.Modules.OfType().Any() && !baseEvent.listParent.part.Modules.OfType().Any() && RTSettings.Instance.ControlAntennaWithoutConnection) { baseEvent.Invoke(); } else { ScreenMessages.PostScreenMessage(new ScreenMessage(Localizer.Format("#RT_ModuleUI_SPU_Msg"), 4.0f, ScreenMessageStyle.UPPER_LEFT));//"No connection to send command on." } } private static void InvokePartAction(BaseField baseField, bool ignoreDelay) { var field = (baseField as UIPartActionMenuPatcher.WrappedField); if (field == null) return; var v = FlightGlobals.ActiveVessel; if (v == null || v.isEVA || RTCore.Instance == null) { field.Invoke(); return; } VesselSatellite vs = null; if (RTCore.Instance != null) { vs = RTCore.Instance.Satellites[v]; } if (vs == null || vs.HasLocalControl) { field.Invoke(); } else if (FieldWhiteList.Contains(baseField.name)) { field.Invoke(); } else if (vs.FlightComputer != null && vs.FlightComputer.InputAllowed) { if (ignoreDelay) { field.Invoke(); } else { // queue command into FC vs.SignalProcessor.FlightComputer.Enqueue(PartActionCommand.Field(baseField, field.NewValue)); } } else if (field.host is PartModule && ((PartModule)field.host).part.Modules.OfType().Any() && !((PartModule)field.host).part.Modules.OfType().Any() && RTSettings.Instance.ControlAntennaWithoutConnection) { field.Invoke(); } else { ScreenMessages.PostScreenMessage(new ScreenMessage(Localizer.Format("#RT_ModuleUI_SPU_Msg"), 4.0f, ScreenMessageStyle.UPPER_LEFT));//"No connection to send command on." } } } } ================================================ FILE: src/RemoteTech/Modules/ModuleSPUPassive.cs ================================================ using System; using UnityEngine; namespace RemoteTech.Modules { /// /// This module allows any vessel with an antenna to participate in a RemoteTech network, even if it does not have a . /// It should be included in all RemoteTech antennas. Unlike ModuleSPU, it does not filter commands or provide a flight computer. /// public class ModuleSPUPassive : PartModule, ISignalProcessor { public string Name => $"ModuleSPUPassive({VesselName})"; public string VesselName { get { return vessel != null ? vessel.vesselName : "vessel-null"; } set { if(vessel != null) vessel.vesselName = value; } } public bool VesselLoaded => vessel != null && vessel.loaded; public Guid VesselId { get; private set; } public Vector3 Position { get { return vessel != null ? vessel.GetWorldPos3D() : new Vector3d(); } } public CelestialBody Body { get { return vessel != null ? vessel.mainBody : null; } } public bool Visible => MapViewFiltering.CheckAgainstFilter(vessel); public bool Powered => vessel != null && vessel.IsControllable; public bool IsCommandStation => false; public FlightComputer.FlightComputer FlightComputer => null; public Vessel Vessel => vessel; public bool IsMaster => false; public bool CanRelaySignal => true; [KSPField(isPersistant = true)] public bool IsRTPowered; [KSPField(isPersistant = true)] public bool IsRTSignalProcessor = true; [KSPField(isPersistant = true)] public bool IsRTCommandStation = false; public override void OnStart(StartState state) { if (state != StartState.Editor) { GameEvents.onVesselWasModified.Add(OnVesselModified); GameEvents.onPartUndock.Add(OnPartUndock); VesselId = vessel.id; if(RTCore.Instance != null) { RTCore.Instance.Satellites.Register(vessel, this); } } } private void FixedUpdate() { if (Vessel != null) { IsRTPowered = Powered; } } public void OnDestroy() { RTLog.Notify("ModuleSPUPassive: OnDestroy"); GameEvents.onVesselWasModified.Remove(OnVesselModified); GameEvents.onPartUndock.Remove(OnPartUndock); if (RTCore.Instance != null) { RTCore.Instance.Satellites.Unregister(VesselId, this); VesselId = Guid.Empty; } } public void OnPartUndock(Part p) { OnVesselModified(p.vessel); } public void OnVesselModified(Vessel v) { if (RTCore.Instance != null && vessel != null && VesselId != vessel.id) { RTCore.Instance.Satellites.Unregister(VesselId, this); VesselId = vessel.id; RTCore.Instance.Satellites.Register(vessel, this); } } public override string ToString() { return $"ModuleSPUPassive({(Vessel != null ? Vessel.vesselName : "null")}, {VesselId})"; } } } ================================================ FILE: src/RemoteTech/Modules/ProtoAntenna.cs ================================================ using System; using System.Linq; namespace RemoteTech.Modules { internal class ProtoAntenna : IAntenna { public String Name { get; private set; } public Guid Guid { get; private set; } public bool Powered { get; private set; } public bool Activated { get; set; } public bool Connected { get { return RTCore.Instance.Network.Graph [Guid].Any (l => l.Interfaces.Contains (this)); } } public float Consumption { get; private set; } public bool CanTarget { get { return Dish != -1; } } public Guid Target { get { return mDishTarget; } set { mDishTarget = value; if (mProtoModule != null) { mProtoModule.moduleValues.SetValue("RTAntennaTarget", value.ToString()); int i = mProtoPart.modules.FindIndex(x => x == mProtoModule); if (i != -1) { mProtoPart.modules[i] = new ProtoPartModuleSnapshot(mProtoModule.moduleValues); } } } } public float Dish { get; private set; } public double CosAngle { get; private set; } public float Omni { get; private set; } private readonly ProtoPartSnapshot mProtoPart; private readonly ProtoPartModuleSnapshot mProtoModule; private Guid mDishTarget; public ProtoAntenna(Vessel v, ProtoPartSnapshot p, ProtoPartModuleSnapshot ppms) { Name = p.partInfo.title; Consumption = 0; Guid = v.id; mProtoPart = p; mProtoModule = ppms; try { mDishTarget = new Guid(ppms.moduleValues.GetValue("RTAntennaTarget")); } catch (Exception ex) when (ex is ArgumentNullException || ex is FormatException || ex is OverflowException) { mDishTarget = Guid.Empty; } double temp_double; float temp_float; bool temp_bool; Dish = Single.TryParse(ppms.moduleValues.GetValue("RTDishRange"), out temp_float) ? temp_float : 0.0f; CosAngle = Double.TryParse(ppms.moduleValues.GetValue("RTDishCosAngle"), out temp_double) ? temp_double : 0.0; Omni = Single.TryParse(ppms.moduleValues.GetValue("RTOmniRange"), out temp_float) ? temp_float : 0.0f; Powered = Boolean.TryParse(ppms.moduleValues.GetValue("IsRTPowered"), out temp_bool) ? temp_bool : false; Activated = Boolean.TryParse(ppms.moduleValues.GetValue("IsRTActive"), out temp_bool) ? temp_bool : false; RTLog.Notify(ToString()); } public ProtoAntenna(String name, Guid guid, float omni) { Name = name; Guid = guid; Omni = omni; Dish = 0; Target = Guid.Empty; CosAngle = 1.0f; Activated = true; Powered = true; } public void OnConnectionRefresh() { ; } public int CompareTo(IAntenna antenna) { return Consumption.CompareTo(antenna.Consumption); } public override string ToString() { return String.Format("ProtoAntenna(Name: {0}, Guid: {1}, Dish: {2}, Omni: {3}, Target: {4}, CosAngle: {5})", Name, Guid, Dish, Omni, Target, CosAngle); } } } ================================================ FILE: src/RemoteTech/Modules/ProtoSignalProcessor.cs ================================================ using System; using UnityEngine; namespace RemoteTech.Modules { public class ProtoSignalProcessor : ISignalProcessor { public string Name { get { return $"ProtoSignalProcessor({VesselName})"; } } public bool Visible => MapViewFiltering.CheckAgainstFilter(Vessel); public CelestialBody Body => Vessel.mainBody; public Vector3 Position => Vessel.GetWorldPos3D(); public string VesselName { get { return Vessel.vesselName; } set { Vessel.vesselName = value; } } public bool VesselLoaded => false; public bool Powered { get; } public bool IsCommandStation { get; } public Guid VesselId => Vessel.id; public Vessel Vessel { get; } public FlightComputer.FlightComputer FlightComputer => null; public bool IsMaster => true; public bool CanRelaySignal { get; } public ProtoSignalProcessor(ProtoPartModuleSnapshot ppms, Vessel v) { Vessel = v; Powered = ppms.GetBool("IsRTPowered"); CanRelaySignal = RTSettings.Instance.SignalRelayEnabled? (ppms.HasValue("AllowSignalRelay")? ppms.GetBool("AllowSignalRelay") : true) : true; // get the crew count from the vessel var crewcount = v.GetVesselCrew().Count; // when the crew count is equal to 0 then look into the protoVessel if (crewcount == 0 && v.protoVessel.GetVesselCrew() != null) crewcount = v.protoVessel.GetVesselCrew().Count; RTLog.Notify("ProtoSignalProcessor crew count of {0} is {1}", v.vesselName, crewcount); int ppmsMinCrew; //try to get the RTCommandMinCrew value in the ProtoPartModuleSnapshot if (ppms.GetInt("RTCommandMinCrew", out ppmsMinCrew)) { IsCommandStation = Powered && v.HasCommandStation() && crewcount >= ppmsMinCrew; RTLog.Notify("ProtoSignalProcessor(Powered: {0}, HasCommandStation: {1}, Crew: {2}/{3})", Powered, v.HasCommandStation(), crewcount, ppmsMinCrew); } else { // there was no RTCommandMinCrew member in the ProtoPartModuleSnapshot IsCommandStation = false; RTLog.Notify("ProtoSignalProcessor(Powered: {0}, HasCommandStation: {1}, Crew: {2})", Powered, v.HasCommandStation(), crewcount); } } public override string ToString() { return Name; } } } ================================================ FILE: src/RemoteTech/NetworkFeedback.cs ================================================ using System; using System.Collections.Generic; using RemoteTech.RangeModel; using KSP.Localization; namespace RemoteTech { public class NetworkFeedback { /// Returns the position of a target identified only by its Guid /// An absolute world coordinate position. /// The item whose position is desired. May be either a satellite /// or a celestial body /// Throws System.ArgumentException if target or network does not exist. public static Vector3d targetPosition(Guid target) { if (RTCore.Instance != null && RTCore.Instance.Network != null && target != Guid.Empty) { ISatellite targetSat = RTCore.Instance.Network[target]; if (targetSat != null) { return targetSat.Position; } try { CelestialBody targetPlanet = RTCore.Instance.Network.Planets[target]; return targetPlanet.position; } catch (KeyNotFoundException) {} } throw new System.ArgumentException("No such Guid found", "target"); } /// Returns the SoI of a target identified only by its Guid /// If target refers to a celestial body, returns that body. If target refers /// to an ISatellite, returns the body whose SoI currently contains the ISatellite. /// The item whose position is desired. May be either a satellite /// or a celestial body. /// Throws System.ArgumentException if target or network does not exist. public static CelestialBody targetBody(Guid target) { if (RTCore.Instance != null && RTCore.Instance.Network != null && target != Guid.Empty) { ISatellite targetSat = RTCore.Instance.Network[target]; if (targetSat != null) { return targetSat.Body; } try { CelestialBody targetPlanet = RTCore.Instance.Network.Planets[target]; return targetPlanet; } catch (KeyNotFoundException) {} } throw new System.ArgumentException("No such Guid found", "target"); } /// Counts the number of ISatellites that are in the antenna cone and in range. /// The number of reachable satellites. /// If antenna does not have a cone, returns 0. /// The antenna whose cone must be tested. /// The object the cone is pointed at. public static int countInCone(IAntenna antenna, Guid target) { if (antenna.Dish <= 0.0 || antenna.CosAngle >= 1.0) { return 0; } try { Vector3d myPos = RTCore.Instance.Network[antenna.Guid].Position; Vector3d targetDir = (targetPosition(target) - myPos).normalized; CelestialBody myBody = targetBody(target); int count = 0; foreach (ISatellite sat in RTCore.Instance.Satellites) { Vector3d satDir = (sat.Position - myPos).normalized; if (Vector3d.Distance(myPos, sat.Position) <= antenna.Dish // in range && Vector3d.Dot(targetDir, satDir) >= antenna.CosAngle // in cone && sat.Body == myBody) // in target SoI... remove later count++; } return count; } catch (ArgumentException) { return 0; } catch (NullReferenceException) { return 0; } } /// Tests whether an antenna can connect to a target /// The range to the target, or a diagnostic error message. Returns the /// empty string if target is invalid. /// The antenna attempting to make a connection. /// The Guid to which it is trying to connect. public static KeyValuePair tryConnection(IAntenna antenna, Guid target) { String status = Localizer.Format("#RT_NetworkFB_status");//"ok" // What kind of target? if (RTCore.Instance != null && RTCore.Instance.Network != null && target != Guid.Empty && target != NetworkManager.ActiveVesselGuid) { bool warning = false, error = false; ISatellite mySat = RTCore.Instance.Network[antenna.Guid]; if (mySat == null) return new KeyValuePair("", UnityEngine.Color.white); List conditions = new List(); // Most probably a satellite ISatellite targetSat = RTCore.Instance.Network[target]; if (targetSat != null) { if (!RangeModelExtensions.HasLineOfSightWith(mySat, targetSat)) { status = Localizer.Format("#RT_NetworkFB_status2");//"No line of sight" error = true; } double dist = RangeModelExtensions.DistanceTo(mySat, targetSat); // Only standard model supported for now, RangeModel isn't designed for this problem double maxDist = Math.Max(antenna.Omni, antenna.Dish); conditions.Add(Localizer.Format("#RT_NetworkFB_Currentdistance") + RTUtil.FormatSI(dist, "m"));//"Current distance:" conditions.Add(Localizer.Format("#RT_NetworkFB_Antennarange") + RTUtil.FormatSI(maxDist, "m"));//"Antenna range:" if (dist > maxDist) { status = Localizer.Format("#RT_NetworkFB_status3");//"Target not in range" error = true; } } try { CelestialBody targetPlanet = RTCore.Instance.Network.Planets[target]; double dist = Vector3d.Distance(mySat.Position, targetPlanet.position); double maxDist = Math.Max(antenna.Omni, antenna.Dish); double spread = 2.0 * dist * Math.Sqrt(1-antenna.CosAngle*antenna.CosAngle); int numTargets = countInCone(antenna, target); if (spread < 2.0 * targetPlanet.Radius) { // WHAT does this info? // conditions.Add("Small Cone"); warning = true; } conditions.Add(Localizer.Format("#RT_NetworkFB_Currentdistance") + RTUtil.FormatSI(dist, "m"));//"Current distance:" conditions.Add(Localizer.Format("#RT_NetworkFB_Antennarange") + RTUtil.FormatSI(maxDist, "m"));//"Antenna range:" if (dist <= maxDist) { conditions.Add(Localizer.Format("#RT_NetworkFB_Targetinfo", RTUtil.FormatSI(spread, "m"),numTargets));//String.Format("Info:{0} beam covers {1} targets)", , ) } else { status = Localizer.Format("#RT_NetworkFB_status3");//"Target not in range" error = true; } if (numTargets <= 0) { warning = true; } } catch (KeyNotFoundException) {} conditions.Add(Localizer.Format("#RT_NetworkFB_statusTitle") + status);//"Status:" return new KeyValuePair( String.Join("; ", conditions.ToArray()), error ? UnityEngine.Color.red : (warning ? UnityEngine.Color.yellow : UnityEngine.Color.white) ); } // Default behavior return new KeyValuePair("", UnityEngine.Color.white); } } } ================================================ FILE: src/RemoteTech/NetworkManager.cs ================================================ using System; using System.Collections; using System.Collections.Generic; using System.Linq; using RemoteTech.Modules; using RemoteTech.RangeModel; using RemoteTech.SimpleTypes; using UnityEngine; using KSP.Localization; namespace RemoteTech { /// /// Class managing the satellites network. /// Acts as a list of vessels in one or more networks. /// public partial class NetworkManager : IEnumerable { public event Action> OnLinkAdd = delegate { }; public event Action> OnLinkRemove = delegate { }; public Dictionary Planets { get; private set; } public Dictionary GroundStations { get; private set; } public Dictionary>> Graph { get; private set; } public int Count { get { return RTCore.Instance.Satellites.Count + GroundStations.Count; } } public static Guid ActiveVesselGuid = new Guid(RTSettings.Instance.ActiveVesselGuid); public ISatellite this[Guid guid] { get { Vessel activeVessel = (FlightGlobals.ActiveVessel == null && HighLogic.LoadedScene == GameScenes.TRACKSTATION ? MapView.MapCamera.target.vessel : FlightGlobals.ActiveVessel); ISatellite vesselSatellite = RTCore.Instance.Satellites[guid]; ISatellite activeSatellite = (guid == ActiveVesselGuid ? RTCore.Instance.Satellites[activeVessel] : null); ISatellite groundSatellite = (GroundStations.ContainsKey(guid) ? GroundStations[guid] : null); return vesselSatellite ?? activeSatellite ?? groundSatellite; } } public List> this[ISatellite sat] { get { if (sat == null) return new List>(); return mConnectionCache.ContainsKey(sat) ? mConnectionCache[sat] : new List>(); } } private const int REFRESH_TICKS = 50; private int mTick; private int mTickIndex; private Dictionary>> mConnectionCache = new Dictionary>>(); public NetworkManager() { Graph = new Dictionary>>(); // Load all planets into a dictionary; Planets = new Dictionary(); foreach (CelestialBody cb in FlightGlobals.Bodies) { Planets[cb.Guid()] = cb; } // Load all ground stations into a dictionary; GroundStations = new Dictionary(); foreach (ISatellite sat in RTSettings.Instance.GroundStations) { try { GroundStations.Add(sat.Guid, sat); OnSatelliteRegister(sat); } catch (Exception e) // Already exists. { RTLog.Notify("A ground station cannot be loaded: " + e.Message, RTLogLevel.LVL1); } } RTCore.Instance.Satellites.OnRegister += OnSatelliteRegister; RTCore.Instance.Satellites.OnUnregister += OnSatelliteUnregister; RTCore.Instance.OnPhysicsUpdate += OnPhysicsUpdate; } public void Dispose() { if (RTCore.Instance != null) { RTCore.Instance.OnPhysicsUpdate -= OnPhysicsUpdate; RTCore.Instance.Satellites.OnRegister -= OnSatelliteRegister; RTCore.Instance.Satellites.OnUnregister -= OnSatelliteUnregister; } } public void FindPath(ISatellite start, IEnumerable commandStations) { var paths = new List>(); foreach (ISatellite root in commandStations.Concat(GroundStations.Values).Where(r => r != start)) { paths.Add(NetworkPathfinder.Solve(start, root, FindNeighbors, RangeModelExtensions.DistanceTo, RangeModelExtensions.DistanceTo)); } mConnectionCache[start] = paths.Where(p => p.Exists).ToList(); mConnectionCache[start].Sort((a, b) => a.Length.CompareTo(b.Length)); start.OnConnectionRefresh(this[start]); } public IEnumerable> FindNeighbors(ISatellite s) { if (!Graph.ContainsKey(s.Guid) || !s.Powered) return Enumerable.Empty>(); if (RTSettings.Instance.SignalRelayEnabled) { return Graph[s.Guid].Where(l => l.Target.Powered && l.Target.CanRelaySignal); } else { return Graph[s.Guid].Where(l => l.Target.Powered); } } private void UpdateGraph(ISatellite a) { var result = this.Select(b => GetLink(a, b)).Where(link => link != null).ToList(); // Send events for removed edges foreach (var link in Graph[a.Guid].Except(result)) { OnLinkRemove(a, link); } Graph[a.Guid].Clear(); // Input new edges foreach (var link in result) { Graph[a.Guid].Add(link); OnLinkAdd(a, link); } } public static NetworkLink GetLink(ISatellite sat_a, ISatellite sat_b) { if (sat_a == null || sat_b == null || sat_a == sat_b) return null; if (sat_a.IsInRadioBlackout || sat_b.IsInRadioBlackout) return null; bool los = sat_a.HasLineOfSightWith(sat_b) || RTSettings.Instance.IgnoreLineOfSight; if (!los) return null; switch (RTSettings.Instance.RangeModelType) { case RangeModel.RangeModel.Additive: // NathanKell return RangeModelRoot.GetLink(sat_a, sat_b); default: // Stock range model return RangeModelStandard.GetLink(sat_a, sat_b); } } public void OnPhysicsUpdate() { var count = RTCore.Instance.Satellites.Count; if (count == 0) return; int baseline = (count / REFRESH_TICKS); int takeCount = baseline + (((mTick++ % REFRESH_TICKS) < (count - baseline * REFRESH_TICKS)) ? 1 : 0); IEnumerable commandStations = RTCore.Instance.Satellites.FindCommandStations(); foreach (VesselSatellite s in RTCore.Instance.Satellites.Concat(RTCore.Instance.Satellites).Skip(mTickIndex).Take(takeCount)) { UpdateGraph(s); //("{0} [ E: {1} ]", s.ToString(), Graph[s.Guid].ToDebugString()); // amend this optimisation due to inconsistent connectivity on non-active vessels (eg showing no connection when 3rd-party mods query) //if (s.SignalProcessor.VesselLoaded || HighLogic.LoadedScene == GameScenes.TRACKSTATION || RTCore.Instance.Renderer.ShowMultiPath) if (HighLogic.LoadedScene == GameScenes.TRACKSTATION || HighLogic.LoadedScene == GameScenes.FLIGHT || (HighLogic.LoadedScene == GameScenes.SPACECENTER && API.API.enabledInSPC)) { FindPath(s, commandStations); } } mTickIndex += takeCount; mTickIndex = mTickIndex % RTCore.Instance.Satellites.Count; } private void OnSatelliteUnregister(ISatellite s) { RTLog.Notify("NetworkManager: SatelliteUnregister({0})", s); Graph.Remove(s.Guid); foreach (var list in Graph.Values) { list.RemoveAll(l => l.Target == s); } mConnectionCache.Remove(s); } private void OnSatelliteRegister(ISatellite s) { RTLog.Notify("NetworkManager: SatelliteRegister({0})", s); Graph[s.Guid] = new List>(); } public IEnumerator GetEnumerator() { return RTCore.Instance.Satellites.Cast().Concat(GroundStations.Values).GetEnumerator(); } IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } /// Gets the position of a RemoteTech target from its id /// The absolute position or null if is neither /// a satellite nor a celestial body. /// The id of the satellite or celestial body whose position is /// desired. May be the active vessel Guid. /// /// The program state is unchanged in the event of an exception. internal Vector3d? GetPositionFromGuid(Guid targetable) { ISatellite targetSat = this[targetable]; if (targetSat != null) { return targetSat.Position; } if (Planets.ContainsKey(targetable)) { return Planets[targetable].position; } return null; } } public sealed class MissionControlSatellite : ISatellite, IPersistenceLoad { /* Config Node parameters */ [Persistent] private String Guid = new Guid("5105f5a9d62841c6ad4b21154e8fc488").ToString(); [Persistent] private String Name = Localizer.Format("#RT_MissionControl");//"Mission Control" [Persistent] private double Latitude = -0.1313315f; [Persistent] private double Longitude = -74.59484f; [Persistent] private double Height = 75.0f; [Persistent] private int Body = 1; [Persistent] private Color MarkColor = new Color(0.996078f, 0, 0, 1); [Persistent(collectionIndex = "ANTENNA")] private MissionControlAntenna[] Antennas = { new MissionControlAntenna() }; private bool AntennaActivated = true; bool ISatellite.Powered { get { return PowerShutdownFlag ? false : this.AntennaActivated; } } bool ISatellite.Visible { get { return true; } } String ISatellite.Name { get { return Name; } set { Name = value; } } Guid ISatellite.Guid { get { return mGuid; } } Vector3d ISatellite.Position { get { return FlightGlobals.Bodies[Body].GetWorldSurfacePosition(Latitude, Longitude, Height); } } bool ISatellite.IsCommandStation { get { return true; } } bool ISatellite.HasLocalControl { get { return false; } } bool ISatellite.isVessel { get { return false; } } Vessel ISatellite.parentVessel { get { return null; } } CelestialBody ISatellite.Body { get { return FlightGlobals.Bodies[Body]; } } Color ISatellite.MarkColor { get { return MarkColor; } } IEnumerable ISatellite.Antennas { get { return Antennas; } } bool ISatellite.CanRelaySignal { get { return true; } } //not sure if should relay signal. Mission Control can "do" everything isnt it? public Guid mGuid { get; private set; } public IEnumerable MissionControlAntennas { get { return Antennas; } } public bool IsInRadioBlackout { get; set; } // could be EMP public bool PowerShutdownFlag { get; set; } // flag for third-party realism mods void ISatellite.OnConnectionRefresh(List> route) { } public MissionControlSatellite() { this.mGuid = new Guid(Guid); } public void reloadUpgradeableAntennas(int techlvl = 0) { foreach (var antenna in this.Antennas) { antenna.reloadUpgradeableAntennas(techlvl); } } /* * Simple getter + setter. * For being able to add groundstations. */ public void SetDetails(String name, double lat, double longi, double height, int body) { this.Name = name; this.Latitude = lat; this.Longitude = longi; this.Height = height; this.Body = body; this.mGuid = System.Guid.NewGuid (); this.Guid = this.mGuid.ToString (); } public String GetDetails() { return String.Format ("name:{0}, lat={1}, long={2}, height={3}, body={4}", this.Name, this.Latitude, this.Longitude, this.Height, this.Body); } public String GetName() { return this.Name; } public CelestialBody GetBody() { return FlightGlobals.Bodies[this.Body]; } public void SetBodyIndex(int index) { this.Body = index; } void IPersistenceLoad.PersistenceLoad() { foreach (var antenna in Antennas) { antenna.Parent = this; } mGuid = new Guid(Guid); } public override String ToString() { return Name; } /// /// Used currently for debug purposes only. This method can be used to shut down the mission control /// /// true=Missioncontrol on, false=MissionControl off public void togglePower(bool powerswitch) { this.AntennaActivated = powerswitch; } } } ================================================ FILE: src/RemoteTech/NetworkPathfinder.cs ================================================ using System; using System.Collections.Generic; using RemoteTech.SimpleTypes; namespace RemoteTech { public static class NetworkPathfinder { // All sorting related data is immutable. public static NetworkRoute Solve(T start, T goal, Func>> neighborsFunction, Func, double> costFunction, Func heuristicFunction) where T : class { var nodeMap = new Dictionary>>(); var priorityQueue = new PriorityQueue>>(); var nStart = new Node>(new NetworkLink(start, null, LinkType.None), 0, heuristicFunction.Invoke(start, goal), null, false); nodeMap[start] = nStart; priorityQueue.Enqueue(nStart); while (priorityQueue.Count > 0) { var current = priorityQueue.Dequeue(); if (current.Closed) continue; current.Closed = true; if (current.Item.Target.Equals(goal)) { // Return path and cost var reversePath = new List>(); for (var node = current; node.From != null; node = node.From) { reversePath.Add(node.Item); } reversePath.Reverse(); return new NetworkRoute(start, reversePath, current.Cost); } foreach (var link in neighborsFunction.Invoke(current.Item.Target)) { double new_cost = current.Cost + costFunction.Invoke(current.Item.Target, link); // Todo: Dennis: i use the fix from Taste83 #139 and i'll look closer if i'm more related to the Pathfinder if (new_cost == current.Cost) { continue; } // If the item has a node, it will either be in the closedSet, or the openSet if (nodeMap.ContainsKey(link.Target)) { Node> n = nodeMap[link.Target]; if (new_cost <= n.Cost) { // Cost via current is better than the old one, discard old node, queue new one. var new_node = new Node>(n.Item, new_cost, n.Heuristic, current, false); n.Closed = true; nodeMap[link.Target] = new_node; priorityQueue.Enqueue(new_node); } } else { // It is not in the openSet, create a node and add it var new_node = new Node>(link, new_cost, heuristicFunction.Invoke(link.Target, goal), current, false); priorityQueue.Enqueue(new_node); nodeMap[link.Target] = new_node; } } } return NetworkRoute.Empty(start); } private class Node : IComparable> { public Node From { get; set; } public bool Closed { get; set; } public int CompareTo(Node node) { return (Cost + Heuristic).CompareTo(node.Cost + node.Heuristic); } public readonly double Cost; public readonly double Heuristic; public readonly T Item; public Node(T item, double cost, double heuristic, Node from, bool closed) { Item = item; Cost = cost; Heuristic = heuristic; From = from; Closed = closed; } } } } ================================================ FILE: src/RemoteTech/NetworkRenderer.cs ================================================ using System; using System.Linq; using System.Collections.Generic; using RemoteTech.SimpleTypes; using RemoteTech.UI; using UnityEngine; using Debug = System.Diagnostics.Debug; using KSP.Localization; namespace RemoteTech { [Flags] public enum MapFilter { None = 0, Omni = 1, Dish = 2, Sphere = 4, Cone = 8, Planet = 8, // For backward compatibility with RemoteTech 1.4 and earlier // Cone should be first, so that it's the one that appears in settings file Path = 16, MultiPath = 32 } /// /// RemoteTech UI network render in charre of drawing connection links in tracking station or flight map scenes. /// public class NetworkRenderer : MonoBehaviour { public MapFilter Filter { get { return RTSettings.Instance.MapFilter; } set { RTSettings.Instance.MapFilter = value; RTSettings.Instance.Save(); } } private static readonly Texture2D mTexMark; private readonly HashSet> mEdges = new HashSet>(); private readonly List mLines = new List(); private readonly List mCones = new List(); private static float mLineWidth = 1f; public bool ShowOmni { get { return (Filter & MapFilter.Omni) == MapFilter.Omni; } } public bool ShowDish { get { return (Filter & MapFilter.Dish) == MapFilter.Dish; } } public bool ShowPath { get { return (Filter & MapFilter.Path) == MapFilter.Path; } } public bool ShowMultiPath { get { return (Filter & MapFilter.MultiPath) == MapFilter.MultiPath; } } public bool ShowRange { get { return (Filter & MapFilter.Sphere) == MapFilter.Sphere; } } public bool ShowCone { get { return (Filter & MapFilter.Cone) == MapFilter.Cone; } } public GUIStyle smallStationText; public GUIStyle smallStationHead; static NetworkRenderer() { RTUtil.LoadImage(out mTexMark, "mark"); if(Versioning.version_major == 1) { switch(Versioning.version_minor) { case 4: mLineWidth = 1f; //1f is matching to CommNet's line width break; default: mLineWidth = 3f; break; } } } public static NetworkRenderer CreateAndAttach() { var renderer = MapView.MapCamera.gameObject.GetComponent(); if (renderer) { Destroy(renderer); } renderer = MapView.MapCamera.gameObject.AddComponent(); RTCore.Instance.Network.OnLinkAdd += renderer.OnLinkAdd; RTCore.Instance.Network.OnLinkRemove += renderer.OnLinkRemove; RTCore.Instance.Satellites.OnUnregister += renderer.OnSatelliteUnregister; renderer.smallStationHead = new GUIStyle(HighLogic.Skin.label) { fontSize = 12 }; renderer.smallStationText = new GUIStyle(HighLogic.Skin.label) { fontSize = 10, normal = { textColor = Color.white } }; return renderer; } public void OnPreCull() { if (MapView.MapIsEnabled) { UpdateNetworkEdges(); UpdateNetworkCones(); } } public void OnGUI() { if (Event.current.type == EventType.Repaint && MapView.MapIsEnabled) { foreach (ISatellite s in RTCore.Instance.Satellites.FindCommandStations().Concat(RTCore.Instance.Network.GroundStations.Values)) { bool showOnMapview = true; var worldPos = ScaledSpace.LocalToScaledSpace(s.Position); if (MapView.MapCamera.transform.InverseTransformPoint(worldPos).z < 0f) continue; Vector3 pos = PlanetariumCamera.Camera.WorldToScreenPoint(worldPos); var screenRect = new Rect((pos.x - 8), (Screen.height - pos.y) - 8, 16, 16); // Hide the current ISatellite if it is behind its body if (RTSettings.Instance.HideGroundStationsBehindBody && IsOccluded(s.Position, s.Body)) showOnMapview = false; if (RTSettings.Instance.HideGroundStationsOnDistance && !IsOccluded(s.Position, s.Body) && this.IsCamDistanceToWide(s.Position)) showOnMapview = false; // orbiting remote stations are always shown if(s.isVessel && !s.parentVessel.Landed) showOnMapview = true; if (showOnMapview) { Color pushColor = GUI.color; // tint the white mark.png into the defined color GUI.color = s.MarkColor; // draw the mark.png GUI.DrawTexture(screenRect, mTexMark, ScaleMode.ScaleToFit, true); GUI.color = pushColor; // Show Mouse over informations to the ground station if (RTSettings.Instance.ShowMouseOverInfoGroundStations && s is MissionControlSatellite && screenRect.ContainsMouse()) { Rect headline = screenRect; Vector2 nameDim = this.smallStationHead.CalcSize(new GUIContent(s.Name)); headline.x -= nameDim.x + 10; headline.y -= 3; headline.width = nameDim.x; headline.height = 14; // draw headline of the station GUI.Label(headline, s.Name, this.smallStationHead); // loop antennas String antennaRanges = String.Empty; foreach (var antenna in s.Antennas) { if(antenna.Omni > 0) { antennaRanges += Localizer.Format("#RT_NetworkFB_Omni") + RTUtil.FormatSI(antenna.Omni,"m") + Environment.NewLine;//"Omni: " } if (antenna.Dish > 0) { antennaRanges += Localizer.Format("#RT_NetworkFB_Dish") + RTUtil.FormatSI(antenna.Dish, "m") + Environment.NewLine;//"Dish: " } } if(!antennaRanges.Equals(String.Empty)) { Rect antennas = screenRect; GUIContent content = new GUIContent(antennaRanges); Vector2 antennaDim = this.smallStationText.CalcSize(content); float maxHeight = this.smallStationText.CalcHeight(content, antennaDim.x); antennas.y += headline.height - 3; antennas.x -= antennaDim.x + 10; antennas.width = antennaDim.x; antennas.height = maxHeight; // draw antenna infos of the station GUI.Label(antennas, antennaRanges, this.smallStationText); } } } } } } /// /// Checks whether the location is behind the body /// Original code by regex from https://github.com/NathanKell/RealSolarSystem/blob/master/Source/KSCSwitcher.cs /// private bool IsOccluded(Vector3d loc, CelestialBody body) { Vector3d camPos = ScaledSpace.ScaledToLocalSpace(PlanetariumCamera.Camera.transform.position); if (Vector3d.Angle(camPos - loc, body.position - loc) > 90) { return false; } return true; } /// /// Calculates the distance between the camera position and the ground station, and /// returns true if the distance is >= DistanceToHideGroundStations from the settings file. /// /// Position of the ground station /// True if the distance is to wide, otherwise false private bool IsCamDistanceToWide(Vector3d loc) { Vector3d camPos = ScaledSpace.ScaledToLocalSpace(PlanetariumCamera.Camera.transform.position); float distance = Vector3.Distance(camPos, loc); // distance to wide? if(distance >= RTSettings.Instance.DistanceToHideGroundStations) return true; return false; } private void UpdateNetworkCones() { List antennas = (ShowCone ? RTCore.Instance.Antennas.Where( ant => ant.Powered && ant.CanTarget && RTCore.Instance.Satellites[ant.Guid] != null && ant.Target != Guid.Empty) : Enumerable.Empty()).ToList(); int oldLength = mCones.Count; int newLength = antennas.Count; // Free any unused lines for (int i = newLength; i < oldLength; i++) { GameObject.Destroy(mCones[i]); mCones[i] = null; } mCones.RemoveRange(Math.Min(oldLength, newLength), Math.Max(oldLength - newLength, 0)); mCones.AddRange(Enumerable.Repeat((NetworkCone) null, Math.Max(newLength - oldLength, 0))); for (int i = 0; i < newLength; i++) { var center = RTCore.Instance.Network.GetPositionFromGuid(antennas[i].Target); Debug.Assert(center != null, "center != null", String.Format("GetPositionFromGuid returned a null value for the target {0}", antennas[i].Target) ); if (!center.HasValue) continue; mCones[i] = mCones[i] ?? NetworkCone.Instantiate(); mCones[i].LineWidth = mLineWidth; mCones[i].Antenna = antennas[i]; mCones[i].Color = Color.gray; mCones[i].Active = ShowCone; mCones[i].Center = center.Value; } } private void UpdateNetworkEdges() { var edges = mEdges.Where(CheckVisibility).ToList(); int oldLength = mLines.Count; int newLength = edges.Count; // Free any unused lines for (int i = newLength; i < oldLength; i++) { Destroy(mLines[i]); mLines[i] = null; } mLines.RemoveRange(Math.Min(oldLength, newLength), Math.Max(oldLength - newLength, 0)); mLines.AddRange(Enumerable.Repeat(null, Math.Max(newLength - oldLength, 0))); // Iterate over all satellites, updating or creating new lines. var it = edges.GetEnumerator(); for (int i = 0; i < newLength; i++) { it.MoveNext(); mLines[i] = mLines[i] ?? NetworkLine.Instantiate(); mLines[i].LineWidth = mLineWidth; mLines[i].Edge = it.Current; mLines[i].Color = CheckColor(it.Current); mLines[i].Active = true; } } private bool CheckVisibility(BidirectionalEdge edge) { var vessel = PlanetariumCamera.fetch.target.vessel; var satellite = RTCore.Instance.Satellites[vessel]; if (satellite != null && ShowPath) { var connections = RTCore.Instance.Network[satellite]; if (connections.Any() && connections[0].Contains(edge)) return true; } if (ShowMultiPath && edge.A.Visible && edge.B.Visible) // purpose of edge-visibility condition is to prevent unnecessary performance off-screen { var satellites = RTCore.Instance.Network.ToArray(); for (int i = 0; i < satellites.Length; i++) { var connections = RTCore.Instance.Network[satellites[i]]; // get the working-connection path of every satellite if (connections.Any() && connections[0].Contains(edge)) return true; } } if (edge.Type == LinkType.Omni && !ShowOmni) return false; if (edge.Type == LinkType.Dish && !ShowDish) return false; if (!edge.A.Visible || !edge.B.Visible) return false; return true; } private Color CheckColor(BidirectionalEdge edge) { var vessel = PlanetariumCamera.fetch.target.vessel; var satellite = RTCore.Instance.Satellites[vessel]; if (satellite != null && ShowPath) { var connections = RTCore.Instance.Network[satellite]; if (connections.Any() && connections[0].Contains(edge)) return RTSettings.Instance.ActiveConnectionColor; } if (ShowMultiPath && edge.A.Visible && edge.B.Visible) // purpose of edge-visibility condition is to prevent unnecessary performance off-screen { var satellites = RTCore.Instance.Network.ToArray(); for (int i = 0; i < satellites.Length; i++) { var connections = RTCore.Instance.Network[satellites[i]]; // get the working-connection path of every satellite if (connections.Any() && connections[0].Contains(edge)) return RTSettings.Instance.ActiveConnectionColor; } } if (RTSettings.Instance.SignalRelayEnabled) { var satA = RTCore.Instance.Satellites[edge.A.Guid]; var satB = RTCore.Instance.Satellites[edge.B.Guid]; if ((satA != null && !satA.CanRelaySignal) || (satB != null && !satB.CanRelaySignal)) return RTSettings.Instance.DirectConnectionColor; } if (edge.Type == LinkType.Omni) return RTSettings.Instance.OmniConnectionColor; if (edge.Type == LinkType.Dish) return RTSettings.Instance.DishConnectionColor; return XKCDColors.Grey; } private void OnSatelliteUnregister(ISatellite s) { mEdges.RemoveWhere(e => e.A == s || e.B == s); } private void OnLinkAdd(ISatellite a, NetworkLink link) { mEdges.Add(new BidirectionalEdge(a, link.Target, link.Port)); } private void OnLinkRemove(ISatellite a, NetworkLink link) { mEdges.Remove(new BidirectionalEdge(a, link.Target, link.Port)); } public void Detach() { for (int i = 0; i < mLines.Count; i++) { GameObject.DestroyImmediate(mLines[i]); } mLines.Clear(); for (int i = 0; i < mCones.Count; i++) { GameObject.DestroyImmediate(mCones[i]); } mCones.Clear(); DestroyImmediate(this); } public void OnDestroy() { RTCore.Instance.Network.OnLinkAdd -= OnLinkAdd; RTCore.Instance.Network.OnLinkRemove -= OnLinkRemove; RTCore.Instance.Satellites.OnUnregister -= OnSatelliteUnregister; } } } ================================================ FILE: src/RemoteTech/Properties/AssemblyInfo.cs ================================================ using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("RemoteTech")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("RemoteTechnologiesGroup")] [assembly: AssemblyProduct("RemoteTech")] [assembly: AssemblyCopyright("Copyright © 2013-2021")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] // Setting ComVisible to false makes the types in this assembly not visible // to COM components. If you need to access a type in this assembly from // COM, set the ComVisible attribute to true on that type. [assembly: ComVisible(false)] // The following GUID is for the ID of the typelib if this project is exposed to COM [assembly: Guid("6466071c-8d09-42b1-ab24-aa485169e609")] // Version information for an assembly consists of the following four values: // // Major Version // Minor Version // Build Number // Revision // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] // Don't include the patch revision in the AssemblyVersion - as this will break any dependent // DLLs any time it changes. Breaking on a minor revision is probably acceptable - it's // unlikely that there wouldn't be other breaking changes on a minor version change. [assembly: AssemblyVersion("1.9")] [assembly: AssemblyFileVersion("1.9.12")] // Use KSPAssembly to allow other DLLs to make this DLL a dependency in a // non-hacky way in KSP. Format is (AssemblyProduct, major, minor), and it // does not appear to have a hard requirement to match the assembly version. [assembly: KSPAssembly("RemoteTech", 1, 9)] ================================================ FILE: src/RemoteTech/RTCore.cs ================================================ using System; using System.Linq; using System.Collections.Generic; using RemoteTech.FlightComputer.Commands; using RemoteTech.UI; using UnityEngine; using Smooth.Algebraics; namespace RemoteTech { /// /// Main base class of RemoteTech. It is called by various inheriting classes: /// * RTCoreFlight (Flight scene) /// * RTCoreTracking (Tracking station scene) /// * RTMainMenu (Main menu scene) /// public abstract class RTCore : MonoBehaviour { /// /// Main class instance. /// public static RTCore Instance { get; protected set; } /// /// RemoteTech satellites manager. /// public SatelliteManager Satellites { get; protected set; } /// /// RemoteTech antennas manager. /// public AntennaManager Antennas { get; protected set; } /// /// RemotTech network manager. /// public NetworkManager Network { get; protected set; } /// /// RemoteTech UI network renderer. /// public NetworkRenderer Renderer { get; protected set; } /* * Add-ons */ /// /// Kerbal Alarm Clock Add-on. /// public AddOns.KerbalAlarmClockAddon KacAddon { get; protected set; } /* * Events */ /// /// Methods can register to this event to be called during the Update() method of the Unity engine (Game Logic engine phase). /// public event Action OnFrameUpdate = delegate { }; /// /// Methods can register to this event to be called during the FixedUpdate() method of the Unity engine (Physics engine phase). /// public event Action OnPhysicsUpdate = delegate { }; /// /// Methods can register to this event to be called during the OnGUI() method of the Unity engine (GUI Rendering engine phase). /// public event Action OnGuiUpdate = delegate { }; /* * UI Overlays */ /// /// UI overlay for the Tracking station or Flight map view (draw and handle buttons in the bottom right corner). /// public FilterOverlay FilterOverlay { get; protected set; } /// /// UI overlay for the "focus view" in the Tracking station scene. /// public FocusOverlay FocusOverlay { get; protected set; } /// /// UI overlay to add a new button to maneuver nodes. /// public ManeuverNodeOverlay ManeuverNodeOverlay { get; protected set; } /// /// UI overlay used to display and handle the status quadrant (time delay) and the flight computer button. /// public TimeWarpDecorator TimeWarpDecorator { get; protected set; } // New for handling the F2 GUI Hiding private bool _guiVisible = true; /// /// Called by Unity engine during initialization phase. /// Only ever called once. /// public void Start() { // Destroy the Core instance if != null or if RemoteTech is disabled if (Instance != null || !RTSettings.Instance.RemoteTechEnabled) { Destroy(this); return; } Instance = this; // disable KSP CommNet HighLogic.fetch.currentGame.Parameters.Difficulty.EnableCommNet = (RTSettings.Instance.CommNetEnabled = false); // add-ons KacAddon = new AddOns.KerbalAlarmClockAddon(); // managers Satellites = new SatelliteManager(); Antennas = new AntennaManager(); Network = new NetworkManager(); Renderer = NetworkRenderer.CreateAndAttach(); // overlays FilterOverlay = new FilterOverlay(); FocusOverlay = new FocusOverlay(); TimeWarpDecorator = new TimeWarpDecorator(); // Handling new F2 GUI Hiding GameEvents.onShowUI.Add(UiOn); GameEvents.onHideUI.Add(UiOff); RTLog.Notify("RTCore {0} loaded successfully.", RTUtil.Version); // register vessels and antennas foreach (var vessel in FlightGlobals.Vessels) { // do not try to register vessel types that have no chance of being RT controlled. // includes: debris, SpaceObject, unknown, EVA and flag if ((vessel.vesselType <= VesselType.Unknown) || (vessel.vesselType >= VesselType.EVA)) continue; Satellites.RegisterProto(vessel); Antennas.RegisterProtos(vessel); } } /// /// F2 GUI Hiding functionality; called when the UI must be displayed. /// public void UiOn() { _guiVisible = true; } /// /// F2 GUI Hiding functionality; called when the UI must be hidden. /// public void UiOff() { _guiVisible = false; } /// /// Called by the Unity engine during the game logic phase. /// This function is called once per frame. It is the main workhorse function for frame updates. /// public void Update() { OnFrameUpdate.Invoke(); if (FlightGlobals.ActiveVessel == null || FlightGlobals.ActiveVessel.packed) return; var vs = Satellites[FlightGlobals.ActiveVessel]; if (vs != null) { GetLocks(); if (vs.HasLocalControl) { ReleaseLocks(); } else if (vs.FlightComputer != null && vs.FlightComputer.InputAllowed) { #if !KSP131 var axisGroups = GetPressedAxisGroup(); for (int i = 0; i < axisGroups.Count(); i++) { if (axisGroups.ElementAt(i).Item2 != 0) //skip both - and + keys pressed at same time { vs.FlightComputer.Enqueue(AxisGroupCommand.WithGroup(axisGroups.ElementAt(i).Item1, axisGroups.ElementAt(i).Item2)); } } #endif var actionGroups = GetActivatedActionGroup(); for (int i = 0; i < actionGroups.Count(); i++) { vs.FlightComputer.Enqueue(ActionGroupCommand.WithGroup(actionGroups.ElementAt(i))); } } } else { ReleaseLocks(); } } /// /// Prevent duplicate calls for the OnFrameUpdate event. /// /// The action to be added to the OnFrameUpdate event. public void AddOnceOnFrameUpdate(Action action) { if (!Instance.OnFrameUpdate.GetInvocationList().Contains(action)) Instance.OnFrameUpdate += action; } /// /// Called by the Unity engine during the Physics phase. /// Note that FixedUpdate() is called before the internal engine physics update. This function is often called more frequently than Update(). /// public void FixedUpdate() { OnPhysicsUpdate.Invoke(); } /// /// Called by the Unity engine during the GUI rendering phase. /// Note that OnGUI() is called multiple times per frame in response to GUI events. /// The Layout and Repaint events are processed first, followed by a Layout and keyboard/mouse event for each input event. /// public void OnGUI() { if (!_guiVisible) return; if (TimeWarpDecorator != null) TimeWarpDecorator.Draw(); GUI.depth = 0; OnGuiUpdate.Invoke(); Action windows = delegate { }; foreach (var window in AbstractWindow.Windows.Values) { windows += window.Draw; } windows.Invoke(); } /// /// Called by the Unity engine during the Decommissioning phase of the Engine. /// This is used to clean up everything before quiting. /// public void OnDestroy() { if (FocusOverlay != null) FocusOverlay.Dispose(); if (ManeuverNodeOverlay != null) ManeuverNodeOverlay.Dispose(); if (FilterOverlay != null) FilterOverlay.Dispose(); if (Renderer != null) Renderer.Detach(); if (Network != null) Network.Dispose(); if (Satellites != null) Satellites.Dispose(); if (Antennas != null) Antennas.Dispose(); // Release all RT locks currently engaged ReleaseLocks(); // Remove GUI stuff GameEvents.onShowUI.Remove(UiOn); GameEvents.onHideUI.Remove(UiOff); // add-ons if (KacAddon != null) KacAddon = null; Instance = null; } /// /// Release RemoteTech UI locks (enable usage of UI buttons). /// private static void ReleaseLocks() { InputLockManager.RemoveControlLock("RTLockStaging"); InputLockManager.RemoveControlLock("RTLockSAS"); InputLockManager.RemoveControlLock("RTLockRCS"); InputLockManager.RemoveControlLock("RTLockActions"); } /// /// Acquire RemoteTech UI locks (disable usage of UI buttons). /// private static void GetLocks() { InputLockManager.SetControlLock(ControlTypes.STAGING, "RTLockStaging"); InputLockManager.SetControlLock(ControlTypes.SAS, "RTLockSAS"); InputLockManager.SetControlLock(ControlTypes.RCS, "RTLockRCS"); InputLockManager.SetControlLock(ControlTypes.GROUPS_ALL, "RTLockActions"); } // Monstrosity that should fix the kOS control locks without modifications on their end. private static IEnumerable GetActivatedActionGroup() { if (GameSettings.LAUNCH_STAGES.GetKeyDown()) if (!InputLockManager.lockStack.Any(l => ((ControlTypes)l.Value & ControlTypes.STAGING) == ControlTypes.STAGING && !l.Key.Equals("RTLockStaging"))) yield return KSPActionGroup.Stage; if (GameSettings.AbortActionGroup.GetKeyDown()) if (!InputLockManager.lockStack.Any(l => ((ControlTypes)l.Value & ControlTypes.GROUP_ABORT) == ControlTypes.GROUP_ABORT && !l.Key.Equals("RTLockActions"))) yield return KSPActionGroup.Abort; if (GameSettings.RCS_TOGGLE.GetKeyDown()) if (!InputLockManager.lockStack.Any(l => ((ControlTypes)l.Value & ControlTypes.RCS) == ControlTypes.RCS && !l.Key.Equals("RTLockRCS"))) yield return KSPActionGroup.RCS; if (GameSettings.SAS_TOGGLE.GetKeyDown()) if (!InputLockManager.lockStack.Any(l => ((ControlTypes)l.Value & ControlTypes.SAS) == ControlTypes.SAS && !l.Key.Equals("RTLockSAS"))) yield return KSPActionGroup.SAS; if (GameSettings.SAS_HOLD.GetKeyDown()) if (!InputLockManager.lockStack.Any(l => ((ControlTypes)l.Value & ControlTypes.SAS) == ControlTypes.SAS && !l.Key.Equals("RTLockSAS"))) yield return KSPActionGroup.SAS; if (GameSettings.SAS_HOLD.GetKeyUp()) if (!InputLockManager.lockStack.Any(l => ((ControlTypes)l.Value & ControlTypes.SAS) == ControlTypes.SAS && !l.Key.Equals("RTLockSAS"))) yield return KSPActionGroup.SAS; if (GameSettings.BRAKES.GetKeyDown()) if (!InputLockManager.lockStack.Any(l => ((ControlTypes)l.Value & ControlTypes.GROUP_BRAKES) == ControlTypes.GROUP_BRAKES && !l.Key.Equals("RTLockActions"))) yield return KSPActionGroup.Brakes; if (GameSettings.LANDING_GEAR.GetKeyDown()) if (!InputLockManager.lockStack.Any(l => ((ControlTypes)l.Value & ControlTypes.GROUP_GEARS) == ControlTypes.GROUP_GEARS && !l.Key.Equals("RTLockActions"))) yield return KSPActionGroup.Gear; if (GameSettings.HEADLIGHT_TOGGLE.GetKeyDown()) if (!InputLockManager.lockStack.Any(l => ((ControlTypes)l.Value & ControlTypes.GROUP_LIGHTS) == ControlTypes.GROUP_LIGHTS && !l.Key.Equals("RTLockActions"))) yield return KSPActionGroup.Light; if (GameSettings.CustomActionGroup1.GetKeyDown()) if (!InputLockManager.lockStack.Any(l => ((ControlTypes)l.Value & ControlTypes.CUSTOM_ACTION_GROUPS) == ControlTypes.CUSTOM_ACTION_GROUPS && !l.Key.Equals("RTLockActions"))) yield return KSPActionGroup.Custom01; if (GameSettings.CustomActionGroup2.GetKeyDown()) if (!InputLockManager.lockStack.Any(l => ((ControlTypes)l.Value & ControlTypes.CUSTOM_ACTION_GROUPS) == ControlTypes.CUSTOM_ACTION_GROUPS && !l.Key.Equals("RTLockActions"))) yield return KSPActionGroup.Custom02; if (GameSettings.CustomActionGroup3.GetKeyDown()) if (!InputLockManager.lockStack.Any(l => ((ControlTypes)l.Value & ControlTypes.CUSTOM_ACTION_GROUPS) == ControlTypes.CUSTOM_ACTION_GROUPS && !l.Key.Equals("RTLockActions"))) yield return KSPActionGroup.Custom03; if (GameSettings.CustomActionGroup4.GetKeyDown()) if (!InputLockManager.lockStack.Any(l => ((ControlTypes)l.Value & ControlTypes.CUSTOM_ACTION_GROUPS) == ControlTypes.CUSTOM_ACTION_GROUPS && !l.Key.Equals("RTLockActions"))) yield return KSPActionGroup.Custom04; if (GameSettings.CustomActionGroup5.GetKeyDown()) if (!InputLockManager.lockStack.Any(l => ((ControlTypes)l.Value & ControlTypes.CUSTOM_ACTION_GROUPS) == ControlTypes.CUSTOM_ACTION_GROUPS && !l.Key.Equals("RTLockActions"))) yield return KSPActionGroup.Custom05; if (GameSettings.CustomActionGroup6.GetKeyDown()) if (!InputLockManager.lockStack.Any(l => ((ControlTypes)l.Value & ControlTypes.CUSTOM_ACTION_GROUPS) == ControlTypes.CUSTOM_ACTION_GROUPS && !l.Key.Equals("RTLockActions"))) yield return KSPActionGroup.Custom06; if (GameSettings.CustomActionGroup7.GetKeyDown()) if (!InputLockManager.lockStack.Any(l => ((ControlTypes)l.Value & ControlTypes.CUSTOM_ACTION_GROUPS) == ControlTypes.CUSTOM_ACTION_GROUPS && !l.Key.Equals("RTLockActions"))) yield return KSPActionGroup.Custom07; if (GameSettings.CustomActionGroup8.GetKeyDown()) if (!InputLockManager.lockStack.Any(l => ((ControlTypes)l.Value & ControlTypes.CUSTOM_ACTION_GROUPS) == ControlTypes.CUSTOM_ACTION_GROUPS && !l.Key.Equals("RTLockActions"))) yield return KSPActionGroup.Custom08; if (GameSettings.CustomActionGroup9.GetKeyDown()) if (!InputLockManager.lockStack.Any(l => ((ControlTypes)l.Value & ControlTypes.CUSTOM_ACTION_GROUPS) == ControlTypes.CUSTOM_ACTION_GROUPS && !l.Key.Equals("RTLockActions"))) yield return KSPActionGroup.Custom09; if (GameSettings.CustomActionGroup10.GetKeyDown()) if (!InputLockManager.lockStack.Any(l => ((ControlTypes)l.Value & ControlTypes.CUSTOM_ACTION_GROUPS) == ControlTypes.CUSTOM_ACTION_GROUPS && !l.Key.Equals("RTLockActions"))) yield return KSPActionGroup.Custom10; } #if !KSP131 /// /// Pick up player actions of axis groups /// private static IEnumerable> GetPressedAxisGroup() { for (int i = 0; i < GameSettings.AXIS_CUSTOM.Length; i++) { var axisGroup = GameSettings.AXIS_CUSTOM[i]; if (axisGroup.plusKeyBinding.GetKey() || axisGroup.minusKeyBinding.GetKey()) { if (!InputLockManager.lockStack.Any(l => ((ControlTypes)l.Value & ControlTypes.CUSTOM_ACTION_GROUPS) == ControlTypes.CUSTOM_ACTION_GROUPS && !l.Key.Equals("RTLockActions"))) yield return new Smooth.Algebraics.Tuple((KSPAxisGroup) (512 << i), (axisGroup.plusKeyBinding.GetKey() ? 1 : 0) + (axisGroup.minusKeyBinding.GetKey() ? -1 : 0)); } } } #endif } /// /// Main class, instantiated during Flight scene. /// [KSPAddon(KSPAddon.Startup.Flight, false)] public class RTCoreFlight : RTCore { public new void Start() { base.Start(); if (Instance == null) return; FlightUIPatcher.Patch(); ManeuverNodeOverlay = new ManeuverNodeOverlay(); ManeuverNodeOverlay.OnEnterMapView(); } private new void OnDestroy() { if (Instance != null) { ManeuverNodeOverlay.OnExitMapView(); } base.OnDestroy(); } } /// /// Main class, instantiated during Tracking station scene. /// [KSPAddon(KSPAddon.Startup.TrackingStation, false)] public class RTCoreTracking : RTCore { public new void Start() { base.Start(); if (Instance == null) return; FilterOverlay.OnEnterMapView(); FocusOverlay.OnEnterMapView(); } private new void OnDestroy() { if (Instance != null) { FilterOverlay.OnExitMapView(); FocusOverlay.OnExitMapView(); } base.OnDestroy(); } } /// /// Main class, instantiated during Space Center scene. Allows mods to access connection data via API from the Space Center scene /// [KSPAddon(KSPAddon.Startup.SpaceCentre, false)] public class RTCoreSpaceCenter: RTCore { public new void Start() { if (API.API.enabledInSPC) { base.Start(); if (Instance == null) return; } else { if (Instance != null) { } base.OnDestroy(); } } private new void OnDestroy() { base.OnDestroy(); } } /// /// Main class, instantiated during Main menu scene. /// [KSPAddon(KSPAddon.Startup.MainMenu, false)] public class RTMainMenu : MonoBehaviour { public void Start() { // Set the loaded trigger to false, this we will load a new // settings after selecting a save game. This is necessary // for switching between saves without shutting down the KSP // instance. RTSettings.Instance.SettingsLoaded = false; } } } ================================================ FILE: src/RemoteTech/RTDebugUnit.cs ================================================ using System; using System.Collections.Generic; using UnityEngine; namespace RemoteTech { [KSPAddon(KSPAddon.Startup.EveryScene, false)] public class RTDebugUnit : MonoBehaviour { private UI.DebugWindow debugWindow; public void Start() { #if DEBUG debugWindow = new UI.DebugWindow(); #endif } public void Update() { if ((Input.GetKeyDown(KeyCode.F11) || Input.GetKeyDown(KeyCode.F12)) && (HighLogic.LoadedSceneIsFlight || HighLogic.LoadedSceneHasPlanetarium)) { if (Input.GetKeyDown(KeyCode.F11)) Dump(); else debugWindow?.toggleWindow(); } } public void Dump() { var dump = new List(); dump.AddRange(DumpSatellites()); dump.Add(Environment.NewLine); dump.AddRange(DumpAntennas()); dump.Add(Environment.NewLine); dump.AddRange(DumpEdges()); dump.Add(Environment.NewLine); dump.AddRange(DumpConnectionTests()); dump.Add(Environment.NewLine); System.IO.File.WriteAllText(@"./rt_dump.txt", string.Join(Environment.NewLine, dump.ToArray())); } public string[] DumpSatellites() { var data = new List {"NetworkManager contents: "}; var i = 0; foreach (var satellite in RTCore.Instance.Network) { data.Add($" {i++}: {satellite}"); } return data.ToArray(); } public string[] DumpAntennas() { var data = new List {"AntennaManager contents: "}; var i = 0; foreach (var antenna in RTCore.Instance.Antennas) { data.Add($" {i++}: {antenna}"); } return data.ToArray(); } public string[] DumpEdges() { var data = new List {"NetworkManager.Graph contents: "}; var i = 0; foreach (var edge in RTCore.Instance.Network.Graph) { data.Add($" {i++}: {edge.Key}"); var j = 0; foreach (var target in edge.Value) { data.Add($" {j++}: {target}"); } } return data.ToArray(); } public string[] DumpConnectionTests() { var data = new List {"Forced connection checks: "}; var i = 0; foreach (var sat1 in RTCore.Instance.Network) { var j = 0; foreach (var sat2 in RTCore.Instance.Network) { if (sat1 == sat2) continue; data.Add($" {i} -> {j}: {NetworkManager.GetLink(sat1, sat2)}"); j++; } i++; } return data.ToArray(); } } } ================================================ FILE: src/RemoteTech/RTEditor.cs ================================================ using RemoteTech.Modules; using RemoteTech.UI; using System; using UnityEngine; using KSP.UI.Screens; namespace RemoteTech { [KSPAddon(KSPAddon.Startup.EditorAny, false)] public class RTEditor : MonoBehaviour { /// /// Start method for RTEditor /// public void Start() { GameEvents.onEditorNewShipDialogDismiss.Add(OnNewShip); GameEvents.onEditorPartPicked.Add(OnPartPicked); GameEvents.onEditorLoad.Add(OnEditorLoad); GameEvents.onEditorScreenChange.Add(OnScreenChange); GameEvents.onEditorRestart.Add(OnEditorRestart); } /// /// Unity onGUI Method to draw /// public void OnGUI() { GUI.depth = 0; // comment: necessary to make AbstractWindow's close button clickable Action windows = delegate { }; var itr = AbstractWindow.Windows.GetEnumerator(); while (itr.MoveNext()) { var windowPair = itr.Current; windows += windowPair.Value.Draw; } windows.Invoke(); } /// /// Unity OnDestroy Method to clean up /// public void OnDestroy() { GameEvents.onEditorNewShipDialogDismiss.Remove(OnNewShip); GameEvents.onEditorPartPicked.Remove(OnPartPicked); GameEvents.onEditorLoad.Remove(OnEditorLoad); GameEvents.onEditorScreenChange.Remove(OnScreenChange); GameEvents.onEditorRestart.Remove(OnEditorRestart); HideAllWindows(); } private void HideAllWindows() { Action windows = delegate { }; var itr = AbstractWindow.Windows.GetEnumerator(); while (itr.MoveNext()) { var windowPair = itr.Current; windows += windowPair.Value.Hide; } windows.Invoke(); } ///////////// // Bunch of editor events below that should hide RemoteTech window ///////////// private void OnScreenChange(EditorScreen screen) { HideAllWindows(); } private void OnEditorLoad(ShipConstruct ship, CraftBrowserDialog.LoadType loadType) { HideAllWindows(); } private void OnPartPicked(Part part) { if (part != null) { var module = part.FindModuleImplementing(); if (module != null) { HideAllWindows(); } } } private void OnNewShip() { HideAllWindows(); } private void OnEditorRestart() { HideAllWindows(); } } } ================================================ FILE: src/RemoteTech/RTLog.cs ================================================ using System; using System.Collections.Generic; using System.Linq; namespace RemoteTech { /// /// Different log levels to log messages for debugging. /// public enum RTLogLevel { LVL1, LVL2, LVL3, LVL4, API, Assembly }; public static class RTLog { /// On true the verbose-Methods will notify their messages private static readonly bool verboseLogging; /// debug log list public static readonly Dictionary> RTLogList = new Dictionary>(); static RTLog() { verboseLogging = GameSettings.VERBOSE_DEBUG_LOG; #region ON-DEBUGMODE #if DEBUG // always set the verboseLogging to true on debug mode verboseLogging = true; // initialize debug list foreach (RTLogLevel lvl in Enum.GetValues(typeof(RTLogLevel))) { RTLogList.Add(lvl, new List()); } #endif #endregion } /// /// Notify a message to the log. In debug mode the message will also be logged /// to the list. /// /// Message to log /// Loglevel for debugging public static void Notify(string message, RTLogLevel logLevel = RTLogLevel.LVL1) { #if !DEBUG if (logLevel != RTLogLevel.API && logLevel != RTLogLevel.Assembly) #endif UnityEngine.Debug.Log("[RemoteTech] " + message); #region ON-DEBUGMODE #if DEBUG NotifyToLogLevel(message, logLevel); #endif #endregion } /// /// Notify a message to the log. Replaces each format item on the /// with the text equivalent of a corresponding objects value from . /// /// Message to log with format items /// objects to format public static void Notify(string message, params object[] param) { Notify(string.Format(message, param), RTLogLevel.LVL1); } /// /// Notify a message to the log. Replaces each format item on the /// with the text equivalent of a corresponding objects value from . /// In debug mode the message will also be logged to the list. /// /// Message to log with format items /// Loglevel for debugging /// objects to format public static void Notify(string message, RTLogLevel logLevel = RTLogLevel.LVL1, params object[] param) { Notify(string.Format(message, param), logLevel); } /// /// Notify a message to the log only if the VERBOSE_DEBUG_LOG from the ksp settings.cfg /// is set to true. In debug mode the message will also be logged to the /// list. /// /// Message to log /// Loglevel for debugging public static void Verbose(string message, RTLogLevel logLevel = RTLogLevel.LVL1) { if (verboseLogging) { Notify(message, logLevel); } } /// /// Notify a message to the log only if the VERBOSE_DEBUG_LOG from the ksp settings.cfg /// is set to true. Replaces each format item on the /// with the text equivalent of a corresponding objects value from . /// In debug mode the message will also be logged to the list. /// /// Message to log /// Loglevel for debugging /// objects to format public static void Verbose(string message, RTLogLevel logLevel = RTLogLevel.LVL1, params object[] param) { Verbose(string.Format(message, param), logLevel); } /// /// Logs the to the /// /// Message to log /// Loglevel for debugging private static void NotifyToLogLevel(string message, RTLogLevel logLevel) { RTLogList[logLevel].Add(message); } } public static class RTLogExtenstions { public static string ToDebugString(this List list) { return "{" + string.Join(",", list.Select(x => x.ToString()).ToArray()) + "}"; } } } ================================================ FILE: src/RemoteTech/RTPartInfoReloader.cs ================================================ using System; using System.Collections; using System.Collections.Generic; using System.Linq; using UnityEngine; using KSP.Localization; namespace RemoteTech { [KSPAddon(KSPAddon.Startup.EditorAny, false)] class RTPartInfoReloader : MonoBehaviour { public void Start() { StartCoroutine(ReloadInfos()); } private IEnumerator ReloadInfos() { yield return null; var loadedParts = PartLoader.LoadedPartsList; // find all RT parts var rtPartList = loadedParts.Where( part => part.partPrefab.Modules != null && (part.partPrefab.Modules.Contains() || part.partPrefab.Modules.Contains() || part.partPrefab.Modules.Contains() || part.partPrefab.Modules.Contains()) ); foreach (var rtPart in rtPartList) { var partHasTechPerk = rtPart.partPrefab.Modules.Contains(); var techPerkRefreshed = false; for (var i = rtPart.moduleInfos.Count - 1; i >= 0; --i) { var info = rtPart.moduleInfos[i]; var moduleName = info.moduleName; if (moduleName == Localizer.Format("#RT_Editor_TechnologyPerk") || moduleName == Localizer.Format("#RT_Editor_Antenna") || moduleName == Localizer.Format("#RT_Editor_SignalProcessor") )//"Technology Perk""Antenna""Signal Processor" { var moduleClassName = string.Empty; if (moduleName == Localizer.Format("#RT_Editor_TechnologyPerk")) moduleClassName = "ModuleRTAntennaPassive";//"Technology Perk" if (moduleName == Localizer.Format("#RT_Editor_Antenna")) moduleClassName = "ModuleRTAntenna";//"Antenna" if (moduleName == Localizer.Format("#RT_Editor_SignalProcessor")) moduleClassName = "ModuleSPU";//"Signal Processor" // no moduleClassName found, skip to the next part if (moduleClassName == string.Empty) continue; // otherwise refresh the infos var newInfos = RefreshPartInfo(rtPart.partPrefab, moduleClassName); if (newInfos != string.Empty) { if (moduleName == Localizer.Format("#RT_Editor_TechnologyPerk"))//"Technology Perk" { techPerkRefreshed = true; } info.info = newInfos; } else { // Remove this info block, should only be the Technology Perk rtPart.moduleInfos.RemoveAt(i); } } } // add a new info block for TechPerk if (techPerkRefreshed == false && partHasTechPerk && rtPart.partPrefab.Modules.GetModule().Unlocked) { rtPart.moduleInfos.Add(CreateTechPerkInfoforPart(rtPart.partPrefab)); } } } /// /// This method creates a new Info-block for the and /// the and returns a string. If no info /// is available the result is an empty string. /// /// Part to get the infos /// module class name for the call /// new info block private static string RefreshPartInfo(Part part, string moduleClassName) { var newInfo = string.Empty; foreach (var pm in part.Modules) { if (pm.moduleName == moduleClassName) { newInfo = pm.GetInfo(); } } return newInfo; } /// /// This method creates a new AvailablePart.ModuleInfo object with /// the Technology Perk info block. /// /// Part to get the infos /// private AvailablePart.ModuleInfo CreateTechPerkInfoforPart(Part part) { // Get the infos for the TechPerk info block var perkInfos = RefreshPartInfo(part, "ModuleRTAntennaPassive"); // creates a new info block var newPerkInfo = new AvailablePart.ModuleInfo { info = perkInfos, moduleName = Localizer.Format("#RT_Editor_TechnologyPerk")//"Technology Perk" }; return newPerkInfo; } } } ================================================ FILE: src/RemoteTech/RTSettings.cs ================================================ using System; using System.Collections.Generic; using System.IO; using System.Linq; using UnityEngine; namespace RemoteTech { public class RTSettings { public static EventVoid OnSettingsChanged = new EventVoid("OnSettingsChanged"); public static EventVoid OnSettingsLoaded = new EventVoid("OnSettingsLoaded"); public static EventVoid OnSettingsSaved = new EventVoid("OnSettingsSaved"); private static Settings _instance; public static Settings Instance { get { //check if there's an already loaded instance if (_instance != null && _instance.SettingsLoaded) return _instance; // otherwise load settings to get the instance return _instance = Settings.Load(); } } /// /// Replace the given settings with a new Settings object of the given setting preset, and save it /// public static void ReloadSettings(Settings previousSettings, string presetCfgUrl) { _instance = Settings.LoadPreset(previousSettings, presetCfgUrl); _instance.Save(); } } public class Settings { // Global settings of the RemoteTech add-on, whose default values are to be read from Default_Settings.cfg // Note: do not rename any of those fields here except if you change the name in the configuration file; be careful though: this will render all previous saves incompatible!!! [Persistent] public bool RemoteTechEnabled; [Persistent] public bool CommNetEnabled; [Persistent] public float ConsumptionMultiplier; [Persistent] public float RangeMultiplier; [Persistent] public float MissionControlRangeMultiplier; [Persistent] public double OmniRangeClampFactor; [Persistent] public double DishRangeClampFactor; [Persistent] public string ActiveVesselGuid; [Persistent] public string NoTargetGuid; [Persistent] public float SpeedOfLight; [Persistent] public MapFilter MapFilter; [Persistent] public bool EnableSignalDelay; [Persistent] public RangeModel.RangeModel RangeModelType; [Persistent] public double MultipleAntennaMultiplier; [Persistent] public bool ThrottleTimeWarp; [Persistent] public bool ThrottleZeroOnNoConnection; [Persistent] public bool StopTimeWrapOnReConnection; [Persistent] public bool HideGroundStationsBehindBody; [Persistent] public bool ControlAntennaWithoutConnection; [Persistent] public bool UpgradeableMissionControlAntennas; [Persistent] public bool HideGroundStationsOnDistance; [Persistent] public bool ShowMouseOverInfoGroundStations; [Persistent] public bool AutoInsertKaCAlerts; [Persistent] public int FCLeadTime; [Persistent] public bool FCOffAfterExecute; [Persistent] public float DistanceToHideGroundStations; [Persistent] public Color DishConnectionColor; [Persistent] public Color OmniConnectionColor; [Persistent] public Color ActiveConnectionColor; [Persistent] public Color RemoteStationColorDot; [Persistent] public Color DirectConnectionColor; [Persistent] public bool SignalRelayEnabled; [Persistent] public bool IgnoreLineOfSight; [Persistent] public float FCWinPosX; [Persistent] public float FCWinPosY; [Persistent] public double FlightTermP; [Persistent] public double FlightTermI; [Persistent] public double FlightTermD; [Persistent(collectionIndex = "STATION")] public List GroundStations; [Persistent(collectionIndex = "PRESETS")] public List PreSets; public const string SaveFileName = "RemoteTech_Settings.cfg"; public static readonly string DefaultSettingCfgURL = AssemblyLoader.loadedAssemblies.FirstOrDefault(a => a.assembly.GetName().Name.Equals("RemoteTech")).url.Replace("/Plugins", "") + "/Default_Settings/RemoteTechSettings"; /// Trigger to force a reloading of the settings if a selected save is running. public bool SettingsLoaded; /// True if its the first start of RemoteTech for this save, false otherwise. public bool FirstStart; /// Temp Variable for all the Window Positions for each instance. public Dictionary SavedWindowPositions = new Dictionary(); /// /// Returns the current RemoteTech_Settings of an existing save full path. The path will be empty /// if no save is loaded or the game is a training mission /// private static string SaveSettingFile { get { if (HighLogic.CurrentGame == null || RTUtil.IsGameScenario) return string.Empty; return KSPUtil.ApplicationRootPath + "/saves/" + HighLogic.SaveFolder + Path.DirectorySeparatorChar + SaveFileName; } } /// /// Saves the current RTSettings object to the RemoteTech_Settings.cfg /// public void Save() { try { // only save the settings if the file name is not empty (i.e. not on loading screen or in training) if (string.IsNullOrEmpty(SaveSettingFile)) return; var details = new ConfigNode("RemoteTechSettings"); ConfigNode.CreateConfigFromObject(this, 0, details); var save = new ConfigNode(); save.AddNode(details); save.Save(SaveSettingFile); RTSettings.OnSettingsSaved.Fire(); } catch (Exception e) { RTLog.Notify("An error occurred while attempting to save: {0}", RTLogLevel.LVL1, e.Message); } } /// /// Utilise KSP's GameDatabase to get a list of cfgs, included our Default_Settings.cfg, contained the 'RemoteTechSettings' /// node and process each cfg accordingly /// /// NOTE: Please do not use the static 'Default_Settings.cfg' file directly because we want third-party modders to apply /// ModuleManager patches of their tweaks, like no signal delay, to our default-settings cfg that will be used when a /// player starts a new game. (refer to our online manual for more details) /// public static Settings Load() { // Create a blank object of settings var settings = new Settings(); var defaultSuccess = false; // Exploit KSP's GameDatabase to find our MM-patched cfg of default settings (from GameData/RemoteTech/Default_Settings.cfg) var cfgs = GameDatabase.Instance.GetConfigs("RemoteTechSettings"); for (var i = 0; i < cfgs.Length; i++) { if(cfgs[i].url.Equals(DefaultSettingCfgURL)) { defaultSuccess = ConfigNode.LoadObjectFromConfig(settings, cfgs[i].config); RTLog.Notify("Load default settings into object with {0}: LOADED {1}", cfgs[i].config, defaultSuccess ? "OK" : "FAIL"); break; } } if (!defaultSuccess) // disable itself and write explanation to KSP's log { RTLog.Notify("RemoteTech is disabled because the default cfg '{0}' is not found", DefaultSettingCfgURL); return null; // the main impact of returning null is the endless loop of invoking Load() in the KSP's loading screen } settings.SettingsLoaded = true; // Disable RemoteTech on Training missions if (RTUtil.IsGameScenario) { settings.RemoteTechEnabled = false; settings.CommNetEnabled = true; } // stop and return default settings if we are on the KSP loading screen OR in training scenarios if (string.IsNullOrEmpty(SaveSettingFile)) { return settings; } // try to load from the save-settings.cfg (MM-patches will not touch because it is outside GameData) var load = ConfigNode.Load(SaveSettingFile); if (load == null) { // write the RT settings to the player's save folder settings.Save(); settings.FirstStart = true; } else { // old or new format? if (load.HasNode("RemoteTechSettings")) load = load.GetNode("RemoteTechSettings"); // replace the default settings with save-setting file var success = ConfigNode.LoadObjectFromConfig(settings, load); RTLog.Notify("Found and load save settings into object with {0}: LOADED {1}", load, success ? "OK" : "FAIL"); } // find third-party mods' RemoteTech settings SearchAndPreparePresets(settings); // Detect if the celestial body, that Mission Control is on (default body index 1), is Kerbin var KSCMC = settings.GroundStations.Find(x => x.GetName().Equals("Mission Control")); // leave extra ground stations to modders, who need to provide MM patches if (KSCMC != null && !KSCMC.GetBody().name.Equals("Kerbin") && KSCMC.GetBody().flightGlobalsIndex == 1) // Kopernicus or similar map changes the planet { KSCMC.SetBodyIndex(FlightGlobals.GetHomeBodyIndex()); RTLog.Notify("KSC's Mission Control is on the wrong planet (not Kerbin/Earth) (Any Kopernicus/similar map would change). Relocated to the homeworld's body index {0}.", FlightGlobals.GetHomeBodyIndex()); } RTSettings.OnSettingsLoaded.Fire(); return settings; } private static void SearchAndPreparePresets(Settings settings) { var presetsChanged = false; // Exploit KSP's GameDatabase to find third-party mods' RemoteTechSetting node (from GameData/ExampleMod/RemoteTechSettings.cfg) var cfgs = GameDatabase.Instance.GetConfigs("RemoteTechSettings"); var rtSettingCfGs = cfgs.Select(x => x.url).ToList(); //check for any invalid preset in the settings of a save for (var i=0; i < settings.PreSets.Count(); i++) { if (rtSettingCfGs.Contains(settings.PreSets[i])) continue; RTLog.Notify("Remove an invalid setting preset {0}", settings.PreSets[i]); settings.PreSets.RemoveAt(i); presetsChanged = true; } //find and add new presets to the settings of a save for (var i = 0; i < rtSettingCfGs.Count(); i++) { if (settings.PreSets.Contains(rtSettingCfGs[i])) continue; RTLog.Notify("Add a new setting preset {0}", rtSettingCfGs[i]); settings.PreSets.Add(rtSettingCfGs[i]); presetsChanged = true; } if (presetsChanged) // only if new RT settings are found and added to the save-setting's PreSets node settings.Save(); } /// /// Load a preset configuration into the RemoteTech settings object. /// public static Settings LoadPreset(Settings previousSettings, string presetCfgUrl) { var newPreSetSettings = new Settings(); var successLoadPreSet = false; // Exploit KSP's GameDatabase to find third-party mods' RemoteTechSetting node (from GameData/ExampleMod/RemoteTechSettings.cfg) var rtSettingCfGs = GameDatabase.Instance.GetConfigs("RemoteTechSettings"); for(var i = 0; i < rtSettingCfGs.Length; i++) { var rtSettingCfg = rtSettingCfGs[i]; if (!rtSettingCfg.url.Equals(presetCfgUrl)) continue; // Preserve important information of RT, such as the single ID var importantInfoNode = new ConfigNode(); importantInfoNode.AddValue("MapFilter", previousSettings.MapFilter); importantInfoNode.AddValue("ActiveVesselGuid", previousSettings.ActiveVesselGuid); importantInfoNode.AddValue("NoTargetGuid", previousSettings.NoTargetGuid); successLoadPreSet = ConfigNode.LoadObjectFromConfig(newPreSetSettings, rtSettingCfg.config); RTLog.Notify("Load the preset cfg into object with {0}: LOADED {1}", newPreSetSettings, successLoadPreSet ? "OK" : "FAIL"); // Restore backups ConfigNode.LoadObjectFromConfig(newPreSetSettings, importantInfoNode); break; } return successLoadPreSet?newPreSetSettings: previousSettings; } /// /// Adds a new ground station to the list. /// /// Name of the ground station /// Latitude position /// Longitude position /// Height above sea level /// Reference body 1=Kerbin etc... /// A new if a new station was successfully added otherwise a Guid.Empty. public Guid AddGroundStation(string name, double latitude, double longitude, double height, int body) { RTLog.Notify("Trying to add ground station({0})", RTLogLevel.LVL1, name); var newGroundStation = new MissionControlSatellite(); newGroundStation.SetDetails(name, latitude, longitude, height, body); // Already on the list? var foundGroundStation = GroundStations.FirstOrDefault(ms => ms.GetDetails().Equals(newGroundStation.GetDetails())); if (foundGroundStation != null) { RTLog.Notify("Ground station already exists!"); return Guid.Empty; } GroundStations.Add(newGroundStation); Save(); return newGroundStation.mGuid; } /// Removes a ground station from the list by its unique . /// Unique ground station id /// Returns true for a successful removed station, otherwise false. public bool RemoveGroundStation(Guid stationid) { RTLog.Notify("Trying to remove ground station {0}", RTLogLevel.LVL1, stationid); for (var i = 0; i < GroundStations.Count; i++) { if (!GroundStations[i].mGuid.Equals(stationid)) continue; RTLog.Notify("Removing {0} ", RTLogLevel.LVL1, GroundStations[i].GetName()); GroundStations.RemoveAt(i); Save(); return true; } RTLog.Notify("Cannot find station {0}", RTLogLevel.LVL1, stationid); return false; } } } ================================================ FILE: src/RemoteTech/RTSpaceCentre.cs ================================================ using RemoteTech.UI; using System; using System.Linq; using UnityEngine; using KSP.UI.Screens; namespace RemoteTech { [KSPAddon(KSPAddon.Startup.SpaceCentre, false)] public class RTSpaceCentre : MonoBehaviour { /// Button for KSP Stock Tool bar public static ApplicationLauncherButton LauncherButton = null; /// OptionWindow private OptionWindow _optionWindow; /// Texture for the KSP Stock Tool-bar Button private Texture2D _rtOptionBtn; /// /// Start method for RTSpaceCentre /// public void Start() { // create the option window _optionWindow = new OptionWindow(); GameEvents.onLevelWasLoaded.Add(onLevelWasLoaded); GameEvents.OnUpgradeableObjLevelChange.Add(OnUpgradeableObjLevelChange); RTSettings.OnSettingsChanged.Add(OnRtSettingsChanged); _rtOptionBtn = RTUtil.LoadImage("gitpagessat"); LauncherButton = ApplicationLauncher.Instance.AddModApplication( _optionWindow.toggleWindow, null, null, null, null, null, ApplicationLauncher.AppScenes.SPACECENTER, _rtOptionBtn); } /// /// Callback-Event when a Upgradeable object (TrackingStation) has changed /// private void OnUpgradeableObjLevelChange(Upgradeables.UpgradeableObject obj, int lvl) { if (!obj.name.Equals("TrackingStation")) return; RTLog.Verbose("OnUpgradeableObjLevelChange {0} - Level: {1}", RTLogLevel.LVL4, obj.name, lvl); ReloadUpgradableAntennas(lvl+1); } /// /// Callback-Event when the RTSettings are changed /// private void OnRtSettingsChanged() { ReloadUpgradableAntennas(); } // Note: KSP's GameEvents.onLevelWasLoaded has the lower-case 'on' instead of usual 'On' private void onLevelWasLoaded(GameScenes scene) { if (scene != GameScenes.SPACECENTER) return; if (!RTSettings.Instance.FirstStart) return; // open here the option dialog for the first start RTLog.Notify("First start of RemoteTech!"); _optionWindow.Show(); RTSettings.Instance.FirstStart = false; } /// /// Apply antenna upgrades to all ground stations. /// /// The level applied to the antennas range. private void ReloadUpgradableAntennas(int techlvl = 0) { foreach ( var satellite in RTSettings.Instance.GroundStations) { satellite.reloadUpgradeableAntennas(techlvl); } } /// /// Unity onGUI Method to draw the OptionWindow /// public void OnGUI() { Action windows = delegate { }; var windowCount = AbstractWindow.Windows.Values.Count; for (var i = 0; i < windowCount; i++) { var window = AbstractWindow.Windows.Values.ElementAt(i); windows += window.Draw; } windows.Invoke(); } /// /// Unity OnDestroy Method to clean up /// public void OnDestroy() { RTSettings.OnSettingsChanged.Remove(OnRtSettingsChanged); GameEvents.onLevelWasLoaded.Remove(onLevelWasLoaded); GameEvents.OnUpgradeableObjLevelChange.Remove(OnUpgradeableObjLevelChange); _optionWindow.Hide(); _optionWindow = null; if (LauncherButton != null) { ApplicationLauncher.Instance.RemoveModApplication(LauncherButton); } } } } ================================================ FILE: src/RemoteTech/RTUtil.cs ================================================ using System; using System.IO; using System.Diagnostics; using System.Reflection; using System.Collections.Generic; using System.Linq; using System.Text; using RemoteTech.SimpleTypes; using UnityEngine; using KSP.Localization; namespace RemoteTech { public static partial class RTUtil { public static double GameTime { get { return Planetarium.GetUniversalTime(); } } /// This time member is needed to debounce the RepeatButton private static double TimeDebouncer = (HighLogic.LoadedSceneHasPlanetarium) ? RTUtil.GameTime : 0; /// /// Automatically finds the proper texture directory from the plugin dll location /// private static string _TextureDirectory = ""; // one-time calculation for performance reason private static string TextureDirectory { get { if (_TextureDirectory.Length <= 0) { _TextureDirectory = AssemblyLoader.loadedAssemblies.FirstOrDefault(a => a.assembly.GetName().Name.Equals("RemoteTech")).url.Replace("Plugins", "Textures") + "/"; } return _TextureDirectory; } } /// /// Returns the current AssemplyFileVersion from AssemblyInfos.cs /// public static string Version { get { Assembly executableAssembly = Assembly.GetExecutingAssembly(); return "v" + FileVersionInfo.GetVersionInfo(executableAssembly.Location).ProductVersion; } } /// /// True if the current running game is a SCENARIO or SCENARIO_NON_RESUMABLE, otherwise false /// public static bool IsGameScenario { get { return (HighLogic.CurrentGame != null && (HighLogic.CurrentGame.Mode == Game.Modes.SCENARIO || HighLogic.CurrentGame.Mode == Game.Modes.SCENARIO_NON_RESUMABLE)); } } public static readonly String[] DistanceUnits = { "", "k", "M", "G", "T" }, ClassDescripts = { "Short-Planetary (SP)", "Medium-Planetary (MP)", "Long-Planetary (LP)", "Short-Interplanetary (SI)", "Medium-Interplanetary (MI)", "Long-Interplanetary (LI)"}; public static double TryParseDuration(String duration) { TimeStringConverter time; if (GameSettings.KERBIN_TIME) { time = new KerbinTimeStringConverter(); } else { time = new EarthTimeStringConverter(); } return time.parseString(duration); } public static void ScreenMessage(String msg) { ScreenMessages.PostScreenMessage(new ScreenMessage(msg, 6.0f, ScreenMessageStyle.UPPER_LEFT)); } public static String Truncate(this String targ, int len) { const String SUFFIX = "..."; if (targ.Length > len) { return targ.Substring(0, len - SUFFIX.Length) + SUFFIX; } return targ; } public static Vector3 Format360To180(Vector3 v) { return new Vector3(Format360To180(v.x), Format360To180(v.y), Format360To180(v.z)); } public static float Format360To180(float degrees) { if (degrees > 180) { return degrees - 360; } return degrees; } public static float Format180To360(float degrees) { if (degrees < 0) { return degrees + 360; } return degrees; } public static String FormatDuration(double duration, bool withMicroSecs = true) { TimeStringConverter time; if (GameSettings.KERBIN_TIME) { time = new KerbinTimeStringConverter(); } else { time = new EarthTimeStringConverter(); } return time.parseDouble(duration, withMicroSecs); } /// /// Generates a string for use in flight log entries /// /// A string in the same format as used by stock flight log events /// The number of full years the mission has lasted /// The number of additional days the mission has lasted /// The number of additional hours the mission has lasted /// The number of additional minutes the mission has lasted /// The number of additional seconds the mission has lasted /// /// All numerical arguments non-negative /// /// Does not throw exceptions public static String FormatTimestamp(int years, int days, int hours, int minutes, int seconds) { return String.Format("{0:D2}:{1:D2}:{2:D2}", hours, minutes, seconds); } public static String FormatConsumption(double consumption) { String format = "{0:F2}/{1}"; String timeindicator = "sec"; // Refactor EC consumption format when EC cost is too low if(consumption < 0.01) { // minutes consumption *= 60; timeindicator = "min"; format = "{0:F3}/{1}"; } return String.Format(format, consumption, timeindicator); } public static String FormatSI(double value, String unit) { var i = (int)Clamp(Math.Floor(Math.Log10(value)) / 3, 0, DistanceUnits.Length - 1); value /= Math.Pow(1000, i); return value.ToString("F2") + DistanceUnits[i] + unit; } public static T Clamp(T value, T min, T max) where T : IComparable { return (value.CompareTo(min) < 0) ? min : (value.CompareTo(max) > 0) ? max : value; } public static String TargetName(Guid guid) { if (guid == System.Guid.Empty) { return Localizer.Format("#RT_ModuleUI_NoTarget");//"No Target" } if (RTCore.Instance != null && RTCore.Instance.Network != null && RTCore.Instance.Satellites != null) { if (RTCore.Instance.Network.Planets.ContainsKey(guid)) { return RTCore.Instance.Network.Planets[guid].name; } ISatellite sat; if ((sat = RTCore.Instance.Network[guid]) != null) { return sat.Name; } } if(HighLogic.LoadedScene == GameScenes.EDITOR) { var result = FlightGlobals.Bodies.Find(x => x.Guid() == guid); if (result != null) { return result.name; // Name of Celestial body } } if (guid == NetworkManager.ActiveVesselGuid) { return Localizer.Format("#RT_ModuleUI_ActiveVessel");//"Active Vessel" } if (RTSettings.Instance != null) { var result2 = RTSettings.Instance.GroundStations.Find(x => x.mGuid == guid); if (result2 != null) { return result2.GetName(); // Name of Misson Control } } return Localizer.Format("#RT_ModuleUI_UnknownTarget");//"Unknown Target" } public static Guid Guid(this CelestialBody cb) { char[] name = cb.GetName().ToCharArray(); var s = new StringBuilder(); for (int i = 0; i < 16; i++) { s.Append(((short)name[i % name.Length]).ToString("x")); } return new Guid(s.ToString()); } public static bool HasValue(this ProtoPartModuleSnapshot ppms, String name) { return ppms.moduleValues.HasValue(name); } public static bool GetBool(this ProtoPartModuleSnapshot ppms, String value) { bool result; return Boolean.TryParse(ppms.moduleValues.GetValue(value) ?? "False", out result) && result; } /// Searches a ProtoPartModuleSnapshot for an integer field. /// True if the member exists, false otherwise. /// The to query. /// The name of a member in the ProtoPartModuleSnapshot. /// The value of the member on success. An undefined value on failure. public static bool GetInt(this ProtoPartModuleSnapshot ppms, string valueName, out int value) { value = 0; var result = ppms.moduleValues.TryGetValue(valueName, ref value); if (!result) { RTLog.Notify($"No integer '{value}' in ProtoPartModule '{ppms.moduleName}'"); } return result; } //Note: Keep this method even if it has no reference, it is useful to track some bugs. /// /// Get a private field value from an object instance though reflection. /// /// The type of the object instance from which to obtain the private field. /// The object instance /// The field name in the object instance, from which to obtain the value. /// The value of the instance or null if no such field exist in the instance. internal static object GetInstanceField(Type type, object instance, string fieldName) { const BindingFlags bindFlags = BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Static; var field = type.GetField(fieldName, bindFlags); return field?.GetValue(instance); } /// /// Get a private field value from an object instance though reflection. /// /// The type of the object instance from which to obtain the private field. /// The object instance /// The field name in the object instance, from which to obtain the value. /// The value of the instance or null if no such field exist in the instance. internal static bool SetInstanceField(Type type, object instance, string fieldName, object newValue) { const BindingFlags bindFlags = BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Static; try { var field = type.GetField(fieldName, bindFlags); field.SetValue(instance, newValue); return true; } catch(Exception e) { return false; } } public static void Button(Texture2D icon, Action onClick, params GUILayoutOption[] options) { if (GUILayout.Button(icon, options)) { onClick.Invoke(); } } public static void Button(String text, Action onClick, params GUILayoutOption[] options) { if (GUILayout.Button(text, options)) { onClick.Invoke(); } } public static void Button(GUIContent text, Action onClick, params GUILayoutOption[] options) { if (GUILayout.Button(text, options)) { onClick.Invoke(); } } /// /// Draws a repeat button. If you hold the mouse click the -callback /// will be triggered at least every 0.05 seconds. /// /// Text for the button /// Callback to trigger for every repeat /// GUILayout params public static void RepeatButton(String text, Action onClick, params GUILayoutOption[] options) { if (GUILayout.RepeatButton(text, options) && (RTUtil.TimeDebouncer + 0.05) < RTUtil.GameTime) { onClick.Invoke(); // set the new time to the debouncer RTUtil.TimeDebouncer = RTUtil.GameTime; } } /// /// Draw a fake toggle button. It is an action button with a toggle functionality. When and /// are equal the background of the button will change to black. /// public static void FakeStateButton(GUIContent text, Action onClick, int state, int value, params GUILayoutOption[] options) { var pushBgColor = GUI.backgroundColor; if (state == value) { GUI.backgroundColor = Color.black; } if (GUILayout.Button(text, options)) { onClick.Invoke(); } GUI.backgroundColor = pushBgColor; } public static void HorizontalSlider(ref float state, float min, float max, params GUILayoutOption[] options) { state = GUILayout.HorizontalSlider(state, min, max, options); } public static void GroupButton(int wide, String[] text, ref int group, params GUILayoutOption[] options) { group = GUILayout.SelectionGrid(group, text, wide, options); } public static void GroupButton(int wide, String[] text, ref int group, Action onStateChange, params GUILayoutOption[] options) { int group2; if ((group2 = GUILayout.SelectionGrid(group, text, wide, options)) != group) { group = group2; onStateChange.Invoke(group2); } } public static void StateButton(GUIContent text, int state, int value, Action onStateChange, params GUILayoutOption[] options) { bool result; if ((result = GUILayout.Toggle(Equals(state, value), text, GUI.skin.button, options)) != Equals(state, value)) { onStateChange.Invoke(result ? value : ~value); } } public static void StateButton(GUIContent text, T state, T value, Action onStateChange, params GUILayoutOption[] options) { bool result; if ((result = GUILayout.Toggle(Equals(state, value), text, GUI.skin.button, options)) != Equals(state, value)) { onStateChange.Invoke(result ? 1 : -1); } } public static void StateButton(String text, T state, T value, Action onStateChange, params GUILayoutOption[] options) { bool result; if ((result = GUILayout.Toggle(Equals(state, value), text, GUI.skin.button, options)) != Equals(state, value)) { onStateChange.Invoke(result ? 1 : -1); } } public static void TextField(ref String text, params GUILayoutOption[] options) { text = GUILayout.TextField(text, options); } /// /// Draws a Textfield with a functionality to use the mouse wheel to trigger /// the events and . /// The callbacks will only be triggered if the textfield is focused while using /// the mouse wheel. /// /// Reference to the input value /// Name for this field /// Action trigger for the mousewheel down event /// Action trigger for the mousewheel up event /// GUILayout params public static void MouseWheelTriggerField(ref String text, string fieldName, Action onWheelDown, Action onWheelUp, params GUILayoutOption[] options) { GUI.SetNextControlName(fieldName); text = GUILayout.TextField(text, options); // Current textfield under control? if((GUI.GetNameOfFocusedControl() == fieldName)) { if (Input.GetAxis("Mouse ScrollWheel") > 0 && (TimeDebouncer + 0.05) < RTUtil.GameTime) { onWheelDown.Invoke(); TimeDebouncer = RTUtil.GameTime; } else if (Input.GetAxis("Mouse ScrollWheel") < 0 && (TimeDebouncer + 0.05) < RTUtil.GameTime) { onWheelUp.Invoke(); TimeDebouncer = RTUtil.GameTime; } } } public static bool ContainsMouse(this Rect window) { return window.Contains(new Vector2(Input.mousePosition.x, Screen.height - Input.mousePosition.y)); } // Replaces old manual method with unity style texture loading public static void LoadImage(out Texture2D texture, String fileName) { string str = TextureDirectory + fileName; if (GameDatabase.Instance.ExistsTexture(str)) texture = GameDatabase.Instance.GetTexture(str, false); else { UnityEngine.Debug.Log("Cannot Find Texture: " + str); texture = Texture2D.blackTexture; } } // New method for ease of use public static Texture2D LoadImage(String fileName) { string str = TextureDirectory + fileName; if (GameDatabase.Instance.ExistsTexture(str)) return GameDatabase.Instance.GetTexture(str, false); else { UnityEngine.Debug.Log("Cannot Find Texture: " + str); return Texture2D.blackTexture; } } public static IEnumerable FindTransformsWithCollider(Transform input) { if (input.GetComponent() != null) { yield return input; } foreach (Transform t in input) { foreach (Transform x in FindTransformsWithCollider(t)) { yield return x; } } } public static T CachePerFrame(ref CachedField cachedField, Func getter) { if (cachedField.Frame == Time.frameCount) { return cachedField.Field; } cachedField.Frame = Time.frameCount; return cachedField.Field = getter(); } public static bool IsTechUnlocked(string techid) { if (techid.Equals("None")) return true; return HighLogic.CurrentGame == null || HighLogic.CurrentGame.Mode == Game.Modes.SANDBOX || ResearchAndDevelopment.GetTechnologyState(techid) == RDTech.State.Available; } public static string ConstrictNum(string s) { return ConstrictNum(s, true); } public static String ConstrictNum(string s, float max) { string tmp = ConstrictNum(s, false); float f; Single.TryParse(tmp, out f); return f > max ? max.ToString("00") : tmp; } public static string ConstrictNum(string s, bool allowNegative) { var tmp = new StringBuilder(); if (allowNegative && s.StartsWith("-")) tmp.Append(s[0]); bool point = false; foreach (char c in s) { if (char.IsNumber(c)) tmp.Append(c); else if (!point && (c == '.' || c == ',')) { point = true; tmp.Append('.'); } } return tmp.ToString(); } public static bool CBhit(CelestialBody body, out Vector2 latlon) { Vector3d hitA; Vector3 origin, dir; if (MapView.MapIsEnabled) { //Use Scaled camera and don't attempt physics raycast if in map view. Ray ray = ScaledCamera.Instance.galaxyCamera.ScreenPointToRay(Input.mousePosition); origin = ScaledSpace.ScaledToLocalSpace(ray.origin); dir = ray.direction.normalized; } else { //Attempt ray cast and return results if successfull. Ray ray = FlightCamera.fetch.mainCamera.ScreenPointToRay(Input.mousePosition); RaycastHit hitB; var dist = (float)(Vector3.Distance(body.position, ray.origin) - body.Radius / 2); if (Physics.Raycast(ray, out hitB, dist)) { latlon = new Vector2((float)body.GetLatitude(hitB.point), (float)body.GetLongitude(hitB.point)); return true; } //if all else fails, try with good oldfashioned arithmetic. origin = ray.origin; dir = ray.direction.normalized; } if (CBhit(body, origin, dir, out hitA)) { latlon = new Vector2((float)body.GetLatitude(hitA), (float)body.GetLongitude(hitA)); return true; } latlon = Vector2.zero; return false; } public static bool CBhit(CelestialBody body, Vector3d originalOrigin, Vector3d direction, out Vector3d hit) { double r = body.Radius; //convert the origin point from world space to body local space and assume body center as (0,0,0). Vector3d origin = originalOrigin - body.position; //Compute A, B and C coefficients double a = Vector3d.Dot(direction, direction); double b = 2 * Vector3d.Dot(direction, origin); double c = Vector3d.Dot(origin, origin) - (r * r); //Find discriminant double disc = b * b - 4 * a * c; // if discriminant is negative there are no real roots, so return // false as ray misses sphere if (disc < 0) { hit = Vector3d.zero; return false; } // compute q. double distSqrt = Math.Sqrt(disc); double q; if (b < 0) q = (-b - distSqrt) / 2.0; else q = (-b + distSqrt) / 2.0; // compute t0 and t1 double t0 = q / a; double t1 = c / q; // make sure t0 is smaller than t1 if (t0 > t1) { // if t0 is bigger than t1 swap them around double temp = t0; t0 = t1; t1 = temp; } // if t1 is less than zero, the body is in the ray's negative direction // and consequently the ray misses the sphere if (t1 < 0) { hit = Vector3d.zero; return false; } // if t0 is less than zero, the intersection point is at t1 if (t0 < 0) { hit = originalOrigin + (t1 * direction); return true; } // the intersection point is at t0 hit = originalOrigin + (t0 * direction); return true; } public static float GetHeading(Vector3 dir, Vector3 up, Vector3 north) { return Quaternion.Inverse(Quaternion.Inverse(Quaternion.LookRotation(dir, up)) * Quaternion.LookRotation(north, up)).eulerAngles.y; } public static double ClampDegrees360(double angle) { angle = angle % 360.0; return angle < 0 ? angle + 360.0 : angle; } public static double ClampDegrees180(double angle) { angle = ClampDegrees360(angle); if (angle > 180) angle -= 360; return angle; } public static float ClampDegrees360(float angle) { angle = angle % 360f; return angle < 0 ? angle + 360f : angle; } public static float ClampDegrees180(float angle) { angle = ClampDegrees360(angle); if (angle > 180) angle -= 360; return angle; } public static float AngleBetween(float angleFrom, float angleTo) { float angle = angleFrom - angleTo; while (angle < -180) angle += 360; while (angle > 180) angle -= 360; return angle; } public static float ClampDegrees90(float angle) { if (angle > 90) angle -= 180; else if (angle < -90) angle += 180; return angle; } /// /// Returns a vessel object by the given or /// null if no vessel was found /// /// Guid of a vessel public static Vessel GetVesselById(Guid vesselid) { return FlightGlobals.Vessels.FirstOrDefault(vessel => vessel.id == vesselid); } // ----------------------------------------------- // Copied from MechJeb master on 18.04.2016 public static Vector3d DeltaEuler(this Quaternion delta) { return new Vector3d( (delta.eulerAngles.x > 180) ? (delta.eulerAngles.x - 360.0F) : delta.eulerAngles.x, -((delta.eulerAngles.y > 180) ? (delta.eulerAngles.y - 360.0F) : delta.eulerAngles.y), (delta.eulerAngles.z > 180) ? (delta.eulerAngles.z - 360.0F) : delta.eulerAngles.z ); } public static Vector3d Invert(this Vector3d vector) { return new Vector3d(1 / vector.x, 1 / vector.y, 1 / vector.z); } public static Vector3d Reorder(this Vector3d vector, int order) { switch (order) { case 123: return new Vector3d(vector.x, vector.y, vector.z); case 132: return new Vector3d(vector.x, vector.z, vector.y); case 213: return new Vector3d(vector.y, vector.x, vector.z); case 231: return new Vector3d(vector.y, vector.z, vector.x); case 312: return new Vector3d(vector.z, vector.x, vector.y); case 321: return new Vector3d(vector.z, vector.y, vector.x); } throw new ArgumentException("Invalid order", "order"); } public static Vector3d Sign(this Vector3d vector) { return new Vector3d(Math.Sign(vector.x), Math.Sign(vector.y), Math.Sign(vector.z)); } public static Vector3d Clamp(this Vector3d value, double min, double max) { return new Vector3d( Clamp(value.x, min, max), Clamp(value.y, min, max), Clamp(value.z, min, max) ); } // end MechJeb import //--------------------------------------- } } ================================================ FILE: src/RemoteTech/RangeModel/AbstractRangeModel.cs ================================================ using System; using System.Collections.Generic; using System.Linq; using RemoteTech.SimpleTypes; namespace RemoteTech.RangeModel { public static class AbstractRangeModel { /// Can't boost the range of an omni antenna by more than this factor, no matter what. private static readonly double omniClamp = RTSettings.Instance.OmniRangeClampFactor; /// Can't boost the range of a dish antenna by more than this factor, no matter what. private static readonly double dishClamp = RTSettings.Instance.DishRangeClampFactor; /// Finds the maximum range between an antenna and a specific target. /// The maximum distance at which the two spacecraft could communicate. /// The antenna attempting to target. /// The satellite being targeted by . /// The satellite on which is mounted. /// A function that computes the maximum range between two /// satellites, given their individual ranges. public static double GetRangeInContext(IAntenna antenna, ISatellite target, ISatellite antennaSat, Func rangeFunc) { // Which antennas on the other craft are capable of communication? IEnumerable omnisB = GetOmnis(target); IEnumerable dishesB = GetDishesThatSee(target, antennaSat); // Pick the best range for each case double maxOmniB = omnisB.Any() ? omnisB.Max(ant => ant.Omni) : 0.0; double maxDishB = dishesB.Any() ? dishesB.Max(ant => ant.Dish) : 0.0; double bonusB = GetMultipleAntennaBonus(omnisB, maxOmniB); // Also need local antenna bonus, if antenna is an omni IEnumerable omnisA = GetOmnis(antennaSat); double maxOmniA = omnisA.Any() ? omnisA.Max( ant => ant.Omni) : 0.0; double bonusA = GetMultipleAntennaBonus(omnisA, maxOmniA); // What is the range? // Note: IAntenna.Omni and IAntenna.Dish are zero for antennas of the other type double maxOmni = Math.Max(CheckRange(rangeFunc, antenna.Omni + bonusA, omniClamp, maxOmniB + bonusB, omniClamp), CheckRange(rangeFunc, antenna.Omni + bonusA, omniClamp, maxDishB , dishClamp)); double maxDish = Math.Max(CheckRange(rangeFunc, antenna.Dish , dishClamp, maxOmniB + bonusB, omniClamp), CheckRange(rangeFunc, antenna.Dish , dishClamp, maxDishB , dishClamp)); if (Double.IsNaN(maxOmni)) { maxOmni = 0.0; } if (Double.IsNaN(maxDish)) { maxDish = 0.0; } return Math.Max(maxOmni, maxDish); } /// Constructs a link between two satellites, if one is possible. /// The new link, or null if the two satellites cannot connect. /// A function that computes the maximum range between two /// satellites, given their individual ranges. public static NetworkLink GetLink(ISatellite satA, ISatellite satB, Func rangeFunc) { // Which antennas on either craft are capable of communication? IEnumerable omnisA = GetOmnis(satA); IEnumerable omnisB = GetOmnis(satB); IEnumerable dishesA = GetDishesThatSee(satA, satB); IEnumerable dishesB = GetDishesThatSee(satB, satA); // Pick the best range for each case double maxOmniA = omnisA.Any() ? omnisA.Max(ant => ant.Omni) : 0.0; double maxOmniB = omnisB.Any() ? omnisB.Max(ant => ant.Omni) : 0.0; double maxDishA = dishesA.Any() ? dishesA.Max(ant => ant.Dish) : 0.0; double maxDishB = dishesB.Any() ? dishesB.Max(ant => ant.Dish) : 0.0; double bonusA = GetMultipleAntennaBonus(omnisA, maxOmniA); double bonusB = GetMultipleAntennaBonus(omnisB, maxOmniB); double distance = satA.DistanceTo(satB); // Which antennas have the range to reach at least one antenna on the other satellite?? omnisA = omnisA.Where(ant => CheckRange(rangeFunc, ant.Omni + bonusA, omniClamp, maxOmniB + bonusB, omniClamp) >= distance || CheckRange(rangeFunc, ant.Omni + bonusA, omniClamp, maxDishB , dishClamp) >= distance); dishesA = dishesA.Where(ant => CheckRange(rangeFunc, ant.Dish , dishClamp, maxOmniB + bonusB, omniClamp) >= distance || CheckRange(rangeFunc, ant.Dish , dishClamp, maxDishB , dishClamp) >= distance); omnisB = omnisB.Where(ant => CheckRange(rangeFunc, ant.Omni + bonusB, omniClamp, maxOmniA + bonusA, omniClamp) >= distance || CheckRange(rangeFunc, ant.Omni + bonusB, omniClamp, maxDishA , dishClamp) >= distance); dishesB = dishesB.Where(ant => CheckRange(rangeFunc, ant.Dish , dishClamp, maxOmniA + bonusA, omniClamp) >= distance || CheckRange(rangeFunc, ant.Dish , dishClamp, maxDishA , dishClamp) >= distance); // Just because an antenna is in `omnisA.Concat(dishesA)` doesn't mean it can connect to *any* // antenna in `omnisB.Concat(dishesB)`, and vice versa. Pick the max to be safe. IAntenna selectedAntennaA = omnisA.Concat(dishesA) .OrderByDescending(ant => Math.Max(ant.Omni, ant.Dish)).FirstOrDefault(); IAntenna selectedAntennaB = omnisB.Concat(dishesB) .OrderByDescending(ant => Math.Max(ant.Omni, ant.Dish)).FirstOrDefault(); if (selectedAntennaA != null && selectedAntennaB != null) { List interfaces = omnisA.Concat(dishesA).ToList(); LinkType type = (dishesA.Contains(selectedAntennaA) || dishesB.Contains(selectedAntennaB) ? LinkType.Dish : LinkType.Omni); return new NetworkLink(satB, interfaces, type); } return null; } /// Checks the maximum range achievable by two satellites. /// The maximum range, including sanity limits. /// A function that takes two antenna ranges and returns a joint range. /// The range of the first satellite. /// The range of the second satellite. /// The maximum factor by which the first range can be boosted. /// The maximum factor by which the second range can be boosted. private static double CheckRange(Func rangeFunc, double range1, double clamp1, double range2, double clamp2) { return Math.Min(Math.Min(rangeFunc.Invoke(range1, range2), range1*clamp1), range2*clamp2); } /// Returns the bonus from having multiple antennas /// The boost to all omni antenna ranges, if MultipleAntennaMultiplier is enabled; /// otherwise zero. private static double GetMultipleAntennaBonus(IEnumerable omniList, double maxOmni) { if (RTSettings.Instance.MultipleAntennaMultiplier > 0.0) { double total = omniList.Sum(a => a.Omni); return (total - maxOmni) * RTSettings.Instance.MultipleAntennaMultiplier; } else { return 0.0; } } /// Returns all omnidirectional antennas on a satellite. /// A possibly empty collection of omnis. private static IEnumerable GetOmnis(ISatellite sat) { return sat.Antennas.Where(a => a.Omni > 0); } /// Returns all dishes on a satellite that are pointed, directly or indirectly, /// at a particular target. /// A possibly empty collection of dishes. /// The satellite whose dishes are being queried. /// The target to be contacted. private static IEnumerable GetDishesThatSee(ISatellite sat, ISatellite target) { return sat.Antennas.Where(a => a.Dish > 0 && (a.IsTargetingDirectly(target) || a.IsTargetingActiveVessel(target) || a.IsInFieldOfView(target, sat))); } } } ================================================ FILE: src/RemoteTech/RangeModel/RangeModel.cs ================================================ using System; namespace RemoteTech.RangeModel { [Flags] public enum RangeModel { Standard, Additive, Root = Additive, } } ================================================ FILE: src/RemoteTech/RangeModel/RangeModelExtensions.cs ================================================ using System; using RemoteTech.SimpleTypes; namespace RemoteTech.RangeModel { public static class RangeModelExtensions { /// Determines if an antenna has a specific satellite as its target. /// true if a's target is set to ; false otherwise. /// The antenna being queried. /// The satellite being tested for being the antenna target. public static bool IsTargetingDirectly(this IAntenna dish, ISatellite target) { return dish.Target == target.Guid; } /// Determines if an antenna can connect to a target through active vessel targeting. /// true if a's target is set to "Active Vessel" and is active; false otherwise. /// The antenna being queried. /// The satellite being tested for being the antenna target. public static bool IsTargetingActiveVessel(this IAntenna dish, ISatellite target) { Vessel activeVessel = FlightGlobals.ActiveVessel; if (activeVessel == null && HighLogic.LoadedScene == GameScenes.TRACKSTATION) { activeVessel = MapView.MapCamera.target.vessel; } return dish.Target == NetworkManager.ActiveVesselGuid && activeVessel != null && target.Guid == activeVessel.id; } /// Determines if an antenna can connect to a target indirectly, using a cone. /// true if lies within the cone of ; /// otherwise, false. /// The antenna being queried. /// The satellite being tested for being the antenna target. /// The satellite containing . /// /// The program state is unchanged in the event of an exception. public static bool IsInFieldOfView(this IAntenna dish, ISatellite target, ISatellite antennaSat) { if (dish.Target == Guid.Empty) { return false; } Vector3d? coneCenter = RTCore.Instance.Network.GetPositionFromGuid(dish.Target); if (coneCenter.HasValue) { Vector3d dirToConeCenter = (coneCenter.Value - antennaSat.Position); Vector3d dirToTarget = (target.Position - antennaSat.Position); return (Vector3d.Dot(dirToConeCenter.normalized, dirToTarget.normalized) >= dish.CosAngle); } return false; } /// Finds the distance between two ISatellites /// The distance in meters. public static double DistanceTo(this ISatellite a, ISatellite b) { return Vector3d.Distance(a.Position, b.Position); } /// Finds the distance between an ISatellite and the target of a connection /// The distance in meters. /// The satellite from which the distance is to be measured. /// The network node to whose destination the distance is to be measured. public static double DistanceTo(this ISatellite sat, NetworkLink link) { return Vector3d.Distance(sat.Position, link.Target.Position); } /// Tests whether two satellites have line of sight to each other /// true if a straight line from a to b is not blocked by any celestial body; /// otherwise, false. public static bool HasLineOfSightWith(this ISatellite satA, ISatellite satB) { const double MIN_HEIGHT = 5.0; Vector3d satAPos = satA.Position; Vector3d satBPos = satB.Position; foreach (CelestialBody referenceBody in FlightGlobals.Bodies) { Vector3d bodyFromA = referenceBody.position - satAPos; Vector3d bFromA = satBPos - satAPos; // Is body at least roughly between satA and satB? if (Vector3d.Dot(bodyFromA, bFromA) <= 0) continue; Vector3d bFromANorm = bFromA.normalized; if (Vector3d.Dot(bodyFromA, bFromANorm) >= bFromA.magnitude) continue; // Above conditions guarantee that Vector3d.Dot(bodyFromA, bFromANorm) * bFromANorm // lies between the origin and bFromA Vector3d lateralOffset = bodyFromA - Vector3d.Dot(bodyFromA, bFromANorm) * bFromANorm; if (lateralOffset.magnitude < referenceBody.Radius - MIN_HEIGHT) return false; } return true; } } } ================================================ FILE: src/RemoteTech/RangeModel/RangeModelRoot.cs ================================================ using System; using RemoteTech.SimpleTypes; namespace RemoteTech.RangeModel { public static class RangeModelRoot { /// Finds the maximum distance between two satellites with ranges r1 and r2. /// The maximum range at which the two satellites can communicate. private static double MaxDistance(double r1, double r2) { return Math.Min(r1, r2) + Math.Sqrt(r1 * r2); } /// Finds the maximum range between an antenna and a potential target. /// The maximum distance at which the two spacecraft could communicate. /// The antenna attempting to target. /// The satellite being targeted by . /// The satellite on which is mounted. public static double GetRangeInContext(IAntenna antenna, ISatellite target, ISatellite antennaSat) { return AbstractRangeModel.GetRangeInContext(antenna, target, antennaSat, MaxDistance); } /// Constructs a link between two satellites, if one is possible. /// The new link, or null if the two satellites cannot connect. public static NetworkLink GetLink(ISatellite satA, ISatellite satB) { return AbstractRangeModel.GetLink(satA, satB, MaxDistance); } } } ================================================ FILE: src/RemoteTech/RangeModel/RangeModelStandard.cs ================================================ using System; using RemoteTech.SimpleTypes; namespace RemoteTech.RangeModel { public static class RangeModelStandard { /// Finds the maximum distance between two satellites with ranges r1 and r2. /// The maximum range at which the two satellites can communicate. private static double MaxDistance(double r1, double r2) { return Math.Min(r1, r2); } /// Finds the maximum range between an antenna and a potential target. /// The maximum distance at which the two spacecraft could communicate. /// The antenna attempting to target. /// The satellite being targeted by . /// The satellite on which is mounted. public static double GetRangeInContext(IAntenna antenna, ISatellite target, ISatellite antennaSat) { return AbstractRangeModel.GetRangeInContext(antenna, target, antennaSat, MaxDistance); } /// Constructs a link between two satellites, if one is possible. /// The new link, or null if the two satellites cannot connect. public static NetworkLink GetLink(ISatellite satA, ISatellite satB) { return AbstractRangeModel.GetLink(satA, satB, MaxDistance); } } } ================================================ FILE: src/RemoteTech/RemoteTech.csproj ================================================  {42155D82-1F25-4E59-9F65-64ABC583F420} Debug AnyCPU Library Properties RemoteTech RemoteTech v4.5 512 true full false $(KSPDEVDIR)\GameData\RemoteTech\Plugins\ obj\RemoteTech\Plugins\ DEBUG prompt 4 Auto true default false none true $(KSPDEVDIR)\GameData\RemoteTech\Plugins\ ..\..\GameData\RemoteTech\Plugins\ prompt 4 Auto default false none true $(KSPDEVDIR)\GameData\RemoteTech\Plugins\ ..\..\GameData\RemoteTech\Plugins\ KSP131 prompt 4 Auto default MinimumRecommendedRules.ruleset false $(KSPDEVDIR)\KSP_x64_Data\Managed\Assembly-CSharp.dll Assembly-CSharp.dll $(KSPDEVDIR)\KSP_x64_Data\Managed\Assembly-CSharp-firstpass.dll Assembly-CSharp-firstpass.dll $(KSPDEVDIR)\KSP_x64_Data\Managed\UnityEngine.dll UnityEngine.dll $(KSPDEVDIR)\KSP_x64_Data\Managed\UnityEngine.UI.dll UnityEngine.UI.dll $(KSPDEVDIR)\KSP_x64_Data\Managed\UnityEngine.AnimationModule.dll UnityEngine.AnimationModule.dll $(KSPDEVDIR)\KSP_x64_Data\Managed\UnityEngine.AudioModule.dll UnityEngine.AudioModule.dll $(KSPDEVDIR)\KSP_x64_Data\Managed\UnityEngine.CoreModule.dll UnityEngine.CoreModule.dll $(KSPDEVDIR)\KSP_x64_Data\Managed\UnityEngine.ImageConversionModule.dll UnityEngine.ImageConversionModule.dll $(KSPDEVDIR)\KSP_x64_Data\Managed\UnityEngine.IMGUIModule.dll UnityEngine.IMGUIModule.dll $(KSPDEVDIR)\KSP_x64_Data\Managed\UnityEngine.InputLegacyModule.dll UnityEngine.InputLegacyModule.dll $(KSPDEVDIR)\KSP_x64_Data\Managed\UnityEngine.TextRenderingModule.dll UnityEngine.TextRenderingModule.dll $(KSPDEVDIR)\KSP_x64_Data\Managed\UnityEngine.PhysicsModule.dll UnityEngine.PhysicsModule.dll $(PostBuildEventDependsOn); PostBuildMacros; if "$(ConfigurationName)"=="Debug" (call "$(ProjectDir)..\..\buildscripts\UnityDebug_2019\prepare-debug.bat" $(TargetName)) ================================================ FILE: src/RemoteTech/RemoteTech.sln ================================================  Microsoft Visual Studio Solution File, Format Version 11.00 # Visual C# Express 2010 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RemoteTech", "RemoteTech.csproj", "{42155D82-1F25-4E59-9F65-64ABC583F420}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU Release|Any CPU = Release|Any CPU Release131|Any CPU = Release131|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {42155D82-1F25-4E59-9F65-64ABC583F420}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {42155D82-1F25-4E59-9F65-64ABC583F420}.Debug|Any CPU.Build.0 = Debug|Any CPU {42155D82-1F25-4E59-9F65-64ABC583F420}.Release|Any CPU.ActiveCfg = Release|Any CPU {42155D82-1F25-4E59-9F65-64ABC583F420}.Release|Any CPU.Build.0 = Release|Any CPU {42155D82-1F25-4E59-9F65-64ABC583F420}.Release131|Any CPU.ActiveCfg = Release131|Any CPU {42155D82-1F25-4E59-9F65-64ABC583F420}.Release131|Any CPU.Build.0 = Release131|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection EndGlobal ================================================ FILE: src/RemoteTech/SatelliteManager.cs ================================================ using System; using System.Linq; using System.Collections; using System.Collections.Generic; using RemoteTech.Modules; namespace RemoteTech { /// /// Class keeping track of RemoteTech satellites. /// Acts as a list of vessels managed by RemoteTech. /// public class SatelliteManager : IEnumerable, IDisposable { public event Action OnRegister = delegate { }; public event Action OnUnregister = delegate { }; public int Count => _satelliteCache.Count; public VesselSatellite this[Guid g] => GetSatelliteById(g); public VesselSatellite this[Vessel v] => v == null ? null : GetSatelliteById(v.id); private readonly Dictionary> _loadedSpuCache = new Dictionary>(); private readonly Dictionary _satelliteCache = new Dictionary(); public SatelliteManager() { GameEvents.onVesselCreate.Add(OnVesselCreate); GameEvents.onVesselDestroy.Add(OnVesselDestroy); GameEvents.onVesselGoOnRails.Add(OnVesselOnRails); OnRegister += vs => RTLog.Notify("SatelliteManager: OnRegister({0})", vs); OnUnregister += vs => RTLog.Notify("SatelliteManager: OnUnregister({0})", vs); } /// /// Registers a signal processor for the vessel. /// /// The vessel. /// The signal processor. /// Guid key under which the signal processor was registered. public Guid Register(Vessel vessel, ISignalProcessor spu) { RTLog.Notify("SatelliteManager: Register({0})", spu); var key = vessel.id; if (!_loadedSpuCache.ContainsKey(key)) { UnregisterProto(vessel.id); _loadedSpuCache[key] = new List(); } // Add if non duplicate var signalProcessor = _loadedSpuCache[key].Find(x => x == spu); if (signalProcessor != null) return key; _loadedSpuCache[key].Add(spu); // Create a new satellite if it's the only loaded signal processor. if (_loadedSpuCache[key].Count != 1) return key; _satelliteCache[key] = new VesselSatellite(_loadedSpuCache[key]); OnRegister(_satelliteCache[key]); return key; } /// /// Unregisters the specified signal processor. /// /// The key the signal processor was registered under. /// The signal processor. public void Unregister(Guid key, ISignalProcessor spu) { RTLog.Notify("SatelliteManager: Unregister({0})", spu); // Return if nothing to unregister. if (!_loadedSpuCache.ContainsKey(key)) return; // Find instance of the signal processor. var instanceId = _loadedSpuCache[key].FindIndex(x => x == spu); if (instanceId == -1) return; // Remove satellite if no signal processors remain. if (_loadedSpuCache[key].Count == 1) { if (_satelliteCache.ContainsKey(key)) { VesselSatellite sat = _satelliteCache[key]; OnUnregister(sat); _satelliteCache.Remove(key); } _loadedSpuCache[key].RemoveAt(instanceId); _loadedSpuCache.Remove(key); // search vessel by id var vessel = RTUtil.GetVesselById(key); if (vessel != null) { // trigger the onRails on more time // to re-register the satellite as a protoSat OnVesselOnRails(vessel); } } else { _loadedSpuCache[key].RemoveAt(instanceId); } } /// /// Registers a protosatellite compiled from the unloaded vessel data. /// /// The vessel. public void RegisterProto(Vessel vessel) { Guid key = vessel.protoVessel.vesselID; RTLog.Notify("SatelliteManager: RegisterProto({0}, {1})", vessel.vesselName, key); // Return if there are still signal processors loaded. if (_loadedSpuCache.ContainsKey(vessel.id)) { _loadedSpuCache.Remove(vessel.id); } var spu = vessel.GetSignalProcessor(); if (spu == null) return; var protos = new List {spu}; _satelliteCache[key] = new VesselSatellite(protos); OnRegister(_satelliteCache[key]); } /// /// Unregisters the protosatellite which was compiled from the unloaded vessel data. /// public void UnregisterProto(Guid key) { RTLog.Notify("SatelliteManager: UnregisterProto({0})", key); // Return if there are still signal processors loaded. if (_loadedSpuCache.ContainsKey(key)) return; // Unregister satellite if it exists. if (!_satelliteCache.ContainsKey(key)) return; OnUnregister(_satelliteCache[key]); _satelliteCache.Remove(key); } private VesselSatellite GetSatelliteById(Guid key) { VesselSatellite result; return _satelliteCache.TryGetValue(key, out result) ? result : null; } public IEnumerable FindCommandStations() { return _satelliteCache.Values.Where(vs => vs.IsCommandStation).Cast(); } private void OnVesselOnRails(Vessel v) { if (v.parts.Count == 0) { RegisterProto(v); } } private void OnVesselCreate(Vessel v) { RTLog.Notify("SatelliteManager: OnVesselCreate({0}, {1})", v.id, v.vesselName); } private void OnVesselDestroy(Vessel v) { RTLog.Notify("SatelliteManager: OnVesselDestroy({0}, {1})", v.id, v.vesselName); UnregisterProto(v.id); } public void Dispose() { GameEvents.onVesselCreate.Remove(OnVesselCreate); GameEvents.onVesselDestroy.Remove(OnVesselDestroy); GameEvents.onVesselGoOnRails.Remove(OnVesselOnRails); } public IEnumerator GetEnumerator() { return _satelliteCache.Values.GetEnumerator(); } IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } } public static partial class RTUtil { public static bool IsSignalProcessor(this ProtoPartModuleSnapshot ppms) { return ppms.GetBool("IsRTSignalProcessor"); } public static bool IsSignalProcessor(this PartModule pm) { return pm.Fields.GetValue("IsRTSignalProcessor"); } public static ISignalProcessor GetSignalProcessor(this Vessel v) { RTLog.Notify("GetSignalProcessor({0}): Check", v.vesselName); ISignalProcessor result = null; if (v.loaded && v.parts.Count > 0) { var partModuleList = v.Parts.SelectMany(p => p.Modules.Cast()).Where(pm => pm.IsSignalProcessor()).ToList(); // try to look for a moduleSPU result = partModuleList.FirstOrDefault(pm => pm.moduleName == "ModuleSPU") as ISignalProcessor ?? partModuleList.FirstOrDefault() as ISignalProcessor; } else { var protoPartList = v.protoVessel.protoPartSnapshots.SelectMany(x => x.modules).Where(ppms => ppms.IsSignalProcessor()).ToList(); // try to look for a moduleSPU on a unloaded vessel var protoPartProcessor = protoPartList.FirstOrDefault(ppms => ppms.moduleName == "ModuleSPU") ?? protoPartList.FirstOrDefault(); // convert the found protoPartSnapshots to a ProtoSignalProcessor if (protoPartProcessor != null) { result = new ProtoSignalProcessor(protoPartProcessor, v); } } return result; } public static bool IsCommandStation(this ProtoPartModuleSnapshot ppms) { return ppms.GetBool("IsRTCommandStation"); } public static bool IsCommandStation(this PartModule pm) { return pm.Fields.GetValue("IsRTCommandStation"); } public static bool HasCommandStation(this Vessel v) { RTLog.Notify("HasCommandStation({0})", v.vesselName); if (v.loaded && v.parts.Count > 0) { return v.Parts.SelectMany(p => p.Modules.Cast()).Any(pm => pm.IsCommandStation()); } return v.protoVessel.protoPartSnapshots.SelectMany(x => x.modules).Any(pm => pm.IsCommandStation()); } } } ================================================ FILE: src/RemoteTech/SimpleTypes/AddOn.cs ================================================ using System; using System.Diagnostics; using System.Linq; using System.Reflection; namespace RemoteTech.SimpleTypes { public abstract class AddOn { /// Holds the current assembly type protected Type AssemblyType; /// Binding flags for invoking the methods protected BindingFlags BindFlags = BindingFlags.InvokeMethod | BindingFlags.Public | BindingFlags.Static; /// Instance object for invoking instance methods protected object Instance; /// Assembly loaded? public bool AssemblyLoaded { get; } protected AddOn(string assemblyName, string assemblyType) { RTLog.Verbose("Connecting with {0} ...", RTLogLevel.Assembly, assemblyName); var loadedAssembly = AssemblyLoader.loadedAssemblies.FirstOrDefault(a => a.assembly.GetName().Name.Equals(assemblyName)); if (loadedAssembly == null) return; RTLog.Notify("Successfull connected to Assembly {0}", RTLogLevel.Assembly, assemblyName); AssemblyType = loadedAssembly.assembly.GetTypes().FirstOrDefault(t => t.FullName.Equals(assemblyType)); AssemblyLoaded = true; } /// /// Reads the current called method name and takes this method /// over to the assembly. The return value on a not successfull /// call is null. /// /// Object parameter list, given to the assembly method /// Null on a non successfull call protected object Invoke(object[] parameters) { if (!AssemblyLoaded) return null; // look 1 call behind to get the name of the method who is called var stackTrace = new StackTrace(); var stackFrame = stackTrace.GetFrame(1); try { // invoke the method var result = AssemblyType.InvokeMember(stackFrame.GetMethod().Name, BindFlags, null, Instance, parameters); RTLog.Verbose("AddOn.InvokeResult for {0} with instance: {1} is '{2}'", RTLogLevel.Assembly, stackFrame.GetMethod().Name, Instance, result); return result; } catch (Exception ex) { RTLog.Verbose("AddOn.InvokeException for {0} with instance: {1} is '{2}'", RTLogLevel.Assembly, stackFrame.GetMethod().Name, Instance, ex); } // default value is null return null; } } } ================================================ FILE: src/RemoteTech/SimpleTypes/BidirectionalEdge.cs ================================================ using System; namespace RemoteTech.SimpleTypes { public enum LinkType { None, Dish, Omni, } public class BidirectionalEdge : IEquatable> { public bool Equals(BidirectionalEdge other) { return (A.Equals(other.A) || A.Equals(other.B)) && (B.Equals(other.A) || B.Equals(other.B)); } public readonly T A; public readonly T B; public readonly LinkType Type; public BidirectionalEdge(T a, T b, LinkType type) { A = a; B = b; Type = type; } public override int GetHashCode() { return A.GetHashCode() + B.GetHashCode(); } public override string ToString() { return String.Format("BidirectionalEdge(A: {0}, B: {1}, Type {2})", A, B, Type.ToString()); } } } ================================================ FILE: src/RemoteTech/SimpleTypes/BinaryHeap.cs ================================================ using System.Collections; using System.Collections.Generic; namespace RemoteTech.SimpleTypes { // Sadly there is no way to enforce immutability C#. // Do not modify sorting order externally! Increase/Decrease(). public class BinaryHeap : IEnumerable { public int Count { get { return mData.Count; } } public int Capacity { get { return mData.Capacity; } } public bool IsReadOnly { get { return false; } } private readonly List mData; private readonly Comparer mComparer; public BinaryHeap() : this(0) { } public BinaryHeap(int size) { mData = new List(size); mComparer = Comparer.Default; } public void Clear() { mData.Clear(); } public T Peek() { return mData[0]; } public T Remove() { T top = mData[0]; mData[0] = mData[mData.Count - 1]; mData.RemoveAt(mData.Count - 1); if (mData.Count > 0) { Decrease(0); } return top; } public void Add(T item) { mData.Add(item); Increase(mData.Count - 1); } public void Increase(int id) { T item = mData[id]; int parent_id = (id - 1) >> 1; // While the item precedes its parent and hasn't reached root. while ((parent_id >= 0) && (mComparer.Compare(item, mData[parent_id]) < 0)) { // Propagate the parent downwards. mData[id] = mData[parent_id]; id = parent_id; parent_id = (id - 1) >> 1; } // Place the item where it belongs. mData[id] = item; } public void Decrease(int id) { T item = mData[id]; while (true) { int new_id; int child1 = (id << 1) + 1; if (child1 > mData.Count - 1) { break; } int child2 = (id << 1) + 2; // Check whether to use the left or right node. if (child2 > mData.Count - 1) { new_id = child1; } else { new_id = mComparer.Compare(mData[child1], mData[child2]) < 0 ? child1 : child2; } // Propagate the child upwards if needed if (mComparer.Compare(item, mData[new_id]) > 0) { mData[id] = mData[new_id]; id = new_id; } else { break; } } // Place the item where it belongs. mData[id] = item; } public int IndexOf(T item) { return mData.IndexOf(item); } public IEnumerator GetEnumerator() { return mData.GetEnumerator(); } IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } } } ================================================ FILE: src/RemoteTech/SimpleTypes/CachedField.cs ================================================ namespace RemoteTech.SimpleTypes { public struct CachedField { public T Field; public int Frame; } } ================================================ FILE: src/RemoteTech/SimpleTypes/ComputerModeMapper.cs ================================================ using RemoteTech.FlightComputer.Commands; using RemoteTech.UI; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace RemoteTech.SimpleTypes { /// /// This class converts the FlightMode from a AttitudeCommand into a ComputerMode for the AttitudeFragment /// public class ComputerModeMapper { public ComputerMode computerMode; public FlightAttitude computerAttitude; public void mapFlightMode(FlightMode flightMode, FlightAttitude flightAttitude, ReferenceFrame frame) { computerMode = ComputerMode.Off; computerAttitude = flightAttitude; switch (flightMode) { case FlightMode.Off: { computerMode = ComputerMode.Off; break; } case FlightMode.KillRot: { computerMode = ComputerMode.Kill; break; } case FlightMode.AttitudeHold: { computerMode = ComputerMode.Custom; switch (frame) { case ReferenceFrame.Maneuver: { computerMode = ComputerMode.Node; break; } case ReferenceFrame.Orbit: { computerMode = ComputerMode.Orbital; break; } case ReferenceFrame.Surface: { computerMode = ComputerMode.Surface; break; } case ReferenceFrame.TargetParallel: { computerMode = ComputerMode.TargetPos; break; } case ReferenceFrame.TargetVelocity: { computerMode = ComputerMode.TargetVel; break; } } break; } } } } } ================================================ FILE: src/RemoteTech/SimpleTypes/Dish.cs ================================================ using System; namespace RemoteTech.SimpleTypes { public class Dish { public readonly float Range; public readonly double Radians; public readonly Guid Target; public Dish(Guid target, double radians, float distance) { Target = target; Radians = radians; Range = distance; } public override String ToString() { return String.Format("Dish(Range: {0}, Radians: {1}, Target: {2}", Range.ToString("F2"), (Radians / Math.PI * 180).ToString("F2") + "deg", String.Format("{0} ({1})", Target, RTCore.Instance.Satellites[Target] != null ? RTCore.Instance.Satellites[Target].ToString() : "Unknown")); } } } ================================================ FILE: src/RemoteTech/SimpleTypes/GUITextureButtonFactory.cs ================================================ using System; using UnityEngine; namespace RemoteTech.SimpleTypes { public static class GUITextureButtonFactory { // Replaced with new texture handling mechanics. public static GUIStyle CreateFromFilename(String normal) { Texture2D tex = RTUtil.LoadImage(normal); return CreateFromTextures(tex, tex, tex, tex); } // Replaced with new texture handling mechanics. public static GUIStyle CreateFromFilename(String normal, String hover, String active, String focus) { return CreateFromTextures(RTUtil.LoadImage(normal), RTUtil.LoadImage(hover), RTUtil.LoadImage(active), RTUtil.LoadImage(focus)); } private static GUIStyle CreateFromTextures(Texture2D texNormal, Texture2D texHover, Texture2D texActive, Texture2D texFocus) { return new GUIStyle() { name = texNormal.name, normal = new GUIStyleState() { background = texNormal, textColor = Color.white }, hover = new GUIStyleState() { background = texHover, textColor = Color.white }, active = new GUIStyleState() { background = texActive, textColor = Color.white }, onNormal = new GUIStyleState() { background = texActive, textColor = Color.white }, onHover = new GUIStyleState() { background = texActive, textColor = Color.white }, onActive = new GUIStyleState() { background = texActive, textColor = Color.white }, focused = new GUIStyleState() { background = texFocus, textColor = Color.white }, onFocused = new GUIStyleState() { background = texActive, textColor = Color.white }, border = new RectOffset(0, 0, 0, 0), margin = new RectOffset(0, 0, 0, 0), padding = new RectOffset(0, 0, 0, 0), overflow = new RectOffset(0, 0, 0, 0), imagePosition = ImagePosition.ImageAbove, alignment = TextAnchor.MiddleCenter, wordWrap = true, clipping = TextClipping.Clip, contentOffset = new Vector2(0, 0), stretchWidth = false, stretchHeight = false, font = null, fontSize = 0, fontStyle = FontStyle.Normal, richText = false, }; } } } ================================================ FILE: src/RemoteTech/SimpleTypes/NetworkLink.cs ================================================ using System; using System.Collections.Generic; namespace RemoteTech.SimpleTypes { public class NetworkLink : IEquatable> { public readonly T Target; public readonly List Interfaces; public readonly LinkType Port; public NetworkLink(T sat, List ant, LinkType port) { Target = sat; Interfaces = ant; Port = port; } public bool Equals(NetworkLink o) { if (o == null) return false; if (!Target.Equals(o.Target)) return false; return true; } public override string ToString() { return String.Format("NetworkLink(T: {0}, I: {1}, P: {2})", Target, Interfaces.ToDebugString(), Port); } } } ================================================ FILE: src/RemoteTech/SimpleTypes/NetworkRoute.cs ================================================ using System; using System.Collections.Generic; using System.Linq; namespace RemoteTech.SimpleTypes { public class NetworkRoute : IComparable> { public T Goal { get { return Exists ? Links[Links.Count - 1].Target : default(T); } } public T Start { get; private set; } public bool Exists { get { return Links.Count > 0; } } public double Length { get; private set; } public double Delay { get { return RTSettings.Instance.EnableSignalDelay ? Length / RTSettings.Instance.SpeedOfLight : 0.0; } } public List> Links { get; private set; } public NetworkRoute(T start, List> links, double dist) { if (start == null) throw new ArgumentNullException("start"); if (links == null) links = new List>(); Start = start; Links = links; Length = dist; } public bool Contains(BidirectionalEdge edge) { if (Links.Count == 0) return false; if ((Start.Equals(edge.A) && Links[0].Target.Equals(edge.B)) || (Start.Equals(edge.B) && Links[0].Target.Equals(edge.A))) return true; for (int i = 0; i < Links.Count - 1; i++) { if (Links[i].Target.Equals(edge.A) && Links[i+1].Target.Equals(edge.B)) return true; if (Links[i].Target.Equals(edge.B) && Links[i+1].Target.Equals(edge.A)) return true; } return false; } public int CompareTo(NetworkRoute other) { return Length.CompareTo(other.Length); } public override string ToString() { return String.Format("NetworkRoute(Route: {{0}}, Length: {1})", String.Join("→", Links.Select(t => t.ToString()).ToArray()), Length.ToString("F2") + "m"); } } public class NetworkRoute { public static NetworkRoute Empty(T start) { return new NetworkRoute(start, null, Single.PositiveInfinity); } } } ================================================ FILE: src/RemoteTech/SimpleTypes/PriorityQueue.cs ================================================ using System.Collections; using System.Collections.Generic; namespace RemoteTech.SimpleTypes { // PriorityQueue based on a minimum-BinaryHeap. public class PriorityQueue : IEnumerable { public int Count { get { return mHeap.Count; } } private readonly BinaryHeap mHeap; public PriorityQueue() { mHeap = new BinaryHeap(); } public void Clear() { mHeap.Clear(); } public void Enqueue(T item) { mHeap.Add(item); } public T Peek() { return mHeap.Peek(); } public T Dequeue() { return mHeap.Remove(); } public IEnumerator GetEnumerator() { return mHeap.GetEnumerator(); } IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } } } ================================================ FILE: src/RemoteTech/SimpleTypes/TimeStringConverter.cs ================================================ using System; using System.Text; using System.Text.RegularExpressions; namespace RemoteTech.SimpleTypes { /// /// This class converts time strings like "1d 2m 2s" into a /// double value as seconds and also vice versa, based on /// earth time. /// class EarthTimeStringConverter : TimeStringConverter { /// /// Define the base seconds for days, hours and minutes /// public EarthTimeStringConverter() { this.SecondsPerYear = 31536000; // = 365d this.SecondsPerDay = 86400; // = 24h this.SecondsPerHour = 3600; // = 60m this.SecondsPerMinute = 60; // = 60s } } /// /// This class converts time strings like "1d 2m 2s" into a /// double value as seconds and also vice versa, based on /// kerbin time. /// class KerbinTimeStringConverter : TimeStringConverter { /// /// Define the base seconds for days, hours and minutes /// public KerbinTimeStringConverter() { this.SecondsPerYear = 9201600; // = 426d this.SecondsPerDay = 21600; // = 6h this.SecondsPerHour = 3600; // = 60m this.SecondsPerMinute = 60; // = 60s } } /// /// This class converts time strings like "1d 2m 2s" into a /// double value as seconds and also vice versa. /// abstract class TimeStringConverter { /// /// Get the seconds for one year /// protected uint SecondsPerYear; /// /// Get the seconds for one day /// protected uint SecondsPerDay; /// /// Get the seconds for one hour /// protected uint SecondsPerHour; /// /// Get the seconds for one minute /// protected uint SecondsPerMinute; /// /// Expression for parsing the time string /// private static readonly Regex DurationRegex = new Regex( String.Format("{0}?{1}?{2}?{3}?{4}?", @"(?:(?\d*\.?\d+)\s*s[a-z]*[,\s]*)", @"(?:(?\d*\.?\d+)\s*m[a-z]*[,\s]*)", @"(?:(?\d*\.?\d+)\s*h[a-z]*[,\s]*)", @"(?:(?\d*\.?\d+)\s*d[a-z]*[,\s]*)", @"(?:(?\d*\.?\d+)\s*y[a-z]*[,\s]*)")); /// /// This method will parse a time string like "1d 2m 3s" and returns the /// seconds for this string. If no matching string was found with the /// "DurationRegex" we'll try to parse the given duration string as seconds. /// /// time string like "1d 2m 3s" or "500" (as seconds). /// Possible suffixes: y,d,h,m and s /// Given time string converted in seconds public Double parseString(String duration) { Double timeInSeconds = 0; MatchCollection matches = TimeStringConverter.DurationRegex.Matches(duration); foreach (Match match in matches) { if (match.Groups["seconds"].Success) { timeInSeconds += Double.Parse(match.Groups["seconds"].Value); } if (match.Groups["minutes"].Success) { timeInSeconds += Double.Parse(match.Groups["minutes"].Value) * this.SecondsPerMinute; } if (match.Groups["hours"].Success) { timeInSeconds += Double.Parse(match.Groups["hours"].Value) * this.SecondsPerHour; } if (match.Groups["days"].Success) { timeInSeconds += Double.Parse(match.Groups["days"].Value) * this.SecondsPerDay; } if (match.Groups["years"].Success) { timeInSeconds += Double.Parse(match.Groups["years"].Value) * this.SecondsPerYear; } } // if we've no matches, try parsing the string as seconds if (timeInSeconds == 0) { double tmpTimeinSeconds = 0.0; if (Double.TryParse(duration, out tmpTimeinSeconds)) { timeInSeconds = tmpTimeinSeconds; } } return timeInSeconds; } /// /// This method will parse a time as seconds and returns the time string of this. /// /// Time as seconds /// [optional] Add the microsecs to the time string, default true /// Given time as seconds converted to a time string like "1d 2m 3s" public String parseDouble(Double duration, bool withMicroSecs = true) { Double time = duration; StringBuilder s = new StringBuilder(); // extract years if (time >= this.SecondsPerYear) time = this.calcFromSecondsToSring(time, s, this.SecondsPerYear, "y"); // extract days if (time >= this.SecondsPerDay) time = this.calcFromSecondsToSring(time, s, this.SecondsPerDay, "d"); // extract hours if (time >= this.SecondsPerHour) time = this.calcFromSecondsToSring(time, s, this.SecondsPerHour, "h"); // extract minutes if (time >= this.SecondsPerMinute) time = this.calcFromSecondsToSring(time, s, this.SecondsPerMinute, "m"); if (withMicroSecs) { s.Append(time.ToString("F2")); } else { s.Append(time.ToString("F0")); } s.Append("s"); return s.ToString(); } /// /// This method extracts the time segments /// /// Seconds to convert /// Stringbuilder to appand to /// Base for the calculation /// Will be appand to the string builder /// The remaining seconds private Double calcFromSecondsToSring(Double time, StringBuilder appandTo, uint baseSeconds, String prefix) { appandTo.Append(Math.Floor(time / baseSeconds)); appandTo.Append(prefix); return (time % baseSeconds); } } } ================================================ FILE: src/RemoteTech/UI/AbstractWindow.cs ================================================ using System; using System.Collections.Generic; using UnityEngine; namespace RemoteTech.UI { public enum WindowAlign { Floating, BottomRight, BottomLeft, TopRight, TopLeft, } public abstract class AbstractWindow { public Rect Position; public String Title { get; set; } public WindowAlign Alignment { get; set; } public String Tooltip { get; set; } public bool Enabled = false; public static GUIStyle Frame = new GUIStyle(HighLogic.Skin.window); public const double TooltipDelay = 0.5; protected bool mSavePosition = false; private double mLastTime; private double mTooltipTimer; private readonly Guid mGuid; public static Dictionary Windows = new Dictionary(); /// The initial width of this window public float mInitialWidth; /// The initial height of this window public float mInitialHeight; /// Callback trigger for the change in the posistion public Action onPositionChanged = delegate { }; public Rect backupPosition; /// todo protected bool mCloseButton = true; static AbstractWindow() { Frame.padding = new RectOffset(5, 5, 5, 5); } public AbstractWindow(Guid id, String title, Rect position, WindowAlign align) { mGuid = id; Title = title; Alignment = align; Position = position; backupPosition = position; mInitialHeight = position.height + 15; mInitialWidth = position.width + 15; GameEvents.onHideUI.Add(OnHideUI); GameEvents.onShowUI.Add(OnShowUI); } public Rect RequestPosition() { return Position; } public virtual void Show() { if (Enabled) return; if(mSavePosition) { onPositionChanged += storePosition; // read the saved position if (RTSettings.Instance.SavedWindowPositions.ContainsKey(this.GetType().ToString())) { Position = RTSettings.Instance.SavedWindowPositions[this.GetType().ToString()]; } } if (Windows.ContainsKey(mGuid)) { Windows[mGuid].Hide(); } Windows[mGuid] = this; Enabled = true; } private void OnHideUI() { Enabled = false; } private void OnShowUI() { Enabled = true; } public virtual void Hide() { InputLockManager.RemoveControlLock("RTUserLockAbstractWindow"); Windows.Remove(mGuid); Enabled = false; if (mSavePosition) { onPositionChanged -= storePosition; } GameEvents.onHideUI.Remove(OnHideUI); GameEvents.onShowUI.Remove(OnShowUI); } private void WindowPre(int uid) { // Block out user's camera & click inputs whenever user's cursor is within the RT window // In order to be effective, this is required BEFORE any GUI drawing. I tried the one that is after drawing and it doesn't work InputLockManager.RemoveControlLock("RTUserLockAbstractWindow"); if (this.backupPosition.ContainsMouse()) { InputLockManager.SetControlLock(ControlTypes.CAMERACONTROLS | // block scrolling through ControlTypes.MAP | // block user's clicks on ship/planet/orbit elements ControlTypes.ALL_SHIP_CONTROLS // block user's actions on vessel like keypress Z, X or T , "RTUserLockAbstractWindow"); } Window(uid); } public virtual void Window(int uid) { if (Title != null) { GUI.DragWindow(new Rect(0, 0, Single.MaxValue, 20)); } Tooltip = GUI.tooltip; } public virtual void Draw() { if (!Enabled) return; if (Event.current.type == EventType.Layout) { Position.width = 0; Position.height = 0; } Position = GUILayout.Window(mGuid.GetHashCode(), Position, WindowPre, Title, Title == null ? Frame : HighLogic.Skin.window); if (Title != null && this.mCloseButton) { if (GUI.Button(new Rect(Position.x + Position.width - 18, Position.y + 2, 16, 16), "")) { Hide(); } } if (Event.current.type == EventType.Repaint) { switch (Alignment) { case WindowAlign.BottomLeft: Position.x = 0; Position.y = Screen.height - Position.height; break; case WindowAlign.BottomRight: Position.x = Screen.width - Position.width; Position.y = Screen.height - Position.height; break; case WindowAlign.TopLeft: Position.x = 0; Position.y = 0; break; case WindowAlign.TopRight: Position.x = Screen.width - Position.width; Position.y = 0; break; } if (Tooltip != "") { if (mTooltipTimer > TooltipDelay) { var pop = GUI.skin.box.alignment; var width = GUI.skin.box.CalcSize(new GUIContent(Tooltip)).x; GUI.skin.box.alignment = TextAnchor.MiddleLeft; GUI.Box(new Rect(Position.x, Position.y + Position.height + 10, width, 28), Tooltip); GUI.skin.box.alignment = pop; } else { mTooltipTimer += Time.time - mLastTime; mLastTime = Time.time; } } else { mTooltipTimer = 0.0; } mLastTime = Time.time; // Position of the window changed? if (!backupPosition.Equals(Position)) { // trigger the onPositionChanged callbacks onPositionChanged.Invoke(); backupPosition = Position; } } } private void storePosition() { RTSettings.Instance.SavedWindowPositions.Remove(this.GetType().ToString()); RTSettings.Instance.SavedWindowPositions.Add(this.GetType().ToString(), Position); } /// /// Toggle the window /// public void toggleWindow() { if (this.Enabled) { this.Hide(); } else { this.Show(); } } } } ================================================ FILE: src/RemoteTech/UI/AntennaFragment.cs ================================================ using System; using System.Collections.Generic; using UnityEngine; using KSP.Localization; namespace RemoteTech.UI { public class AntennaFragment : IFragment, IDisposable { public class Entry { public String Text { get; set; } public Guid Guid { get; set; } public Color Color; public List SubEntries { get; private set; } public bool Expanded { get; set; } public int Depth { get; set; } public Entry() { SubEntries = new List(); Expanded = true; } } public IAntenna Antenna { get { return mAntenna; } set { if (mAntenna != value) { mAntenna = value; RefreshPlanets(); Refresh(); } } } private IAntenna mAntenna; private Vector2 mScrollPosition = Vector2.zero; /// The tree of (real or virtual) targets displayed in this fragment. /// No Entry object appears in the tree pointed to by mRootEntry more than once. private Entry mRootEntry = new Entry(); /// The Entry corresponding to the currently selected target, if any. private Entry mSelection; /// The Entry corresponding to the currently selected target, if any. private Entry mCurrentMouseOverEntry = null; /// Callback trigger for mouse over a list entry public Action onMouseOverListEntry = delegate { }; /// Callback trigger for mouse out of a list entry public Action onMouseOutListEntry = delegate { }; /// Current entry of the mouse public Entry mouseOverEntry { get { return mCurrentMouseOverEntry; } private set { mCurrentMouseOverEntry = value; } } /// Flag to trigger the onMouseover event public bool triggerMouseOverListEntry = false; /// The Entries corresponding to loaded celestial bodies. private Dictionary mEntries; // Current planet list private int refreshCounter = 0; public AntennaFragment(IAntenna antenna) { Antenna = antenna; RTCore.Instance.Satellites.OnRegister += Refresh; RTCore.Instance.Satellites.OnUnregister += Refresh; RTCore.Instance.Antennas.OnUnregister += Refresh; RefreshPlanets(); Refresh(); } public void Dispose() { triggerMouseOverListEntry = false; if (RTCore.Instance != null) { RTCore.Instance.Satellites.OnRegister -= Refresh; RTCore.Instance.Satellites.OnUnregister -= Refresh; RTCore.Instance.Antennas.OnUnregister -= Refresh; } } public void Draw() { // Allow update for non-triggering changes (e.g., changing map view filters or changing a vessel's type) // This is the best way I could find to do periodic refreshes; // RTCore.Instance.InvokeRepeating() would require a search for instances // of AntennaFragment, and would keep running after all target windows // closed. Replace with something less clunky later! -- Starstrider42 if (++refreshCounter >= 100) { Refresh(); refreshCounter = 0; } mScrollPosition = GUILayout.BeginScrollView(mScrollPosition); Color pushColor = GUI.backgroundColor; // starstriders changes //Color pushCtColor = GUI.contentColor; //Color pushBgColor = GUI.backgroundColor; TextAnchor pushAlign = GUI.skin.button.alignment; try { GUI.skin.button.alignment = TextAnchor.MiddleLeft; // Depth-first tree traversal. Stack dfs = new Stack(); foreach (Entry child in mRootEntry.SubEntries) { dfs.Push(child); } // Set the inital mouseover to the selected entry mouseOverEntry = mSelection; while (dfs.Count > 0) { Entry current = dfs.Pop(); GUI.backgroundColor = current.Color; GUILayout.BeginHorizontal(); { GUILayout.Space(current.Depth * (GUI.skin.button.margin.left + 24)); if (current.SubEntries.Count > 0) { RTUtil.Button(current.Expanded ? " <" : " >", () => { current.Expanded = !current.Expanded; }, GUILayout.Width(24)); } RTUtil.StateButton(current.Text, mSelection == current ? 1 : 0, 1, (s) => { mSelection = current; Antenna.Target = mSelection.Guid; }); // Mouse is over the button if (GUILayoutUtility.GetLastRect().Contains(Event.current.mousePosition) && triggerMouseOverListEntry) { // reset current entry mouseOverEntry = null; if (current.Text.ToLower() != Localizer.Format("#RT_ModuleUI_ActiveVessel_Tolower") && current.Text.ToLower() != Localizer.Format("#RT_ModuleUI_NoTarget_Tolower"))//"active vessel""no target" { mouseOverEntry = current; } onMouseOverListEntry.Invoke(); } } GUILayout.EndHorizontal(); if (current.Expanded) { foreach (Entry child in current.SubEntries) { dfs.Push(child); } } } } finally { GUILayout.EndScrollView(); GUI.skin.button.alignment = pushAlign; GUI.backgroundColor = pushColor; } } public void Refresh(IAntenna sat) { if (sat == Antenna) { Antenna = null; } } /// Rebuilds list of target vessels /// Rebuilds the list of target vessels, preserving the rest of the target list state. Does /// not alter planets or special targets, call RefreshPlanets() for that. /// The satellite whose status has just changed. public void Refresh(ISatellite sat) { Refresh(); } /// Rebuilds list of target vessels /// Rebuilds the list of target vessels, preserving the rest of the target list state. Does /// not alter planets or special targets, call RefreshPlanets() for that. public void Refresh() { // Clear the satellites RemoveVessels(mRootEntry); if (Antenna == null) return; // Add the satellites foreach (ISatellite s in RTCore.Instance.Network) { if (s.Guid == Antenna.Guid) continue; if (s.parentVessel != null && !MapViewFiltering.CheckAgainstFilter(s.parentVessel)) { continue; } Entry current = new Entry() { Text = s.Name, Guid = s.Guid, Color = Color.white, }; mEntries[s.Body].SubEntries.Add(current); if (s.Guid == Antenna.Target) { mSelection = current; } } // Set a local depth variable so we can refer to it when rendering. Stack dfs = new Stack(); foreach (Entry child in mRootEntry.SubEntries) { child.Depth = 0; dfs.Push(child); } while (dfs.Count > 0) { Entry current = dfs.Pop(); foreach (Entry child in current.SubEntries) { child.Depth = current.Depth + 1; dfs.Push(child); } } } /// Full refresh of target list /// Rebuilds the list of target buttons from scratch, including special targets and /// planets. Does not build vessel list, call Refresh() for that. /// Calling this function wipes all information about which submenus were open or closed. private void RefreshPlanets() { mEntries = new Dictionary(); mRootEntry = new Entry(); mSelection = new Entry() { Text = Localizer.Format("#RT_ModuleUI_NoTarget"),//"No Target" Guid = new Guid(RTSettings.Instance.NoTargetGuid), Color = Color.white, Depth = 0, }; mRootEntry.SubEntries.Add(mSelection); if (Antenna == null) return; var activeVesselEntry = new Entry() { Text = Localizer.Format("#RT_ModuleUI_ActiveVessel"),//"Active Vessel" Guid = NetworkManager.ActiveVesselGuid, Color = Color.white, Depth = 0, }; mRootEntry.SubEntries.Add(activeVesselEntry); if (Antenna.Target == activeVesselEntry.Guid) { mSelection = activeVesselEntry; } // Add the planets foreach (var cb in RTCore.Instance.Network.Planets) { if (!mEntries.ContainsKey(cb.Value)) { mEntries[cb.Value] = new Entry(); } Entry current = mEntries[cb.Value]; current.Text = cb.Value.bodyName; current.Guid = cb.Key; current.Color = cb.Value.GetOrbitDriver() != null ? cb.Value.GetOrbitDriver().orbitColor : Color.yellow; current.Color.a = 1.0f; if (cb.Value.referenceBody != cb.Value) { CelestialBody parent = cb.Value.referenceBody; if (!mEntries.ContainsKey(parent)) { mEntries[parent] = new Entry(); } mEntries[parent].SubEntries.Add(current); } else { mRootEntry.SubEntries.Add(current); } if (cb.Key == Antenna.Target) { mSelection = current; } } // Sort the lists based on semi-major axis. In reverse because of how we render it. foreach (var entryPair in mEntries) { entryPair.Value.SubEntries.Sort((b, a) => { return RTCore.Instance.Network.Planets[a.Guid].orbit.semiMajorAxis.CompareTo( RTCore.Instance.Network.Planets[b.Guid].orbit.semiMajorAxis); }); } mRootEntry.SubEntries.Reverse(); } /// Removes all buttons representing specific vessels, while preserving celestial bodies /// and special targets /// The top of the tree from which to remove vessels. private void RemoveVessels(Entry root) { List vesselList = new List(); foreach (Entry subentry in root.SubEntries) { // Is it a vessel? if (subentry.Guid != Guid.Empty && subentry.Guid != NetworkManager.ActiveVesselGuid && !mEntries.ContainsValue(subentry)) { // List iterator is invalidated by modifications, so do all deletions later vesselList.Add(subentry); } else { RemoveVessels(subentry); } } // Do deletions without relying on an iterator for root.SubEntries foreach (Entry vessel in vesselList) { root.SubEntries.Remove(vessel); } } } } ================================================ FILE: src/RemoteTech/UI/AntennaWindow.cs ================================================ using System; using UnityEngine; namespace RemoteTech.UI { public class AntennaWindow : AbstractWindow { public static Guid Guid = new Guid("39fe8878-d894-4ded-befb-d6e070ddc2c4"); public IAntenna Antenna { get { return mSetAntenna; } set { mSetAntenna = value; if (mAntennaFragment != null) mAntennaFragment.Antenna = value; } } public AntennaFragment mAntennaFragment; public TargetInfoWindow mTargetInfos; private IAntenna mSetAntenna; public AntennaWindow(IAntenna antenna) : base(Guid, "Antenna Configuration", new Rect(100, 100, 300, 500), WindowAlign.Floating) { mSavePosition = true; mSetAntenna = antenna; mTargetInfos = new TargetInfoWindow(this, WindowAlign.Floating); } /// /// Mouse over callback forced by the mAntennaFragment /// public void showTargetInfo() { if (mAntennaFragment != null) { if (mAntennaFragment.mouseOverEntry != null) { // set the current selected target to the targetwindow mTargetInfos.SetTarget(mAntennaFragment.mouseOverEntry, mSetAntenna); mTargetInfos.Show(); } else { // hide if we do not have any selection mTargetInfos.Hide(); } } } /// /// Mouse out callback forced by the mAntennaFragment /// public void hideTargetInfo() { mTargetInfos.Hide(); } public override void Show() { mAntennaFragment = mAntennaFragment ?? new AntennaFragment(mSetAntenna); /// Add callbacks for the onPositionChanged on the AbstractWindow onPositionChanged += mTargetInfos.CalculatePosition; /// Add the showTargetInfo callback to the on mouse over/out event mAntennaFragment.onMouseOverListEntry += showTargetInfo; mAntennaFragment.onMouseOutListEntry += hideTargetInfo; GameEvents.onVesselChange.Add(OnVesselChange); base.Show(); } public override void Hide() { // also hide the target info popup hideTargetInfo(); if (mAntennaFragment != null) { /// Remove callbacks from the onPositionChanged on the AbstractWindow onPositionChanged -= mTargetInfos.CalculatePosition; /// Remove the showTargetInfo callback from the on mouse over/out event mAntennaFragment.onMouseOverListEntry -= showTargetInfo; mAntennaFragment.onMouseOutListEntry -= hideTargetInfo; mAntennaFragment.Dispose(); mAntennaFragment = null; } GameEvents.onVesselChange.Remove(OnVesselChange); base.Hide(); } public override void Window(int uid) { if (mAntennaFragment.Antenna == null) { Hide(); return; } GUI.skin = HighLogic.Skin; // check the mouse position on every draw call mouseOverAntennaWindow(); GUILayout.BeginVertical(GUILayout.Width(300), GUILayout.Height(500)); { mAntennaFragment.Draw(); } GUILayout.EndVertical(); base.Window(uid); } /// /// Checks whether the mouse is over this window to set /// the triggerMouseOverListEntry on the AntennaFragment /// public void mouseOverAntennaWindow() { mAntennaFragment.triggerMouseOverListEntry = backupPosition.ContainsMouse(); } public void OnVesselChange(Vessel v) { Hide(); } } } ================================================ FILE: src/RemoteTech/UI/AntennaWindowStandalone.cs ================================================ using KSP.Localization; using System; using System.Collections.Generic; using UnityEngine; using static RemoteTech.UI.AntennaFragment; namespace RemoteTech.UI { /// /// Lightweight version of AntennaWindow class (a selectable list of planets and vessels for antenna targeting) /// for scenarios that full-functionality RTCore will not work in, such as Editor /// public class AntennaWindowStandalone : AbstractWindow { private const float winWidth = 300, winHeight = 500, startX = 300, startY = 100; public static Guid Guid = new Guid("f3959a08-073a-4790-a74a-b78cd891ea64"); private IAntenna mAntenna; public IAntenna Antenna { get { return mAntenna; } set { if (mAntenna != value) { mAntenna = value; } } } private Vector2 scrollPosition = Vector2.zero; private Dictionary celestialBodyEntryDict; private Entry rootEntry = new Entry(); private Entry selectedEntry; public AntennaWindowStandalone(IAntenna antenna) : base(Guid, "Antenna Configuration", new Rect(startX, startY, winWidth, winHeight), WindowAlign.Floating) { mSavePosition = true; mAntenna = antenna; AddDefaultTargets(); AddCelestialBodies(); AddMissionControls(); ComputeEntryDepths(); } public override void Window(int uid) { if (Antenna == null) { Hide(); return; } GUI.skin = HighLogic.Skin; GUILayout.BeginVertical(GUILayout.Width(winWidth), GUILayout.Height(winHeight)); { DrawInterface(); } GUILayout.EndVertical(); base.Window(uid); } public void DrawInterface() { scrollPosition = GUILayout.BeginScrollView(scrollPosition); Color pushColor = GUI.backgroundColor; TextAnchor pushAlign = GUI.skin.button.alignment; try { GUI.skin.button.alignment = TextAnchor.MiddleLeft; // Depth-first tree traversal. Stack dfs = new Stack(); for(int i=0;i< rootEntry.SubEntries.Count;i++) { var child = rootEntry.SubEntries[i]; dfs.Push(child); } while (dfs.Count > 0) { var current = dfs.Pop(); GUI.backgroundColor = current.Color; // draw child GUILayout.BeginHorizontal(); { GUILayout.Space(current.Depth * (GUI.skin.button.margin.left + 24)); if (current.SubEntries.Count > 0) { RTUtil.Button(current.Expanded ? " <" : " >", () => { current.Expanded = !current.Expanded; }, GUILayout.Width(24)); } RTUtil.StateButton(current.Text, selectedEntry == current ? 1 : 0, 1, (s) => { selectedEntry = current; Antenna.Target = selectedEntry.Guid; }); } GUILayout.EndHorizontal(); // draw child's grandchilden if expanded if (current.Expanded) { for (int j = 0; j < current.SubEntries.Count; j++) { var child2 = current.SubEntries[j]; dfs.Push(child2); } } } } finally { GUILayout.EndScrollView(); GUI.skin.button.alignment = pushAlign; GUI.backgroundColor = pushColor; } } private void AddDefaultTargets() { // Add "No Target" entry selectedEntry = new Entry() // selected entry by default { Text = Localizer.Format("#RT_ModuleUI_NoTarget"),//"No Target" Guid = new Guid(RTSettings.Instance.NoTargetGuid), Color = Color.white, Depth = 0, }; rootEntry.SubEntries.Add(selectedEntry); if (Antenna == null) { return; } // Add "Active Vessel" entry var activeVesselEntry = new Entry() { Text = Localizer.Format("#RT_ModuleUI_ActiveVessel"),//"Active Vessel" Guid = NetworkManager.ActiveVesselGuid, Color = Color.white, Depth = 0, }; rootEntry.SubEntries.Add(activeVesselEntry); // is it antenna's selected entry? if (Antenna.Target == activeVesselEntry.Guid) { selectedEntry = activeVesselEntry; } } private void AddCelestialBodies() { celestialBodyEntryDict = new Dictionary(); for (int i = 0; i < FlightGlobals.Bodies.Count; i++) { var cb = FlightGlobals.Bodies[i]; if (!celestialBodyEntryDict.ContainsKey(cb)) { celestialBodyEntryDict[cb] = new Entry(); } var current = celestialBodyEntryDict[cb]; current.Text = cb.bodyName; current.Guid = cb.Guid(); current.Color = cb.GetOrbitDriver() != null ? cb.GetOrbitDriver().orbitColor : Color.yellow; current.Color.a = 1.0f; // have moons? if (cb.referenceBody != cb) { CelestialBody parent = cb.referenceBody; if (!celestialBodyEntryDict.ContainsKey(parent)) { celestialBodyEntryDict[parent] = new Entry(); } celestialBodyEntryDict[parent].SubEntries.Add(current); } else { rootEntry.SubEntries.Add(current); } // is it antenna's selected entry? if (Antenna.Target == cb.Guid()) { selectedEntry = current; } } // Sort the lists based on semi-major axis. In reverse because of how we render it. for (int i = 0; i < FlightGlobals.Bodies.Count; i++) { var cb = FlightGlobals.Bodies[i]; celestialBodyEntryDict[cb].SubEntries.Sort((b, a) => { return FlightGlobals.Bodies.Find(x => x.Guid() == a.Guid).orbit.semiMajorAxis.CompareTo( FlightGlobals.Bodies.Find(x => x.Guid() == b.Guid).orbit.semiMajorAxis); }); } rootEntry.SubEntries.Reverse(); } private void AddMissionControls() { if (RTSettings.Instance != null) { for (int i = 0; i < RTSettings.Instance.GroundStations.Count; i++) { var current = new Entry() { Text = RTSettings.Instance.GroundStations[i].GetName(), Guid = RTSettings.Instance.GroundStations[i].mGuid, Color = Color.white, }; celestialBodyEntryDict[RTSettings.Instance.GroundStations[i].GetBody()].SubEntries.Add(current); // is it antenna's selected entry? if (Antenna.Target == RTSettings.Instance.GroundStations[i].mGuid) { selectedEntry = current; } } } } private void ComputeEntryDepths() { Stack dfs = new Stack(); for (int i = 0; i < rootEntry.SubEntries.Count; i++) { var child = rootEntry.SubEntries[i]; child.Depth = 0; dfs.Push(child); } while (dfs.Count > 0) { var current = dfs.Pop(); for (int j = 0; j < current.SubEntries.Count; j++) { var child2 = current.SubEntries[j]; child2.Depth = current.Depth + 1; dfs.Push(child2); } } } } } ================================================ FILE: src/RemoteTech/UI/AttitudeFragment.cs ================================================ using System; using System.Collections; using RemoteTech.FlightComputer.Commands; using UnityEngine; using KSP.Localization; using static RemoteTech.FlightComputer.SteeringHelper; using RemoteTech.FlightComputer; namespace RemoteTech.UI { public enum ComputerMode { Off, Kill, Node, TargetPos, Orbital, Surface, TargetVel, Custom } public class AttitudeFragment : IFragment { private float Pitch { get { float pitch; if (!Single.TryParse(mPitch, out pitch)) { pitch = 0; } return pitch; } set { mPitch = value.ToString(); } } private float Heading { get { float heading; if (!Single.TryParse(mHeading, out heading)) { heading = 0; } return heading; } set { mHeading = value.ToString(); } } private float Roll { get { float roll; if (!Single.TryParse(mRoll, out roll)) { roll = 0; } return roll; } set { mRoll = value.ToString(); } } private double Duration { get { return RTUtil.TryParseDuration(mDuration); } set { mDuration = RTUtil.FormatDuration(value); } } private double DeltaV { get { double deltav; String input = mDuration.TrimEnd("m/s".ToCharArray()); if (!mDuration.EndsWith("m/s") || !Double.TryParse(input, out deltav)) { deltav = Double.NaN; } return deltav; } } private FlightComputer.FlightComputer mFlightComputer; private Action mOnClickQueue; private ComputerMode mMode; private FlightAttitude mAttitude; private float mThrottle; private FlightControlOutput mControlOutputMask = 0; private String mPitch = "90"; private String mRoll = "90"; private String mHeading = "90"; private String mDuration = "0s"; public AttitudeFragment(FlightComputer.FlightComputer fc, Action queue) { mFlightComputer = fc; mOnClickQueue = queue; } public void Draw() { float width3 = 156 / 3 - GUI.skin.button.margin.right * 2.0f / 3.0f; if (Event.current.Equals(Event.KeyboardEvent("return"))) { if (GUI.GetNameOfFocusedControl().StartsWith("rt_phr")) { mPitch = Pitch.ToString(); mHeading = Heading.ToString(); mRoll = Roll.ToString(); if (mFlightComputer.InputAllowed) { mMode = ComputerMode.Custom; Confirm(); } } else if (GUI.GetNameOfFocusedControl() == "rt_burn") { OnBurnClick(); } } GUILayout.BeginVertical(); { GUILayout.BeginHorizontal(); { RTUtil.FakeStateButton(new GUIContent(Localizer.Format("#RT_AttitudeFragment_KILL") , Localizer.Format("#RT_AttitudeFragment_KILL_desc")), () => RTCore.Instance.StartCoroutine(OnModeClick(ComputerMode.Kill)), (int)mMode, (int)ComputerMode.Kill, GUILayout.Width(width3));//"KILL", "Kill rotation." RTUtil.FakeStateButton(new GUIContent(Localizer.Format("#RT_AttitudeFragment_NODE"), Localizer.Format("#RT_AttitudeFragment_NODE_desc")), () => RTCore.Instance.StartCoroutine(OnModeClick(ComputerMode.Node)), (int)mMode, (int)ComputerMode.Node, GUILayout.Width(width3));//"NODE", "Prograde points in the direction of the first maneuver node." RTUtil.FakeStateButton(new GUIContent(Localizer.Format("#RT_AttitudeFragment_RVEL"), Localizer.Format("#RT_AttitudeFragment_RVEL_desc")), () => RTCore.Instance.StartCoroutine(OnModeClick(ComputerMode.TargetVel)), (int)mMode, (int)ComputerMode.TargetVel, GUILayout.Width(width3));//"RVEL", "Prograde relative to target velocity." } GUILayout.EndHorizontal(); GUILayout.BeginHorizontal(); { RTUtil.FakeStateButton(new GUIContent(Localizer.Format("#RT_AttitudeFragment_ORB"), Localizer.Format("#RT_AttitudeFragment_ORB_desc")), () => RTCore.Instance.StartCoroutine(OnModeClick(ComputerMode.Orbital)), (int)mMode, (int)ComputerMode.Orbital, GUILayout.Width(width3));//"ORB", "Prograde relative to orbital velocity." RTUtil.FakeStateButton(new GUIContent(Localizer.Format("#RT_AttitudeFragment_SRF"), Localizer.Format("#RT_AttitudeFragment_SRF_desc")), () => RTCore.Instance.StartCoroutine(OnModeClick(ComputerMode.Surface)), (int)mMode, (int)ComputerMode.Surface, GUILayout.Width(width3));//"SRF", "Prograde relative to surface velocity." RTUtil.FakeStateButton(new GUIContent(Localizer.Format("#RT_AttitudeFragment_TGT"), Localizer.Format("#RT_AttitudeFragment_TGT_desc")), () => RTCore.Instance.StartCoroutine(OnModeClick(ComputerMode.TargetPos)), (int)mMode, (int)ComputerMode.TargetPos, GUILayout.Width(width3));//"TGT", "Prograde points directly at target." } GUILayout.EndHorizontal(); GUILayout.BeginHorizontal(); { RTUtil.FakeStateButton(new GUIContent(Localizer.Format("#RT_AttitudeFragment_OFF"), Localizer.Format("#RT_AttitudeFragment_OFF_desc")), () => RTCore.Instance.StartCoroutine(OnModeClick(ComputerMode.Off)), (int)mMode, (int)ComputerMode.Off, GUILayout.Width(width3));//"OFF", "Set Attitude to Off." RTUtil.FakeStateButton(new GUIContent(Localizer.Format("#RT_AttitudeFragment_CUSTOM"), Localizer.Format("#RT_AttitudeFragment_CUSTOM_desc")), () => RTCore.Instance.StartCoroutine(OnModeClick(ComputerMode.Custom)), (int)mMode, (int)ComputerMode.Custom, GUILayout.ExpandWidth(true));//"CUSTOM", "Prograde fixed as pitch, heading, roll relative to north pole." } GUILayout.EndHorizontal(); GUILayout.Space(5); GUILayout.BeginHorizontal(); { RTUtil.FakeStateButton(new GUIContent(Localizer.Format("#RT_AttitudeFragment_Prograde"), Localizer.Format("#RT_AttitudeFragment_Prograde_desc")), () => RTCore.Instance.StartCoroutine(OnAttitudeClick(FlightAttitude.Prograde)), (int)mAttitude, (int)FlightAttitude.Prograde, GUILayout.Width(width3));//"GRD\n+", "Orient to Prograde." RTUtil.FakeStateButton(new GUIContent(Localizer.Format("#RT_AttitudeFragment_RadialPlus"), Localizer.Format("#RT_AttitudeFragment_RadialPlus_desc")), () => RTCore.Instance.StartCoroutine(OnAttitudeClick(FlightAttitude.RadialPlus)), (int)mAttitude, (int)FlightAttitude.RadialPlus, GUILayout.Width(width3));//"RAD\n+", "Orient to Radial." RTUtil.FakeStateButton(new GUIContent(Localizer.Format("#RT_AttitudeFragment_NormalPlus"), Localizer.Format("#RT_AttitudeFragment_NormalPlus_desc")), () => RTCore.Instance.StartCoroutine(OnAttitudeClick(FlightAttitude.NormalPlus)), (int)mAttitude, (int)FlightAttitude.NormalPlus, GUILayout.Width(width3));//"NRM\n+", "Orient to Normal." } GUILayout.EndHorizontal(); GUILayout.BeginHorizontal(); { RTUtil.FakeStateButton(new GUIContent(Localizer.Format("#RT_AttitudeFragment_Retrograde"), Localizer.Format("#RT_AttitudeFragment_Retrograde_desc")), () => RTCore.Instance.StartCoroutine(OnAttitudeClick(FlightAttitude.Retrograde)), (int)mAttitude, (int)FlightAttitude.Retrograde, GUILayout.Width(width3));//"GRD\n-", "Orient to Retrograde." RTUtil.FakeStateButton(new GUIContent(Localizer.Format("#RT_AttitudeFragment_RadialMinus"), Localizer.Format("#RT_AttitudeFragment_RadialMinus_desc")), () => RTCore.Instance.StartCoroutine(OnAttitudeClick(FlightAttitude.RadialMinus)), (int)mAttitude, (int)FlightAttitude.RadialMinus, GUILayout.Width(width3));//"RAD\n-", "Orient to Anti-radial." RTUtil.FakeStateButton(new GUIContent(Localizer.Format("#RT_AttitudeFragment_NormalMinus"), Localizer.Format("#RT_AttitudeFragment_NormalMinus_desc")), () => RTCore.Instance.StartCoroutine(OnAttitudeClick(FlightAttitude.NormalMinus)), (int)mAttitude, (int)FlightAttitude.NormalMinus, GUILayout.Width(width3));//"NRM\n-", "Orient to Anti-normal." } GUILayout.EndHorizontal(); GUILayout.Space(5); GUILayout.BeginHorizontal(); { GUILayout.Label(new GUIContent(Localizer.Format("#RT_AttitudeFragment_PIT"),Localizer.Format("#RT_AttitudeFragment_PIT_desc")), GUILayout.Width(width3));//"PIT:", "Sets pitch." RTUtil.RepeatButton("+", () => { Pitch++; }); RTUtil.RepeatButton("-", () => { Pitch--; }); RTUtil.MouseWheelTriggerField(ref mPitch, "rt_phr1", () => { Pitch++; }, () => { Pitch--; }, GUILayout.Width(width3)); } GUILayout.EndHorizontal(); GUILayout.BeginHorizontal(); { GUILayout.Label(new GUIContent(Localizer.Format("#RT_AttitudeFragment_HDG"), Localizer.Format("#RT_AttitudeFragment_HDG_desc")), GUILayout.Width(width3));//"HDG:", "Sets heading." RTUtil.RepeatButton("+", () => { Heading++; }); RTUtil.RepeatButton("-", () => { Heading--; }); RTUtil.MouseWheelTriggerField(ref mHeading, "rt_phr2", () => { Heading++; }, () => { Heading--; }, GUILayout.Width(width3)); } GUILayout.EndHorizontal(); GUILayout.BeginHorizontal(); { GUILayout.Label(new GUIContent(Localizer.Format("#RT_AttitudeFragment_RLL"), Localizer.Format("#RT_AttitudeFragment_RLL_desc")), GUILayout.Width(width3));//"RLL:", "Sets roll." RTUtil.RepeatButton("+", () => { Roll++; }); RTUtil.RepeatButton("-", () => { Roll--; }); RTUtil.MouseWheelTriggerField(ref mRoll, "rt_phr3", () => { Roll++; }, () => { Roll--; }, GUILayout.Width(width3)); } GUILayout.EndHorizontal(); GUILayout.Space(5); GUILayout.BeginHorizontal(); { RTUtil.FakeStateButton(new GUIContent(Localizer.Format("#RT_AttitudeFragment_IgnorePit"), Localizer.Format("#RT_AttitudeFragment_IgnorePit_desc")), () => RTCore.Instance.StartCoroutine(OnControlClick(FlightControlOutput.IgnorePitch)), (int)(mControlOutputMask & FlightControlOutput.IgnorePitch), (int)FlightControlOutput.IgnorePitch, GUILayout.Width(width3));//"IGN\nPIT", "Ignore pitch control." RTUtil.FakeStateButton(new GUIContent(Localizer.Format("#RT_AttitudeFragment_IgnoreHdr"), Localizer.Format("#RT_AttitudeFragment_IgnoreHdr_desc")), () => RTCore.Instance.StartCoroutine(OnControlClick(FlightControlOutput.IgnoreHeading)), (int)(mControlOutputMask & FlightControlOutput.IgnoreHeading), (int)FlightControlOutput.IgnoreHeading, GUILayout.Width(width3));//"IGN\nHDR", "Ignore heading control." RTUtil.FakeStateButton(new GUIContent(Localizer.Format("#RT_AttitudeFragment_IgnoreRll"), Localizer.Format("#RT_AttitudeFragment_IgnoreRll_desc")), () => RTCore.Instance.StartCoroutine(OnControlClick(FlightControlOutput.IgnoreRoll)), (int)(mControlOutputMask & FlightControlOutput.IgnoreRoll), (int)FlightControlOutput.IgnoreRoll, GUILayout.Width(width3));//"IGN\nRLL", "Ignore roll control." } GUILayout.EndHorizontal(); GUILayout.Space(5); GUILayout.BeginHorizontal(); { GUILayout.Label(Localizer.Format("#RT_AttitudeFragment_Throttle"));//"Throttle: " GUILayout.FlexibleSpace(); GUILayout.Label(mThrottle.ToString("P")); } GUILayout.EndHorizontal(); RTUtil.HorizontalSlider(ref mThrottle, 0, 1); GUI.SetNextControlName("rt_burn"); RTUtil.TextField(ref mDuration); GUILayout.BeginHorizontal(); { RTUtil.Button(new GUIContent(Localizer.Format("#RT_AttitudeFragment_BURN"), Localizer.Format("#RT_AttitudeFragment_BURN_desc")),//"BURN", "Example: 125, 125s, 5m20s, 1d6h20m10s, 123m/s." OnBurnClick, GUILayout.Width(width3)); RTUtil.Button(new GUIContent(Localizer.Format("#RT_AttitudeFragment_EXEC"), Localizer.Format("#RT_AttitudeFragment_EXEC_desc")),//"EXEC", "Executes next and subsequent maneuver nodes." OnExecClick, GUILayout.Width(width3)); RTUtil.Button(new GUIContent(">>", Localizer.Format("#RT_AttitudeFragment_Queue_desc")),//"Toggles the queue and delay functionality." mOnClickQueue, GUILayout.Width(width3)); } GUILayout.EndHorizontal(); } GUILayout.EndVertical(); } // Called by RTUtil.Button // General-purpose function has to represent enums as integers private IEnumerator OnModeClick(ComputerMode state) { yield return null; if (mFlightComputer.InputAllowed) { mMode = (state < 0) ? ComputerMode.Off : state; Confirm(); } } private IEnumerator OnAttitudeClick(FlightAttitude state) { yield return null; if (mFlightComputer.InputAllowed) { mAttitude = (state < 0) ? FlightAttitude.Null : state; if (mMode == ComputerMode.Off || mMode == ComputerMode.Kill || mMode == ComputerMode.Node) { mMode = ComputerMode.Orbital; } Confirm(); } } private IEnumerator OnControlClick(FlightControlOutput output) { yield return null; if (mFlightComputer.InputAllowed) { switch(output) { case FlightControlOutput.IgnorePitch: if ((mControlOutputMask & FlightControlOutput.IgnorePitch) == FlightControlOutput.IgnorePitch) mControlOutputMask &= ~FlightControlOutput.IgnorePitch; else mControlOutputMask |= FlightControlOutput.IgnorePitch; break; case FlightControlOutput.IgnoreHeading: if ((mControlOutputMask & FlightControlOutput.IgnoreHeading) == FlightControlOutput.IgnoreHeading) mControlOutputMask &= ~FlightControlOutput.IgnoreHeading; else mControlOutputMask |= FlightControlOutput.IgnoreHeading; break; case FlightControlOutput.IgnoreRoll: if ((mControlOutputMask & FlightControlOutput.IgnoreRoll) == FlightControlOutput.IgnoreRoll) mControlOutputMask &= ~FlightControlOutput.IgnoreRoll; else mControlOutputMask |= FlightControlOutput.IgnoreRoll; break; } bool pitch = (mControlOutputMask & FlightControlOutput.IgnorePitch) == FlightControlOutput.IgnorePitch, heading = (mControlOutputMask & FlightControlOutput.IgnoreHeading) == FlightControlOutput.IgnoreHeading, roll = (mControlOutputMask & FlightControlOutput.IgnoreRoll) == FlightControlOutput.IgnoreRoll; mFlightComputer.Enqueue(FlightControlCommand.WithPHR(pitch, heading, roll)); } } private void Confirm() { ICommand newCommand; switch (mMode) { default: case ComputerMode.Off: mAttitude = FlightAttitude.Null; newCommand = AttitudeCommand.Off(); break; case ComputerMode.Kill: mAttitude = FlightAttitude.Null; newCommand = AttitudeCommand.KillRot(); break; case ComputerMode.Node: mAttitude = FlightAttitude.Null; newCommand = AttitudeCommand.ManeuverNode(); break; case ComputerMode.TargetPos: mAttitude = (mAttitude == FlightAttitude.Null) ? FlightAttitude.Prograde : mAttitude; newCommand = AttitudeCommand.WithAttitude(mAttitude, ReferenceFrame.TargetParallel); break; case ComputerMode.Orbital: mAttitude = (mAttitude == FlightAttitude.Null) ? FlightAttitude.Prograde : mAttitude; newCommand = AttitudeCommand.WithAttitude(mAttitude, ReferenceFrame.Orbit); break; case ComputerMode.Surface: mAttitude = (mAttitude == FlightAttitude.Null) ? FlightAttitude.Prograde : mAttitude; newCommand = AttitudeCommand.WithAttitude(mAttitude, ReferenceFrame.Surface); break; case ComputerMode.TargetVel: mAttitude = (mAttitude == FlightAttitude.Null) ? FlightAttitude.Prograde : mAttitude; newCommand = AttitudeCommand.WithAttitude(mAttitude, ReferenceFrame.TargetVelocity); break; case ComputerMode.Custom: mAttitude = FlightAttitude.Null; newCommand = AttitudeCommand.WithSurface(Pitch, Heading, Roll); break; } mFlightComputer.Enqueue(newCommand); } private void OnBurnClick() { if (!Double.IsNaN(DeltaV)) { mFlightComputer.Enqueue(BurnCommand.WithDeltaV(mThrottle, DeltaV)); } else { mFlightComputer.Enqueue(BurnCommand.WithDuration(mThrottle, Duration)); } } private void OnExecClick() { if (mFlightComputer.Vessel.patchedConicSolver == null || mFlightComputer.Vessel.patchedConicSolver.maneuverNodes.Count == 0) return; var cmd = ManeuverCommand.WithNode(0, mFlightComputer); if (cmd.TimeStamp < RTUtil.GameTime + mFlightComputer.Delay) { RTUtil.ScreenMessage(Localizer.Format("#RT_FC_msg5"));//"[Flight Computer]: Signal delay is too high to execute this maneuver at the proper time." } else { mFlightComputer.Enqueue(cmd, false, false, true); //check for subsequent nodes int numSubsequentNodes = mFlightComputer.Vessel.patchedConicSolver.maneuverNodes.Count - 1; if (numSubsequentNodes >= 1) { for (int nodeIndex = 1; nodeIndex <= numSubsequentNodes; nodeIndex++) { mFlightComputer.Enqueue(ManeuverCommand.WithNode(nodeIndex, mFlightComputer), false, false, true); } } } } /// /// Get the current active FlightMode and map it to the Computermode /// public void getActiveFlightMode() { // check the current flight mode if (mFlightComputer.CurrentFlightMode == null) { Reset(); return; } // get active command SimpleTypes.ComputerModeMapper mappedCommand = mFlightComputer.CurrentFlightMode.mapFlightMode(); mMode = mappedCommand.computerMode; mAttitude = FlightAttitude.Null; if(mMode == ComputerMode.Orbital || mMode == ComputerMode.Surface || mMode == ComputerMode.TargetPos || mMode == ComputerMode.TargetVel) mAttitude = mappedCommand.computerAttitude; var activeIgnoreCmd = FlightControlCommand.findActiveControlCmd(mFlightComputer); if (activeIgnoreCmd != null) { mControlOutputMask = 0; if (activeIgnoreCmd.ignorePitchOutput) { mControlOutputMask |= FlightControlOutput.IgnorePitch; } if (activeIgnoreCmd.ignoreHeadingOutput) { mControlOutputMask |= FlightControlOutput.IgnoreHeading; } if (activeIgnoreCmd.ignoreRollOutput) { mControlOutputMask |= FlightControlOutput.IgnoreRoll; } } } /// /// Reset the modes /// public void Reset() { // get active command mMode = ComputerMode.Off; mAttitude = FlightAttitude.Null; mControlOutputMask = 0; } } } ================================================ FILE: src/RemoteTech/UI/DebugWindow.cs ================================================ using System; using System.Collections.Generic; using UnityEngine; using KSP.Localization; namespace RemoteTech.UI { class DebugWindow : AbstractWindow { #region AbstractWindow-Definitions public DebugWindow() : base(new Guid("B17930C0-EDE6-4299-BE78-D975EAD1986B"), Localizer.Format("#RT_DEBUG_title"),//"RemoteTech DebugWindow" new Rect(Screen.width / 2 - 250, Screen.height / 2 - 225, 500, 450), WindowAlign.Floating) { this.mSavePosition = true; this.initializeDebugMenue(); } public override void Hide() { base.Hide(); } #endregion #region Member /// Scroll position of the debug log textarea private Vector2 debugLogScrollPosition; /// Scroll position of the content area private Vector2 contentScrollPosition; /// Current selected log level private RTLogLevel currentLogLevel = RTLogLevel.LVL1; /// Current selected menue item private int currentDebugMenue = 0; /// List of all menue items private List debugMenueItems = new List(); private int deactivatedMissionControls = 0; /// API Input fields private string HasFlightComputerGuidInput = ""; private string HasAnyConnectionGuidInput = ""; private string HasConnectionToKSCGuidInput = ""; private string GetShortestSignalDelayGuidInput = ""; private string GetSignalDelayToKSCGuidInput = ""; private string GetSignalDelayToSatelliteGuidAInput = ""; private string GetSignalDelayToSatelliteGuidBInput = ""; private string ReceivDataVesselGuidInput = ""; private string HasLocalControlGuidInput = ""; private string GetMaxRangeDistanceSatelliteGuidAInput = ""; private string GetMaxRangeDistanceSatelliteGuidBInput = ""; private string GetRangeDistanceSatelliteGuidAInput = ""; private string GetRangeDistanceSatelliteGuidBInput = ""; #endregion #region Base-drawing /// /// Draws the content of the window /// public override void Window(int uid) { // push the current GUI.skin var pushSkin = GUI.skin; GUI.skin = HighLogic.Skin; GUILayout.BeginVertical(GUILayout.Width(500), GUILayout.Height(350)); { #region Draw debug menue // Draw the debug menue GUILayout.BeginHorizontal(); { // push the font size of buttons var pushFontsize = GUI.skin.button.fontSize; GUI.skin.button.fontSize = 11; int menueItemCounter = 0; foreach (string menueItem in this.debugMenueItems) { RTUtil.FakeStateButton(new GUIContent(menueItem), () => { this.currentDebugMenue = menueItemCounter; }, currentDebugMenue, menueItemCounter, GUILayout.Height(16)); menueItemCounter++; } // pop the saved button size back GUI.skin.button.fontSize = pushFontsize; } GUILayout.EndHorizontal(); #endregion #region Draw content contentScrollPosition = GUILayout.BeginScrollView(contentScrollPosition); { switch (this.currentDebugMenue) { case 0: { this.drawRTSettingsTab(); break; } case 1: { this.drawAPITester(); break; } case 2: { this.drawGuidReader(); break; } default: { GUILayout.Label("Item " + this.currentDebugMenue.ToString() + " not yet implemented"); break; } } GUILayout.FlexibleSpace(); } GUILayout.EndScrollView(); #endregion #region Draw debug log // Draw a 100 height debug-console at the bottom of the debug-window GUILayout.BeginVertical(GUILayout.Height(150)); this.drawRTDebugLogEntrys(); GUILayout.EndVertical(); // Draw the clear log button // Clear Logs Button GUILayout.BeginHorizontal(); { var pushFontsize = GUI.skin.button.fontSize; GUI.skin.button.fontSize = 12; RTUtil.Button(new GUIContent(Localizer.Format("#RT_DEBUG_Clearbutton",this.currentLogLevel.ToString()), Localizer.Format("#RT_DEBUG_Clearbutton_desc")), () => RTLog.RTLogList[this.currentLogLevel].Clear());//"Clear Logs in ""tbd." GUI.skin.button.fontSize = pushFontsize; } GUILayout.EndHorizontal(); #endregion } GUILayout.EndVertical(); base.Window(uid); // pop back the saved skin GUI.skin = pushSkin; } #endregion private void initializeDebugMenue() { this.debugMenueItems.Add(Localizer.Format("#RT_DEBUG_RTSettings"));//"RemoteTech Settings" this.debugMenueItems.Add(Localizer.Format("#RT_DEBUG_APITester"));//"API-Tester" this.debugMenueItems.Add(Localizer.Format("#RT_DEBUG_GUIDReader"));//"GUID-Reader" } /// /// Draws all debug logs /// private void drawRTDebugLogEntrys() { GUIStyle lablestyle = new GUIStyle(GUI.skin.label); lablestyle.wordWrap = false; lablestyle.fontSize = 11; lablestyle.normal.textColor = Color.white; // draw the vertical buttons for each debug lvl GUILayout.BeginHorizontal(); { var pushFontsize = GUI.skin.button.fontSize; GUI.skin.button.fontSize = 11; foreach (RTLogLevel lvl in Enum.GetValues(typeof(RTLogLevel))) { RTUtil.FakeStateButton(new GUIContent(lvl.ToString()), () => { this.currentLogLevel = lvl; }, (int)currentLogLevel, (int)lvl, GUILayout.Height(16)); } GUI.skin.button.fontSize = pushFontsize; } GUILayout.EndHorizontal(); // draw the input of the selected debug list debugLogScrollPosition = GUILayout.BeginScrollView(debugLogScrollPosition); { foreach (var logEntry in RTLog.RTLogList[this.currentLogLevel]) { GUILayout.Label(logEntry, lablestyle, GUILayout.Height(13)); } } GUILayout.EndScrollView(); // If the mouse is not over the debug window we will flip the scrollposition.y to maximum if (!this.backupPosition.ContainsMouse()) { debugLogScrollPosition.y = Mathf.Infinity; } } /// /// Draws the RTSettings section /// private void drawRTSettingsTab() { var settings = RTSettings.Instance; int firstColWidth = 250; var pushLabelSize = GUI.skin.label.fontSize; var pushButtonSize = GUI.skin.button.fontSize; GUI.skin.label.fontSize = 12; GUI.skin.button.fontSize = 12; // Deaktivate Mission Control GUILayout.BeginHorizontal(); { GUILayout.Label(Localizer.Format("#RT_DEBUG_DeactivateKSC"), GUILayout.Width(firstColWidth));//"Deactivate KSC: " RTUtil.FakeStateButton(new GUIContent(Localizer.Format("#RT_DEBUG_Onbtton")), () => { foreach (MissionControlSatellite mcs in settings.GroundStations) { mcs.togglePower(false); }; deactivatedMissionControls = 1; }, deactivatedMissionControls, 1);//"On" RTUtil.FakeStateButton(new GUIContent(Localizer.Format("#RT_DEBUG_Offbtton")), () => { foreach (MissionControlSatellite mcs in settings.GroundStations) { mcs.togglePower(true); }; deactivatedMissionControls = 0; }, deactivatedMissionControls, 0);//"Off" } GUILayout.EndHorizontal(); GUILayout.Space(10); GUILayout.Label(Localizer.Format("#RT_DEBUG_CheatOptions"));//"Cheat Options" GUILayout.BeginHorizontal(); { GUILayout.Label(Localizer.Format("#RT_DEBUG_SignalThroughBodies"), GUILayout.Width(firstColWidth));//"Signal Through Bodies: " int cheatLineOfSight = (RTSettings.Instance.IgnoreLineOfSight) ? 1 : 0; RTUtil.FakeStateButton(new GUIContent(Localizer.Format("#RT_DEBUG_Onbtton")), () => { RTSettings.Instance.IgnoreLineOfSight = true; }, cheatLineOfSight, 1);//"On" RTUtil.FakeStateButton(new GUIContent(Localizer.Format("#RT_DEBUG_Offbtton")), () => { RTSettings.Instance.IgnoreLineOfSight = false; }, cheatLineOfSight, 0);//"Off" } GUILayout.EndHorizontal(); GUILayout.BeginHorizontal(); { GUILayout.Label(Localizer.Format("#RT_DEBUG_InfiniteFuel"), GUILayout.Width(firstColWidth));//"Infinite Fuel: " int cheatinfiniteFuel = (CheatOptions.InfinitePropellant) ? 1 : 0; RTUtil.FakeStateButton(new GUIContent(Localizer.Format("#RT_DEBUG_Onbtton")), () => { CheatOptions.InfinitePropellant = true; }, cheatinfiniteFuel, 1);//"On" RTUtil.FakeStateButton(new GUIContent(Localizer.Format("#RT_DEBUG_Offbtton")), () => { CheatOptions.InfinitePropellant = false; }, cheatinfiniteFuel, 0);//"Off" } GUILayout.EndHorizontal(); GUILayout.BeginHorizontal(); { GUILayout.Label(Localizer.Format("#RT_DEBUG_InfiniteRCSFuel"), GUILayout.Width(firstColWidth));//"Infinite RCS Fuel: " int cheatinfiniteRCSFuel = (CheatOptions.InfinitePropellant) ? 1 : 0; RTUtil.FakeStateButton(new GUIContent(Localizer.Format("#RT_DEBUG_Onbtton")), () => { CheatOptions.InfinitePropellant = true; }, cheatinfiniteRCSFuel, 1);//"On" RTUtil.FakeStateButton(new GUIContent(Localizer.Format("#RT_DEBUG_Offbtton")), () => { CheatOptions.InfinitePropellant = false; }, cheatinfiniteRCSFuel, 0);//"Off" } GUILayout.EndHorizontal(); GUI.skin.label.fontSize = pushLabelSize; GUI.skin.button.fontSize = pushButtonSize; } /// /// Draws the API Tester section /// private void drawAPITester() { // switch to the API Debug log this.currentLogLevel = RTLogLevel.API; #region API.HasFlightComputer GUILayout.BeginHorizontal(); { GUILayout.Label("API.HasFlightComputer; Guid: ", GUILayout.ExpandWidth(true)); this.HasFlightComputerGuidInput = GUILayout.TextField(this.HasFlightComputerGuidInput, GUILayout.Width(160)); if (GUILayout.Button("Run", GUILayout.Width(50))) { try { var result = RemoteTech.API.API.HasFlightComputer(new Guid(this.HasFlightComputerGuidInput)); RTLog.Verbose("API.HasFlightComputer({0}) = {1}", this.currentLogLevel, this.HasFlightComputerGuidInput, result); } catch (Exception ex) { RTLog.Verbose("Exception {0}", this.currentLogLevel, ex); } // go to the end of the log this.debugLogScrollPosition.y = Mathf.Infinity; } } GUILayout.EndHorizontal(); #endregion #region API.HasAnyConnection GUILayout.BeginHorizontal(); { GUILayout.Label("API.HasAnyConnection; Guid: ", GUILayout.ExpandWidth(true)); this.HasAnyConnectionGuidInput = GUILayout.TextField(this.HasAnyConnectionGuidInput, GUILayout.Width(160)); if (GUILayout.Button("Run", GUILayout.Width(50))) { try { var result = RemoteTech.API.API.HasAnyConnection(new Guid(this.HasAnyConnectionGuidInput)); RTLog.Verbose("API.HasAnyConnection({0}) = {1}", this.currentLogLevel, this.HasAnyConnectionGuidInput, result); } catch (Exception ex) { RTLog.Verbose("Exception {0}", this.currentLogLevel, ex); } // go to the end of the log this.debugLogScrollPosition.y = Mathf.Infinity; } } GUILayout.EndHorizontal(); #endregion #region API.HasConnectionToKSC GUILayout.BeginHorizontal(); { GUILayout.Label("API.HasConnectionToKSC; Guid: ", GUILayout.ExpandWidth(true)); this.HasConnectionToKSCGuidInput = GUILayout.TextField(this.HasConnectionToKSCGuidInput, GUILayout.Width(160)); if (GUILayout.Button("Run", GUILayout.Width(50))) { try { var result = RemoteTech.API.API.HasConnectionToKSC(new Guid(this.HasConnectionToKSCGuidInput)); RTLog.Verbose("API.HasConnectionToKSC({0}) = {1}", this.currentLogLevel, this.HasConnectionToKSCGuidInput, result); } catch (Exception ex) { RTLog.Verbose("Exception {0}", this.currentLogLevel, ex); } // go to the end of the log this.debugLogScrollPosition.y = Mathf.Infinity; } } GUILayout.EndHorizontal(); #endregion #region APi.GetShortestSignalDelay GUILayout.BeginHorizontal(); { GUILayout.Label("API.GetShortestSignalDelay; Guid: ", GUILayout.ExpandWidth(true)); this.GetShortestSignalDelayGuidInput = GUILayout.TextField(this.GetShortestSignalDelayGuidInput, GUILayout.Width(160)); if (GUILayout.Button("Run", GUILayout.Width(50))) { try { var result = RemoteTech.API.API.GetShortestSignalDelay(new Guid(this.GetShortestSignalDelayGuidInput)); RTLog.Verbose("API.GetShortestSignalDelayGuidInput({0}) = {1}", this.currentLogLevel, this.GetShortestSignalDelayGuidInput, result); } catch (Exception ex) { RTLog.Verbose("Exception {0}", this.currentLogLevel, ex); } // go to the end of the log this.debugLogScrollPosition.y = Mathf.Infinity; } } GUILayout.EndHorizontal(); #endregion #region API.GetSignalDelayToKSC GUILayout.BeginHorizontal(); { GUILayout.Label("API.GetSignalDelayToKSC; Guid: ", GUILayout.ExpandWidth(true)); this.GetSignalDelayToKSCGuidInput = GUILayout.TextField(this.GetSignalDelayToKSCGuidInput, GUILayout.Width(160)); if (GUILayout.Button("Run", GUILayout.Width(50))) { try { var result = RemoteTech.API.API.GetSignalDelayToKSC(new Guid(this.GetSignalDelayToKSCGuidInput)); RTLog.Verbose("API.GetSignalDelayToKSC({0}) = {1}", this.currentLogLevel, this.GetSignalDelayToKSCGuidInput, result); } catch (Exception ex) { RTLog.Verbose("Exception {0}", this.currentLogLevel, ex); } // go to the end of the log this.debugLogScrollPosition.y = Mathf.Infinity; } } GUILayout.EndHorizontal(); #endregion #region API.GetSignalDelayToSatellite GUILayout.BeginHorizontal(); { GUILayout.Label("API.GetSignalDelayToSatellite; Guid: ", GUILayout.ExpandWidth(true)); this.GetSignalDelayToSatelliteGuidAInput = GUILayout.TextField(this.GetSignalDelayToSatelliteGuidAInput, GUILayout.Width(70)); GUILayout.Label("to: ", GUILayout.ExpandWidth(true)); this.GetSignalDelayToSatelliteGuidBInput = GUILayout.TextField(this.GetSignalDelayToSatelliteGuidBInput, GUILayout.Width(70)); if (GUILayout.Button("Run", GUILayout.Width(50))) { try { var result = RemoteTech.API.API.GetSignalDelayToSatellite(new Guid(this.GetSignalDelayToSatelliteGuidAInput), new Guid(this.GetSignalDelayToSatelliteGuidBInput)); RTLog.Verbose("API.GetSignalDelayToSatellite({0},{1}) = {2}", this.currentLogLevel, this.GetSignalDelayToSatelliteGuidAInput, this.GetSignalDelayToSatelliteGuidBInput, result); } catch (Exception ex) { RTLog.Verbose("Exception {0}", this.currentLogLevel, ex); } // go to the end of the log this.debugLogScrollPosition.y = Mathf.Infinity; } } GUILayout.EndHorizontal(); #endregion #region API.QueueCommandToFlightComputer GUILayout.BeginHorizontal(); { GUILayout.Label("API.QueueCommandToFlightComputer; Guid: ", GUILayout.ExpandWidth(true)); this.ReceivDataVesselGuidInput = GUILayout.TextField(this.ReceivDataVesselGuidInput, GUILayout.Width(160)); if (GUILayout.Button("Run", GUILayout.Width(50))) { try { ConfigNode dataNode = new ConfigNode(); dataNode.AddValue("Executor", "RemoteTech"); dataNode.AddValue("QueueLabel", "Receive Data"); dataNode.AddValue("ActiveLabel", "Receiveing Data ..."); dataNode.AddValue("ShortLabel", "Receive Data"); dataNode.AddValue("ReflectionType", "RemoteTech.UI.DebugWindow"); dataNode.AddValue("ReflectionPopMethod", "ReceiveDataPop"); dataNode.AddValue("ReflectionExecuteMethod", "ReceiveDataExec"); dataNode.AddValue("ReflectionAbortMethod", "ReceiveDataAbort"); dataNode.AddValue("GUIDString", this.ReceivDataVesselGuidInput); dataNode.AddValue("YourData1", "RemoteTech"); dataNode.AddValue("YourDataN", "TechRemote"); var result = RemoteTech.API.API.QueueCommandToFlightComputer(dataNode); RTLog.Verbose("API.QueueCommandToFlightComputer(ConfigNode) = {0}", this.currentLogLevel, result); } catch (Exception ex) { RTLog.Verbose("Exception {0}", this.currentLogLevel, ex); } // go to the end of the log this.debugLogScrollPosition.y = Mathf.Infinity; } } GUILayout.EndHorizontal(); #endregion #region API.HasLocalControl GUILayout.BeginHorizontal(); { GUILayout.Label("API.HasLocalControl; Guid: ", GUILayout.ExpandWidth(true)); this.HasLocalControlGuidInput = GUILayout.TextField(this.HasLocalControlGuidInput, GUILayout.Width(160)); if (GUILayout.Button("Run", GUILayout.Width(50))) { try { var result = RemoteTech.API.API.HasLocalControl(new Guid(this.HasLocalControlGuidInput)); RTLog.Verbose("API.HasLocalControl({0}) = {1}", this.currentLogLevel, this.HasLocalControlGuidInput, result); } catch (Exception ex) { RTLog.Verbose("Exception {0}", this.currentLogLevel, ex); } // go to the end of the log this.debugLogScrollPosition.y = Mathf.Infinity; } } GUILayout.EndHorizontal(); #endregion #region API.GetMaxRangeDistance GUILayout.BeginHorizontal(); { GUILayout.Label("API.GetMaxRangeDistance; Guid: ", GUILayout.ExpandWidth(true)); this.GetMaxRangeDistanceSatelliteGuidAInput = GUILayout.TextField(this.GetMaxRangeDistanceSatelliteGuidAInput, GUILayout.Width(70)); GUILayout.Label("to: ", GUILayout.ExpandWidth(true)); this.GetMaxRangeDistanceSatelliteGuidBInput = GUILayout.TextField(this.GetMaxRangeDistanceSatelliteGuidBInput, GUILayout.Width(70)); if (GUILayout.Button("Run", GUILayout.Width(50))) { try { var result = RemoteTech.API.API.GetMaxRangeDistance(new Guid(this.GetMaxRangeDistanceSatelliteGuidAInput), new Guid(this.GetMaxRangeDistanceSatelliteGuidBInput)); RTLog.Verbose("API.GetMaxRangeDistance({0},{1}) = {2}", this.currentLogLevel, this.GetMaxRangeDistanceSatelliteGuidAInput, this.GetMaxRangeDistanceSatelliteGuidBInput, result); } catch (Exception ex) { RTLog.Verbose("Exception {0}", this.currentLogLevel, ex); } // go to the end of the log this.debugLogScrollPosition.y = Mathf.Infinity; } } GUILayout.EndHorizontal(); #endregion #region API.GetRangeDistance GUILayout.BeginHorizontal(); { GUILayout.Label("API.GetRangeDistance; Guid: ", GUILayout.ExpandWidth(true)); this.GetRangeDistanceSatelliteGuidAInput = GUILayout.TextField(this.GetRangeDistanceSatelliteGuidAInput, GUILayout.Width(70)); GUILayout.Label("to: ", GUILayout.ExpandWidth(true)); this.GetRangeDistanceSatelliteGuidBInput = GUILayout.TextField(this.GetRangeDistanceSatelliteGuidBInput, GUILayout.Width(70)); if (GUILayout.Button("Run", GUILayout.Width(50))) { try { var result = RemoteTech.API.API.GetRangeDistance(new Guid(this.GetRangeDistanceSatelliteGuidAInput), new Guid(this.GetRangeDistanceSatelliteGuidBInput)); RTLog.Verbose("API.GetRangeDistance({0},{1}) = {2}", this.currentLogLevel, this.GetRangeDistanceSatelliteGuidAInput, this.GetRangeDistanceSatelliteGuidBInput, result); } catch (Exception ex) { RTLog.Verbose("Exception {0}", this.currentLogLevel, ex); } // go to the end of the log this.debugLogScrollPosition.y = Mathf.Infinity; } } GUILayout.EndHorizontal(); #endregion } /// /// Draws a list with all ship guids and command stations to copy these values for the api tester /// private void drawGuidReader() { // draw the vessel list #region Vessel list foreach (var vessel in FlightGlobals.Vessels) { // skip different types if (vessel.vesselType == VesselType.SpaceObject || vessel.vesselType == VesselType.Unknown) continue; GUILayout.BeginHorizontal(); { var pushFontStyle = GUI.skin.label.fontStyle; // active vessel, make bold if (FlightGlobals.ActiveVessel != null && FlightGlobals.ActiveVessel.id == vessel.id) { GUI.skin.label.fontStyle = FontStyle.Bold; } GUILayout.Label(vessel.vesselName, GUILayout.ExpandWidth(true)); GUILayout.TextField(vessel.id.ToString(), GUILayout.Width(270)); GUI.skin.label.fontStyle = pushFontStyle; } GUILayout.EndHorizontal(); } #endregion // draw the Ground stations #region Ground stations if (HighLogic.LoadedScene == GameScenes.SPACECENTER) { GUILayout.BeginHorizontal(); GUILayout.Label(Localizer.Format("#RT_DEBUG_LoadedScene"), GUILayout.ExpandWidth(true));//"Ground stations are only available in the flight or tracking station." GUILayout.EndHorizontal(); } else { foreach (var stations in RTCore.Instance.Network.GroundStations) { GUILayout.BeginHorizontal(); { GUILayout.Label(stations.Value.Name, GUILayout.ExpandWidth(true)); GUILayout.TextField(stations.Key.ToString(), GUILayout.Width(270)); } GUILayout.EndHorizontal(); } } #endregion } /// /// This method is needed as a callback function for the API.QueueCommandToFlightComputer /// /// data passed from the flightcomputer public static bool ReceiveDataPop(ConfigNode data) { RTLog.Verbose("Received Data via Api.ReceiveData", RTLogLevel.API); RTLog.Notify("Data: {0}",data); return true; } public static bool ReceiveDataExec(ConfigNode data) { RTLog.Verbose("Received Data via Api.ReceiveDataExec", RTLogLevel.API); RTLog.Notify("Data: {0}", data); return bool.Parse(data.GetValue("AbortCommand")); } public static void ReceiveDataAbort(ConfigNode data) { RTLog.Verbose("Aborting via Api.ReceiveDataAbort", RTLogLevel.API); RTLog.Notify("Data: {0}", data); } } } ================================================ FILE: src/RemoteTech/UI/FilterOverlay.cs ================================================ using System; using System.Linq; using RemoteTech.SimpleTypes; using UnityEngine; namespace RemoteTech.UI { /// /// Class used for the buttons overlay in Tracking Station or Flight map scenes. /// Draws and handles buttons on the bottom right of the scene. /// public class FilterOverlay : IFragment, IDisposable { private class Texture { public Texture2D Background; public Texture2D BackgroundLeft; public Texture2D NoPath; public Texture2D Path; public Texture2D MultiPath; public Texture2D NoOmniDish; public Texture2D Dish; public Texture2D Omni; public Texture2D OmniDish; public Texture2D NoCone; public Texture2D Cone; public Texture2D SatButton; public void CreateTextures() { RTUtil.LoadImage(out Background, "texBackground"); RTUtil.LoadImage(out BackgroundLeft, "texBackground_left"); RTUtil.LoadImage(out NoPath, "texNoPath"); RTUtil.LoadImage(out Path, "texPath"); RTUtil.LoadImage(out MultiPath, "texMultiPath"); RTUtil.LoadImage(out NoOmniDish, "texNoOmniDish"); RTUtil.LoadImage(out Dish, "texDish"); RTUtil.LoadImage(out Omni, "texOmni"); RTUtil.LoadImage(out OmniDish, "texOmniDish"); RTUtil.LoadImage(out NoCone, "texNoCone"); RTUtil.LoadImage(out Cone, "texCone"); RTUtil.LoadImage(out SatButton, "texButtonGray"); } } private SatelliteFragment mSatelliteFragment = new SatelliteFragment(null); private AntennaFragment mAntennaFragment = new AntennaFragment(null); private Texture mTextures = new Texture(); private TargetInfoWindow mTargetInfos; private bool mEnabled; private bool mShowOverlay = true; private bool onTrackingStation { get { return (HighLogic.LoadedScene == GameScenes.TRACKSTATION); } } public static GUIStyle Button; public static GUIStyle ButtonGray; public static GUIStyle ButtonGreen; public static GUIStyle ButtonRed; public static GUIStyle ButtonYellow; private static UnityEngine.UI.Image mImg = null; private Rect Position { get { float posX = Screen.width - mTextures.Background.width * GameSettings.UI_SCALE; float posY = Screen.height - mTextures.Background.height * GameSettings.UI_SCALE; // mirror to the left side on the tracking station if (this.onTrackingStation) { // New side bar location checking... if someone finds a better method for this please fix if (mImg == null) { var obj = GameObject.Find("Side Bar"); if (obj != null) mImg = obj.GetChild("bg (stretch)").GetComponent(); } if (mImg != null) { posX = mImg.rectTransform.rect.width * GameSettings.UI_SCALE; } } return new Rect(posX, posY, mTextures.Background.width * GameSettings.UI_SCALE, mTextures.Background.height * GameSettings.UI_SCALE); } } private Rect PositionSatellite { get { float width = 350; float height = 350; float posX = Screen.width - width; // mirror to the left side on the tracking station if (this.onTrackingStation) { // Same new side bar checking... if someone finds a better method for this please fix if (mImg == null) { var obj = GameObject.Find("Side Bar"); if(obj != null) mImg = obj.GetChild("bg (stretch)").GetComponent(); } if (mImg != null) { posX = mImg.rectTransform.rect.width * GameSettings.UI_SCALE; } } return new Rect(posX, Screen.height - height, width, height); } } private Rect PositionAntenna { get { var width = 350; var height = 350; var posX = PositionSatellite.x - width; // mirror to the left side on the tracking station if (this.onTrackingStation) { posX = PositionSatellite.x + PositionSatellite.width; } return new Rect(posX, Screen.height - height, width, height); } } private Texture2D TextureComButton { get { MapFilter mask = RTCore.Instance.Renderer.Filter; if ((mask & MapFilter.Path) == MapFilter.Path) return mTextures.Path; else if ((mask & MapFilter.MultiPath) == MapFilter.MultiPath) return mTextures.MultiPath; else return mTextures.NoPath; } } private Texture2D TextureReachButton { get { MapFilter mask = RTCore.Instance.Renderer.Filter; if ((mask & MapFilter.Cone) == MapFilter.Cone) return mTextures.Cone; else return mTextures.NoCone; } } private Texture2D TextureTypeButton { get { MapFilter mask = RTCore.Instance.Renderer.Filter; if ((mask & (MapFilter.Omni | MapFilter.Dish)) == (MapFilter.Omni | MapFilter.Dish)) return mTextures.OmniDish; else if ((mask & MapFilter.Omni) == MapFilter.Omni) return mTextures.Omni; else if ((mask & MapFilter.Dish) == MapFilter.Dish) return mTextures.Dish; else return mTextures.NoOmniDish; } } private GUIStyle StyleStatusButton { get { var sat = mSatelliteFragment.Satellite; if (sat == null) return ButtonGray; if (RTCore.Instance.Network[sat].Any()) return ButtonGreen; if (sat.HasLocalControl) return ButtonYellow; return ButtonRed; } } private void OnHideUI() { mShowOverlay = false; } private void OnShowUI() { mShowOverlay = true; } public FilterOverlay() { // loading styles mTextures.CreateTextures(); Button = GUITextureButtonFactory.CreateFromFilename("texButton"); ButtonGray = GUITextureButtonFactory.CreateFromFilename("texButtonGray"); ButtonGreen = GUITextureButtonFactory.CreateFromFilename("texButtonGreen"); ButtonRed = GUITextureButtonFactory.CreateFromFilename("texButtonRed"); ButtonYellow = GUITextureButtonFactory.CreateFromFilename("texButtonYellow"); GameEvents.onPlanetariumTargetChanged.Add(OnChangeTarget); GameEvents.onHideUI.Add(OnHideUI); GameEvents.onShowUI.Add(OnShowUI); MapView.OnEnterMapView += OnEnterMapView; MapView.OnExitMapView += OnExitMapView; // Add the on mouse over event mAntennaFragment.onMouseOverListEntry += showTargetInfo; WindowAlign targetInfoAlign = WindowAlign.TopLeft; if (this.onTrackingStation) { // switch to the other side if we are at the trackingStation targetInfoAlign = WindowAlign.TopRight; } // Create a new Targetinfo window with a fixed position to the antenna fragment mTargetInfos = new TargetInfoWindow(PositionAntenna, targetInfoAlign); } public void Dispose() { // Remove the on mouse over event mAntennaFragment.onMouseOverListEntry -= showTargetInfo; GameEvents.onPlanetariumTargetChanged.Remove(OnChangeTarget); GameEvents.onHideUI.Remove(OnHideUI); GameEvents.onShowUI.Remove(OnShowUI); MapView.OnEnterMapView -= OnEnterMapView; MapView.OnExitMapView -= OnExitMapView; mSatelliteFragment.Dispose(); mAntennaFragment.Dispose(); } public void OnEnterMapView() { RTCore.Instance.OnGuiUpdate += Draw; RTCore.Instance.OnFrameUpdate += Update; } public void OnExitMapView() { RTCore.Instance.OnGuiUpdate -= Draw; RTCore.Instance.OnFrameUpdate -= Update; } public void Update() { mAntennaFragment.Antenna = mSatelliteFragment.Antenna; var sat = mSatelliteFragment.Satellite; if (sat == null) return; if (!RTCore.Instance.Network[sat].Any() && !sat.HasLocalControl) { mSatelliteFragment.Satellite = null; mAntennaFragment.Antenna = null; } } /// /// Mouse over callback forced by the mAntennaFragment /// public void showTargetInfo() { if (mAntennaFragment.mouseOverEntry != null) { // set the current selected target to the targetwindow mTargetInfos.SetTarget(mAntennaFragment.mouseOverEntry, mAntennaFragment.Antenna); mTargetInfos.Show(); } else { // hide if we do not have any selection mTargetInfos.Hide(); } } public void Draw() { if (!mShowOverlay) return; GUI.depth = 0; GUI.skin = HighLogic.Skin; // Draw Satellite Selector if (mEnabled && mSatelliteFragment.Satellite != null) { GUILayout.BeginArea(PositionSatellite, AbstractWindow.Frame); { mSatelliteFragment.Draw(); } GUILayout.EndArea(); } // Hide the targetInfoWindow if we don't have a selected antenna if (mAntennaFragment.Antenna == null) { mTargetInfos.Hide(); } // Draw Antenna Selector mAntennaFragment.triggerMouseOverListEntry = PositionAntenna.Contains(Event.current.mousePosition) && mEnabled; if (mEnabled && mSatelliteFragment.Satellite != null && mAntennaFragment.Antenna != null) { GUILayout.BeginArea(PositionAntenna, AbstractWindow.Frame); { mAntennaFragment.Draw(); } GUILayout.EndArea(); } // Switch the background from map view to tracking station Texture2D backgroundImage = mTextures.Background; if(this.onTrackingStation) { backgroundImage = mTextures.BackgroundLeft; } // TODO: Fix textures // Draw Toolbar GUI.DrawTexture(Position, backgroundImage); GUILayout.BeginArea(Position); { GUILayout.BeginHorizontal(); { if (this.onTrackingStation) { if (GUILayout.Button("", StyleStatusButton, GUILayout.Width(mTextures.SatButton.width * GameSettings.UI_SCALE), GUILayout.Height(mTextures.SatButton.height * GameSettings.UI_SCALE))) OnClickStatus(); if (GUILayout.Button(TextureTypeButton, Button, GUILayout.Width(mTextures.OmniDish.width * GameSettings.UI_SCALE), GUILayout.Height(mTextures.OmniDish.height * GameSettings.UI_SCALE))) OnClickType(); if (GUILayout.Button(TextureReachButton, Button, GUILayout.Width(mTextures.Cone.width * GameSettings.UI_SCALE), GUILayout.Height(mTextures.Cone.height * GameSettings.UI_SCALE))) OnClickReach(); if (GUILayout.Button(TextureComButton, Button, GUILayout.Width(mTextures.Path.width * GameSettings.UI_SCALE), GUILayout.Height(mTextures.Path.height * GameSettings.UI_SCALE))) OnClickCompath(); } else { GUILayout.FlexibleSpace(); if (GUILayout.Button(TextureComButton, Button, GUILayout.Width(mTextures.Path.width * GameSettings.UI_SCALE), GUILayout.Height(mTextures.Path.height * GameSettings.UI_SCALE))) OnClickCompath(); if (GUILayout.Button(TextureReachButton, Button, GUILayout.Width(mTextures.Cone.width * GameSettings.UI_SCALE), GUILayout.Height(mTextures.Cone.height * GameSettings.UI_SCALE))) OnClickReach(); if (GUILayout.Button(TextureTypeButton, Button, GUILayout.Width(mTextures.OmniDish.width * GameSettings.UI_SCALE), GUILayout.Height(mTextures.OmniDish.height * GameSettings.UI_SCALE))) OnClickType(); if (GUILayout.Button("", StyleStatusButton, GUILayout.Width(mTextures.SatButton.width * GameSettings.UI_SCALE), GUILayout.Height(mTextures.SatButton.height * GameSettings.UI_SCALE))) OnClickStatus(); } } GUILayout.EndHorizontal(); } GUILayout.EndArea(); } private void OnChangeTarget(MapObject mo) { if (mo != null && mo.type == MapObject.ObjectType.Vessel) { mSatelliteFragment.Satellite = RTCore.Instance.Satellites[mo.vessel]; } else if (FlightGlobals.ActiveVessel != null) { mSatelliteFragment.Satellite = RTCore.Instance.Satellites[FlightGlobals.ActiveVessel.id]; } else { mSatelliteFragment.Satellite = null; } mAntennaFragment.Antenna = null; } private void OnClickCompath() { MapFilter mask = RTCore.Instance.Renderer.Filter; if ((mask & MapFilter.Path) == MapFilter.Path) { RTCore.Instance.Renderer.Filter &= ~MapFilter.Path; RTCore.Instance.Renderer.Filter |= MapFilter.MultiPath; return; } if ((mask & MapFilter.MultiPath) == MapFilter.MultiPath) { RTCore.Instance.Renderer.Filter &= ~MapFilter.MultiPath; return; } RTCore.Instance.Renderer.Filter |= MapFilter.Path; } private void OnClickType() { MapFilter mask = RTCore.Instance.Renderer.Filter; if ((mask & (MapFilter.Omni | MapFilter.Dish)) == (MapFilter.Omni | MapFilter.Dish)) { RTCore.Instance.Renderer.Filter &= ~((MapFilter.Omni | MapFilter.Dish)); return; } if ((mask & MapFilter.Omni) == MapFilter.Omni) { RTCore.Instance.Renderer.Filter &= ~MapFilter.Omni; RTCore.Instance.Renderer.Filter |= MapFilter.Dish; return; } if ((mask & MapFilter.Dish) == MapFilter.Dish) { RTCore.Instance.Renderer.Filter |= (MapFilter.Omni | MapFilter.Dish); return; } RTCore.Instance.Renderer.Filter |= MapFilter.Omni; } private void OnClickReach() { MapFilter mask = RTCore.Instance.Renderer.Filter; if ((mask & MapFilter.Cone) == MapFilter.Cone) { RTCore.Instance.Renderer.Filter &= ~MapFilter.Cone; return; } RTCore.Instance.Renderer.Filter |= MapFilter.Cone; } private void OnClickStatus() { if (mEnabled) { mEnabled = false; mTargetInfos.Hide(); } else if (StyleStatusButton != ButtonRed && StyleStatusButton != ButtonGray) { mEnabled = true; } } } } ================================================ FILE: src/RemoteTech/UI/FlightComputerWindow.cs ================================================ using System; using UnityEngine; using KSP.Localization; namespace RemoteTech.UI { public class FlightComputerWindow : AbstractWindow { private enum FragmentTab { Attitude = 0, Rover = 1, Power = 2, PID = 3, } private FragmentTab mTab = FragmentTab.Attitude; private readonly AttitudeFragment mAttitude; private readonly RoverFragment mRover; private readonly QueueFragment mQueue; private readonly PowerFragment mPower; private readonly PIDControllerFragment mPID; private bool mQueueEnabled; private FlightComputer.FlightComputer mFlightComputer; private readonly String tabModeDescString = Localizer.Format("#RT_FC_desc");//"Switch to Attitude, Rover, Power or PID mode." private static readonly String appTitle = Localizer.Format("#RT_FC_Title");//"Flight Computer" private FragmentTab Tab { get { return mTab; } set { int NumberOfTabs = 4; if ((int)value >= NumberOfTabs) { mTab = (FragmentTab)0; } else if ((int)value < 0) { mTab = (FragmentTab)(NumberOfTabs - 1); } else { mTab = value; } } } public FlightComputerWindow(FlightComputer.FlightComputer fc) : base(Guid.NewGuid(), appTitle, new Rect(100, 100, 0, 0), WindowAlign.Floating) { mSavePosition = true; mFlightComputer = fc; mAttitude = new AttitudeFragment(fc, () => OnQueue()); mRover = new RoverFragment(fc, () => OnQueue()); mPower = new PowerFragment(fc, () => OnQueue()); mPID = new PIDControllerFragment(fc, () => OnQueue()); mQueue = new QueueFragment(fc); mQueueEnabled = false; } public override void Show() { Position.x= RTSettings.Instance.FCWinPosX; Position.y = RTSettings.Instance.FCWinPosY; base.Show(); mFlightComputer.OnActiveCommandAbort += mAttitude.Reset; mFlightComputer.OnNewCommandPop += mAttitude.getActiveFlightMode; mAttitude.getActiveFlightMode(); mPower.getActivePowerMode(); } public override void Hide() { RTSettings.Instance.FCWinPosX = Position.x; RTSettings.Instance.FCWinPosY = Position.y; //RTSettings.Instance.Save(); //overkill mFlightComputer.OnActiveCommandAbort -= mAttitude.Reset; mFlightComputer.OnNewCommandPop -= mAttitude.getActiveFlightMode; base.Hide(); } public override void Window(int id) { GUI.skin = null; GUILayout.BeginHorizontal(); { GUILayout.BeginHorizontal(); { switch (mTab) { case FragmentTab.Attitude: mAttitude.Draw(); break; case FragmentTab.Rover: mRover.Draw(); break; case FragmentTab.Power: mPower.Draw(); break; case FragmentTab.PID: mPID.Draw(); break; } } GUILayout.EndHorizontal(); // Switch FC mode if (GUI.Button(new Rect(2, 2, 16, 16), new GUIContent("<", tabModeDescString))) { Tab--; } if (GUI.Button(new Rect(16, 2, 16, 16), new GUIContent(">", tabModeDescString))) { Tab++; } if (mQueueEnabled) { mQueue.Draw(); } else { GUILayout.BeginVertical(); { GUILayout.BeginScrollView(Vector2.zero, GUILayout.ExpandHeight(true)); GUILayout.EndScrollView(); } GUILayout.EndVertical(); } } GUILayout.EndHorizontal(); base.Window(id); } private void OnQueue() { mQueueEnabled = !mQueueEnabled; if(mQueueEnabled) { this.Title = appTitle + ": " + mFlightComputer.Vessel.vesselName.Substring(0, Math.Min(25, mFlightComputer.Vessel.vesselName.Length)); } else { this.Title = appTitle; } } } } ================================================ FILE: src/RemoteTech/UI/FlightUIPatcher.cs ================================================ using System.Collections.Generic; using System.Linq; using KSP.UI.Screens.Flight; using RemoteTech.FlightComputer.Commands; namespace RemoteTech.UI { public class FlightUIPatcher { /// /// Action groups corresponding to the GUI buttons we want to hook / patch. /// public static KSPActionGroup[] PatchedActionGroups = { KSPActionGroup.Gear, KSPActionGroup.Brakes, KSPActionGroup.Light, KSPActionGroup.Abort }; /// /// Hook flight action group buttons: gear, brakes, light and abort buttons. /// public static void Patch() { var buttons = CollectActionGroupToggleButtons(PatchedActionGroups); for (int i = 0; i < buttons.Count; ++i) { //Remove default KSP listener (otherwise we can't delay anything) buttons[i].toggle.onToggle.RemoveListener(buttons[i].SetToggle); // set our hook KSPActionGroup actionGroup = buttons[i].group; buttons[i].toggle.onToggle.AddListener( () => ActivateActionGroup(actionGroup) ); } } /// /// Get action groups buttons depending on their group. /// /// The action group(s) in which the buttons should be. /// A list of action ActionGroupToggleButton buttons, filter by actionGroups paramter. private static List CollectActionGroupToggleButtons(KSPActionGroup[] actionGroups) { // get all action group buttons ActionGroupToggleButton[] actionGroupToggleButtons = UnityEngine.Object.FindObjectsOfType(); // filter them to only get the buttons that have a group in the actionGroups array var buttons = actionGroupToggleButtons.Where(button => actionGroups.Any(ag => button.group == ag)).ToList(); return buttons; } /// /// Called when an action group button, from the KSP GUI, is pressed. /// /// The action group that was pressed. private static void ActivateActionGroup(KSPActionGroup ag) { var satellite = RTCore.Instance.Satellites[FlightGlobals.ActiveVessel]; if (satellite != null && satellite.FlightComputer != null) { satellite.SignalProcessor.FlightComputer.Enqueue(ActionGroupCommand.WithGroup(ag)); } else if (satellite == null || (satellite != null && satellite.HasLocalControl)) { if (!FlightGlobals.ready) return; if (FlightGlobals.ActiveVessel.IsControllable) { // check if EVA or not (as we removed the default KSP listener). if(!FlightGlobals.ActiveVessel.isEVA) { FlightGlobals.ActiveVessel.ActionGroups.ToggleGroup(ag); } else // it's an EVA { if (ag == KSPActionGroup.RCS) { FlightGlobals.ActiveVessel.evaController.ToggleJetpack(); } else if (ag == KSPActionGroup.Light) { FlightGlobals.ActiveVessel.evaController.ToggleLamp(); } } } } } } } ================================================ FILE: src/RemoteTech/UI/FocusFragment.cs ================================================ using System; using UnityEngine; namespace RemoteTech.UI { public class FocusFragment : IFragment { private Vector2 mScrollPosition = Vector2.zero; private Vessel mSelection = null; private Vessel mLastVessel = null; public void Draw() { mScrollPosition = GUILayout.BeginScrollView(mScrollPosition, AbstractWindow.Frame); { Color pushColor = GUI.contentColor; TextAnchor pushAlign = GUI.skin.button.alignment; GUI.skin.button.alignment = TextAnchor.MiddleLeft; var TSWList = UnityEngine.Object.FindObjectsOfType(); foreach (VesselSatellite sat in RTCore.Instance.Satellites) { if ((sat.parentVessel != null && !MapViewFiltering.CheckAgainstFilter(sat.parentVessel)) || FlightGlobals.ActiveVessel == sat.parentVessel) { continue; } String text = sat.Name.Truncate(25); RTUtil.StateButton(text, mSelection == sat.parentVessel ? 1 : 0, 1, s => { mSelection = (s > 0) ? sat.parentVessel : null; if (mSelection != null) { if (HighLogic.LoadedScene == GameScenes.TRACKSTATION) { foreach (var tsw in TSWList) { if (tsw.vessel == sat.parentVessel) { tsw.toggle.isOn = true; } } } else { Vessel vessel = sat.parentVessel; ScaledMovement scaledMovement = new GameObject().AddComponent(); scaledMovement.tgtRef = vessel.transform; scaledMovement.name = sat.Name; scaledMovement.transform.parent = ScaledSpace.Instance.transform; scaledMovement.vessel = vessel; scaledMovement.type = MapObject.ObjectType.Vessel; var success = PlanetariumCamera.fetch.SetTarget(PlanetariumCamera.fetch.AddTarget(scaledMovement)); PlanetariumCamera.fetch.targets.Remove(scaledMovement); this.resetTarget(); if(mLastVessel != vessel) { if(mLastVessel) { mLastVessel.DetachPatchedConicsSolver(); mLastVessel.orbitRenderer.isFocused = false; } vessel.AttachPatchedConicsSolver(); vessel.orbitRenderer.isFocused = true; vessel.orbitRenderer.drawIcons = OrbitRenderer.DrawIcons.OBJ; mLastVessel = vessel; } } } else { if (HighLogic.LoadedScene != GameScenes.TRACKSTATION) { // go back to the active vessel PlanetariumCamera.fetch.SetTarget(this.resetTarget()); } } }); } GUI.skin.button.alignment = pushAlign; GUI.contentColor = pushColor; } GUILayout.EndScrollView(); } /// /// This method resets the current selected state button on the FocusFragment. /// Should be called by enter map view. /// public void resetSelection() { // reset the selection set before mSelection = null; } /// /// This method sets the selection of the focus overlay. /// Should be called when a tracking station button is clicked /// public void setSelection(Vessel v) { mSelection = v; } /// /// Reset the current target object on the PlanetariumCamera to the Active vessel /// or if there is no active vessel (tracking station), back to Kerbin /// /// Found target as MapObject. Can be the active vessel or kerbin public MapObject resetTarget() { // try to get the active vessel int target_id = PlanetariumCamera.fetch.GetTargetIndex("ActiveVesselScaled"); if (target_id == -1) { // there is no active vessel, go to target kerbin target_id = PlanetariumCamera.fetch.GetTargetIndex("Kerbin"); } MapObject activeVesselObj = PlanetariumCamera.fetch.GetTarget(target_id); PlanetariumCamera.fetch.target = activeVesselObj; return activeVesselObj; } } } ================================================ FILE: src/RemoteTech/UI/FocusOverlay.cs ================================================ using System; using System.Collections.Generic; using System.Linq; using UnityEngine; namespace RemoteTech.UI { /// /// Class handling the "focus view" in the Tracking station scene. /// public class FocusOverlay : IFragment, IDisposable { private FocusFragment mFocus = new FocusFragment(); private bool mShowOverlay = false; private Texture2D satellite; private bool inMapView = false; private KSP.UI.Screens.ApplicationLauncherButton mButton; private UnityEngine.UI.Image mButtonImg; public List mTrackButtonListener = new List(); public struct TrackingButton { public UnityEngine.Events.UnityAction cb; public KSP.UI.Screens.TrackingStationWidget button; } private Rect PositionFrame { get { float scale = GameSettings.UI_SCALE; var pos = KSP.UI.UIMainCamera.Camera.WorldToScreenPoint(mButtonImg.rectTransform.position); var rect = new Rect(0, 0, 250, 500); if (HighLogic.LoadedSceneIsFlight) { rect.y = Screen.height - pos.y; rect.x = pos.x - rect.width - 10.0f; } else { rect.y = Screen.height - pos.y - 10.0f - rect.height; rect.x = pos.x + (mButtonImg.rectTransform.rect.width * scale) - rect.width; } return rect; } } public void RebuildTrackingListeners() { // Remove and clear just in case RemoveTrackingListeners(); // Adds a click listener to all the tracking station objects var TSWList = UnityEngine.Object.FindObjectsOfType(); foreach (var tsw in TSWList) { if (tsw) { var tb = new TrackingButton(); tb.button = tsw; tb.cb = (bool st) => { mFocus.setSelection(tb.button.vessel); }; tsw.toggle.onValueChanged.AddListener(tb.cb); mTrackButtonListener.Add(tb); } } } public void RemoveTrackingListeners() { foreach (var tb in mTrackButtonListener) { if (tb.button) tb.button.toggle.onValueChanged.RemoveListener(tb.cb); } mTrackButtonListener.Clear(); } public FocusOverlay() { // Load texture on create, removal of the old Textures class satellite = RTUtil.LoadImage("texSatellite"); // New AppLauncher Button instead of floating satellite button var actives = KSP.UI.Screens.ApplicationLauncher.AppScenes.TRACKSTATION | KSP.UI.Screens.ApplicationLauncher.AppScenes.MAPVIEW; mButton = KSP.UI.Screens.ApplicationLauncher.Instance.AddModApplication(OnButtonDown, OnButtonUp, null, null, null, null, actives, satellite); mButtonImg = mButton.GetComponent(); RebuildTrackingListeners(); MapView.OnEnterMapView += OnEnterMapView; MapView.OnExitMapView += OnExitMapView; } public void Dispose() { MapView.OnEnterMapView -= OnEnterMapView; MapView.OnExitMapView -= OnExitMapView; if (inMapView) { // to let it clean up stuff, because we don't receive this event any more OnExitMapView(); } // Remove button on destroy KSP.UI.Screens.ApplicationLauncher.Instance.RemoveModApplication(mButton); RemoveTrackingListeners(); } // Rebuilds the tracking buttons only when a vessel is removed/terminated/recovered // Feels really hacky tracking button fix - find better solution public void Update() { RebuildTrackingListeners(); RTCore.Instance.OnFrameUpdate -= Update; } public void OnVDestroy(Vessel v) { if(HighLogic.LoadedScene == GameScenes.TRACKSTATION) RTCore.Instance.AddOnceOnFrameUpdate(Update); } public void OnVRecover(ProtoVessel v, bool t) { if (HighLogic.LoadedScene == GameScenes.TRACKSTATION) RTCore.Instance.AddOnceOnFrameUpdate(Update); } public void OnVTerminate(ProtoVessel v) { if (HighLogic.LoadedScene == GameScenes.TRACKSTATION) RTCore.Instance.AddOnceOnFrameUpdate(Update); } public void OnEnterMapView() { inMapView = true; RTCore.Instance.OnGuiUpdate += Draw; mFocus.resetSelection(); GameEvents.onVesselRecovered.Add(OnVRecover); GameEvents.onVesselDestroy.Add(OnVDestroy); GameEvents.onVesselTerminated.Add(OnVTerminate); } public void OnExitMapView() { inMapView = false; RTCore.Instance.OnGuiUpdate -= Draw; GameEvents.onVesselRecovered.Remove(OnVRecover); GameEvents.onVesselDestroy.Remove(OnVDestroy); GameEvents.onVesselTerminated.Remove(OnVTerminate); } // Button states for applauncher private void OnButtonUp() { InputLockManager.RemoveControlLock("RTMapViewSatelliteList"); mShowOverlay = false; } private void OnButtonDown() { mShowOverlay = true; } // Fixed drawing mechanics public void Draw() { if (!mShowOverlay) return; GUILayout.BeginArea(PositionFrame); { // Refer to the idential codes in AbstractWindow.cs InputLockManager.RemoveControlLock("RTMapViewSatelliteList"); if (this.PositionFrame.ContainsMouse()) { InputLockManager.SetControlLock(ControlTypes.CAMERACONTROLS | ControlTypes.MAP, "RTMapViewSatelliteList"); } mFocus.Draw(); } GUILayout.EndArea(); } } } ================================================ FILE: src/RemoteTech/UI/IFragment.cs ================================================ namespace RemoteTech.UI { interface IFragment { void Draw(); } } ================================================ FILE: src/RemoteTech/UI/ManeuverNodeOverlay.cs ================================================ using System; using RemoteTech.SimpleTypes; using UnityEngine; using RemoteTech.FlightComputer.Commands; namespace RemoteTech.UI { /// /// Class adding and handling a new button to maneuver nodes. /// public class ManeuverNodeOverlay : IFragment, IDisposable { private readonly GUIStyle mManeuverNodeButtonAdd; private readonly GUIStyle mManeuverNodeButtonDelete; private bool mShowOverlay = true; private MapView mMap { get { return MapView.fetch; } } public ManeuverNodeOverlay() { mManeuverNodeButtonAdd = GUITextureButtonFactory.CreateFromFilename("buttons_fc_add", "buttons_fc_add_hover", "buttons_fc_add_hover", "buttons_fc_add_hover"); mManeuverNodeButtonAdd.fixedHeight = mManeuverNodeButtonAdd.fixedWidth = 0; mManeuverNodeButtonAdd.stretchHeight = mManeuverNodeButtonAdd.stretchWidth = true; mManeuverNodeButtonDelete = GUITextureButtonFactory.CreateFromFilename("buttons_fc_del", "buttons_fc_del_hover", "buttons_fc_del", "buttons_fc_del"); mManeuverNodeButtonDelete.fixedHeight = mManeuverNodeButtonDelete.fixedWidth = 0; mManeuverNodeButtonDelete.stretchHeight = mManeuverNodeButtonDelete.stretchWidth = true; MapView.OnEnterMapView += OnEnterMapView; MapView.OnExitMapView += OnExitMapView; GameEvents.onHideUI.Add(OnHideUI); GameEvents.onShowUI.Add(OnShowUI); } public void Dispose() { MapView.OnEnterMapView -= OnEnterMapView; MapView.OnExitMapView -= OnExitMapView; GameEvents.onHideUI.Remove(OnHideUI); GameEvents.onShowUI.Remove(OnShowUI); } public void OnEnterMapView() { RTCore.Instance.OnGuiUpdate += Draw; } public void OnExitMapView() { RTCore.Instance.OnGuiUpdate -= Draw; } private void OnHideUI() { mShowOverlay = false; } private void OnShowUI() { mShowOverlay = true; } /// /// Draws the RT add node to queue on the maneuver gizmo /// public void Draw() { if (!this.mShowOverlay) return; if (this.mMap != null && FlightGlobals.ActiveVessel != null) { // if we r on local control, skip these part if (FlightGlobals.ActiveVessel.HasLocalControl()) return; // if we've no flightcomputer, go out var satellite = RTCore.Instance.Satellites[FlightGlobals.ActiveVessel]; if (satellite == null || satellite.SignalProcessor.FlightComputer == null) return; var flightComputer = satellite.SignalProcessor.FlightComputer; PatchedConicSolver pCS = FlightGlobals.ActiveVessel.patchedConicSolver; // PatchedConicSolver instantiated? and more than one maneuver node? if ( pCS != null && pCS.maneuverNodes.Count > 0) { // Loop maneuvers for (var i = 0; i < pCS.maneuverNodes.Count; i++) { float btnWidth = 23.0f; ManeuverNode node = pCS.maneuverNodes[i]; // node has an attached gizmo? if (node.attachedGizmo == null || node.UT < RTUtil.GameTime) continue; ManeuverGizmo gizmo = node.attachedGizmo; UnityEngine.UI.Button gizmoDeleteBtn = gizmo.deleteBtn; // We are on the right gizmo but no buttons are visible so skip the rest if (!gizmoDeleteBtn.isActiveAndEnabled) { continue; } Vector3 screenCoord = gizmo.camera.WorldToScreenPoint(gizmo.transform.position); //Vector3 screenCenter = new Vector2(Screen.width / 2, Screen.height / 2); //double dist = Math.Sqrt(Math.Pow(screenCenter.x - screenCoord.x, 2.0) + Math.Pow(screenCenter.y - screenCoord.y, 2.0)); //double btnDim = 20.0f + (8.0f * ((1.2f / screenCenter.magnitude) * Math.Abs(dist))); //btnDim = 1.0f * gizmoDeleteBtn.transform.lossyScale.x; Rect screenPos = new Rect(screenCoord.x - btnWidth - 5.0f, Screen.height - screenCoord.y - btnWidth, btnWidth, btnWidth); GUIStyle maneuverCtrl = mManeuverNodeButtonAdd; bool nodeAlreadyQueued = flightComputer.HasManeuverCommandByNode(node); // switch the button style if (nodeAlreadyQueued) { maneuverCtrl = mManeuverNodeButtonDelete; } GUILayout.BeginArea(screenPos); if (GUILayout.Button("", maneuverCtrl)) { if (!nodeAlreadyQueued) { flightComputer.Enqueue(ManeuverCommand.WithNode(i, flightComputer), false, false, true); } else { flightComputer.RemoveManeuverCommandByNode(node); } } GUILayout.EndArea(); } } } } } } ================================================ FILE: src/RemoteTech/UI/NetworkCone.cs ================================================ using System; using System.Linq; using UnityEngine; namespace RemoteTech.UI { public class NetworkCone : MonoBehaviour { private static Material CommNetMaterial = null; public Vector3d Center { set { UpdateMesh(value, Antenna); } } public IAntenna Antenna { get; set; } public float LineWidth { get; set; } public Material Material { set { mRenderer.material = value; } } public Color Color { set { mMeshFilter.mesh.colors = Enumerable.Repeat(value, 8).ToArray(); } } public bool Active { set { mRenderer.enabled = value; gameObject.SetActive(value); } } private MeshFilter mMeshFilter; private MeshRenderer mRenderer; private Vector3[] mPoints2D = new Vector3[8]; private Vector3[] mPoints3D = new Vector3[8]; public static NetworkCone Instantiate() { return new GameObject("NetworkCone", typeof(NetworkCone)).GetComponent(); } public void Awake() { if (CommNetMaterial == null) { CommNetMaterial = Resources.Load("Telemetry/TelemetryMaterial"); } SetupMesh(); gameObject.layer = 31; LineWidth = 1.0f; Color = Color.white; Material = CommNetMaterial; } private void UpdateMesh(Vector3d center, IAntenna dish) { var camera = PlanetariumCamera.Camera; Vector3d antennaPos = ScaledSpace.LocalToScaledSpace(RTCore.Instance.Network[dish.Guid].Position); Vector3d planetPos = ScaledSpace.LocalToScaledSpace(center); CelestialBody refFrame = (MapView.MapCamera.target.vessel != null ? MapView.MapCamera.target.vessel.mainBody : MapView.MapCamera.target.celestialBody); Vector3 up = (refFrame != null ? refFrame.transform.up : Vector3.up); Vector3 space = Vector3.Cross(planetPos - antennaPos, up).normalized * Vector3.Distance(antennaPos, planetPos) * (float)Math.Tan(Math.Acos(dish.CosAngle)); Vector3d end1 = antennaPos + (planetPos + space - antennaPos).normalized * Math.Min(dish.Dish / ScaledSpace.ScaleFactor, Vector3.Distance(antennaPos, planetPos)); Vector3d end2 = antennaPos + (planetPos - space - antennaPos).normalized * Math.Min(dish.Dish / ScaledSpace.ScaleFactor, Vector3.Distance(antennaPos, planetPos)); Vector3 lineStart = camera.WorldToScreenPoint(antennaPos); Vector3 lineEnd1 = camera.WorldToScreenPoint(end1); Vector3 lineEnd2 = camera.WorldToScreenPoint(end2); var segment1 = new Vector3(lineEnd1.y - lineStart.y, lineStart.x - lineEnd1.x, 0).normalized * (LineWidth / 2); var segment2 = new Vector3(lineEnd2.y - lineStart.y, lineStart.x - lineEnd2.x, 0).normalized * (LineWidth / 2); if (!MapView.Draw3DLines) { //if position is behind camera if (lineStart.z < 0) { Vector3 coneCenter = camera.WorldToScreenPoint(planetPos); lineStart = NetworkLine.FlipDirection(lineStart, coneCenter); } else if (lineEnd1.z < 0 || lineEnd2.z < 0) { lineEnd1 = NetworkLine.FlipDirection(lineEnd1, lineStart); lineEnd2 = NetworkLine.FlipDirection(lineEnd2, lineStart); } int dist = Screen.height / 2; lineStart.z = lineStart.z > 0 ? dist : -dist; lineEnd1.z = lineEnd1.z > 0 ? dist : -dist; lineEnd2.z = lineEnd2.z > 0 ? dist : -dist; mPoints2D[0] = (lineStart - segment1); mPoints2D[1] = (lineStart + segment1); mPoints2D[2] = (lineEnd1 - segment1); mPoints2D[3] = (lineEnd1 + segment1); mPoints2D[4] = (lineStart - segment2); mPoints2D[5] = (lineStart + segment2); mPoints2D[6] = (lineEnd2 - segment2); mPoints2D[7] = (lineEnd2 + segment2); } else { mPoints3D[0] = camera.ScreenToWorldPoint(lineStart - segment1); mPoints3D[1] = camera.ScreenToWorldPoint(lineStart + segment1); mPoints3D[2] = camera.ScreenToWorldPoint(lineEnd1 - segment1); mPoints3D[3] = camera.ScreenToWorldPoint(lineEnd1 + segment1); mPoints3D[4] = camera.ScreenToWorldPoint(lineStart - segment2); mPoints3D[5] = camera.ScreenToWorldPoint(lineStart + segment2); mPoints3D[6] = camera.ScreenToWorldPoint(lineEnd2 - segment2); mPoints3D[7] = camera.ScreenToWorldPoint(lineEnd2 + segment2); } mMeshFilter.mesh.vertices = MapView.Draw3DLines ? mPoints3D : mPoints2D; if (!MapView.Draw3DLines) { var bounds = new Bounds(); bounds.center = new Vector3(Screen.width / 2, Screen.height / 2, Screen.height / 2); bounds.extents = new Vector3(Screen.width * 100, Screen.height * 100, 0.1f); mMeshFilter.mesh.bounds = bounds; } else { mMeshFilter.mesh.RecalculateBounds(); } } private void SetupMesh() { mMeshFilter = gameObject.AddComponent(); mMeshFilter.mesh = new Mesh(); mRenderer = gameObject.AddComponent(); mMeshFilter.mesh.name = "NetworkLine"; mMeshFilter.mesh.vertices = new Vector3[8]; mMeshFilter.mesh.uv = new Vector2[8] { new Vector2(0, 1), new Vector2(0, 0), new Vector2(1, 1), new Vector2(1, 0), new Vector2(0, 1), new Vector2(0, 0), new Vector2(1, 1), new Vector2(1, 0) }; mMeshFilter.mesh.SetIndices(new int[] { 0, 2, 1, 2, 3, 1, 4, 6, 5, 6, 7, 5}, MeshTopology.Triangles, 0); mMeshFilter.mesh.MarkDynamic(); Active = false; } public void OnDestroy() { Active = false; Destroy(mMeshFilter); Destroy(mRenderer); } } } ================================================ FILE: src/RemoteTech/UI/NetworkLine.cs ================================================ using RemoteTech.SimpleTypes; using System.Linq; using UnityEngine; namespace RemoteTech.UI { public class NetworkLine : MonoBehaviour { private static Material CommNetMaterial = null; public BidirectionalEdge Edge { set { UpdateMesh(value); } } public float LineWidth { get; set; } public Material Material { set { mRenderer.material = value; } } public Color Color { set { mMeshFilter.mesh.colors = Enumerable.Repeat(value, 4).ToArray(); } } public bool Active { set { mRenderer.enabled = value; gameObject.SetActive(value); } } private MeshFilter mMeshFilter; private MeshRenderer mRenderer; private Vector3[] mPoints2D = new Vector3[4]; private Vector3[] mPoints3D = new Vector3[4]; public static NetworkLine Instantiate() { return new GameObject("NetworkLine", typeof(NetworkLine)).GetComponent(); } public void Awake() { if (CommNetMaterial == null) { CommNetMaterial = Resources.Load("Telemetry/TelemetryMaterial"); } SetupMesh(); gameObject.layer = 31; LineWidth = 1.0f; Color = Color.white; Material = CommNetMaterial; } private void UpdateMesh(BidirectionalEdge edge) { var camera = PlanetariumCamera.Camera; var start = camera.WorldToScreenPoint(ScaledSpace.LocalToScaledSpace(edge.A.Position)); var end = camera.WorldToScreenPoint(ScaledSpace.LocalToScaledSpace(edge.B.Position)); var segment = new Vector3(end.y - start.y, start.x - end.x, 0).normalized * (LineWidth / 2); if (!MapView.Draw3DLines) { //if position is behind camera if (start.z < 0) { start = NetworkLine.FlipDirection(start, end); } else if (end.z < 0) { end = NetworkLine.FlipDirection(end, start); } var dist = Screen.height / 2 + 0.01f; start.z = start.z >= 0.15f ? dist : -dist; end.z = end.z >= 0.15f ? dist : -dist; mPoints2D[0] = (start - segment); mPoints2D[1] = (start + segment); mPoints2D[2] = (end - segment); mPoints2D[3] = (end + segment); } else { mPoints3D[0] = camera.ScreenToWorldPoint(start - segment); mPoints3D[1] = camera.ScreenToWorldPoint(start + segment); mPoints3D[2] = camera.ScreenToWorldPoint(end - segment); mPoints3D[3] = camera.ScreenToWorldPoint(end + segment); } mMeshFilter.mesh.vertices = MapView.Draw3DLines ? mPoints3D : mPoints2D; mMeshFilter.mesh.RecalculateBounds(); mMeshFilter.mesh.MarkDynamic(); } private void SetupMesh() { mMeshFilter = gameObject.AddComponent(); mMeshFilter.mesh = new Mesh(); mRenderer = gameObject.AddComponent(); mMeshFilter.mesh.name = "NetworkLine"; mMeshFilter.mesh.vertices = new Vector3[4]; mMeshFilter.mesh.uv = new Vector2[4] { new Vector2(0, 1), new Vector2(0, 0), new Vector2(1, 1), new Vector2(1, 0) }; mMeshFilter.mesh.SetIndices(new int[] { 0, 2, 1, 2, 3, 1 }, MeshTopology.Triangles, 0); Active = false; } public void OnDestroy() { Active = false; Destroy(mMeshFilter); Destroy(mRenderer); } public static Vector3 FlipDirection(Vector3 point, Vector3 pivot) { point -= pivot; //translate to origin point.x *= -1; //flip point.y *= -1; point.z *= -1; point += pivot; //undo translate return point; } } } ================================================ FILE: src/RemoteTech/UI/OptionWindow.cs ================================================ using System; using System.Collections.Generic; using System.Linq; using UnityEngine; using KSP.Localization; namespace RemoteTech.UI { class OptionWindow : AbstractWindow { #region Member /// Defines the option window width const uint WINDOW_WIDTH = 430; /// Defines the option window height const uint WINDOW_HEIGHT = 320; /// Option menu items public enum OPTION_MENUS { Start = 0, Presets, WorldScale, AlternativeRules, VisualStyle, Miscellaneous, Cheats } /// Small gray hint text color private GUIStyle mGuiHintText; /// Small white running text color private GUIStyle mGuiRunningText; /// Textstyle for list entrys private GUIStyle mGuiListText; /// Button style for list entrys private GUIStyle mGuiListButton; /// Texture to represent the dish color private Texture2D mVSColorDish; /// Texture to represent the omni color private Texture2D mVSColorOmni; /// Texture to represent the active color private Texture2D mVSColorActive; /// Texture to represent the remote station color private Texture2D mVSColorRemoteStation; /// Toggles the color slider for the dish color private bool dishSlider = false; /// Toggles the color slider for the omni color private bool omniSlider = false; /// Toggles the color slider for the active color private bool activeSlider = false; /// Toggles the color slider for the remote station color private bool remoteStationSlider = false; /// HeadlineImage private Texture2D mTexHeadline; /// Positionvector for the content scroller private Vector2 mOptionScrollPosition; /// Reference to the RTSettings private Settings mSettings { get { return RTSettings.Instance; } } /// Current selected menu item private int mMenuValue; #endregion #region AbstractWindow-Definitions public OptionWindow() : base(new Guid("387AEB5A-D29C-485B-B96F-CA575E776940"), Localizer.Format("#RT_OptionWindow_title",RTUtil.Version),//"RemoteTech " + + " Options" new Rect(Screen.width / 2 - (OptionWindow.WINDOW_WIDTH / 2), Screen.height / 2 - (OptionWindow.WINDOW_HEIGHT / 2), OptionWindow.WINDOW_WIDTH, OptionWindow.WINDOW_HEIGHT), WindowAlign.Floating) { this.mMenuValue = (int)OPTION_MENUS.Start; this.mCloseButton = false; this.initalAssets(); } public override void Hide() { RTSettings.Instance.Save(); // Set the AppLauncherbutton to false if(RemoteTech.RTSpaceCentre.LauncherButton != null) { RemoteTech.RTSpaceCentre.LauncherButton.SetFalse(); } base.Hide(); } #endregion #region Base-drawing /// /// Draws the content of the window /// public override void Window(int uid) { // push the current GUI.skin var pushSkin = GUI.skin; GUI.skin = HighLogic.Skin; GUILayout.BeginVertical(GUILayout.Width(OptionWindow.WINDOW_WIDTH), GUILayout.Height(OptionWindow.WINDOW_HEIGHT)); { // Header image GUI.DrawTexture(new Rect(16, 25, OptionWindow.WINDOW_WIDTH - 14, 70), this.mTexHeadline); GUILayout.Space(70); this.drawOptionMenu(); this.drawOptionContent(); } GUILayout.EndVertical(); if (GUILayout.Button(Localizer.Format("#RT_OptionWindow_closebutton")))//"Close" { this.Hide(); RTSettings.OnSettingsChanged.Fire(); } base.Window(uid); // pop back the saved skin GUI.skin = pushSkin; } #endregion /// /// Initializes the styles and assets /// private void initalAssets() { // initial styles this.mGuiHintText = new GUIStyle(HighLogic.Skin.label) { fontSize = 11, normal = { textColor = XKCDColors.Grey } }; this.mGuiRunningText = new GUIStyle(HighLogic.Skin.label) { fontSize = 13, normal = { textColor = Color.white } }; this.mGuiListText = new GUIStyle(HighLogic.Skin.label) { fontSize = 12, }; this.mGuiListButton = new GUIStyle(HighLogic.Skin.button) { fontSize = 12, normal = { textColor = Color.white } }; // initial Textures mTexHeadline = RTUtil.LoadImage("headline"); // Visual style colors this.loadColorTexture(out this.mVSColorDish, this.mSettings.DishConnectionColor); this.loadColorTexture(out this.mVSColorOmni, this.mSettings.OmniConnectionColor); this.loadColorTexture(out this.mVSColorActive, this.mSettings.ActiveConnectionColor); this.loadColorTexture(out this.mVSColorRemoteStation, this.mSettings.RemoteStationColorDot); } /// /// Draws the option menu /// private void drawOptionMenu() { GUILayout.BeginHorizontal(); { // push the font size of buttons var pushFontsize = GUI.skin.button.fontSize; GUI.skin.button.fontSize = 11; foreach (OPTION_MENUS menu in Enum.GetValues(typeof(OPTION_MENUS))) { RTUtil.FakeStateButton(new GUIContent(menu.ToString()), () => this.mMenuValue = (int)menu, this.mMenuValue, (int)menu, GUILayout.Height(16)); } // pop the saved button size back GUI.skin.button.fontSize = pushFontsize; } GUILayout.EndHorizontal(); } /// /// Draw current GUI content based on the user selection /// private void drawOptionContent() { GUILayout.BeginHorizontal(); { this.mOptionScrollPosition = GUILayout.BeginScrollView(this.mOptionScrollPosition); { switch ((OPTION_MENUS)this.mMenuValue) { case OPTION_MENUS.WorldScale: { this.drawWorldScaleContent(); break; } case OPTION_MENUS.AlternativeRules: { this.drawAlternativeRulesContent(); break; } case OPTION_MENUS.VisualStyle: { this.drawVisualStyleContent(); break; } case OPTION_MENUS.Miscellaneous: { this.drawMiscellaneousContent(); break; } case OPTION_MENUS.Presets: { this.drawPresetsContent(); break; } case OPTION_MENUS.Cheats: { this.drawCheatContent(); break; } case OPTION_MENUS.Start: default: { this.drawStartContent(); break; } } } GUILayout.EndScrollView(); } GUILayout.EndHorizontal(); } /// /// Draws the content of the Start section /// private void drawStartContent() { GUILayout.Space(10); GUILayout.Label(Localizer.Format("#RT_OptionWindow_start_Text"), this.mGuiRunningText);//"Use the small menu buttons above to navigate through the different options." /* Commented out because there is an issue of conflicts between RT and CommNet (stock and RT modules in each antenna) and RT is moving into CommNet inevitably GUILayout.Space(10); GUILayout.BeginHorizontal(); { GUILayout.Space(90); this.mSettings.RemoteTechEnabled = GUILayout.Toggle(this.mSettings.RemoteTechEnabled, (this.mSettings.RemoteTechEnabled) ? "RemoteTech enabled" : "RemoteTech disabled"); } GUILayout.EndHorizontal(); GUILayout.Space(5); GUILayout.BeginHorizontal(); { GUILayout.Space(90); this.mSettings.CommNetEnabled = (HighLogic.fetch.currentGame.Parameters.Difficulty.EnableCommNet = GUILayout.Toggle(this.mSettings.CommNetEnabled, (this.mSettings.CommNetEnabled) ? "CommNet enabled" : "CommNet disabled")); } GUILayout.EndHorizontal(); */ GUILayout.Space(90); GUILayout.Label(Localizer.Format("#RT_OptionWindow_start_Text2"), this.mGuiRunningText);//"Need some help with RemoteTech? Check out the online manual and tutorials. If you can't find your answer, post in the forum thread.\n(Browser opens on click)" GUILayout.BeginHorizontal(); { if(GUILayout.Button(Localizer.Format("#RT_OptionWindow_start_button1")))//"Online Manual and Tutorials" { Application.OpenURL("http://remotetechnologiesgroup.github.io/RemoteTech/"); } if(GUILayout.Button(Localizer.Format("#RT_OptionWindow_start_button2")))//"KSP Forum" { Application.OpenURL("http://forum.kerbalspaceprogram.com/threads/83305"); } } GUILayout.EndHorizontal(); } /// /// Draws the content of the WorldScale section /// private void drawWorldScaleContent() { GUILayout.Label(Localizer.Format("#RT_OptionWindow_WorldScale_ConsMulti_head",this.mSettings.ConsumptionMultiplier), GUILayout.Width(OptionWindow.WINDOW_WIDTH * 0.75f));//"Consumption Multiplier: (" + + ")" GUILayout.Label(Localizer.Format("#RT_OptionWindow_WorldScale_ConsMulti_text"), this.mGuiHintText);//"If set to a value other than 1, the power consumption of all antennas will be increased or decreased by this factor.\nDoes not affect energy consumption for science transmissions." this.mSettings.ConsumptionMultiplier = (float)Math.Round(GUILayout.HorizontalSlider(this.mSettings.ConsumptionMultiplier, 0, 2), 2); // Re-scaling Kerbin by 10.625x to create Earth-like planet size requires Multipliers of 10 for orbital satellite network with full coverage to be practical GUILayout.Label(Localizer.Format("#RT_OptionWindow_WorldScale_RangeMulti_head", this.mSettings.RangeMultiplier), GUILayout.Width(OptionWindow.WINDOW_WIDTH * 0.75f));//"Antennas Range Multiplier: (" + + ")" GUILayout.Label(Localizer.Format("#RT_OptionWindow_WorldScale_RangeMulti_text"), this.mGuiHintText);//"If set to a value other than 1, the range of all antennas will be increased or decreased by this factor.\nDoes not affect Mission Control range." mSettings.RangeMultiplier = (float)Math.Round(GUILayout.HorizontalSlider(mSettings.RangeMultiplier, 0, 10), 2); GUILayout.Label(Localizer.Format("#RT_OptionWindow_WorldScale_MissionControlRangeMulti_head",mSettings.MissionControlRangeMultiplier), GUILayout.Width(OptionWindow.WINDOW_WIDTH * 0.75f));//"Mission Control Range Multiplier: (" + + ")" GUILayout.Label(Localizer.Format("#RT_OptionWindow_WorldScale_MissionControlRangeMulti_text"), this.mGuiHintText);//"If set to a value other than 1, the range of all Mission Controls will be increased or decreased by this factor.\nDoes not affect antennas range." mSettings.MissionControlRangeMultiplier = (float)Math.Round(GUILayout.HorizontalSlider(mSettings.MissionControlRangeMultiplier, 0, 10), 2); } /// /// Draws the content of the AlternativeRules section /// private void drawAlternativeRulesContent() { GUILayout.Space(10); this.mSettings.EnableSignalDelay = GUILayout.Toggle(this.mSettings.EnableSignalDelay, (this.mSettings.EnableSignalDelay) ? Localizer.Format("#RT_OptionWindow_AlternativeRules_EnableSignalDelay") : Localizer.Format("#RT_OptionWindow_AlternativeRules_disabledSignalDelay"));//"Signal delay enabled""Signal delay disabled" GUILayout.Label(Localizer.Format("#RT_OptionWindow_AlternativeRules_SignalDelaydesc"), this.mGuiHintText);//"ON: All commands sent to RemoteTech-compatible probe cores are limited by the speed of light and have a delay before executing, based on distance.\nOFF: All commands will be executed immediately, although a working connection to Mission Control is still required." GUILayout.Label(Localizer.Format("#RT_OptionWindow_AlternativeRules_RangeModelMode_head"), GUILayout.Width(OptionWindow.WINDOW_WIDTH * 0.75f));//"Range Model Mode" GUILayout.Label(Localizer.Format("#RT_OptionWindow_AlternativeRules_RangeModelMode_text"), this.mGuiHintText);//"This setting controls how the game determines whether two antennas are in range of each other.\nRead more on our online manual about the difference for each rule." GUILayout.BeginHorizontal(); { RTUtil.FakeStateButton(new GUIContent(Localizer.Format("#RT_OptionWindow_AlternativeRules_RangeModelMode_Standard")), () => this.mSettings.RangeModelType = RangeModel.RangeModel.Standard, (int)this.mSettings.RangeModelType, (int)RangeModel.RangeModel.Standard, GUILayout.Height(20));//"Standard" RTUtil.FakeStateButton(new GUIContent(Localizer.Format("#RT_OptionWindow_AlternativeRules_RangeModelMode_Root")), () => this.mSettings.RangeModelType = RangeModel.RangeModel.Additive, (int)this.mSettings.RangeModelType, (int)RangeModel.RangeModel.Additive, GUILayout.Height(20));//"Root" } GUILayout.EndHorizontal(); GUILayout.Label(Localizer.Format("#RT_OptionWindow_AlternativeRules_MultipleAntennaMulti_head",this.mSettings.MultipleAntennaMultiplier), GUILayout.Width(OptionWindow.WINDOW_WIDTH * 0.75f));//"Multiple Antenna Multiplier : (" + + ")" GUILayout.Label(Localizer.Format("#RT_OptionWindow_AlternativeRules_MultipleAntennaMulti_text"), this.mGuiHintText);//"Multiple omnidirectional antennas on the same craft work together.\nThe default value of 0 means this is disabled.\nThe largest value of 1.0 sums the range of all omnidirectional antennas to provide a greater effective range.\nThe effective range scales linearly and this option works with both the Standard and Root range models." this.mSettings.MultipleAntennaMultiplier = Math.Round(GUILayout.HorizontalSlider((float)mSettings.MultipleAntennaMultiplier, 0, 1), 2); } /// /// Draws the content of the VisualStyle section /// private void drawVisualStyleContent() { GUILayout.BeginHorizontal(); { GUILayout.Label(Localizer.Format("#RT_OptionWindow_VisualStyle_DishColor"), GUILayout.Width(OptionWindow.WINDOW_WIDTH * 0.75f));//"Dish Connection Color:" if(GUILayout.Button(this.mVSColorDish, GUILayout.Width(18))) { this.dishSlider = !this.dishSlider; } } GUILayout.EndHorizontal(); if (this.dishSlider) { this.mSettings.DishConnectionColor = this.drawColorSlider(this.mSettings.DishConnectionColor); this.loadColorTexture(out this.mVSColorDish, this.mSettings.DishConnectionColor); } GUILayout.BeginHorizontal(); { GUILayout.Label(Localizer.Format("#RT_OptionWindow_VisualStyle_OmniColor"), GUILayout.Width(OptionWindow.WINDOW_WIDTH * 0.75f));//"Omni Connection Color:" if(GUILayout.Button(this.mVSColorOmni, GUILayout.Width(18))) { this.omniSlider = !this.omniSlider; } } GUILayout.EndHorizontal(); if (this.omniSlider) { this.mSettings.OmniConnectionColor = this.drawColorSlider(this.mSettings.OmniConnectionColor); this.loadColorTexture(out this.mVSColorOmni, this.mSettings.OmniConnectionColor); } GUILayout.BeginHorizontal(); { GUILayout.Label(Localizer.Format("#RT_OptionWindow_VisualStyle_ActiveColor"), GUILayout.Width(OptionWindow.WINDOW_WIDTH * 0.75f));//"Active Connection Color:" if(GUILayout.Button(this.mVSColorActive, GUILayout.Width(18))) { this.activeSlider = !this.activeSlider; } } GUILayout.EndHorizontal(); if (this.activeSlider) { this.mSettings.ActiveConnectionColor = this.drawColorSlider(this.mSettings.ActiveConnectionColor); this.loadColorTexture(out this.mVSColorActive, this.mSettings.ActiveConnectionColor); } GUILayout.BeginHorizontal(); { GUILayout.Label(Localizer.Format("#RT_OptionWindow_VisualStyle_RemoteStationColor"), GUILayout.Width(OptionWindow.WINDOW_WIDTH * 0.75f));//"Remote Station Color:" if (GUILayout.Button(this.mVSColorRemoteStation, GUILayout.Width(18))) { this.remoteStationSlider = !this.remoteStationSlider; } } GUILayout.EndHorizontal(); if (this.remoteStationSlider) { this.mSettings.RemoteStationColorDot = this.drawColorSlider(this.mSettings.RemoteStationColorDot); this.loadColorTexture(out this.mVSColorRemoteStation, this.mSettings.RemoteStationColorDot); } GUILayout.Space(10); GUILayout.BeginScrollView(new Vector2(), false, false, GUILayout.Height(10)); { } GUILayout.EndScrollView(); GUILayout.Space(10); this.mSettings.HideGroundStationsBehindBody = GUILayout.Toggle(this.mSettings.HideGroundStationsBehindBody, (this.mSettings.HideGroundStationsBehindBody) ? Localizer.Format("#RT_OptionWindow_VisualStyle_StationsBehindBodyHide") : Localizer.Format("#RT_OptionWindow_VisualStyle_StationsBehindBodyShow"));//"Ground Stations are hidden behind bodies""Ground Stations always shown" GUILayout.Label(Localizer.Format("#RT_OptionWindow_VisualStyle_StationsBehindBodytext"), this.mGuiHintText);//"ON: Ground Stations are occluded by the planet or body, and are not visible behind it.\nOFF: Ground Stations are always shown (see range option below)." this.mSettings.HideGroundStationsOnDistance = GUILayout.Toggle(this.mSettings.HideGroundStationsOnDistance, (this.mSettings.HideGroundStationsOnDistance) ? Localizer.Format("#RT_OptionWindow_VisualStyle_StationsOnDistancehide") : Localizer.Format("#RT_OptionWindow_VisualStyle_StationsOnDistanceShow"));//"Ground Stations are hidden at a defined distance""Ground Stations always shown" GUILayout.Label(Localizer.Format("#RT_OptionWindow_VisualStyle_StationsOnDistanceText"), this.mGuiHintText);//"ON: Ground Stations will not be shown past a defined distance to the mapview camera.\nOFF: Ground Stations are shown regardless of distance." this.mSettings.ShowMouseOverInfoGroundStations = GUILayout.Toggle(this.mSettings.ShowMouseOverInfoGroundStations, (this.mSettings.ShowMouseOverInfoGroundStations) ? Localizer.Format("#RT_OptionWindow_VisualStyle_MouseOverInfoGroundStationsE") : Localizer.Format("#RT_OptionWindow_VisualStyle_MouseOverInfoGroundStationsD"));//"Mouseover of Ground Stations enabled""Mouseover of Ground Stations disabled" GUILayout.Label(Localizer.Format("#RT_OptionWindow_VisualStyle_MouseOverInfoGroundStationsDesc"), this.mGuiHintText);//"ON: Some useful information is shown when you mouseover a Ground Station on the map view or Tracking Station.\nOFF: Information isn't shown during mouseover." } /// /// Draws the content of the Miscellaneous section /// private void drawMiscellaneousContent() { GUILayout.Space(10); this.mSettings.ThrottleTimeWarp = GUILayout.Toggle(this.mSettings.ThrottleTimeWarp, (this.mSettings.ThrottleTimeWarp) ? Localizer.Format("#RT_OptionWindow_Miscellaneous_ThrottleTimeWarp") : Localizer.Format("#RT_OptionWindow_Miscellaneous_NoThrottleTimeWarp"));//"RemoteTech will throttle time warp""RemoteTech will not throttle time warp" GUILayout.Label(Localizer.Format("#RT_OptionWindow_Miscellaneous_ThrottleTimeWarp_text"), this.mGuiHintText);//"ON: The flight computer will automatically stop time warp a few seconds before executing a queued command.\nOFF: The player is responsible for controlling time warp during scheduled actions." this.mSettings.ThrottleZeroOnNoConnection = GUILayout.Toggle(this.mSettings.ThrottleZeroOnNoConnection, (this.mSettings.ThrottleZeroOnNoConnection) ? Localizer.Format("#RT_OptionWindow_Miscellaneous_ThrottleZeroOnNoConnection") : Localizer.Format("#RT_OptionWindow_Miscellaneous_NoThrottleZeroOnNoConnection"));//"Throttle to zero on loss of connection""Throttle unaffected by loss of connection" GUILayout.Label(Localizer.Format("#RT_OptionWindow_Miscellaneous_ThrottleZeroOnNoConnection_text"), this.mGuiHintText);//"ON: The flight computer cuts the thrust if you lose connection to Mission Control.\nOFF: The throttle is not adjusted automatically." this.mSettings.StopTimeWrapOnReConnection = GUILayout.Toggle(this.mSettings.StopTimeWrapOnReConnection, (this.mSettings.StopTimeWrapOnReConnection) ? Localizer.Format("#RT_OptionWindow_Miscellaneous_StopTimeWrapOnReConnection") : Localizer.Format("#RT_OptionWindow_Miscellaneous_NoStopTimeWrapOnReConnection"));//"Stop time wrap on reconnection""Time wrap uninterrupted by reconnection" GUILayout.Label(Localizer.Format("#RT_OptionWindow_Miscellaneous_StopTimeWrapOnReConnection_text"), this.mGuiHintText);//"ON: The flight computer will automatically stop time warp when a connection is found. \nOFF: The time wrap will not be stopped when a connection is found." this.mSettings.UpgradeableMissionControlAntennas = GUILayout.Toggle(this.mSettings.UpgradeableMissionControlAntennas, (this.mSettings.UpgradeableMissionControlAntennas) ? Localizer.Format("#RT_OptionWindow_Miscellaneous_UpgradeableMissionControl") : Localizer.Format("#RT_OptionWindow_Miscellaneous_NoUpgradeableMissionControl"));//"Mission Control antennas are upgradeable""Mission Control antennas are not upgradeable" GUILayout.Label(Localizer.Format("#RT_OptionWindow_Miscellaneous_UpgradeableMissionControlText"), this.mGuiHintText);//"ON: Mission Control antenna range is upgraded when the Tracking Center is upgraded.\nOFF: Mission Control antenna range isn't upgradeable." this.mSettings.AutoInsertKaCAlerts = GUILayout.Toggle(this.mSettings.AutoInsertKaCAlerts, (this.mSettings.AutoInsertKaCAlerts) ? Localizer.Format("#RT_OptionWindow_Miscellaneous_AutoInsertKaCAlerts") : Localizer.Format("#RT_OptionWindow_Miscellaneous_NotAutoInsertKaCAlerts"));//"Alarms added to Kerbal Alarm Clock""No alarms added to Kerbal Alarm Clock" GUILayout.Label(Localizer.Format("#RT_OptionWindow_Miscellaneous_AutoInsertKaCAlertsText"), this.mGuiHintText);//"ON: The flight computer will automatically add alarms to the Kerbal Alarm Clock mod for burn and maneuver commands. The alarm goes off 3 minutes before the command executes.\nOFF: No alarms are added to Kerbal Alarm Clock" } /// /// Draws the content of the Presets section /// private void drawPresetsContent() { GUILayout.Label(Localizer.Format("#RT_OptionWindow_Presets_HelpText"), this.mGuiRunningText);//"You can revert your current settings to the starting settings, constructed from installed mods' MM patches. Also, you can reload your current settings with a third-party mod's own RemoteTech settings (the fallback in the event of no MM patch).\n\nHere you can see what presets are available:" GUILayout.Space(15); List presetList = this.mSettings.PreSets; if(this.mSettings.PreSets.Count <= 0) { GUILayout.Label(Localizer.Format("#RT_OptionWindow_Presets_NotFound"), this.mGuiRunningText);//"No presets are found" } for(int i = presetList.Count - 1; i >= 0; --i) { GUILayout.BeginHorizontal("box", GUILayout.MaxHeight(15)); { string folderName = presetList[i]; //remove the node name int index = folderName.LastIndexOf("/RemoteTechSettings"); folderName = folderName.Substring(0, index) + folderName.Substring(index).Replace("/RemoteTechSettings", "").Trim(); //change default name to better name for MM-patched settings index = folderName.LastIndexOf("/Default_Settings"); if(index>=0) folderName = folderName.Substring(0, index) + " " + folderName.Substring(index).Replace("/Default_Settings", "starting settings"); GUILayout.Space(15); GUILayout.Label(folderName, this.mGuiListText, GUILayout.ExpandWidth(true)); if(GUILayout.Button(Localizer.Format("#RT_OptionWindow_Presets_Reload"), this.mGuiListButton, GUILayout.Width(70), GUILayout.Height(20)))//"Reload" { RTSettings.ReloadSettings(this.mSettings, presetList[i]); ScreenMessages.PostScreenMessage(Localizer.Format("#RT_OptionWindow_Presets_msg1",folderName), 10);//string.Format("Your RemoteTech settings are set to {0}", ) RTLog.Notify("Overwrote current settings with this cfg {0}", RTLogLevel.LVL3, presetList[i]); } } GUILayout.EndHorizontal(); } } /// /// Draws the content of the Cheat section /// private void drawCheatContent() { GUILayout.Space(10); this.mSettings.ControlAntennaWithoutConnection = GUILayout.Toggle(this.mSettings.ControlAntennaWithoutConnection, (this.mSettings.ControlAntennaWithoutConnection) ? Localizer.Format("#RT_OptionWindow_Cheat_ControlAntennaWithoutConnection") : Localizer.Format("#RT_OptionWindow_Cheat_ControlAntennaNeedConnection"));//"No Connection needed to control antennas""Connection is needed to control antennas" GUILayout.Label(Localizer.Format("#RT_OptionWindow_Cheat_ControlAntennaWithoutConnectionText"), this.mGuiHintText);//"ON: antennas can be activated, deactivated and targeted without a connection.\nOFF: No control without a working connection." GUILayout.Space(10); this.mSettings.IgnoreLineOfSight = GUILayout.Toggle(this.mSettings.IgnoreLineOfSight, (this.mSettings.IgnoreLineOfSight) ? Localizer.Format("#RT_OptionWindow_Cheat_IgnoreLineOfSight") : Localizer.Format("#RT_OptionWindow_Cheat_NoIgnoreLineOfSight"));//"Planets and moons will not block a signal""Planets and moons will block a signal" GUILayout.Label(Localizer.Format("#RT_OptionWindow_Cheat_IgnoreLineOfSightText"), this.mGuiHintText);//"ON: Antennas and dishes will not need line-of-sight to maintain a connection, as long as they have adequate range and power.\nOFF: Antennas and dishes need line-of-sight to maintain a connection." } /// /// Paint the texture with given color /// /// /// private void loadColorTexture(out Texture2D tex, Color colorTex) { tex = new Texture2D(16, 16); tex.SetPixels32(Enumerable.Repeat((Color32)colorTex, 16 * 16).ToArray()); tex.Apply(); } /// /// Draw RBG color sliders /// /// /// private Color drawColorSlider(Color value) { GUILayout.BeginHorizontal(); GUILayout.BeginVertical(); GUILayout.Label(Localizer.Format("#RT_OptionWindow_ColorSlider_Red",(int)(value.r * 255)), this.mGuiHintText, GUILayout.Width(OptionWindow.WINDOW_WIDTH * 0.25f));//"Red: ("+ +")" value.r = GUILayout.HorizontalSlider(value.r, 0, 1); GUILayout.EndVertical(); GUILayout.BeginVertical(); GUILayout.Label(Localizer.Format("#RT_OptionWindow_ColorSlider_Green",(int)(value.g * 255)), this.mGuiHintText, GUILayout.Width(OptionWindow.WINDOW_WIDTH * 0.25f));//"Green: (" + + ")" value.g = GUILayout.HorizontalSlider(value.g, 0, 1); GUILayout.EndVertical(); GUILayout.BeginVertical(); GUILayout.Label(Localizer.Format("#RT_OptionWindow_ColorSlider_Blue", (int)(value.b * 255)), this.mGuiHintText, GUILayout.Width(OptionWindow.WINDOW_WIDTH * 0.25f));//"Blue: (" + + ")" value.b = GUILayout.HorizontalSlider(value.b, 0, 1); GUILayout.EndVertical(); GUILayout.EndHorizontal(); return value; } } } ================================================ FILE: src/RemoteTech/UI/PIDControllerFragment.cs ================================================ using RemoteTech.FlightComputer; using RemoteTech.FlightComputer.Commands; using System; using System.Collections; using UnityEngine; using KSP.Localization; namespace RemoteTech.UI { public class PIDControllerFragment : IFragment { private FlightComputer.FlightComputer mFlightComputer; private Action mOnClickQueue; private string kp = "0", ki = "0", kd = "0"; public PIDControllerFragment(FlightComputer.FlightComputer fc, Action queue) { mFlightComputer = fc; mOnClickQueue = queue; LoadFlightPIDValues(); } public void Draw() { float width3 = 156 / 3 - GUI.skin.button.margin.right * 2.0f / 3.0f; GUILayout.BeginVertical(); { Vector3 Torque = SteeringHelper.TorqueAvailable; var MoI = mFlightComputer.Vessel.MOI; //////////////// //PITCH INFO //////////////// GUILayout.Label(new GUIContent("" + Localizer.Format("#RT_PIDControllerFragment_Pitch") + ""));//"Pitch" GUILayout.BeginHorizontal(); { GUILayout.Label(new GUIContent(Localizer.Format("#RT_PIDControllerFragment_TorqueMoI"), Localizer.Format("#RT_PIDControllerFragment_TorqueMoI_desc")));//"Torque-MoI Rate: ", "Current rate of torque to mass of inertia" GUILayout.FlexibleSpace(); GUILayout.Label(new GUIContent((Torque[0] / MoI[0]).ToString("F3"))); } GUILayout.EndHorizontal(); GUILayout.BeginHorizontal(); { GUILayout.Label(new GUIContent(Localizer.Format("#RT_PIDControllerFragment_DeviationError"), Localizer.Format("#RT_PIDControllerFragment_DeviationError_desc")));//"Deviation Error: ", "Deviation from the target point" GUILayout.FlexibleSpace(); GUILayout.Label(new GUIContent(mFlightComputer.PIDController.getDeviationErrors()[0].ToString("F2"))); } GUILayout.EndHorizontal(); GUILayout.BeginHorizontal(); { GUILayout.Label(new GUIContent(Localizer.Format("#RT_PIDControllerFragment_Output"), Localizer.Format("#RT_PIDControllerFragment_Output_desc")));//"Output: ", "Output of Flight Control State" GUILayout.FlexibleSpace(); GUILayout.Label(new GUIContent(mFlightComputer.Vessel.ctrlState.pitch.ToString("F2"))); } GUILayout.EndHorizontal(); //////////////// //ROLL INFO //////////////// GUILayout.Label(new GUIContent("" + Localizer.Format("#RT_PIDControllerFragment_Roll") + ""));//"Roll" GUILayout.BeginHorizontal(); { GUILayout.Label(new GUIContent(Localizer.Format("#RT_PIDControllerFragment_TorqueMoI"), Localizer.Format("#RT_PIDControllerFragment_TorqueMoI_desc")));//"Torque-MoI Rate: ", "Current rate of torque to mass of inertia" GUILayout.FlexibleSpace(); GUILayout.Label(new GUIContent((Torque[1] / MoI[1]).ToString("F3"))); } GUILayout.EndHorizontal(); GUILayout.BeginHorizontal(); { GUILayout.Label(new GUIContent(Localizer.Format("#RT_PIDControllerFragment_DeviationError"), Localizer.Format("#RT_PIDControllerFragment_DeviationError_desc")));//"Deviation Error: ", "Deviation from the target point" GUILayout.FlexibleSpace(); GUILayout.Label(new GUIContent(mFlightComputer.PIDController.getDeviationErrors()[1].ToString("F2"))); } GUILayout.EndHorizontal(); GUILayout.BeginHorizontal(); { GUILayout.Label(new GUIContent(Localizer.Format("#RT_PIDControllerFragment_Output"), Localizer.Format("#RT_PIDControllerFragment_Output_desc")));//"Output: ", "Output of Flight Control State" GUILayout.FlexibleSpace(); GUILayout.Label(new GUIContent(mFlightComputer.Vessel.ctrlState.roll.ToString("F2"))); } GUILayout.EndHorizontal(); //////////////// //YAW INFO //////////////// GUILayout.Label(new GUIContent("" + Localizer.Format("#RT_PIDControllerFragment_Yaw") + ""));//"Yaw" GUILayout.BeginHorizontal(); { GUILayout.Label(new GUIContent(Localizer.Format("#RT_PIDControllerFragment_TorqueMoI"), Localizer.Format("#RT_PIDControllerFragment_TorqueMoI_desc")));//"Torque-MoI Rate: ", "Current rate of torque to mass of inertia" GUILayout.FlexibleSpace(); GUILayout.Label(new GUIContent((Torque[2] / MoI[2]).ToString("F3"))); } GUILayout.EndHorizontal(); GUILayout.BeginHorizontal(); { GUILayout.Label(new GUIContent(Localizer.Format("#RT_PIDControllerFragment_DeviationError"), Localizer.Format("#RT_PIDControllerFragment_DeviationError_desc")));//"Deviation Error: ", "Deviation from the target point" GUILayout.FlexibleSpace(); GUILayout.Label(new GUIContent(mFlightComputer.PIDController.getDeviationErrors()[2].ToString("F2"))); } GUILayout.EndHorizontal(); GUILayout.BeginHorizontal(); { GUILayout.Label(new GUIContent(Localizer.Format("#RT_PIDControllerFragment_Output"), Localizer.Format("#RT_PIDControllerFragment_Output_desc")));//"Output: ", "Output of Flight Control State" GUILayout.FlexibleSpace(); GUILayout.Label(new GUIContent(mFlightComputer.Vessel.ctrlState.yaw.ToString("F2"))); } GUILayout.EndHorizontal(); GUILayout.Space(10); GUILayout.Label(new GUIContent(Localizer.Format("#RT_PIDControllerFragment_PIDHelp")));//"See ni.com/white-paper/3782/en" GUILayout.BeginHorizontal(); { GUILayout.Label(new GUIContent(Localizer.Format("#RT_PIDControllerFragment_Kp"), Localizer.Format("#RT_PIDControllerFragment_Kp_desc")));//"Proportional gain", "(1) With I and D terms set to 0, increase until the output of the loop oscillates." RTUtil.TextField(ref kp, GUILayout.Width(50), GUILayout.ExpandWidth(false)); } GUILayout.EndHorizontal(); GUILayout.BeginHorizontal(); { GUILayout.Label(new GUIContent(Localizer.Format("#RT_PIDControllerFragment_Ki"), Localizer.Format("#RT_PIDControllerFragment_Ki_desc")));//"Integral", "(2) Increase to stop the oscillations." RTUtil.TextField(ref ki, GUILayout.Width(50), GUILayout.ExpandWidth(false)); } GUILayout.EndHorizontal(); GUILayout.BeginHorizontal(); { GUILayout.Label(new GUIContent(Localizer.Format("#RT_PIDControllerFragment_Kd"), Localizer.Format("#RT_PIDControllerFragment_Kd_desc")));//"Derivative", "(3) Increase until the loop is acceptably quick to its target point." RTUtil.TextField(ref kd, GUILayout.Width(50), GUILayout.ExpandWidth(false)); } GUILayout.EndHorizontal(); GUILayout.Space(5); GUILayout.BeginHorizontal(); { RTUtil.Button(new GUIContent(Localizer.Format("#RT_PIDControllerFragment_button1"), Localizer.Format("#RT_PIDControllerFragment_button1_desc")),//"SAVE", "Save all values persistently." OnSaveClick, GUILayout.Width(width3)); RTUtil.Button(new GUIContent(Localizer.Format("#RT_PIDControllerFragment_button2"), Localizer.Format("#RT_PIDControllerFragment_button2_desc")),//"APLY", "Interface all values to Flight PID Controller." () => RTCore.Instance.StartCoroutine(OnApplyClick()), GUILayout.Width(width3)); RTUtil.Button(new GUIContent(">>", Localizer.Format("#RT_PIDControllerFragment_Queue_desc")),//"Toggles the queue and delay functionality." mOnClickQueue, GUILayout.Width(width3)); } GUILayout.EndHorizontal(); } GUILayout.EndVertical(); } private IEnumerator OnApplyClick() { yield return null; if (mFlightComputer.InputAllowed) { kp = RTUtil.ConstrictNum(kp, false); ki = RTUtil.ConstrictNum(ki, false); kd = RTUtil.ConstrictNum(kd, false); mFlightComputer.Enqueue(PIDCommand.WithNewChanges(Double.Parse(kp), Double.Parse(ki), Double.Parse(kd))); } } private void OnSaveClick() { if (RTSettings.Instance != null) { RTSettings.Instance.FlightTermP = Double.Parse(kp); RTSettings.Instance.FlightTermI = Double.Parse(ki); RTSettings.Instance.FlightTermD = Double.Parse(kd); } FlightComputer.FlightComputer.PIDKp = Double.Parse(kp); FlightComputer.FlightComputer.PIDKi = Double.Parse(ki); FlightComputer.FlightComputer.PIDKd = Double.Parse(kd); } private void LoadFlightPIDValues() { if (RTSettings.Instance != null) { FlightComputer.FlightComputer.PIDKp = RTSettings.Instance.FlightTermP; FlightComputer.FlightComputer.PIDKi = RTSettings.Instance.FlightTermI; FlightComputer.FlightComputer.PIDKd = RTSettings.Instance.FlightTermD; } kp = FlightComputer.FlightComputer.PIDKp.ToString(); ki = FlightComputer.FlightComputer.PIDKi.ToString(); kd = FlightComputer.FlightComputer.PIDKd.ToString(); } } } ================================================ FILE: src/RemoteTech/UI/PowerFragment.cs ================================================ using RemoteTech.FlightComputer.Commands; using System; using System.Collections; using UnityEngine; using static RemoteTech.FlightComputer.Commands.HibernationCommand; using KSP.Localization; namespace RemoteTech.UI { public class PowerFragment : IFragment { private FlightComputer.FlightComputer mFlightComputer; private Action mOnClickQueue; private PowerModes mPowerMode; public PowerFragment(FlightComputer.FlightComputer fc, Action queue) { mFlightComputer = fc; mOnClickQueue = queue; mPowerMode = PowerModes.Normal; } public void Draw() { float width3 = 156 / 3 - GUI.skin.button.margin.right * 2.0f / 3.0f; GUILayout.BeginVertical(); { GUILayout.BeginHorizontal(); { RTUtil.FakeStateButton(new GUIContent(Localizer.Format("#RT_PowerFragment_HBNT"), Localizer.Format("#RT_PowerFragment_HBNT_desc")), () => RTCore.Instance.StartCoroutine(OnPowerClick(PowerModes.Hibernate)), (int)mPowerMode, (int)PowerModes.Hibernate, GUILayout.Width(width3));//"HBNT", "Ultra-low power hibernation with all active antennas shut down." RTUtil.FakeStateButton(new GUIContent(Localizer.Format("#RT_PowerFragment_THLD"), Localizer.Format("#RT_PowerFragment_THLD_desc")), () => RTCore.Instance.StartCoroutine(OnPowerClick(PowerModes.AntennaSaver)), (int)mPowerMode, (int)PowerModes.AntennaSaver, GUILayout.Width(width3));//"THLD", "Optimally adaptive power-saving threshold control on all antennas" RTUtil.Button(new GUIContent(Localizer.Format("#RT_PowerFragment_WAKE"), Localizer.Format("#RT_PowerFragment_WAKE_desc")), () => RTCore.Instance.StartCoroutine(OnPowerClick(PowerModes.Wake)), GUILayout.Width(width3));//"WAKE", "Terminate any power-saving state." } GUILayout.EndHorizontal(); GUILayout.Space(200); GUILayout.BeginHorizontal(); { RTUtil.Button(new GUIContent(">>", Localizer.Format("#RT_PowerFragment_Queue_desc")),//"Toggles the queue and delay functionality." mOnClickQueue, GUILayout.Width(width3)); } GUILayout.EndHorizontal(); } GUILayout.EndVertical(); } private IEnumerator OnPowerClick(PowerModes nextPowerMode) { yield return null; if (mFlightComputer.InputAllowed) { switch(nextPowerMode) { case PowerModes.Hibernate: mPowerMode = PowerModes.Hibernate; mFlightComputer.Enqueue(HibernationCommand.Hibernate()); break; case PowerModes.AntennaSaver: mPowerMode = PowerModes.AntennaSaver; mFlightComputer.Enqueue(HibernationCommand.AntennaSaver()); break; case PowerModes.Wake: mPowerMode = PowerModes.Wake; mFlightComputer.Enqueue(HibernationCommand.WakeUp()); break; default: mPowerMode = PowerModes.Normal; break; } } } public void getActivePowerMode() { var activeHibCommand = HibernationCommand.findActiveHibernationCmd(mFlightComputer); if(activeHibCommand != null) { mPowerMode = activeHibCommand.PowerMode; } } } } ================================================ FILE: src/RemoteTech/UI/QueueFragment.cs ================================================ using System; using System.Collections; using System.Collections.Generic; using System.Text; using RemoteTech.FlightComputer.Commands; using UnityEngine; using KSP.Localization; namespace RemoteTech.UI { public class QueueFragment : IFragment { private readonly FlightComputer.FlightComputer mFlightComputer; private Vector2 mScrollPosition; private String mExtraDelay; private double Delay { get { return RTUtil.TryParseDuration(mExtraDelay); } set { mExtraDelay = value.ToString(); } } private GUIContent Status { get { var tooltip = new List(); var status = new List(); if ((mFlightComputer.Status & FlightComputer.FlightComputer.State.NoConnection) == FlightComputer.FlightComputer.State.NoConnection) { status.Add(Localizer.Format("#RT_QueueFragment_statu1"));//"Connection Error" tooltip.Add(Localizer.Format("#RT_QueueFragment_statu1_desc"));//"Cannot queue commands" } if ((mFlightComputer.Status & FlightComputer.FlightComputer.State.OutOfPower) == FlightComputer.FlightComputer.State.OutOfPower) { status.Add(Localizer.Format("#RT_QueueFragment_statu2"));//"Out of Power" tooltip.Add(Localizer.Format("#RT_QueueFragment_statu2_desc"));//"Commands can be missed" tooltip.Add(Localizer.Format("#RT_QueueFragment_statu2_desc2"));//"Timers halt" } if ((mFlightComputer.Status & FlightComputer.FlightComputer.State.NotMaster) == FlightComputer.FlightComputer.State.NotMaster) { status.Add(Localizer.Format("#RT_QueueFragment_statu3"));//"Slave" tooltip.Add(Localizer.Format("#RT_QueueFragment_statu3_desc"));//"Has no control" } if ((mFlightComputer.Status & FlightComputer.FlightComputer.State.Packed) == FlightComputer.FlightComputer.State.Packed) { status.Add(Localizer.Format("#RT_QueueFragment_statu4"));//"Packed" tooltip.Add(Localizer.Format("#RT_QueueFragment_statu4_desc"));//"Frozen" } if (mFlightComputer.Status == FlightComputer.FlightComputer.State.Normal) { status.Add(Localizer.Format("#RT_QueueFragment_statu5"));//"All systems nominal" tooltip.Add(Localizer.Format("#RT_QueueFragment_statu5_desc"));//"None" } return new GUIContent(Localizer.Format("#RT_QueueFragment_statuText", String.Join(", ", status.ToArray())),//"Status: " + + "." Localizer.Format("#RT_QueueFragment_statuText_desc", String.Join("; ", tooltip.ToArray())));//"Effects: " + + "." } } public QueueFragment(FlightComputer.FlightComputer fc) { mFlightComputer = fc; Delay = 0; } public void Draw() { if (Event.current.Equals(Event.KeyboardEvent("return")) && GUI.GetNameOfFocusedControl() == "rt_xd") { RTCore.Instance.StartCoroutine(onClickAddExtraDelay()); } GUILayout.BeginVertical(); { mScrollPosition = GUILayout.BeginScrollView(mScrollPosition, GUILayout.Width(250)); { { GUILayout.BeginHorizontal(GUI.skin.box); { var s = new StringBuilder(); foreach (var c in mFlightComputer.ActiveCommands) { s.Append(c.Description); } GUILayout.Label(s.ToString().TrimEnd(Environment.NewLine.ToCharArray())); GUILayout.FlexibleSpace(); RTUtil.Button("x", () => RTCore.Instance.StartCoroutine(OnClickReset()), GUILayout.Width(21), GUILayout.Height(21)); } GUILayout.EndHorizontal(); foreach (var c in mFlightComputer.QueuedCommands) { GUILayout.BeginHorizontal(GUI.skin.box); { GUILayout.Label(c.Description); GUILayout.FlexibleSpace(); GUILayout.BeginVertical(); { RTUtil.Button("x", () => RTCore.Instance.StartCoroutine(OnClickCancel(c)), GUILayout.Width(21), GUILayout.Height(21)); RTUtil.Button(new GUIContent("v", Localizer.Format("#RT_QueueFragment_Setsignaldelay", RTUtil.FormatDuration(c.Delay + c.ExtraDelay + getBurnTime(c), false))), () => RTCore.Instance.StartCoroutine(onClickAddExtraDelayFromQueuedCommand(c)), GUILayout.Width(21), GUILayout.Height(21));//string.Format("Set the signal delay right after this - Current: {0}", ) } GUILayout.EndVertical(); } GUILayout.EndHorizontal(); } } } GUILayout.EndScrollView(); GUILayout.Label(Status); GUILayout.BeginHorizontal(); { GUILayout.Label(new GUIContent(Localizer.Format("#RT_QueueFragment_Signaldelay", RTUtil.FormatDuration(mFlightComputer.TotalDelay)), Localizer.Format("#RT_QueueFragment_Signaldelay_desc")));//"Delay (+ signal): " "Total delay including signal delay." GUILayout.FlexibleSpace(); GUI.SetNextControlName("rt_xd"); RTUtil.TextField(ref mExtraDelay, GUILayout.Width(45)); RTUtil.Button(new GUIContent(">", Localizer.Format("#RT_QueueFragment_AddExtraDelay_desc")), () => RTCore.Instance.StartCoroutine(onClickAddExtraDelay()), GUILayout.Width(21), GUILayout.Height(21));//"Add extra signal delay - Example: 125, 125s, 5m20s, 1d6h20m10s" } GUILayout.EndHorizontal(); } GUILayout.EndVertical(); } public IEnumerator onClickAddExtraDelay() { yield return null; mFlightComputer.TotalDelay = Delay; } public IEnumerator onClickAddExtraDelayFromQueuedCommand(ICommand c) { yield return null; mExtraDelay = RTUtil.FormatDuration(c.Delay + c.ExtraDelay + getBurnTime(c), false); RTCore.Instance.StartCoroutine(onClickAddExtraDelay()); } /// /// Get the burn time from the ManeuverCommand or BurnCommand /// /// Current ocmmand /// Max burn time public double getBurnTime(ICommand c) { if (c is ManeuverCommand || c is BurnCommand) { double burnTime = (c is ManeuverCommand) ? ((ManeuverCommand)c).getMaxBurnTime(mFlightComputer) : ((BurnCommand)c).getMaxBurnTime(mFlightComputer); return burnTime; } return 0; } public IEnumerator OnClickCancel(ICommand c) { yield return null; mFlightComputer.Enqueue(CancelCommand.WithCommand(c)); } public IEnumerator OnClickReset() { yield return null; mFlightComputer.Enqueue(CancelCommand.ResetActive()); } } } ================================================ FILE: src/RemoteTech/UI/RoverFragment.cs ================================================ using System; using UnityEngine; using RemoteTech.FlightComputer.Commands; using KSP.Localization; namespace RemoteTech.UI { public class RoverFragment : IFragment { private FlightComputer.FlightComputer mFlightComputer; private Action mOnClickQueue; private bool distDefault = true; private float mSteering = 0, mSteerClamp = 1, prevTurn = 0, prevDist = 0; private string mTurn = "", mSpeed = "5", mDist = "", mLatitude = "", mLongditude = "", mHeading = ""; public RoverFragment(FlightComputer.FlightComputer fc, Action queue) { mFlightComputer = fc; mOnClickQueue = queue; } private float Turn { get { float turn; if (!Single.TryParse(mTurn, out turn)) { turn = 0; } return turn; } set { mTurn = value.ToString(); } } private float Heading { get { float heading; if (!Single.TryParse(mHeading, out heading)) { heading = 0; } return heading; } set { mHeading = value.ToString(); } } private float Speed { get { float speed; if (!Single.TryParse(mSpeed, out speed)) { speed = 0; } return speed; } set { mSpeed = value.ToString(); } } private float Dist { get { float dist; if (!Single.TryParse(mDist, out dist)) { dist = 0; } return dist; } set { mDist = value.ToString(); } } private float Latitude { get { float latitude; if (!Single.TryParse(mLatitude, out latitude)) { latitude = 0; } return latitude; } set { mLatitude = value.ToString(); } } private float Longitude { get { float longitude; if (!Single.TryParse(mLongditude, out longitude)) { longitude = 0; } return longitude; } set { mLongditude = value.ToString(); } } private void EnqueueTurn() { mFlightComputer.Enqueue(DriveCommand.Turn(mSteering, Turn, Speed)); } private void EnqueueDist() { mFlightComputer.Enqueue(DriveCommand.Distance(Dist, 0, Speed)); } private int selectedModeIndex = 0; private bool MouseClick = false; private readonly GUIContent[] Tabs = { new GUIContent(Localizer.Format("#RT_RoverFragment_TGT"), Localizer.Format("#RT_RoverFragment_TGT_desc")),//"TGT", "Drive to the latitude and longitude of a body or towards vessel target." new GUIContent(Localizer.Format("#RT_RoverFragment_HDG"), Localizer.Format("#RT_RoverFragment_HDG_desc")),//"HDG", "Drive with specific heading and distance." new GUIContent(Localizer.Format("#RT_RoverFragment_FINE"), Localizer.Format("#RT_RoverFragment_FINE_desc")) };//"FINE", "Drive with specific turning or distance." private enum RoverModes { TargetMode = 0, HeadingMode = 1, FineMode = 2 }; public void Draw() { float width3 = 156 / 3 - GUI.skin.button.margin.right * 2.0f / 3.0f; GUILayout.BeginVertical(); { selectedModeIndex = GUILayout.Toolbar(selectedModeIndex, Tabs, GUILayout.Width(width3*3 + GUI.skin.button.margin.right * 2.0f)); GUILayout.Space(5); switch (selectedModeIndex) { case (int) RoverModes.TargetMode: DrawTargetContent(); break; case (int) RoverModes.HeadingMode: DrawHDGContent(); break; case (int) RoverModes.FineMode: DrawFineContent(); break; } GUILayout.Space(5); GUILayout.BeginHorizontal(); { RTUtil.Button(new GUIContent(Localizer.Format("#RT_RoverFragment_DRIVE"), Localizer.Format("#RT_RoverFragment_DRIVE_desc")),//"DRIVE", "Starts the automatic driving." delegate { OnExecClick(selectedModeIndex); }, GUILayout.Width(width3)); GUILayout.FlexibleSpace(); RTUtil.Button(new GUIContent(">>", Localizer.Format("#RT_RoverFragment_Queue_desc")),//"Toggles the queue and delay functionality." mOnClickQueue, GUILayout.Width(width3)); } GUILayout.EndHorizontal(); } GUILayout.EndVertical(); } private void OnExecClick(int modeIndex) { //FINE if (modeIndex == (int)RoverModes.FineMode && Speed != 0) { if (mSteering != 0 && Turn != 0) EnqueueTurn(); else if (Dist != 0) EnqueueDist(); else { if (!distDefault && mSteering != 0 && Turn != 0) EnqueueTurn(); else if (distDefault && Dist != 0) EnqueueDist(); } } //HDG else if (modeIndex == (int)RoverModes.HeadingMode) { mFlightComputer.Enqueue(DriveCommand.DistanceHeading(Dist, Heading, mSteerClamp, Speed)); } //TGT else if (modeIndex == (int)RoverModes.TargetMode) { mFlightComputer.Enqueue(DriveCommand.Coord(mSteerClamp, Latitude, Longitude, Speed)); } } private void DrawFineContent() { GUILayout.BeginHorizontal(); { GUILayout.Label(new GUIContent(Localizer.Format("#RT_RoverFragment_FINESteer"), Localizer.Format("#RT_RoverFragment_FINESteer_desc")));//"Steer: ", "How much to turn" GUILayout.FlexibleSpace(); GUILayout.Label(new GUIContent(Math.Abs(mSteering).ToString("P"), "")); if (mSteering != 0) { if (mSteering < 0) GUILayout.Label(new GUIContent(Localizer.Format("#RT_RoverFragment_right"), ""), GUILayout.Width(40));//"right" else GUILayout.Label(new GUIContent(Localizer.Format("#RT_RoverFragment_left"), ""), GUILayout.Width(40));//"left" } else GUILayout.Label(new GUIContent("", ""), GUILayout.Width(40)); } GUILayout.EndHorizontal(); RTUtil.HorizontalSlider(ref mSteering, 1, -1); GUILayout.BeginHorizontal(); { GUILayout.Label(new GUIContent(Localizer.Format("#RT_RoverFragment_Turn"), Localizer.Format("#RT_RoverFragment_Turn_desc")), GUILayout.Width(50));//"Turn", "How many degrees to turn" GUI.SetNextControlName("RC1"); RTUtil.TextField(ref mTurn, GUILayout.Width(50), GUILayout.ExpandWidth(false)); GUILayout.Label(new GUIContent("(°)", Localizer.Format("#RT_RoverFragment_Turn_desc")), GUI.skin.textField, GUILayout.Width(40));//, "How many degrees to turn" } GUILayout.EndHorizontal(); GUILayout.BeginHorizontal(); { GUILayout.Label(new GUIContent(Localizer.Format("#RT_RoverFragment_Dist"), Localizer.Format("#RT_RoverFragment_Dist_desc")),GUILayout.Width(50));//"Dist", "Distance to drive" GUI.SetNextControlName("RC2"); RTUtil.TextField(ref mDist, GUILayout.Width(50), GUILayout.ExpandWidth(false)); GUILayout.Label(new GUIContent("(m)", Localizer.Format("#RT_RoverFragment_Dist_desc")), GUI.skin.textField, GUILayout.Width(40));//"Distance to drive" } GUILayout.EndHorizontal(); GUILayout.BeginHorizontal(); { GUILayout.Label(new GUIContent(Localizer.Format("#RT_RoverFragment_Speed"), Localizer.Format("#RT_RoverFragment_Speed_desc")), GUILayout.Width(50));//"Speed", "Speed to maintain, negative for reverse" GUI.SetNextControlName("RC3"); RTUtil.TextField(ref mSpeed, GUILayout.Width(50), GUILayout.ExpandWidth(false)); GUILayout.Label(new GUIContent("(m/s)", Localizer.Format("#RT_RoverFragment_Speed_desc")), GUI.skin.textField, GUILayout.Width(40));//"Speed to maintain, negative for reverse" } GUILayout.EndHorizontal(); mTurn = RTUtil.ConstrictNum(mTurn, 90); mDist = RTUtil.ConstrictNum(mDist, false); mSpeed = RTUtil.ConstrictNum(mSpeed); if (prevTurn != Turn) distDefault = false; else if (prevDist != Dist) distDefault = true; prevTurn = Turn; prevDist = Dist; } private void DrawHDGContent() { GUILayout.BeginHorizontal(); { GUILayout.Label(new GUIContent(Localizer.Format("#RT_RoverFragment_HDGSteer"), Localizer.Format("#RT_RoverFragment_HDGSteer_desc")));//"Steer: ", "How sharp to turn at max" GUILayout.FlexibleSpace(); GUILayout.Label(new GUIContent(mSteerClamp.ToString("P"), Localizer.Format("#RT_RoverFragment_HDGSteer_desc")));//"How sharp to turn at max" GUILayout.Label(new GUIContent("max", Localizer.Format("#RT_RoverFragment_HDGSteer_desc")), GUILayout.Width(40));//"How sharp to turn at max" } GUILayout.EndHorizontal(); RTUtil.HorizontalSlider(ref mSteerClamp, 0, 1); GUILayout.BeginHorizontal(); { GUILayout.Label(new GUIContent(Localizer.Format("#RT_RoverFragment_mHdg"), Localizer.Format("#RT_RoverFragment_mHdg_desc")), GUILayout.Width(50));//"Hdg", "Heading to maintain" GUI.SetNextControlName("RC1"); RTUtil.TextField(ref mHeading, GUILayout.Width(50), GUILayout.ExpandWidth(false)); GUILayout.Label("(°)", GUI.skin.textField, GUILayout.Width(40)); } GUILayout.EndHorizontal(); GUILayout.BeginHorizontal(); { GUILayout.Label(new GUIContent(Localizer.Format("#RT_RoverFragment_Dist"), Localizer.Format("#RT_RoverFragment_Dist_desc")), GUILayout.Width(50));//"Dist", "Distance to drive" GUI.SetNextControlName("RC2"); RTUtil.TextField(ref mDist, GUILayout.Width(50), GUILayout.ExpandWidth(false)); GUILayout.Label("(m)", GUI.skin.textField, GUILayout.Width(40)); } GUILayout.EndHorizontal(); GUILayout.BeginHorizontal(); { GUILayout.Label(new GUIContent(Localizer.Format("#RT_RoverFragment_Speed"), Localizer.Format("#RT_RoverFragment_HDGSpeed_desc")), GUILayout.Width(50));//"Speed", "Speed to maintain" GUI.SetNextControlName("RC3"); RTUtil.TextField(ref mSpeed, GUILayout.Width(50), GUILayout.ExpandWidth(false)); GUILayout.Label(new GUIContent("(m/s)", Localizer.Format("")), GUI.skin.textField, GUILayout.Width(40));//"Speed to maintain" } GUILayout.EndHorizontal(); mHeading = RTUtil.ConstrictNum(mHeading, 360); mDist = RTUtil.ConstrictNum(mDist, false); mSpeed = RTUtil.ConstrictNum(mSpeed, false); } private void DrawTargetContent() { string targetTypeString = Localizer.Format("#RT_RoverFragment_coordinations");//"Body coordinations" string tooltip = Localizer.Format("#RT_RoverFragment_coordinations_desc", GameSettings.MODIFIER_KEY.name);//"Hold " + + " and click on ground to input coordinates" ITargetable Target = mFlightComputer.Vessel.targetObject; if (GameSettings.MODIFIER_KEY.GetKey() && ((Input.GetMouseButton(0) || Input.GetMouseButton(1)) != MouseClick)) // on lookout for mouse click on body { MouseClick = Input.GetMouseButton(0) || Input.GetMouseButton(1); Vector2 latlon; if (MouseClick && RTUtil.CBhit(mFlightComputer.Vessel.mainBody, out latlon)) { Latitude = latlon.x; Longitude = latlon.y; } } else if (Target != null) // only if target is vessel not world coord { if (Target.GetType().ToString().Equals("Vessel")) { Vessel TargetVessel = Target as Vessel; Latitude = (float) TargetVessel.latitude; Longitude = (float) TargetVessel.longitude; targetTypeString = Localizer.Format("#RT_RoverFragment_TargetVessel");//"Designated Vessel" tooltip = Localizer.Format("#RT_RoverFragment_TargetVessel_desc");//"Drive to this vessel" } } GUILayout.BeginHorizontal(); { GUILayout.Label(new GUIContent(Localizer.Format("#RT_RoverFragment_HDGSteer"), Localizer.Format("#RT_RoverFragment_HDGSteer_desc")));//"Steer: ", "How sharp to turn at max" GUILayout.FlexibleSpace(); GUILayout.Label(new GUIContent(mSteerClamp.ToString("P"), Localizer.Format("#RT_RoverFragment_HDGSteer_desc")));//"How sharp to turn at max" GUILayout.Label(new GUIContent("max", Localizer.Format("#RT_RoverFragment_HDGSteer_desc")), GUILayout.Width(40));// "How sharp to turn at max" } GUILayout.EndHorizontal(); RTUtil.HorizontalSlider(ref mSteerClamp, 0, 1); GUILayout.Label(new GUIContent(Localizer.Format("#RT_RoverFragment_ModeLabel",targetTypeString), tooltip));//"Mode: " GUILayout.BeginHorizontal(); { GUILayout.Label(new GUIContent(Localizer.Format("#RT_RoverFragment_LAT"), Localizer.Format("#RT_RoverFragment_LAT_desc")), GUILayout.Width(50));//"LAT", "Latitude to drive to" GUI.SetNextControlName("RC1"); RTUtil.TextField(ref mLatitude, GUILayout.Width(50), GUILayout.ExpandWidth(false)); GUILayout.Label(new GUIContent("(°)", Localizer.Format("#RT_RoverFragment_coordinations_desc", GameSettings.MODIFIER_KEY.name)), GUI.skin.textField, GUILayout.Width(40));//"Hold " + + " and click on ground to input coordinates" } GUILayout.EndHorizontal(); GUILayout.BeginHorizontal(); { GUILayout.Label(new GUIContent(Localizer.Format("#RT_RoverFragment_LON"), Localizer.Format("#RT_RoverFragment_LON_desc")), GUILayout.Width(50));//"LON", "Longitude to drive to" GUI.SetNextControlName("RC2"); RTUtil.TextField(ref mLongditude, GUILayout.Width(50), GUILayout.ExpandWidth(false)); GUILayout.Label(new GUIContent("(°)", Localizer.Format("#RT_RoverFragment_coordinations_desc", GameSettings.MODIFIER_KEY.name)), GUI.skin.textField, GUILayout.Width(40));//"Hold " + + " and click on ground to input coordinates" } GUILayout.EndHorizontal(); GUILayout.BeginHorizontal(); { GUILayout.Label(new GUIContent(Localizer.Format("#RT_RoverFragment_Speed"), Localizer.Format("#RT_RoverFragment_HDGSpeed_desc")), GUILayout.Width(50));//"Speed", "Speed to maintain" GUI.SetNextControlName("RC3"); RTUtil.TextField(ref mSpeed, GUILayout.Width(50), GUILayout.ExpandWidth(false)); GUILayout.Label(new GUIContent("(m/s)", Localizer.Format("#RT_RoverFragment_HDGSpeed_desc")), GUI.skin.textField, GUILayout.Width(40));//"Speed to maintain" } GUILayout.EndHorizontal(); mLatitude = RTUtil.ConstrictNum(mLatitude); mLongditude = RTUtil.ConstrictNum(mLongditude); mSpeed = RTUtil.ConstrictNum(mSpeed, false); } } } ================================================ FILE: src/RemoteTech/UI/SatelliteFragment.cs ================================================ using System; using System.Linq; using UnityEngine; using KSP.Localization; namespace RemoteTech.UI { public class SatelliteFragment : IFragment, IDisposable { public ISatellite Satellite { get { return mSatellite; } set { if (mSatellite != value) { mSatellite = value; Antenna = null; } } } public IAntenna Antenna { get; private set; } private ISatellite mSatellite; private Vector2 mScrollPosition = Vector2.zero; public SatelliteFragment(ISatellite sat) { Satellite = sat; RTCore.Instance.Satellites.OnUnregister += Refresh; } public void Dispose() { if (RTCore.Instance != null) { RTCore.Instance.Satellites.OnUnregister -= Refresh; } } public void Draw() { if (Satellite == null) return; GUILayout.BeginHorizontal(); { GUILayout.TextField(Satellite.Name.Truncate(25), GUILayout.ExpandWidth(true)); RTUtil.Button(Localizer.Format("#RT_NetworkFB_NameButton"), () =>//"Name" { var vessel = RTUtil.GetVesselById(Satellite.Guid); if (vessel) vessel.RenameVessel(); }, GUILayout.ExpandWidth(false), GUILayout.Height(24)); } GUILayout.EndHorizontal(); mScrollPosition = GUILayout.BeginScrollView(mScrollPosition, GUILayout.ExpandHeight(true)); { Color pushColor = GUI.contentColor; TextAnchor pushAlign = GUI.skin.button.alignment; GUI.skin.button.alignment = TextAnchor.MiddleLeft; foreach (var a in Satellite.Antennas.Where(a => a.CanTarget)) { GUI.contentColor = (a.Powered) ? XKCDColors.ElectricLime : XKCDColors.Scarlet; String text = a.Name.Truncate(25) + Environment.NewLine + Localizer.Format("#RT_NetworkFB_Target") + RTUtil.TargetName(a.Target).Truncate(18);//"Target: " RTUtil.StateButton(text, Antenna, a, s => { Antenna = (s > 0) ? a : null; }); } GUI.skin.button.alignment = pushAlign; GUI.contentColor = pushColor; } GUILayout.EndScrollView(); } private void Refresh(ISatellite sat) { if (sat == Satellite) Satellite = null; } } } ================================================ FILE: src/RemoteTech/UI/TargetInfoFragment.cs ================================================ using System; using System.Collections.Generic; using System.Linq; using UnityEngine; using KSP.Localization; namespace RemoteTech.UI { public class TargetInfoFragment : IFragment, IDisposable { public class Target { public AntennaFragment.Entry TargetEntry { get; set; } public IAntenna Antenna { get; set; } public KeyValuePair TargetInfos { get { if (TargetEntry == null || Antenna == null) return new KeyValuePair("",Color.white); return NetworkFeedback.tryConnection(Antenna, TargetEntry.Guid); } } } /// Current target infos private Target target; /// Style set for each row on the target pop-up private GUIStyle guiTableRow; /// Style set for the headline of the target pop-up private GUIStyle guiHeadline; /// /// Initialize the targetinfoFragment without a target /// public TargetInfoFragment() { InitalGuiStyles(); } /// /// Initialize the targetinfoFragment with a targetEntry and an antenna /// /// Target from the antenna fragment /// current antenna public TargetInfoFragment(AntennaFragment.Entry targetEntry, IAntenna antenna) : this() { SetTarget(targetEntry, antenna); } /// /// Initialize the style sets for this fragment /// private void InitalGuiStyles() { // initial styles guiTableRow = new GUIStyle(HighLogic.Skin.label) { fontSize = 12, normal = {textColor = Color.white} }; guiHeadline = new GUIStyle(HighLogic.Skin.label) { fontSize = 13, fontStyle = FontStyle.Bold }; } /// /// Set a new target to the targetfragment with a targetEntry and an antenna /// /// Target from the antenna fragment /// current antenna public void SetTarget(AntennaFragment.Entry targetEntry, IAntenna antenna) { target = new Target {TargetEntry = targetEntry, Antenna = antenna}; } public void Dispose() { target = null; } /// /// Draw the information for the target, set by the setTarget() /// public void Draw() { if(target != null) { KeyValuePair infos = target.TargetInfos; GUILayout.Label(target.TargetEntry.Text, guiHeadline); // Split the given informations from the target.targetInfos. Each ; is one row var diagnostic = infos.Key.Split(';'); // Loop the rows foreach (var diagnosticTextLines in diagnostic) { try { GUILayout.BeginHorizontal(); // If the text contains a 'label' so we also split this text into to // seperated text parts if (diagnosticTextLines.Trim().Contains(':')) { var tableString = diagnosticTextLines.Trim().Split(':'); // draw the label GUILayout.Label(tableString[0] + ':', guiTableRow, GUILayout.Width(110)); // if the label is 'status' so change the textcolor to the color // given by the NetworkFeedback class. if (tableString[0].ToLower() == Localizer.Format("#RT_ModuleUI_Status_tolower"))//"status" { guiTableRow.normal.textColor = infos.Value; } // print the value for this row GUILayout.Label(tableString[1], guiTableRow); // restore the text color guiTableRow.normal.textColor = Color.white; } else { // if we do not have a table style information so print the complete text GUILayout.Label(diagnosticTextLines.Trim(), guiTableRow); } GUILayout.EndHorizontal(); } catch (Exception ex) { RTLog.Notify("Exception {0}",ex); // I got one exception, thrown from Unity and i don't know how to deal with it // Exception System.ArgumentException: Getting control 4's // position in a group with only 4 controls when doing Repaint } } } } } } ================================================ FILE: src/RemoteTech/UI/TargetInfoWindow.cs ================================================ using System; using UnityEngine; namespace RemoteTech.UI { public class TargetInfoWindow : AbstractWindow { /// Initial Window width of the targetInfowWindow private const float WINDOW_WIDTH = 180; /// Initial Window width of the targetInfowWindow private const float WINDOW_HEIGHT = 10; public static Guid Guid = new Guid("c6ba7467-7ecd-dcc4-5861-46bcc25d5f45"); /// The rearranged position based on the parent window or a fixed rect private Rect parentPos; /// Holds the parent window to always get the current position of it public AbstractWindow ParentWindow { get; set; } /// The alignment of this window private WindowAlign PopupAlignment { get; set; } /// Trigger to get the position from the parent window or not private bool FixPosition { get; set; } //////////////////////////// TargetInfoFragment tif; /// /// Base initial method /// /// Alignment of this window private void Initial(WindowAlign alignment) { PopupAlignment = alignment; tif = new TargetInfoFragment(); Hide(); } /// /// Empty Constructor /// private TargetInfoWindow() : base(Guid, null, new Rect(100, 100, WINDOW_WIDTH, WINDOW_HEIGHT), WindowAlign.Floating) { } /// /// Initialize the TargetWindow with a parent AbstractWindow /// /// Parent window for rearrange the position /// Alignment of the targetWindow public TargetInfoWindow(AbstractWindow parentWindow, WindowAlign alignment): this() { ParentWindow = parentWindow; Initial(alignment); // we are not on a fixed position for this targetwindow FixPosition = false; } /// /// Initialize the TargetWindow with a fix position rect /// /// Position of the targetWindow /// Alignment of the targetWindow public TargetInfoWindow(Rect position, WindowAlign alignment): this() { parentPos = position; Initial(alignment); // we are on a fixed position for this targetwindow FixPosition = true; } /// /// Set a new target for this targetwindow /// /// Target from the antenna fragment /// current antenna public void SetTarget(AntennaFragment.Entry target,IAntenna antenna) { tif.SetTarget(target, antenna); } /// /// Open this window /// public override void Show() { CalculatePosition(); base.Show(); } /// /// Close this window /// public override void Hide() { if (tif != null) tif.Dispose(); base.Hide(); } /// /// Draw the base for this window with the targetFragment in it /// public override void Window(int uid) { Color pushColor = GUI.contentColor; GUI.skin = HighLogic.Skin; // set the max dimension of this vertical to the main dimension, set in the constructor GUILayout.BeginVertical(GUILayout.Width(WINDOW_WIDTH), GUILayout.Height(WINDOW_HEIGHT)); { tif.Draw(); } GUILayout.EndVertical(); GUI.contentColor = pushColor; base.Window(uid); } /// /// Calculates the new position. This method is needed for the non fixed version /// of this window. To get the new position of the parentWindow if it was dragged. /// public void CalculatePosition() { if (!FixPosition) { // get the new position from the parent window parentPos = ParentWindow.Position; parentPos.width = ParentWindow.mInitialWidth; parentPos.height = ParentWindow.mInitialHeight; } // refresh the position of the targetWindow SetXPosition(parentPos.x); SetYPosition(parentPos.y); // auto rearrange the position of this window var aligmentSwitcher = PopupAlignment; if (aligmentSwitcher == WindowAlign.Floating) { // check if we are outside the screen than flip to the other side if (parentPos.x + parentPos.width + mInitialWidth < Screen.width) { aligmentSwitcher = WindowAlign.TopRight; } else { aligmentSwitcher = WindowAlign.TopLeft; } } // switch the current alignment switch (aligmentSwitcher) { case WindowAlign.TopRight: { SetXPosition(parentPos.x + parentPos.width); SetYPosition(parentPos.y); break; } case WindowAlign.TopLeft: { SetXPosition(parentPos.x - mInitialWidth); SetYPosition(parentPos.y); break; } } } /// /// Set the y position /// /// New absolute position on y public void SetYPosition(float yPos) { Position.y = yPos; } /// /// Set the x position /// /// New absolute position on x public void SetXPosition(float xPos) { Position.x = xPos; } } } ================================================ FILE: src/RemoteTech/UI/TimeWarpDecorator.cs ================================================ using System; using System.Linq; using RemoteTech.SimpleTypes; using UnityEngine; using KSP.UI; using KSP.Localization; namespace RemoteTech.UI { /// /// Class used to display and handle the status quadrant (time delay) and the flight computer button. /// This is located right below the time warp UI, hence its name. /// public class TimeWarpDecorator { /// /// Image for position access /// private UnityEngine.RectTransform mTimewarpTransform; /// /// Delay-Text style /// private GUIStyle mTextStyle; /// /// Green Flightcomputer button /// private readonly GUIStyle mFlightButtonGreen; /// /// Red Flightcomputer button /// private readonly GUIStyle mFlightButtonRed; /// /// Yellow Flightcomputer button /// private readonly GUIStyle mFlightButtonYellow; /// /// Delay-Timer Background /// private readonly Texture2D mTexBackground; /// /// Activ Vessel /// private VesselSatellite mVessel { get{ return RTCore.Instance.Satellites[FlightGlobals.ActiveVessel]; } } private String DisplayText { get { var vs = this.mVessel; if (vs == null) { return Localizer.Format("#RT_ConnectionStatus1");//"N/A" } else if (vs.HasLocalControl) { return Localizer.Format("#RT_ConnectionStatus2");//"Local Control" } else if (vs.Connections.Any()) { if (RTSettings.Instance.EnableSignalDelay) { return Localizer.Format("#RT_ConnectionStatus3",vs.Connections[0].Delay.ToString("F5"));//"D+ " + + "s" } else { return Localizer.Format("#RT_ConnectionStatus4");//"Connected" } } return Localizer.Format("#RT_ConnectionStatus5");//"No Connection" } } /// /// Returns the Style of the Flightcomputer button by the connected status /// private GUIStyle ButtonStyle { get { var vs = this.mVessel; if (vs == null) { return mFlightButtonRed; } else if (vs.Connections.Any()) { if (vs.HasLocalControl) return mFlightButtonYellow; return mFlightButtonGreen; } return mFlightButtonRed; } } public TimeWarpDecorator() { mFlightButtonGreen = GUITextureButtonFactory.CreateFromFilename("texFlightGreen", "texFlightGreenOver", "texFlightGreenDown", "texFlightGreenOver"); mFlightButtonYellow = GUITextureButtonFactory.CreateFromFilename("texFlightYellow", "texFlightYellowOver", "texFlightYellowDown", "texFlightYellowOver"); mFlightButtonRed = GUITextureButtonFactory.CreateFromFilename("texFlightRed", "texFlightRed", "texFlightRed", "texFlightRed"); mFlightButtonGreen.fixedHeight = mFlightButtonGreen.fixedWidth = 0; mFlightButtonYellow.fixedHeight = mFlightButtonYellow.fixedWidth = 0; mFlightButtonRed.fixedHeight = mFlightButtonRed.fixedWidth = 0; mFlightButtonGreen.stretchHeight = mFlightButtonGreen.stretchWidth = true; mFlightButtonYellow.stretchHeight = mFlightButtonYellow.stretchWidth = true; mFlightButtonRed.stretchHeight = mFlightButtonRed.stretchWidth = true; // create the Background RTUtil.LoadImage(out mTexBackground, "TimeQuadrantFcStatus"); // Get the image for positioning the decorator GameObject go = GameObject.Find("TimeQuadrant"); if (go) { mTimewarpTransform = go.GetComponent(); } // objects on this scene? if (mTimewarpTransform == null || TimeWarp.fetch == null) { return; } // create a style (for the connection / delay text) from the high logic skin label style. var skin = UnityEngine.Object.Instantiate(HighLogic.Skin); mTextStyle = new GUIStyle(skin.label); mTextStyle.alignment = TextAnchor.MiddleLeft; mTextStyle.wordWrap = false; mTextStyle.font = skin.font; } /// /// Draws the TimeQuadrantFcStatus.png, Delay time and the Flightcomputerbutton under the timewarp object /// public void Draw() { // no drawing without timewarp object if (mTimewarpTransform == null) return; // no drawing if in-flight action group panel is opened if(ActionGroupsFlightController.Instance != null && ActionGroupsFlightController.Instance.IsOpen) return; // no drawing if in-flight construction panel is opened if (EVAConstructionModeController.Instance != null && EVAConstructionModeController.Instance.IsOpen) return; Vector2 timeWarpImageScreenCoord = UIMainCamera.Camera.WorldToScreenPoint(mTimewarpTransform.position); float scale = GameSettings.UI_SCALE_TIME * GameSettings.UI_SCALE; float YToTimeQuadrant = Screen.height - (timeWarpImageScreenCoord.y - (mTimewarpTransform.rect.height * scale)); float XToTimeQuadrant = 0; //compensated for KSP 1.12 alarm button float texBackgroundHeight = (mTexBackground.height * 0.7f) * scale; float texBackgroundWidth = (mTexBackground.width * 0.8111f) * scale; Rect delaytextPosition = new Rect((XToTimeQuadrant + 12.0f) * scale, YToTimeQuadrant + 2 * scale, 50.0f * scale, 20.0f * scale); // calc the position under the timewarp object Rect pos = new Rect(XToTimeQuadrant, YToTimeQuadrant, texBackgroundWidth, texBackgroundHeight); // draw the image GUI.DrawTexture(pos, mTexBackground); // get color for the delay-text mTextStyle.normal.textColor = new Color(0.56078f, 0.10196f, 0.07450f); if (this.mVessel != null && this.mVessel.Connections.Any()) { mTextStyle.normal.textColor = XKCDColors.GreenApple; } // draw connection / delay text mTextStyle.fontSize = (int)(mTextStyle.font.fontSize * scale); GUI.Label(delaytextPosition, DisplayText, mTextStyle); // draw the flightcomputer button to the right relative to the delaytext position Rect btnPos = new Rect((pos.x + 130.0f) * scale, YToTimeQuadrant + 2 * scale, 21.0f * scale, 21.0f * scale); GUILayout.BeginArea(btnPos); if (GUILayout.Button("", ButtonStyle)) { var satellite = RTCore.Instance.Satellites[FlightGlobals.ActiveVessel]; if (satellite == null || satellite.SignalProcessor.FlightComputer == null) return; satellite.SignalProcessor.FlightComputer.Window.Show(); } GUILayout.EndArea(); } } } ================================================ FILE: src/RemoteTech/VesselExtension.cs ================================================ using System.Linq; namespace RemoteTech { public static class VesselExtension { /// /// Get whether a vessel has local control or not (that is, if it's Kerbal controlled or not). /// /// The vessel to check for. /// true if the vessel has a local control, false otherwise. public static bool HasLocalControl(this Vessel vessel) { if (vessel == null) return false; // vessel must be a control source and it must be crewed or not implementing a module processor var hasLocalControl = vessel.parts.Any(p => (p.isControlSource > Vessel.ControlLevel.NONE) && (p.protoModuleCrew.Any() || !p.FindModulesImplementing().Any() || p.FindModulesImplementing().Any(s => s.AlwaysAllowLocalControl))); if (!hasLocalControl) { // check if theres's a SPU which is a command station. // Command stations must have local control even if there's nobody in the command pod [see other checks in ModuleSPU.IsCommandStation] hasLocalControl = vessel.parts.Any(part => part.FindModulesImplementing().Any(signalProcessor => signalProcessor.IsCommandStation)); } return hasLocalControl; } } } ================================================ FILE: src/RemoteTech/VesselSatellite.cs ================================================ using RemoteTech.Modules; using RemoteTech.SimpleTypes; using System; using System.Collections.Generic; using System.Linq; using UnityEngine; namespace RemoteTech { /// /// Represents a satellite. The concept of satellite is similar to a vessel. /// public class VesselSatellite : ISatellite { /// Gets whether or not the satellite if visible in the Tracking station or the Flight Map view. public bool Visible => SignalProcessor.Visible; /// Gets or sets the name of the satellite. public string Name { get { return SignalProcessor.VesselName; } set { SignalProcessor.VesselName = value; } } /// Gets the satellite id. public Guid Guid => SignalProcessor.VesselId; /// Get a double precision vector for the vessel's world space position. public Vector3d Position => SignalProcessor.Position; /// Gets the celestial body around which the satellite is orbiting. public CelestialBody Body => SignalProcessor.Body; /// Gets the color of the ground station mark in Tracking station or Flight map view. public Color MarkColor => RTSettings.Instance.RemoteStationColorDot; /// Gets or sets the list of signal processor () for the satellite. public List SignalProcessors { get; set; } /// Gets if the satellite is actually powered or not. public bool Powered { get { return (PowerShutdownFlag)? false : SignalProcessors.Any(s => s.Powered); } } /// Gets if the satellite is capable to forward other signals. public bool CanRelaySignal { get { return RTSettings.Instance.SignalRelayEnabled ? SignalProcessors.Any(s => s.CanRelaySignal && !(s is ModuleSPUPassive)) : true; } } /// Indicates whether the satellite is in radio blackout. public bool IsInRadioBlackout { get; set; } /// Indicates whether the manual power override is engaged. public bool PowerShutdownFlag { get; set; } /// Gets if the satellite is a RemoteTech command station. public bool IsCommandStation { get { return SignalProcessors.Any(s => s.IsCommandStation); } } /// Gets a signal processor. public ISignalProcessor SignalProcessor { get { return SignalProcessors.FirstOrDefault(s => s.FlightComputer != null) ?? SignalProcessors[0]; } } /// Gets whether the satellite has local control or not (that is, if it is locally controlled or not). public bool HasLocalControl { get { return RTUtil.CachePerFrame(ref _localControl, () => SignalProcessor.Vessel.HasLocalControl()); } } /// Indicates whether the ISatellite corresponds to a vessel. /// true if satellite is vessel or asteroid; otherwise (e.g. a ground station), false. /// Implementation note: always return true for a . public bool isVessel => true; /// The vessel hosting the satellite. /// The vessel corresponding to this ISatellite. Returns null if !isVessel. public Vessel parentVessel => SignalProcessor.Vessel; /// Gets a list of antennas for this satellite. public IEnumerable Antennas => RTCore.Instance.Antennas[this]; /// Gets the flight computer for this satellite. public FlightComputer.FlightComputer FlightComputer => SignalProcessor.FlightComputer; /* * Helpers */ /// List of network routes for the satellite. public List> Connections => RTCore.Instance.Network[this]; /// Called on connection refresh to update the connections. /// List of network routes. public void OnConnectionRefresh(List> routes) { foreach (IAntenna a in Antennas) { a.OnConnectionRefresh(); } } /// Local control cache variable. private CachedField _localControl; /* * Methods */ /// Build a new instance of VesselSatellite. /// List of signal processor for this satellites. Can't be null. public VesselSatellite(List signalProcessors) { if (signalProcessors == null) { RTLog.Notify("VesselSatellite constructor: signalProcessor parameter is null", RTLogLevel.LVL4); throw new ArgumentNullException(); } SignalProcessors = signalProcessors; } public override string ToString() { return $"VesselSatellite({Name}, {Guid})"; } public override int GetHashCode() { return Guid.GetHashCode(); } } }