diff --git a/Gems/ExpressionEvaluation/Code/Source/ElementInformationSerializer.inl b/Gems/ExpressionEvaluation/Code/Source/ElementInformationSerializer.inl index 19d220a4f3..8d297571ad 100644 --- a/Gems/ExpressionEvaluation/Code/Source/ElementInformationSerializer.inl +++ b/Gems/ExpressionEvaluation/Code/Source/ElementInformationSerializer.inl @@ -28,6 +28,19 @@ namespace AZ private: using ElementInformation = ExpressionEvaluation::ElementInformation; + static const char* EmptyAnyIdentifier; + + static bool IsEmptyAny(const rapidjson::Value& typeId) + { + if (typeId.IsString()) + { + AZStd::string_view typeName(typeId.GetString(), typeId.GetStringLength()); + return typeName == EmptyAnyIdentifier; + } + + return false; + } + JsonSerializationResult::Result Load ( void* outputValue , const Uuid& outputValueTypeId @@ -50,44 +63,38 @@ namespace AZ , context)); // any storage begin - auto isEmptyAny = inputValue.FindMember("isEmptyAny"); - if (isEmptyAny == inputValue.MemberEnd()) - { - return context.Report - (JSR::Tasks::ReadField - , JSR::Outcomes::Missing - , "ElementInformationSerializer::Load failed to load the 'isEmptyAny'' member"); - } - - if (!isEmptyAny->value.GetBool()) { AZ::Uuid typeId = AZ::Uuid::CreateNull(); auto typeIdMember = inputValue.FindMember(JsonSerialization::TypeIdFieldIdentifier); if (typeIdMember == inputValue.MemberEnd()) { return context.Report - (JSR::Tasks::ReadField + ( JSR::Tasks::ReadField , JSR::Outcomes::Missing , AZStd::string::format("ElementInformationSerializer::Load failed to load the %s member" , JsonSerialization::TypeIdFieldIdentifier)); } - result.Combine(LoadTypeId(typeId, typeIdMember->value, context)); - if (typeId.IsNull()) + if (!IsEmptyAny(typeIdMember->value)) { - return context.Report(JSR::Tasks::ReadField, JSR::Outcomes::Catastrophic - , "ElementInformationSerializer::Load failed to load the AZ TypeId of the value"); - } + result.Combine(LoadTypeId(typeId, typeIdMember->value, context)); + if (typeId.IsNull()) + { + return context.Report(JSR::Tasks::ReadField, JSR::Outcomes::Catastrophic + , "ElementInformationSerializer::Load failed to load the AZ TypeId of the value"); + } - AZStd::any storage = context.GetSerializeContext()->CreateAny(typeId); - if (storage.empty() || storage.type() != typeId) - { - return context.Report(result, "ElementInformationSerializer::Load failed to load a value matched the " - "reported AZ TypeId. The C++ declaration may have been deleted or changed."); - } + AZStd::any storage = context.GetSerializeContext()->CreateAny(typeId); + if (storage.empty() || storage.type() != typeId) + { + return context.Report(result, "ElementInformationSerializer::Load failed to load a value matched the " + "reported AZ TypeId. The C++ declaration may have been deleted or changed."); + } - result.Combine(ContinueLoadingFromJsonObjectField(AZStd::any_cast(&storage), typeId, inputValue, "Value", context)); - outputDatum->m_extraStore = storage; + result.Combine + ( ContinueLoadingFromJsonObjectField(AZStd::any_cast(&storage), typeId, inputValue, "Value", context)); + outputDatum->m_extraStore = storage; + } } // any storage end @@ -114,7 +121,7 @@ namespace AZ if (defaultScriptDataPtr) { if (inputScriptDataPtr->m_id == defaultScriptDataPtr->m_id - && AZ::Helpers::CompareAnyValue(inputScriptDataPtr->m_extraStore, defaultScriptDataPtr->m_extraStore)) + && AZ::Helpers::CompareAnyValue(inputScriptDataPtr->m_extraStore, defaultScriptDataPtr->m_extraStore)) { return context.Report ( JSR::Tasks::WriteValue, JSR::Outcomes::DefaultsUsed, "ElementInformation Store used defaults for " @@ -133,15 +140,12 @@ namespace AZ , azrtti_typeidm_id)>() , context)); - - outputValue.AddMember("isEmptyAny", rapidjson::Value(inputScriptDataPtr->m_extraStore.empty()), context.GetJsonAllocator()); - if (!inputScriptDataPtr->m_extraStore.empty()) { rapidjson::Value typeValue; result.Combine(StoreTypeId(typeValue, inputScriptDataPtr->m_extraStore.type(), context)); outputValue.AddMember - (rapidjson::StringRef(JsonSerialization::TypeIdFieldIdentifier) + ( rapidjson::StringRef(JsonSerialization::TypeIdFieldIdentifier) , AZStd::move(typeValue) , context.GetJsonAllocator()); @@ -154,6 +158,16 @@ namespace AZ , context)); } + else + { + rapidjson::Value emptyAny; + AZStd::string emptyAnyName(EmptyAnyIdentifier); + emptyAny.SetString(emptyAnyName.c_str(), aznumeric_caster(emptyAnyName.size()), context.GetJsonAllocator()); + outputValue.AddMember + ( rapidjson::StringRef(JsonSerialization::TypeIdFieldIdentifier) + , AZStd::move(emptyAny) + , context.GetJsonAllocator()); + } return context.Report(result, result.GetProcessing() != JSR::Processing::Halted ? "ElementInformation Store finished saving ElementInformation" @@ -162,4 +176,6 @@ namespace AZ }; AZ_CLASS_ALLOCATOR_IMPL(ElementInformationSerializer, SystemAllocator, 0); + + const char* ElementInformationSerializer::EmptyAnyIdentifier = "Empty AZStd::any"; } diff --git a/Gems/ScriptCanvasTesting/Assets/ScriptCanvas/UnitTests/LY_SC_UnitTest_PathologicalFlowOfControl.scriptcanvas b/Gems/ScriptCanvasTesting/Assets/ScriptCanvas/UnitTests/LY_SC_UnitTest_PathologicalFlowOfControl.scriptcanvas index c7de07141a..f2666232d8 100644 --- a/Gems/ScriptCanvasTesting/Assets/ScriptCanvas/UnitTests/LY_SC_UnitTest_PathologicalFlowOfControl.scriptcanvas +++ b/Gems/ScriptCanvasTesting/Assets/ScriptCanvas/UnitTests/LY_SC_UnitTest_PathologicalFlowOfControl.scriptcanvas @@ -5,7 +5,7 @@ "ClassData": { "m_scriptCanvas": { "Id": { - "id": 31042647073491 + "id": 31194166714268 }, "Name": "LY_SC_UnitTest_PathologicalFlowOfControl", "Components": { @@ -16,7 +16,7 @@ "m_nodes": [ { "Id": { - "id": 31059826942675 + "id": 31288655994780 }, "Name": "EBusEventHandler", "Components": { @@ -257,7 +257,7 @@ }, { "Id": { - "id": 31119956484819 + "id": 31314425798556 }, "Name": "EBusEventHandler", "Components": { @@ -498,7 +498,7 @@ }, { "Id": { - "id": 31128546419411 + "id": 31211346583452 }, "Name": "SC-Node(Or)", "Components": { @@ -635,7 +635,7 @@ }, { "Id": { - "id": 31068416877267 + "id": 31267181158300 }, "Name": "SC-Node(OperatorAdd)", "Components": { @@ -884,7 +884,7 @@ }, { "Id": { - "id": 31077006811859 + "id": 31305835863964 }, "Name": "SC-Node(OperatorAdd)", "Components": { @@ -1133,7 +1133,7 @@ }, { "Id": { - "id": 31132841386707 + "id": 31228526452636 }, "Name": "SC-Node(And)", "Components": { @@ -1270,7 +1270,7 @@ }, { "Id": { - "id": 31150021255891 + "id": 31232821419932 }, "Name": "SC-Node(ExtractProperty)", "Components": { @@ -1357,7 +1357,7 @@ }, { "Id": { - "id": 31154316223187 + "id": 31301540896668 }, "Name": "SC-Node(ExtractProperty)", "Components": { @@ -1444,7 +1444,7 @@ }, { "Id": { - "id": 31089891713747 + "id": 31224231485340 }, "Name": "SC-Node(ForEach)", "Components": { @@ -1596,7 +1596,7 @@ }, { "Id": { - "id": 31145726288595 + "id": 31284361027484 }, "Name": "SC-Node(ForEach)", "Components": { @@ -1748,7 +1748,7 @@ }, { "Id": { - "id": 31115661517523 + "id": 31215641550748 }, "Name": "SC-Node(OperatorMul)", "Components": { @@ -1964,7 +1964,7 @@ }, { "Id": { - "id": 31098481648339 + "id": 31202756648860 }, "Name": "SC-Node(MarkComplete)", "Components": { @@ -2077,7 +2077,7 @@ }, { "Id": { - "id": 31094186681043 + "id": 31280066060188 }, "Name": "SC-Node(Not)", "Components": { @@ -2187,7 +2187,7 @@ }, { "Id": { - "id": 31102776615635 + "id": 31258591223708 }, "Name": "SC-Node(TargetedSequencer)", "Components": { @@ -2304,7 +2304,7 @@ }, { "Id": { - "id": 31158611190483 + "id": 31297245929372 }, "Name": "SC-Node(TargetedSequencer)", "Components": { @@ -2421,7 +2421,7 @@ }, { "Id": { - "id": 31124251452115 + "id": 31310130831260 }, "Name": "SC-Node(OperatorAdd)", "Components": { @@ -2674,7 +2674,7 @@ }, { "Id": { - "id": 31137136354003 + "id": 31198461681564 }, "Name": "SC-Node((NodeFunctionGenericMultiReturn)<{bool(Vector3 double )}* IsZeroTraits >)", "Components": { @@ -2798,7 +2798,7 @@ }, { "Id": { - "id": 31162906157779 + "id": 31207051616156 }, "Name": "SC-Node((NodeFunctionGenericMultiReturn)<{bool(Vector3 double )}* IsZeroTraits >)", "Components": { @@ -2922,7 +2922,7 @@ }, { "Id": { - "id": 31055531975379 + "id": 31219936518044 }, "Name": "SC-Node(MathExpression)", "Components": { @@ -3086,7 +3086,6 @@ { "TokenInformation": { "Id": 1, - "isEmptyAny": false, "$type": "{6D219DB1-3763-4408-A3E8-75E4AE66E9BD} VariableDescriptor", "Value": { "DisplayName": "x", @@ -3099,7 +3098,6 @@ { "TokenInformation": { "Id": 1, - "isEmptyAny": false, "$type": "{6D219DB1-3763-4408-A3E8-75E4AE66E9BD} VariableDescriptor", "Value": { "DisplayName": "y", @@ -3113,7 +3111,7 @@ "ParserId": 3499457960, "TokenInformation": { "Id": 0, - "isEmptyAny": true + "$type": "Empty AZStd::any" } } ] @@ -3123,7 +3121,7 @@ }, { "Id": { - "id": 31081301779155 + "id": 31241411354524 }, "Name": "SC-Node(MathExpression)", "Components": { @@ -3287,7 +3285,6 @@ { "TokenInformation": { "Id": 1, - "isEmptyAny": false, "$type": "{6D219DB1-3763-4408-A3E8-75E4AE66E9BD} VariableDescriptor", "Value": { "DisplayName": "x", @@ -3300,7 +3297,6 @@ { "TokenInformation": { "Id": 1, - "isEmptyAny": false, "$type": "{6D219DB1-3763-4408-A3E8-75E4AE66E9BD} VariableDescriptor", "Value": { "DisplayName": "y", @@ -3314,7 +3310,7 @@ "ParserId": 3499457960, "TokenInformation": { "Id": 0, - "isEmptyAny": true + "$type": "Empty AZStd::any" } } ] @@ -3324,7 +3320,7 @@ }, { "Id": { - "id": 31107071582931 + "id": 31292950962076 }, "Name": "SC-Node(OrderedSequencer)", "Components": { @@ -3372,7 +3368,7 @@ }, { "Id": { - "id": 31085596746451 + "id": 31275771092892 }, "Name": "SC-Node(OrderedSequencer)", "Components": { @@ -3456,7 +3452,7 @@ }, { "Id": { - "id": 31046942040787 + "id": 31250001289116 }, "Name": "SC-Node(IsNull)", "Components": { @@ -3577,7 +3573,7 @@ }, { "Id": { - "id": 31111366550227 + "id": 31254296256412 }, "Name": "SC-Node(IsNull)", "Components": { @@ -3698,7 +3694,7 @@ }, { "Id": { - "id": 31072711844563 + "id": 31262886191004 }, "Name": "SC-Node(Start)", "Components": { @@ -3728,7 +3724,7 @@ }, { "Id": { - "id": 31064121909971 + "id": 31271476125596 }, "Name": "SC-Node(Once)", "Components": { @@ -3806,7 +3802,7 @@ }, { "Id": { - "id": 31141431321299 + "id": 31237116387228 }, "Name": "SC-Node(OrderedSequencer)", "Components": { @@ -4160,7 +4156,7 @@ }, { "Id": { - "id": 31051237008083 + "id": 31245706321820 }, "Name": "SC-Node(OrderedSequencer)", "Components": { @@ -4516,7 +4512,7 @@ "m_connections": [ { "Id": { - "id": 31167201125075 + "id": 31318720765852 }, "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(Ordered Sequencer: In)", "Components": { @@ -4525,7 +4521,7 @@ "Id": 11968085700009090183, "sourceEndpoint": { "nodeId": { - "id": 31072711844563 + "id": 31262886191004 }, "slotId": { "m_id": "{E1417C09-E03B-4EA9-B9EC-67F8EC862B69}" @@ -4533,7 +4529,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31051237008083 + "id": 31245706321820 }, "slotId": { "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" @@ -4544,7 +4540,7 @@ }, { "Id": { - "id": 31171496092371 + "id": 31323015733148 }, "Name": "srcEndpoint=(Ordered Sequencer: Out 0), destEndpoint=(For Each: In)", "Components": { @@ -4553,7 +4549,7 @@ "Id": 14051685564799899080, "sourceEndpoint": { "nodeId": { - "id": 31051237008083 + "id": 31245706321820 }, "slotId": { "m_id": "{E69D1672-B443-49D2-8228-9D45F4A4398C}" @@ -4561,7 +4557,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31089891713747 + "id": 31284361027484 }, "slotId": { "m_id": "{A9E6B254-446D-492F-B2CF-929CDC04ABFF}" @@ -4572,7 +4568,7 @@ }, { "Id": { - "id": 31175791059667 + "id": 31327310700444 }, "Name": "srcEndpoint=(Ordered Sequencer: Out 1), destEndpoint=(And: In)", "Components": { @@ -4581,7 +4577,7 @@ "Id": 5835922357284603096, "sourceEndpoint": { "nodeId": { - "id": 31051237008083 + "id": 31245706321820 }, "slotId": { "m_id": "{58EB3964-B87B-4C73-AD7B-532E4BBAD9E2}" @@ -4589,7 +4585,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31132841386707 + "id": 31228526452636 }, "slotId": { "m_id": "{FAFAB55A-69F1-495D-82FC-7D36F7842DA9}" @@ -4600,7 +4596,7 @@ }, { "Id": { - "id": 31180086026963 + "id": 31331605667740 }, "Name": "srcEndpoint=(Ordered Sequencer: Out 2), destEndpoint=(Ordered Sequencer: In)", "Components": { @@ -4609,7 +4605,7 @@ "Id": 11349254841334591199, "sourceEndpoint": { "nodeId": { - "id": 31051237008083 + "id": 31245706321820 }, "slotId": { "m_id": "{E965D8DB-1EDF-4CB2-910E-6782A6DD8487}" @@ -4617,7 +4613,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31085596746451 + "id": 31275771092892 }, "slotId": { "m_id": "{E4E25252-6AE7-4A4F-A175-50B9C6CD5DAE}" @@ -4628,7 +4624,7 @@ }, { "Id": { - "id": 31184380994259 + "id": 31335900635036 }, "Name": "srcEndpoint=(Ordered Sequencer: Out 3), destEndpoint=(Is Null: In)", "Components": { @@ -4637,7 +4633,7 @@ "Id": 11724175899893098283, "sourceEndpoint": { "nodeId": { - "id": 31051237008083 + "id": 31245706321820 }, "slotId": { "m_id": "{786CF87F-5153-44CE-A995-59CAAA0ED040}" @@ -4645,7 +4641,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31046942040787 + "id": 31250001289116 }, "slotId": { "m_id": "{2215C7E1-3EA3-4487-BA74-0A5628424CEA}" @@ -4656,7 +4652,7 @@ }, { "Id": { - "id": 31188675961555 + "id": 31340195602332 }, "Name": "srcEndpoint=(Ordered Sequencer: Out 4), destEndpoint=(Or: In)", "Components": { @@ -4665,7 +4661,7 @@ "Id": 15445788857322783773, "sourceEndpoint": { "nodeId": { - "id": 31051237008083 + "id": 31245706321820 }, "slotId": { "m_id": "{60D9FB27-2CAC-412A-8B3B-2E4B4574FD56}" @@ -4673,7 +4669,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31128546419411 + "id": 31211346583452 }, "slotId": { "m_id": "{C5E1B10E-FDFA-45F8-B6AF-BD9C672986FC}" @@ -4684,7 +4680,7 @@ }, { "Id": { - "id": 31192970928851 + "id": 31344490569628 }, "Name": "srcEndpoint=(Ordered Sequencer: Out 5), destEndpoint=(Switch: In)", "Components": { @@ -4693,7 +4689,7 @@ "Id": 9877129165904558121, "sourceEndpoint": { "nodeId": { - "id": 31051237008083 + "id": 31245706321820 }, "slotId": { "m_id": "{CBD2A485-2FF1-405A-9940-E4268ED8EEC0}" @@ -4701,7 +4697,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31158611190483 + "id": 31258591223708 }, "slotId": { "m_id": "{52F5A723-7921-4644-AB19-5DCB94B51494}" @@ -4712,7 +4708,7 @@ }, { "Id": { - "id": 31197265896147 + "id": 31348785536924 }, "Name": "srcEndpoint=(Ordered Sequencer: Out 6), destEndpoint=(Not: In)", "Components": { @@ -4721,7 +4717,7 @@ "Id": 3561874480108576621, "sourceEndpoint": { "nodeId": { - "id": 31051237008083 + "id": 31245706321820 }, "slotId": { "m_id": "{F71323EC-F182-465B-8671-C83BB07B227A}" @@ -4729,7 +4725,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31094186681043 + "id": 31280066060188 }, "slotId": { "m_id": "{120C810C-F84A-445F-82E1-FD06CD3AD9B7}" @@ -4740,7 +4736,7 @@ }, { "Id": { - "id": 31201560863443 + "id": 31353080504220 }, "Name": "srcEndpoint=(Ordered Sequencer: Out 10), destEndpoint=(Add (+): In)", "Components": { @@ -4749,7 +4745,7 @@ "Id": 15711843380878163015, "sourceEndpoint": { "nodeId": { - "id": 31051237008083 + "id": 31245706321820 }, "slotId": { "m_id": "{99CB5CB4-FF23-4C2B-9FBB-94D7752FCE80}" @@ -4757,7 +4753,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31124251452115 + "id": 31310130831260 }, "slotId": { "m_id": "{792F23CB-7356-4DCA-A186-69F2A0BBC063}" @@ -4768,7 +4764,7 @@ }, { "Id": { - "id": 31205855830739 + "id": 31357375471516 }, "Name": "srcEndpoint=(Ordered Sequencer: Out 11), destEndpoint=(Math Expression: In)", "Components": { @@ -4777,7 +4773,7 @@ "Id": 10938060626218586852, "sourceEndpoint": { "nodeId": { - "id": 31051237008083 + "id": 31245706321820 }, "slotId": { "m_id": "{2A550F0A-D5D2-497A-AFF2-EBB330F29A4D}" @@ -4785,7 +4781,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31081301779155 + "id": 31241411354524 }, "slotId": { "m_id": "{6F8E4206-72C6-40E6-8AC1-205AA2C04804}" @@ -4796,7 +4792,7 @@ }, { "Id": { - "id": 31210150798035 + "id": 31361670438812 }, "Name": "srcEndpoint=(Ordered Sequencer: Out 12), destEndpoint=(IsZero: In)", "Components": { @@ -4805,7 +4801,7 @@ "Id": 7885809696299116611, "sourceEndpoint": { "nodeId": { - "id": 31051237008083 + "id": 31245706321820 }, "slotId": { "m_id": "{FBD12806-F42E-4896-A44D-E0E34C8977BF}" @@ -4813,7 +4809,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31162906157779 + "id": 31207051616156 }, "slotId": { "m_id": "{048F79E8-478C-46A1-AF3F-0B578022240D}" @@ -4824,7 +4820,7 @@ }, { "Id": { - "id": 31214445765331 + "id": 31365965406108 }, "Name": "srcEndpoint=(Ordered Sequencer: Out 13), destEndpoint=(Extract Properties: In)", "Components": { @@ -4833,7 +4829,7 @@ "Id": 4352059250555138202, "sourceEndpoint": { "nodeId": { - "id": 31051237008083 + "id": 31245706321820 }, "slotId": { "m_id": "{6552891F-4D35-4B2F-AE7D-B6CCE77B6966}" @@ -4841,7 +4837,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31154316223187 + "id": 31232821419932 }, "slotId": { "m_id": "{EADFB5B4-ADE0-4935-A102-99F8EC0C711A}" @@ -4852,7 +4848,7 @@ }, { "Id": { - "id": 31218740732627 + "id": 31370260373404 }, "Name": "srcEndpoint=(Ordered Sequencer: Out 14), destEndpoint=(Add (+): In)", "Components": { @@ -4861,7 +4857,7 @@ "Id": 4078469470815155794, "sourceEndpoint": { "nodeId": { - "id": 31051237008083 + "id": 31245706321820 }, "slotId": { "m_id": "{119F60AD-CF01-4F6D-AC9D-F76ED05EF408}" @@ -4869,7 +4865,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31068416877267 + "id": 31267181158300 }, "slotId": { "m_id": "{CDEA58A6-1B59-4476-B26E-0D5A828F35C7}" @@ -4880,7 +4876,7 @@ }, { "Id": { - "id": 31223035699923 + "id": 31374555340700 }, "Name": "srcEndpoint=(Ordered Sequencer: Out 15), destEndpoint=(Multiply (*): In)", "Components": { @@ -4889,7 +4885,7 @@ "Id": 17350434400301914971, "sourceEndpoint": { "nodeId": { - "id": 31051237008083 + "id": 31245706321820 }, "slotId": { "m_id": "{7ECBB1CC-6F3A-442E-B063-2B143F26ECF0}" @@ -4897,7 +4893,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31115661517523 + "id": 31215641550748 }, "slotId": { "m_id": "{2D2F75D9-A1FB-4D70-86EF-8518E119DB07}" @@ -4908,7 +4904,7 @@ }, { "Id": { - "id": 31227330667219 + "id": 31378850307996 }, "Name": "srcEndpoint=(Ordered Sequencer: Out 14), destEndpoint=(Add (+): In)", "Components": { @@ -4917,7 +4913,7 @@ "Id": 2124314791740833510, "sourceEndpoint": { "nodeId": { - "id": 31141431321299 + "id": 31237116387228 }, "slotId": { "m_id": "{119F60AD-CF01-4F6D-AC9D-F76ED05EF408}" @@ -4925,7 +4921,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31077006811859 + "id": 31305835863964 }, "slotId": { "m_id": "{CDEA58A6-1B59-4476-B26E-0D5A828F35C7}" @@ -4936,7 +4932,7 @@ }, { "Id": { - "id": 31231625634515 + "id": 31383145275292 }, "Name": "srcEndpoint=(Ordered Sequencer: Out 0), destEndpoint=(For Each: In)", "Components": { @@ -4945,7 +4941,7 @@ "Id": 14483355239609043570, "sourceEndpoint": { "nodeId": { - "id": 31141431321299 + "id": 31237116387228 }, "slotId": { "m_id": "{E69D1672-B443-49D2-8228-9D45F4A4398C}" @@ -4953,7 +4949,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31145726288595 + "id": 31224231485340 }, "slotId": { "m_id": "{A9E6B254-446D-492F-B2CF-929CDC04ABFF}" @@ -4964,7 +4960,7 @@ }, { "Id": { - "id": 31235920601811 + "id": 31387440242588 }, "Name": "srcEndpoint=(Ordered Sequencer: Out 2), destEndpoint=(Ordered Sequencer: In)", "Components": { @@ -4973,7 +4969,7 @@ "Id": 4849582226410181010, "sourceEndpoint": { "nodeId": { - "id": 31141431321299 + "id": 31237116387228 }, "slotId": { "m_id": "{E965D8DB-1EDF-4CB2-910E-6782A6DD8487}" @@ -4981,7 +4977,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31107071582931 + "id": 31292950962076 }, "slotId": { "m_id": "{E4E25252-6AE7-4A4F-A175-50B9C6CD5DAE}" @@ -4992,7 +4988,7 @@ }, { "Id": { - "id": 31240215569107 + "id": 31391735209884 }, "Name": "srcEndpoint=(Ordered Sequencer: Out 13), destEndpoint=(Extract Properties: In)", "Components": { @@ -5001,7 +4997,7 @@ "Id": 16660742051689195679, "sourceEndpoint": { "nodeId": { - "id": 31141431321299 + "id": 31237116387228 }, "slotId": { "m_id": "{6552891F-4D35-4B2F-AE7D-B6CCE77B6966}" @@ -5009,7 +5005,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31150021255891 + "id": 31301540896668 }, "slotId": { "m_id": "{EADFB5B4-ADE0-4935-A102-99F8EC0C711A}" @@ -5020,7 +5016,7 @@ }, { "Id": { - "id": 31244510536403 + "id": 31396030177180 }, "Name": "srcEndpoint=(Ordered Sequencer: Out 11), destEndpoint=(Math Expression: In)", "Components": { @@ -5029,7 +5025,7 @@ "Id": 761902755754097552, "sourceEndpoint": { "nodeId": { - "id": 31141431321299 + "id": 31237116387228 }, "slotId": { "m_id": "{2A550F0A-D5D2-497A-AFF2-EBB330F29A4D}" @@ -5037,7 +5033,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31055531975379 + "id": 31219936518044 }, "slotId": { "m_id": "{6F8E4206-72C6-40E6-8AC1-205AA2C04804}" @@ -5048,7 +5044,7 @@ }, { "Id": { - "id": 31248805503699 + "id": 31400325144476 }, "Name": "srcEndpoint=(Ordered Sequencer: Out 3), destEndpoint=(Is Null: In)", "Components": { @@ -5057,7 +5053,7 @@ "Id": 11478294740641420074, "sourceEndpoint": { "nodeId": { - "id": 31141431321299 + "id": 31237116387228 }, "slotId": { "m_id": "{786CF87F-5153-44CE-A995-59CAAA0ED040}" @@ -5065,7 +5061,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31111366550227 + "id": 31254296256412 }, "slotId": { "m_id": "{2215C7E1-3EA3-4487-BA74-0A5628424CEA}" @@ -5076,7 +5072,7 @@ }, { "Id": { - "id": 31253100470995 + "id": 31404620111772 }, "Name": "srcEndpoint=(Ordered Sequencer: Out 12), destEndpoint=(IsZero: In)", "Components": { @@ -5085,7 +5081,7 @@ "Id": 6172045094798670980, "sourceEndpoint": { "nodeId": { - "id": 31141431321299 + "id": 31237116387228 }, "slotId": { "m_id": "{FBD12806-F42E-4896-A44D-E0E34C8977BF}" @@ -5093,7 +5089,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31137136354003 + "id": 31198461681564 }, "slotId": { "m_id": "{048F79E8-478C-46A1-AF3F-0B578022240D}" @@ -5104,7 +5100,7 @@ }, { "Id": { - "id": 31257395438291 + "id": 31408915079068 }, "Name": "srcEndpoint=(Ordered Sequencer: Out 5), destEndpoint=(Switch: In)", "Components": { @@ -5113,7 +5109,7 @@ "Id": 10417773454009289241, "sourceEndpoint": { "nodeId": { - "id": 31141431321299 + "id": 31237116387228 }, "slotId": { "m_id": "{CBD2A485-2FF1-405A-9940-E4268ED8EEC0}" @@ -5121,7 +5117,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31102776615635 + "id": 31297245929372 }, "slotId": { "m_id": "{52F5A723-7921-4644-AB19-5DCB94B51494}" @@ -5132,7 +5128,7 @@ }, { "Id": { - "id": 31261690405587 + "id": 31413210046364 }, "Name": "srcEndpoint=(For Each: Each), destEndpoint=(Ordered Sequencer: In)", "Components": { @@ -5141,7 +5137,7 @@ "Id": 4836133045899771729, "sourceEndpoint": { "nodeId": { - "id": 31089891713747 + "id": 31284361027484 }, "slotId": { "m_id": "{8A4B7BED-4921-4C08-B35B-56D129A630E9}" @@ -5149,7 +5145,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31141431321299 + "id": 31237116387228 }, "slotId": { "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" @@ -5160,7 +5156,7 @@ }, { "Id": { - "id": 31265985372883 + "id": 31417505013660 }, "Name": "srcEndpoint=(For Each: Finished), destEndpoint=(Ordered Sequencer: In)", "Components": { @@ -5169,7 +5165,7 @@ "Id": 6237489035629954338, "sourceEndpoint": { "nodeId": { - "id": 31089891713747 + "id": 31284361027484 }, "slotId": { "m_id": "{0DEFFE74-9D9C-4E18-AFA2-12B1657F7D1D}" @@ -5177,7 +5173,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31141431321299 + "id": 31237116387228 }, "slotId": { "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" @@ -5188,7 +5184,7 @@ }, { "Id": { - "id": 31270280340179 + "id": 31421799980956 }, "Name": "srcEndpoint=(And: True), destEndpoint=(Ordered Sequencer: In)", "Components": { @@ -5197,7 +5193,7 @@ "Id": 4927775769680604779, "sourceEndpoint": { "nodeId": { - "id": 31132841386707 + "id": 31228526452636 }, "slotId": { "m_id": "{5BDD309F-0047-43E9-A911-475E47A036EC}" @@ -5205,7 +5201,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31141431321299 + "id": 31237116387228 }, "slotId": { "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" @@ -5216,7 +5212,7 @@ }, { "Id": { - "id": 31274575307475 + "id": 31426094948252 }, "Name": "srcEndpoint=(And: False), destEndpoint=(Ordered Sequencer: In)", "Components": { @@ -5225,7 +5221,7 @@ "Id": 12544845157105431583, "sourceEndpoint": { "nodeId": { - "id": 31132841386707 + "id": 31228526452636 }, "slotId": { "m_id": "{7438C80C-9044-442D-8C71-827AB7DC3F0B}" @@ -5233,7 +5229,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31141431321299 + "id": 31237116387228 }, "slotId": { "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" @@ -5244,7 +5240,7 @@ }, { "Id": { - "id": 31278870274771 + "id": 31430389915548 }, "Name": "srcEndpoint=(Ordered Sequencer: Out 0), destEndpoint=(Ordered Sequencer: In)", "Components": { @@ -5253,7 +5249,7 @@ "Id": 13496863929205474320, "sourceEndpoint": { "nodeId": { - "id": 31085596746451 + "id": 31275771092892 }, "slotId": { "m_id": "{425822FB-C61E-4493-98C3-3A05418BD029}" @@ -5261,7 +5257,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31141431321299 + "id": 31237116387228 }, "slotId": { "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" @@ -5272,7 +5268,7 @@ }, { "Id": { - "id": 31283165242067 + "id": 31434684882844 }, "Name": "srcEndpoint=(Ordered Sequencer: Out 1), destEndpoint=(Ordered Sequencer: In)", "Components": { @@ -5281,7 +5277,7 @@ "Id": 12523441803443343729, "sourceEndpoint": { "nodeId": { - "id": 31085596746451 + "id": 31275771092892 }, "slotId": { "m_id": "{8FDC2E61-37AE-4E0F-82FE-7A4D9696123C}" @@ -5289,7 +5285,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31141431321299 + "id": 31237116387228 }, "slotId": { "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" @@ -5300,7 +5296,7 @@ }, { "Id": { - "id": 31287460209363 + "id": 31438979850140 }, "Name": "srcEndpoint=(Ordered Sequencer: Out 2), destEndpoint=(Ordered Sequencer: In)", "Components": { @@ -5309,7 +5305,7 @@ "Id": 4247029149608940629, "sourceEndpoint": { "nodeId": { - "id": 31085596746451 + "id": 31275771092892 }, "slotId": { "m_id": "{1000AB91-55FB-4615-B0EE-306816CFE895}" @@ -5317,7 +5313,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31141431321299 + "id": 31237116387228 }, "slotId": { "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" @@ -5328,7 +5324,7 @@ }, { "Id": { - "id": 31291755176659 + "id": 31443274817436 }, "Name": "srcEndpoint=(Is Null: True), destEndpoint=(Ordered Sequencer: In)", "Components": { @@ -5337,7 +5333,7 @@ "Id": 2748837971044280491, "sourceEndpoint": { "nodeId": { - "id": 31046942040787 + "id": 31250001289116 }, "slotId": { "m_id": "{AA375295-D5E8-473C-A073-08A2853E750E}" @@ -5345,7 +5341,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31141431321299 + "id": 31237116387228 }, "slotId": { "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" @@ -5356,7 +5352,7 @@ }, { "Id": { - "id": 31296050143955 + "id": 31447569784732 }, "Name": "srcEndpoint=(Is Null: False), destEndpoint=(Ordered Sequencer: In)", "Components": { @@ -5365,7 +5361,7 @@ "Id": 2379529025270594940, "sourceEndpoint": { "nodeId": { - "id": 31046942040787 + "id": 31250001289116 }, "slotId": { "m_id": "{342C520C-CA78-4261-91C9-629978B79BA3}" @@ -5373,7 +5369,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31141431321299 + "id": 31237116387228 }, "slotId": { "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" @@ -5384,7 +5380,7 @@ }, { "Id": { - "id": 31300345111251 + "id": 31451864752028 }, "Name": "srcEndpoint=(Or: True), destEndpoint=(Ordered Sequencer: In)", "Components": { @@ -5393,7 +5389,7 @@ "Id": 4662929964571753389, "sourceEndpoint": { "nodeId": { - "id": 31128546419411 + "id": 31211346583452 }, "slotId": { "m_id": "{7FED3519-4670-4B3D-B81F-44393C2D7787}" @@ -5401,7 +5397,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31141431321299 + "id": 31237116387228 }, "slotId": { "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" @@ -5412,7 +5408,7 @@ }, { "Id": { - "id": 31304640078547 + "id": 31456159719324 }, "Name": "srcEndpoint=(Or: False), destEndpoint=(Ordered Sequencer: In)", "Components": { @@ -5421,7 +5417,7 @@ "Id": 10410455197671109469, "sourceEndpoint": { "nodeId": { - "id": 31128546419411 + "id": 31211346583452 }, "slotId": { "m_id": "{E2D1192C-902D-4C82-9DE4-BBC20B31A54B}" @@ -5429,7 +5425,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31141431321299 + "id": 31237116387228 }, "slotId": { "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" @@ -5440,7 +5436,7 @@ }, { "Id": { - "id": 31308935045843 + "id": 31460454686620 }, "Name": "srcEndpoint=(Switch: Out 0), destEndpoint=(Ordered Sequencer: In)", "Components": { @@ -5449,7 +5445,7 @@ "Id": 10099436517331803126, "sourceEndpoint": { "nodeId": { - "id": 31158611190483 + "id": 31258591223708 }, "slotId": { "m_id": "{800E14B1-C788-4C7F-B4D4-76121DE547C9}" @@ -5457,7 +5453,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31141431321299 + "id": 31237116387228 }, "slotId": { "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" @@ -5468,7 +5464,7 @@ }, { "Id": { - "id": 31313230013139 + "id": 31464749653916 }, "Name": "srcEndpoint=(Switch: Out 1), destEndpoint=(Ordered Sequencer: In)", "Components": { @@ -5477,7 +5473,7 @@ "Id": 11535766430360773447, "sourceEndpoint": { "nodeId": { - "id": 31158611190483 + "id": 31258591223708 }, "slotId": { "m_id": "{9828EDD9-2689-424C-9708-304D720B1348}" @@ -5485,7 +5481,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31141431321299 + "id": 31237116387228 }, "slotId": { "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" @@ -5496,7 +5492,7 @@ }, { "Id": { - "id": 31317524980435 + "id": 31469044621212 }, "Name": "srcEndpoint=(Switch: Out 2), destEndpoint=(Ordered Sequencer: In)", "Components": { @@ -5505,7 +5501,7 @@ "Id": 3612784336888322174, "sourceEndpoint": { "nodeId": { - "id": 31158611190483 + "id": 31258591223708 }, "slotId": { "m_id": "{4A1E25C6-E63B-4BC0-BBDE-533CA69C91C5}" @@ -5513,7 +5509,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31141431321299 + "id": 31237116387228 }, "slotId": { "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" @@ -5524,7 +5520,7 @@ }, { "Id": { - "id": 31321819947731 + "id": 31473339588508 }, "Name": "srcEndpoint=(Not: True), destEndpoint=(Ordered Sequencer: In)", "Components": { @@ -5533,7 +5529,7 @@ "Id": 4611790098876313333, "sourceEndpoint": { "nodeId": { - "id": 31094186681043 + "id": 31280066060188 }, "slotId": { "m_id": "{6E82DFA3-70F4-419F-9971-AD243313E8D9}" @@ -5541,7 +5537,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31141431321299 + "id": 31237116387228 }, "slotId": { "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" @@ -5552,7 +5548,7 @@ }, { "Id": { - "id": 31326114915027 + "id": 31477634555804 }, "Name": "srcEndpoint=(Not: False), destEndpoint=(Ordered Sequencer: In)", "Components": { @@ -5561,7 +5557,7 @@ "Id": 3740076693359624525, "sourceEndpoint": { "nodeId": { - "id": 31094186681043 + "id": 31280066060188 }, "slotId": { "m_id": "{5C53A008-E808-4D00-A4EC-AC6A0EFDAFB9}" @@ -5569,7 +5565,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31141431321299 + "id": 31237116387228 }, "slotId": { "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" @@ -5580,7 +5576,7 @@ }, { "Id": { - "id": 31330409882323 + "id": 31481929523100 }, "Name": "srcEndpoint=(Add (+): Out), destEndpoint=(Ordered Sequencer: In)", "Components": { @@ -5589,7 +5585,7 @@ "Id": 3850851395875718062, "sourceEndpoint": { "nodeId": { - "id": 31124251452115 + "id": 31310130831260 }, "slotId": { "m_id": "{775F77BE-A9EC-455D-B378-15D16A0BEA4F}" @@ -5597,7 +5593,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31141431321299 + "id": 31237116387228 }, "slotId": { "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" @@ -5608,7 +5604,7 @@ }, { "Id": { - "id": 31334704849619 + "id": 31486224490396 }, "Name": "srcEndpoint=(Math Expression: Out), destEndpoint=(Ordered Sequencer: In)", "Components": { @@ -5617,7 +5613,7 @@ "Id": 3602036390975897875, "sourceEndpoint": { "nodeId": { - "id": 31081301779155 + "id": 31241411354524 }, "slotId": { "m_id": "{5E038FBC-9A4B-489C-AB3E-26F103B7102E}" @@ -5625,7 +5621,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31141431321299 + "id": 31237116387228 }, "slotId": { "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" @@ -5636,7 +5632,7 @@ }, { "Id": { - "id": 31338999816915 + "id": 31490519457692 }, "Name": "srcEndpoint=(IsZero: Out), destEndpoint=(Ordered Sequencer: In)", "Components": { @@ -5645,7 +5641,7 @@ "Id": 17614443468886602012, "sourceEndpoint": { "nodeId": { - "id": 31162906157779 + "id": 31207051616156 }, "slotId": { "m_id": "{2CD5D252-4872-41A2-9C9E-4B81AD9877B7}" @@ -5653,7 +5649,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31141431321299 + "id": 31237116387228 }, "slotId": { "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" @@ -5664,7 +5660,7 @@ }, { "Id": { - "id": 31343294784211 + "id": 31494814424988 }, "Name": "srcEndpoint=(Extract Properties: Out), destEndpoint=(Ordered Sequencer: In)", "Components": { @@ -5673,7 +5669,7 @@ "Id": 4800366554066352627, "sourceEndpoint": { "nodeId": { - "id": 31154316223187 + "id": 31232821419932 }, "slotId": { "m_id": "{AC7594DE-A7F0-4519-9E07-0350AEEB25E0}" @@ -5681,7 +5677,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31141431321299 + "id": 31237116387228 }, "slotId": { "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" @@ -5692,7 +5688,7 @@ }, { "Id": { - "id": 31347589751507 + "id": 31499109392284 }, "Name": "srcEndpoint=(Add (+): Out), destEndpoint=(Ordered Sequencer: In)", "Components": { @@ -5701,7 +5697,7 @@ "Id": 15231344167676276156, "sourceEndpoint": { "nodeId": { - "id": 31068416877267 + "id": 31267181158300 }, "slotId": { "m_id": "{5E66E5C1-AE26-4919-BFD7-66EC6DE9B7BB}" @@ -5709,7 +5705,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31141431321299 + "id": 31237116387228 }, "slotId": { "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" @@ -5720,7 +5716,7 @@ }, { "Id": { - "id": 31351884718803 + "id": 31503404359580 }, "Name": "srcEndpoint=(Multiply (*): Out), destEndpoint=(Ordered Sequencer: In)", "Components": { @@ -5729,7 +5725,7 @@ "Id": 13866431563723516549, "sourceEndpoint": { "nodeId": { - "id": 31115661517523 + "id": 31215641550748 }, "slotId": { "m_id": "{7A580403-C074-4DAD-A65E-BF928EF19DC8}" @@ -5737,7 +5733,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31141431321299 + "id": 31237116387228 }, "slotId": { "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" @@ -5748,7 +5744,7 @@ }, { "Id": { - "id": 31356179686099 + "id": 31507699326876 }, "Name": "srcEndpoint=(Ordered Sequencer: Out 16), destEndpoint=(TickBus Handler: Connect)", "Components": { @@ -5757,7 +5753,7 @@ "Id": 4065717098596350153, "sourceEndpoint": { "nodeId": { - "id": 31051237008083 + "id": 31245706321820 }, "slotId": { "m_id": "{8BC13109-B3A3-4931-8E54-0DFC6383A274}" @@ -5765,7 +5761,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31119956484819 + "id": 31314425798556 }, "slotId": { "m_id": "{C189EE08-DC89-4AF2-88BC-B564F84F28A6}" @@ -5776,7 +5772,7 @@ }, { "Id": { - "id": 31360474653395 + "id": 31511994294172 }, "Name": "srcEndpoint=(Ordered Sequencer: Out 17), destEndpoint=(TickBus Handler: Disconnect)", "Components": { @@ -5785,7 +5781,7 @@ "Id": 451545062627990235, "sourceEndpoint": { "nodeId": { - "id": 31051237008083 + "id": 31245706321820 }, "slotId": { "m_id": "{3ED549E3-C72F-4EC5-8CD6-2B8A36A8E503}" @@ -5793,7 +5789,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31119956484819 + "id": 31314425798556 }, "slotId": { "m_id": "{10BB0A14-C955-464E-8745-7FBC88E24049}" @@ -5804,7 +5800,7 @@ }, { "Id": { - "id": 31364769620691 + "id": 31516289261468 }, "Name": "srcEndpoint=(TickBus Handler: OnConnected), destEndpoint=(Ordered Sequencer: In)", "Components": { @@ -5813,7 +5809,7 @@ "Id": 16416933153170812903, "sourceEndpoint": { "nodeId": { - "id": 31119956484819 + "id": 31314425798556 }, "slotId": { "m_id": "{A7026536-ED61-48CA-8329-601DACF8A178}" @@ -5821,7 +5817,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31141431321299 + "id": 31237116387228 }, "slotId": { "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" @@ -5832,7 +5828,7 @@ }, { "Id": { - "id": 31369064587987 + "id": 31520584228764 }, "Name": "srcEndpoint=(TickBus Handler: OnDisconnected), destEndpoint=(Ordered Sequencer: In)", "Components": { @@ -5841,7 +5837,7 @@ "Id": 16427931620012509498, "sourceEndpoint": { "nodeId": { - "id": 31119956484819 + "id": 31314425798556 }, "slotId": { "m_id": "{95E02974-9E1C-407C-94DA-087C5B4EC55C}" @@ -5849,7 +5845,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31141431321299 + "id": 31237116387228 }, "slotId": { "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" @@ -5860,7 +5856,7 @@ }, { "Id": { - "id": 31373359555283 + "id": 31524879196060 }, "Name": "srcEndpoint=(TickBus Handler: ExecutionSlot:OnTick), destEndpoint=(Ordered Sequencer: In)", "Components": { @@ -5869,7 +5865,7 @@ "Id": 12537264777285639380, "sourceEndpoint": { "nodeId": { - "id": 31119956484819 + "id": 31314425798556 }, "slotId": { "m_id": "{99FA955C-7E6E-4539-85B0-16CBFBB1F0E3}" @@ -5877,7 +5873,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31141431321299 + "id": 31237116387228 }, "slotId": { "m_id": "{06EAF2BD-2430-46D2-A19F-6E785B06A1B2}" @@ -5888,7 +5884,7 @@ }, { "Id": { - "id": 31377654522579 + "id": 31529174163356 }, "Name": "srcEndpoint=(Ordered Sequencer: Out 16), destEndpoint=(TickBus Handler: Connect)", "Components": { @@ -5897,7 +5893,7 @@ "Id": 4140744289594349719, "sourceEndpoint": { "nodeId": { - "id": 31141431321299 + "id": 31237116387228 }, "slotId": { "m_id": "{58AAA7C2-843B-4B0A-8451-B509284BFC6B}" @@ -5905,7 +5901,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31059826942675 + "id": 31288655994780 }, "slotId": { "m_id": "{C189EE08-DC89-4AF2-88BC-B564F84F28A6}" @@ -5916,7 +5912,7 @@ }, { "Id": { - "id": 31381949489875 + "id": 31533469130652 }, "Name": "srcEndpoint=(Ordered Sequencer: Out 17), destEndpoint=(TickBus Handler: Disconnect)", "Components": { @@ -5925,7 +5921,7 @@ "Id": 6223827301708831635, "sourceEndpoint": { "nodeId": { - "id": 31141431321299 + "id": 31237116387228 }, "slotId": { "m_id": "{C6B341C5-8F1F-4F38-96B1-07873BC03493}" @@ -5933,7 +5929,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31059826942675 + "id": 31288655994780 }, "slotId": { "m_id": "{10BB0A14-C955-464E-8745-7FBC88E24049}" @@ -5944,7 +5940,7 @@ }, { "Id": { - "id": 31386244457171 + "id": 31537764097948 }, "Name": "srcEndpoint=(TickBus Handler: OnConnected), destEndpoint=(Once: In)", "Components": { @@ -5953,7 +5949,7 @@ "Id": 16328568633919858732, "sourceEndpoint": { "nodeId": { - "id": 31059826942675 + "id": 31288655994780 }, "slotId": { "m_id": "{A7026536-ED61-48CA-8329-601DACF8A178}" @@ -5961,7 +5957,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31064121909971 + "id": 31271476125596 }, "slotId": { "m_id": "{67E7AF1F-F028-4460-819A-3FA6B9135F7B}" @@ -5972,7 +5968,7 @@ }, { "Id": { - "id": 31390539424467 + "id": 31542059065244 }, "Name": "srcEndpoint=(TickBus Handler: OnDisconnected), destEndpoint=(Once: In)", "Components": { @@ -5981,7 +5977,7 @@ "Id": 5193640857027050517, "sourceEndpoint": { "nodeId": { - "id": 31059826942675 + "id": 31288655994780 }, "slotId": { "m_id": "{95E02974-9E1C-407C-94DA-087C5B4EC55C}" @@ -5989,7 +5985,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31064121909971 + "id": 31271476125596 }, "slotId": { "m_id": "{67E7AF1F-F028-4460-819A-3FA6B9135F7B}" @@ -6000,7 +5996,7 @@ }, { "Id": { - "id": 31394834391763 + "id": 31546354032540 }, "Name": "srcEndpoint=(Once: Out), destEndpoint=(Mark Complete: In)", "Components": { @@ -6009,7 +6005,7 @@ "Id": 5213414421933364896, "sourceEndpoint": { "nodeId": { - "id": 31064121909971 + "id": 31271476125596 }, "slotId": { "m_id": "{922907EE-9B7C-49CF-80A2-0A9FF5CDCB8C}" @@ -6017,7 +6013,7 @@ }, "targetEndpoint": { "nodeId": { - "id": 31098481648339 + "id": 31202756648860 }, "slotId": { "m_id": "{79C2ABDD-F20A-4042-BF5C-8C09DC9332C7}" @@ -6037,7 +6033,7 @@ "GraphCanvasData": [ { "Key": { - "id": 31042647073491 + "id": 31194166714268 }, "Value": { "ComponentData": { @@ -6054,7 +6050,97 @@ }, { "Key": { - "id": 31046942040787 + "id": 31198461681564 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "MathNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 2040.0, + 3260.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{810D332E-6C30-437C-9BCA-DF663A237034}" + } + } + } + }, + { + "Key": { + "id": 31202756648860 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "TestingNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 2640.0, + 4320.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{90DEA5B5-B658-4163-964E-91DB8D0D0F91}" + } + } + } + }, + { + "Key": { + "id": 31207051616156 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "MathNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 300.0, + 3320.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{AE920511-0E26-4EEF-ADAD-982BEA59BA94}" + } + } + } + }, + { + "Key": { + "id": 31211346583452 }, "Value": { "ComponentData": { @@ -6069,7 +6155,7 @@ "$type": "GeometrySaveData", "Position": [ 300.0, - 1240.0 + 1460.0 ] }, "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { @@ -6077,14 +6163,14 @@ }, "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { "$type": "PersistentIdComponentSaveData", - "PersistentId": "{63DF2982-B424-4D30-BF05-9DA9DD5664EC}" + "PersistentId": "{0C7217EF-A630-46C6-A1C8-D4202697B60E}" } } } }, { "Key": { - "id": 31051237008083 + "id": 31215641550748 }, "Value": { "ComponentData": { @@ -6093,13 +6179,13 @@ }, "{328FF15C-C302-458F-A43D-E1794DE0904E}": { "$type": "GeneralNodeTitleComponentSaveData", - "PaletteOverride": "LogicNodeTitlePalette" + "PaletteOverride": "MathNodeTitlePalette" }, "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { "$type": "GeometrySaveData", "Position": [ - -480.0, - 2320.0 + 300.0, + 4020.0 ] }, "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { @@ -6107,14 +6193,14 @@ }, "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { "$type": "PersistentIdComponentSaveData", - "PersistentId": "{AC1D06EF-C967-4F35-95BD-8D822F4A2CE7}" + "PersistentId": "{E6E72236-4B7B-47AD-ABF9-08E0D1691F72}" } } } }, { "Key": { - "id": 31055531975379 + "id": 31219936518044 }, "Value": { "ComponentData": { @@ -6144,7 +6230,457 @@ }, { "Key": { - "id": 31059826942675 + "id": 31224231485340 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "DefaultNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 2040.0, + 340.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{EDABFAD6-F9B5-4490-8EC6-165291FF3588}" + } + } + } + }, + { + "Key": { + "id": 31228526452636 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "LogicNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 300.0, + 700.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{F60EF486-6C8B-4943-B3F4-600F8148DE78}" + } + } + } + }, + { + "Key": { + "id": 31232821419932 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "DefaultNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 300.0, + 3580.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{BB3891CA-9936-4F18-8552-8EB7F2D02206}" + } + } + } + }, + { + "Key": { + "id": 31237116387228 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "LogicNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 1200.0, + 2660.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{05F42C5B-4887-4800-8422-D5E5C1361E5F}" + } + } + } + }, + { + "Key": { + "id": 31241411354524 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "MathNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 300.0, + 3040.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{32F17925-C934-4CC7-918A-3026954CABD6}" + } + } + } + }, + { + "Key": { + "id": 31245706321820 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "LogicNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + -480.0, + 2320.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{AC1D06EF-C967-4F35-95BD-8D822F4A2CE7}" + } + } + } + }, + { + "Key": { + "id": 31250001289116 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "LogicNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 300.0, + 1240.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{63DF2982-B424-4D30-BF05-9DA9DD5664EC}" + } + } + } + }, + { + "Key": { + "id": 31254296256412 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "LogicNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 2040.0, + 1180.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{9952383B-0B57-43BB-B59C-501C3F2CDE30}" + } + } + } + }, + { + "Key": { + "id": 31258591223708 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "LogicNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 300.0, + 1740.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{E6746414-838B-4AF7-AC50-EBEB0D2C06C2}" + } + } + } + }, + { + "Key": { + "id": 31262886191004 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "TimeNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + -900.0, + 2400.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{D3649B82-A382-47A3-8168-BC7BA0377449}" + } + } + } + }, + { + "Key": { + "id": 31267181158300 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "MathNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 300.0, + 3780.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{D305A28C-D38B-4A34-BEA1-7E7AA92B853A}" + } + } + } + }, + { + "Key": { + "id": 31271476125596 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "LogicNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 2420.0, + 4320.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{0CC6067B-5802-4AB3-9FF4-C1DF2C283DBB}" + } + } + } + }, + { + "Key": { + "id": 31275771092892 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "LogicNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 300.0, + 960.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{55307FED-8C26-4EC5-98B5-F080C79E784D}" + } + } + } + }, + { + "Key": { + "id": 31280066060188 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "LogicNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 300.0, + 2000.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{5E0AD895-3D93-41F0-86D0-0A9DC4305145}" + } + } + } + }, + { + "Key": { + "id": 31284361027484 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{328FF15C-C302-458F-A43D-E1794DE0904E}": { + "$type": "GeneralNodeTitleComponentSaveData", + "PaletteOverride": "DefaultNodeTitlePalette" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 300.0, + 400.0 + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{F37ED565-54EF-4A7C-9FB4-ABA1A71A4A36}" + } + } + } + }, + { + "Key": { + "id": 31288655994780 }, "Value": { "ComponentData": { @@ -6179,307 +6715,7 @@ }, { "Key": { - "id": 31064121909971 - }, - "Value": { - "ComponentData": { - "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { - "$type": "NodeSaveData" - }, - "{328FF15C-C302-458F-A43D-E1794DE0904E}": { - "$type": "GeneralNodeTitleComponentSaveData", - "PaletteOverride": "LogicNodeTitlePalette" - }, - "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { - "$type": "GeometrySaveData", - "Position": [ - 2420.0, - 4320.0 - ] - }, - "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { - "$type": "StylingComponentSaveData" - }, - "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { - "$type": "PersistentIdComponentSaveData", - "PersistentId": "{0CC6067B-5802-4AB3-9FF4-C1DF2C283DBB}" - } - } - } - }, - { - "Key": { - "id": 31068416877267 - }, - "Value": { - "ComponentData": { - "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { - "$type": "NodeSaveData" - }, - "{328FF15C-C302-458F-A43D-E1794DE0904E}": { - "$type": "GeneralNodeTitleComponentSaveData", - "PaletteOverride": "MathNodeTitlePalette" - }, - "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { - "$type": "GeometrySaveData", - "Position": [ - 300.0, - 3780.0 - ] - }, - "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { - "$type": "StylingComponentSaveData" - }, - "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { - "$type": "PersistentIdComponentSaveData", - "PersistentId": "{D305A28C-D38B-4A34-BEA1-7E7AA92B853A}" - } - } - } - }, - { - "Key": { - "id": 31072711844563 - }, - "Value": { - "ComponentData": { - "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { - "$type": "NodeSaveData" - }, - "{328FF15C-C302-458F-A43D-E1794DE0904E}": { - "$type": "GeneralNodeTitleComponentSaveData", - "PaletteOverride": "TimeNodeTitlePalette" - }, - "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { - "$type": "GeometrySaveData", - "Position": [ - -900.0, - 2400.0 - ] - }, - "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { - "$type": "StylingComponentSaveData" - }, - "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { - "$type": "PersistentIdComponentSaveData", - "PersistentId": "{D3649B82-A382-47A3-8168-BC7BA0377449}" - } - } - } - }, - { - "Key": { - "id": 31077006811859 - }, - "Value": { - "ComponentData": { - "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { - "$type": "NodeSaveData" - }, - "{328FF15C-C302-458F-A43D-E1794DE0904E}": { - "$type": "GeneralNodeTitleComponentSaveData", - "PaletteOverride": "MathNodeTitlePalette" - }, - "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { - "$type": "GeometrySaveData", - "Position": [ - 2040.0, - 3720.0 - ] - }, - "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { - "$type": "StylingComponentSaveData" - }, - "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { - "$type": "PersistentIdComponentSaveData", - "PersistentId": "{ABCB6F4F-5683-4958-B544-E543B5591129}" - } - } - } - }, - { - "Key": { - "id": 31081301779155 - }, - "Value": { - "ComponentData": { - "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { - "$type": "NodeSaveData" - }, - "{328FF15C-C302-458F-A43D-E1794DE0904E}": { - "$type": "GeneralNodeTitleComponentSaveData", - "PaletteOverride": "MathNodeTitlePalette" - }, - "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { - "$type": "GeometrySaveData", - "Position": [ - 300.0, - 3040.0 - ] - }, - "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { - "$type": "StylingComponentSaveData" - }, - "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { - "$type": "PersistentIdComponentSaveData", - "PersistentId": "{32F17925-C934-4CC7-918A-3026954CABD6}" - } - } - } - }, - { - "Key": { - "id": 31085596746451 - }, - "Value": { - "ComponentData": { - "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { - "$type": "NodeSaveData" - }, - "{328FF15C-C302-458F-A43D-E1794DE0904E}": { - "$type": "GeneralNodeTitleComponentSaveData", - "PaletteOverride": "LogicNodeTitlePalette" - }, - "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { - "$type": "GeometrySaveData", - "Position": [ - 300.0, - 960.0 - ] - }, - "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { - "$type": "StylingComponentSaveData" - }, - "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { - "$type": "PersistentIdComponentSaveData", - "PersistentId": "{55307FED-8C26-4EC5-98B5-F080C79E784D}" - } - } - } - }, - { - "Key": { - "id": 31089891713747 - }, - "Value": { - "ComponentData": { - "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { - "$type": "NodeSaveData" - }, - "{328FF15C-C302-458F-A43D-E1794DE0904E}": { - "$type": "GeneralNodeTitleComponentSaveData", - "PaletteOverride": "DefaultNodeTitlePalette" - }, - "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { - "$type": "GeometrySaveData", - "Position": [ - 300.0, - 400.0 - ] - }, - "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { - "$type": "StylingComponentSaveData" - }, - "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { - "$type": "PersistentIdComponentSaveData", - "PersistentId": "{F37ED565-54EF-4A7C-9FB4-ABA1A71A4A36}" - } - } - } - }, - { - "Key": { - "id": 31094186681043 - }, - "Value": { - "ComponentData": { - "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { - "$type": "NodeSaveData" - }, - "{328FF15C-C302-458F-A43D-E1794DE0904E}": { - "$type": "GeneralNodeTitleComponentSaveData", - "PaletteOverride": "LogicNodeTitlePalette" - }, - "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { - "$type": "GeometrySaveData", - "Position": [ - 300.0, - 2000.0 - ] - }, - "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { - "$type": "StylingComponentSaveData" - }, - "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { - "$type": "PersistentIdComponentSaveData", - "PersistentId": "{5E0AD895-3D93-41F0-86D0-0A9DC4305145}" - } - } - } - }, - { - "Key": { - "id": 31098481648339 - }, - "Value": { - "ComponentData": { - "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { - "$type": "NodeSaveData" - }, - "{328FF15C-C302-458F-A43D-E1794DE0904E}": { - "$type": "GeneralNodeTitleComponentSaveData", - "PaletteOverride": "TestingNodeTitlePalette" - }, - "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { - "$type": "GeometrySaveData", - "Position": [ - 2640.0, - 4320.0 - ] - }, - "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { - "$type": "StylingComponentSaveData" - }, - "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { - "$type": "PersistentIdComponentSaveData", - "PersistentId": "{90DEA5B5-B658-4163-964E-91DB8D0D0F91}" - } - } - } - }, - { - "Key": { - "id": 31102776615635 - }, - "Value": { - "ComponentData": { - "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { - "$type": "NodeSaveData" - }, - "{328FF15C-C302-458F-A43D-E1794DE0904E}": { - "$type": "GeneralNodeTitleComponentSaveData", - "PaletteOverride": "LogicNodeTitlePalette" - }, - "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { - "$type": "GeometrySaveData", - "Position": [ - 2040.0, - 1680.0 - ] - }, - "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { - "$type": "StylingComponentSaveData" - }, - "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { - "$type": "PersistentIdComponentSaveData", - "PersistentId": "{E6DB84DC-F8BE-4C8E-BE0D-A0B96652B2C0}" - } - } - } - }, - { - "Key": { - "id": 31107071582931 + "id": 31292950962076 }, "Value": { "ComponentData": { @@ -6509,7 +6745,7 @@ }, { "Key": { - "id": 31111366550227 + "id": 31297245929372 }, "Value": { "ComponentData": { @@ -6524,7 +6760,7 @@ "$type": "GeometrySaveData", "Position": [ 2040.0, - 1180.0 + 1680.0 ] }, "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { @@ -6532,259 +6768,14 @@ }, "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { "$type": "PersistentIdComponentSaveData", - "PersistentId": "{9952383B-0B57-43BB-B59C-501C3F2CDE30}" + "PersistentId": "{E6DB84DC-F8BE-4C8E-BE0D-A0B96652B2C0}" } } } }, { "Key": { - "id": 31115661517523 - }, - "Value": { - "ComponentData": { - "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { - "$type": "NodeSaveData" - }, - "{328FF15C-C302-458F-A43D-E1794DE0904E}": { - "$type": "GeneralNodeTitleComponentSaveData", - "PaletteOverride": "MathNodeTitlePalette" - }, - "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { - "$type": "GeometrySaveData", - "Position": [ - 300.0, - 4020.0 - ] - }, - "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { - "$type": "StylingComponentSaveData" - }, - "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { - "$type": "PersistentIdComponentSaveData", - "PersistentId": "{E6E72236-4B7B-47AD-ABF9-08E0D1691F72}" - } - } - } - }, - { - "Key": { - "id": 31119956484819 - }, - "Value": { - "ComponentData": { - "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { - "$type": "NodeSaveData" - }, - "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { - "$type": "GeometrySaveData", - "Position": [ - 340.0, - 4320.0 - ] - }, - "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": { - "$type": "EBusHandlerNodeDescriptorSaveData", - "DisplayConnections": true, - "EventIds": [ - { - "Value": 1502188240 - } - ] - }, - "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { - "$type": "StylingComponentSaveData" - }, - "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { - "$type": "PersistentIdComponentSaveData", - "PersistentId": "{3B6A148E-D130-4461-BA4D-EF0C91E7B729}" - } - } - } - }, - { - "Key": { - "id": 31124251452115 - }, - "Value": { - "ComponentData": { - "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { - "$type": "NodeSaveData" - }, - "{328FF15C-C302-458F-A43D-E1794DE0904E}": { - "$type": "GeneralNodeTitleComponentSaveData", - "PaletteOverride": "MathNodeTitlePalette" - }, - "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { - "$type": "GeometrySaveData", - "Position": [ - 300.0, - 2820.0 - ] - }, - "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { - "$type": "StylingComponentSaveData" - }, - "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { - "$type": "PersistentIdComponentSaveData", - "PersistentId": "{0F538778-0124-48B9-B8D8-DB50D3620953}" - } - } - } - }, - { - "Key": { - "id": 31128546419411 - }, - "Value": { - "ComponentData": { - "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { - "$type": "NodeSaveData" - }, - "{328FF15C-C302-458F-A43D-E1794DE0904E}": { - "$type": "GeneralNodeTitleComponentSaveData", - "PaletteOverride": "LogicNodeTitlePalette" - }, - "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { - "$type": "GeometrySaveData", - "Position": [ - 300.0, - 1460.0 - ] - }, - "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { - "$type": "StylingComponentSaveData" - }, - "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { - "$type": "PersistentIdComponentSaveData", - "PersistentId": "{0C7217EF-A630-46C6-A1C8-D4202697B60E}" - } - } - } - }, - { - "Key": { - "id": 31132841386707 - }, - "Value": { - "ComponentData": { - "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { - "$type": "NodeSaveData" - }, - "{328FF15C-C302-458F-A43D-E1794DE0904E}": { - "$type": "GeneralNodeTitleComponentSaveData", - "PaletteOverride": "LogicNodeTitlePalette" - }, - "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { - "$type": "GeometrySaveData", - "Position": [ - 300.0, - 700.0 - ] - }, - "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { - "$type": "StylingComponentSaveData" - }, - "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { - "$type": "PersistentIdComponentSaveData", - "PersistentId": "{F60EF486-6C8B-4943-B3F4-600F8148DE78}" - } - } - } - }, - { - "Key": { - "id": 31137136354003 - }, - "Value": { - "ComponentData": { - "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { - "$type": "NodeSaveData" - }, - "{328FF15C-C302-458F-A43D-E1794DE0904E}": { - "$type": "GeneralNodeTitleComponentSaveData", - "PaletteOverride": "MathNodeTitlePalette" - }, - "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { - "$type": "GeometrySaveData", - "Position": [ - 2040.0, - 3260.0 - ] - }, - "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { - "$type": "StylingComponentSaveData" - }, - "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { - "$type": "PersistentIdComponentSaveData", - "PersistentId": "{810D332E-6C30-437C-9BCA-DF663A237034}" - } - } - } - }, - { - "Key": { - "id": 31141431321299 - }, - "Value": { - "ComponentData": { - "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { - "$type": "NodeSaveData" - }, - "{328FF15C-C302-458F-A43D-E1794DE0904E}": { - "$type": "GeneralNodeTitleComponentSaveData", - "PaletteOverride": "LogicNodeTitlePalette" - }, - "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { - "$type": "GeometrySaveData", - "Position": [ - 1200.0, - 2660.0 - ] - }, - "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { - "$type": "StylingComponentSaveData" - }, - "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { - "$type": "PersistentIdComponentSaveData", - "PersistentId": "{05F42C5B-4887-4800-8422-D5E5C1361E5F}" - } - } - } - }, - { - "Key": { - "id": 31145726288595 - }, - "Value": { - "ComponentData": { - "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { - "$type": "NodeSaveData" - }, - "{328FF15C-C302-458F-A43D-E1794DE0904E}": { - "$type": "GeneralNodeTitleComponentSaveData", - "PaletteOverride": "DefaultNodeTitlePalette" - }, - "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { - "$type": "GeometrySaveData", - "Position": [ - 2040.0, - 340.0 - ] - }, - "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { - "$type": "StylingComponentSaveData" - }, - "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { - "$type": "PersistentIdComponentSaveData", - "PersistentId": "{EDABFAD6-F9B5-4490-8EC6-165291FF3588}" - } - } - } - }, - { - "Key": { - "id": 31150021255891 + "id": 31301540896668 }, "Value": { "ComponentData": { @@ -6814,7 +6805,7 @@ }, { "Key": { - "id": 31154316223187 + "id": 31305835863964 }, "Value": { "ComponentData": { @@ -6823,13 +6814,13 @@ }, "{328FF15C-C302-458F-A43D-E1794DE0904E}": { "$type": "GeneralNodeTitleComponentSaveData", - "PaletteOverride": "DefaultNodeTitlePalette" + "PaletteOverride": "MathNodeTitlePalette" }, "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { "$type": "GeometrySaveData", "Position": [ - 300.0, - 3580.0 + 2040.0, + 3720.0 ] }, "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { @@ -6837,44 +6828,14 @@ }, "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { "$type": "PersistentIdComponentSaveData", - "PersistentId": "{BB3891CA-9936-4F18-8552-8EB7F2D02206}" + "PersistentId": "{ABCB6F4F-5683-4958-B544-E543B5591129}" } } } }, { "Key": { - "id": 31158611190483 - }, - "Value": { - "ComponentData": { - "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { - "$type": "NodeSaveData" - }, - "{328FF15C-C302-458F-A43D-E1794DE0904E}": { - "$type": "GeneralNodeTitleComponentSaveData", - "PaletteOverride": "LogicNodeTitlePalette" - }, - "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { - "$type": "GeometrySaveData", - "Position": [ - 300.0, - 1740.0 - ] - }, - "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { - "$type": "StylingComponentSaveData" - }, - "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { - "$type": "PersistentIdComponentSaveData", - "PersistentId": "{E6746414-838B-4AF7-AC50-EBEB0D2C06C2}" - } - } - } - }, - { - "Key": { - "id": 31162906157779 + "id": 31310130831260 }, "Value": { "ComponentData": { @@ -6889,7 +6850,7 @@ "$type": "GeometrySaveData", "Position": [ 300.0, - 3320.0 + 2820.0 ] }, "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { @@ -6897,7 +6858,42 @@ }, "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { "$type": "PersistentIdComponentSaveData", - "PersistentId": "{AE920511-0E26-4EEF-ADAD-982BEA59BA94}" + "PersistentId": "{0F538778-0124-48B9-B8D8-DB50D3620953}" + } + } + } + }, + { + "Key": { + "id": 31314425798556 + }, + "Value": { + "ComponentData": { + "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": { + "$type": "NodeSaveData" + }, + "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": { + "$type": "GeometrySaveData", + "Position": [ + 340.0, + 4320.0 + ] + }, + "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": { + "$type": "EBusHandlerNodeDescriptorSaveData", + "DisplayConnections": true, + "EventIds": [ + { + "Value": 1502188240 + } + ] + }, + "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": { + "$type": "StylingComponentSaveData" + }, + "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": { + "$type": "PersistentIdComponentSaveData", + "PersistentId": "{3B6A148E-D130-4461-BA4D-EF0C91E7B729}" } } }