From a2a8837e890549b1ac2355eb3419cfb85ef659a6 Mon Sep 17 00:00:00 2001 From: MaZiFAU <63099053+MaZiFAU@users.noreply.github.com> Date: Mon, 18 Sep 2023 18:53:48 +0200 Subject: [PATCH] FunctionFact; DynamicTupleFact; PushoutFacts; SOMDocToLambdaExpression; ReGeneratred DemoFiles; FunctionFact; + caching LamdaExpression DynamicTupleFact; + parse only, iff it snot a generic tuple PushoutFacts; + support for duplicate Facts SOMDocToLambdaExpression; + Bugfix: ?InvertRealLit was wrongly assigned to Negate + employ cashing of lambdaexpression for FuncFacts (x4,5 faster) --- .../FactHandling/Facts/FunctionFact.cs | 33 +- .../FactHandling/Facts/MMTTypes.cs | 32 +- .../TBD/CanonBallCalculator2D.cs | 92 - .../Scripts/InventoryStuff/ScrollDetails.cs | 75 +- .../CommunicationProtocoll/Endpoints.cs | 31 +- .../SOMDocToLambdaExpression.cs | 70 +- .../Extensions/IEnumerableExtensions.cs | 13 + Assets/Stages/CanonBall 2D.JSON | 1684 +++------------- Assets/Stages/CanonBall 3D.JSON | 1769 +++++------------ Assets/Stages/TechDemo A.JSON | 95 +- Assets/Stages/TechDemo B.JSON | 97 +- 11 files changed, 1014 insertions(+), 2977 deletions(-) diff --git a/Assets/Scripts/InteractionEngine/FactHandling/Facts/FunctionFact.cs b/Assets/Scripts/InteractionEngine/FactHandling/Facts/FunctionFact.cs index 8f29cd1f..f4415907 100644 --- a/Assets/Scripts/InteractionEngine/FactHandling/Facts/FunctionFact.cs +++ b/Assets/Scripts/InteractionEngine/FactHandling/Facts/FunctionFact.cs @@ -4,6 +4,7 @@ using Newtonsoft.Json; using System.Linq; using REST_JSON_API; +using System.Linq.Expressions; public class FunctionCallFact : FactWrappedCRTP<FunctionCallFact> { @@ -15,7 +16,7 @@ public class FunctionCallFact : FactWrappedCRTP<FunctionCallFact> [JsonIgnore] - public FunctionFact Function_in + public FunctionFact Function => (FunctionFact)FactRecorder.AllFacts[func_id]; [JsonIgnore] @@ -40,7 +41,7 @@ public object[] Call(float t) return null; object[] path = Function_args.Function(new object[] { t }); - return Function_in.Function(path); + return Function.Function(path); } public override bool HasDependentFacts @@ -57,15 +58,18 @@ protected override bool EquivalentWrapped(FunctionCallFact f1, FunctionCallFact ) return true; - int samplenumber = 1000; - float stepsizef1 = (f1.Domain.t_n - f1.Domain.t_0) / samplenumber; - float stepsizef2 = (f2.Domain.t_n - f2.Domain.t_0) / samplenumber; + if (f1.Function.Signature[^1] != f2.Function.Signature[^1]) + return false; + + int samplenumber = 3; + float stepsizef1 = (f1.Domain.t_n - f1.Domain.t_0) / (samplenumber - 1); + float stepsizef2 = (f2.Domain.t_n - f2.Domain.t_0) / (samplenumber - 1); for ((int i, float f1step, float f2step) = (0, f1.Domain.t_0, f2.Domain.t_0); i < samplenumber; i++, f1step += stepsizef1, f2step += stepsizef2) { object[] c1 = f1.Call(f1step); - object[] c2 = f2.Call(f1step); + object[] c2 = f2.Call(f2step); if (c1 == null || c2 == null || !c1.SequenceEqual(c2, new ApproximationComparer())) return false; @@ -76,7 +80,7 @@ protected override bool EquivalentWrapped(FunctionCallFact f1, FunctionCallFact public override MMTFact MakeMMTDeclaration() { MMTGeneralFact mmt_arg = (MMTGeneralFact)Function_args.MakeMMTDeclaration(); - MMTGeneralFact mmt_in = (MMTGeneralFact)Function_in.MakeMMTDeclaration(); + MMTGeneralFact mmt_in = (MMTGeneralFact)Function.MakeMMTDeclaration(); SOMDoc type = new OMA( new OMS(MMTConstants.Product), @@ -101,7 +105,7 @@ public override MMTFact MakeMMTDeclaration() new OMLIT<float>(Domain.t_n) }), Function_args.ServerDefinition, - Function_in.ServerDefinition, + Function.ServerDefinition, }); return new MMTGeneralFact(Label, type, defines); @@ -109,9 +113,9 @@ public override MMTFact MakeMMTDeclaration() protected override void RecalculateTransform() { - Position = Function_in.Position; - Rotation = Function_in.Rotation; - LocalScale = Function_in.LocalScale; + Position = Function.Position; + Rotation = Function.Rotation; + LocalScale = Function.LocalScale; } protected override Fact _ReInitializeMe(Dictionary<string, string> old_to_new, FactRecorder organizer) @@ -128,6 +132,9 @@ public class FunctionFact : FactWrappedCRTP<FunctionFact> [JsonIgnore] public Func<object[], object[]> Function; + [JsonIgnore] + public Expression LambdaExpression; + /// <summary> \copydoc Fact.Fact </summary> public FunctionFact() : base() { } @@ -140,7 +147,7 @@ public FunctionFact() : base() { } public FunctionFact(SOMDoc Function_SOMDoc, FactRecorder organizer) : base(organizer) { this.Function_SOMDoc = Function_SOMDoc; - this.Function = this.Function_SOMDoc.PartialInvokeCastingLambdaExpression(out Signature); + this.Function = this.Function_SOMDoc.PartialInvokeCastingLambdaExpression(out LambdaExpression, out Signature); SendToMMT(); } @@ -153,7 +160,7 @@ public FunctionFact(SOMDoc Function_SOMDoc, FactRecorder organizer) : base(organ public FunctionFact(SOMDoc Function_SOMDoc, SOMDoc _ServerDefinition, FactRecorder organizer) : base(organizer) { this.Function_SOMDoc = Function_SOMDoc; - this.Function = Function_SOMDoc.PartialInvokeCastingLambdaExpression(out Signature); + this.Function = Function_SOMDoc.PartialInvokeCastingLambdaExpression(out LambdaExpression, out Signature); this.ServerDefinition = _ServerDefinition; _ = this.Label; diff --git a/Assets/Scripts/InteractionEngine/FactHandling/Facts/MMTTypes.cs b/Assets/Scripts/InteractionEngine/FactHandling/Facts/MMTTypes.cs index fb2e43a4..cbc3ea91 100644 --- a/Assets/Scripts/InteractionEngine/FactHandling/Facts/MMTTypes.cs +++ b/Assets/Scripts/InteractionEngine/FactHandling/Facts/MMTTypes.cs @@ -185,7 +185,7 @@ public static List<Fact> MMTFactory(List<dynamic> payload, SOMDoc indirect_paylo if (payload == null) { Func<object[], object[]> builder = - indirect_payload.PartialInvokeCastingLambdaExpression(out Type[] signature); + indirect_payload.PartialInvokeCastingLambdaExpression(out _, out Type[] signature); if (signature.Length != 1) return new(); @@ -389,7 +389,7 @@ public static List<Fact> MMTFactory(object payload, SOMDoc indirect_payload, SOM if (payload == null) { Func<object[], object[]> builder = - indirect_payload.PartialInvokeCastingLambdaExpression(out Type[] signature); + indirect_payload.PartialInvokeCastingLambdaExpression(out _, out Type[] signature); if (signature.Length != 1) return new(); @@ -437,22 +437,24 @@ public static List<Fact> MMTFactory(object payload, SOMDoc indirect_payload, SOM } } - //TODO? indirect_payload ??= SOMDoc.FromObject(payload); - TupleType ??= SOMDoc.SOMDocType(payload.GetType()); + return new(); // Don't care about Tuple without semantic meaning - ret.Add(new DynamicTupleFact(organizer) - { - payload = payload, - indirect_payload = indirect_payload, - TupleType = TupleType, - count = count, - ServerDefinition = _ServerDefinition, - }); + ////TODO? indirect_payload ??= SOMDoc.FromObject(payload); + //TupleType ??= SOMDoc.SOMDocType(payload.GetType()); - if (_ServerDefinition == null) - (ret[0] as DynamicTupleFact).SendToMMT(); + //ret.Add(new DynamicTupleFact(organizer) + //{ + // payload = payload, + // indirect_payload = indirect_payload, + // TupleType = TupleType, + // count = count, + // ServerDefinition = _ServerDefinition, + //}); - return ret; + //if (_ServerDefinition == null) + // (ret[0] as DynamicTupleFact).SendToMMT(); + + //return ret; } public override MMTFact MakeMMTDeclaration() diff --git a/Assets/Scripts/InteractionEngine/TBD/CanonBallCalculator2D.cs b/Assets/Scripts/InteractionEngine/TBD/CanonBallCalculator2D.cs index 81151732..2e9c16ac 100644 --- a/Assets/Scripts/InteractionEngine/TBD/CanonBallCalculator2D.cs +++ b/Assets/Scripts/InteractionEngine/TBD/CanonBallCalculator2D.cs @@ -38,98 +38,6 @@ public CanonBallProblemCalculator2D(List<LineFact> walls, Vector3 starPos, Vecto Compute(); } - public static void LambdaCSDemo() - { - SOMDoc StepUntil; - { - SOMDoc Vec3TP = new OMA( - new OMS(MMTConstants.Product), - new OMS[]{ - new(MMTConstants.RealLit), - new(MMTConstants.RealLit), - new(MMTConstants.RealLit), - }); - - SOMDoc feed = new FUN(new FUN.Param[] - { - new("feed", Vec3TP), - }, - new OMA( - new OMS(MMTConstants.AddRealLit), - new SOMDoc[] { - new OMV("feed"), - SOMDoc.MakeVector3(new Vector3(1,2,3)) - })); - - SOMDoc pred = new FUN(new FUN.Param[] - { - new("current", Vec3TP), - }, - new OMA( - new OMS(MMTConstants.LessThan), - new SOMDoc[] { - new OMA( - new OMS(MMTConstants.PropertyX), - new SOMDoc[]{ - new OMV("current") - }), - new OMLIT<float>(10f) - })); - - StepUntil = new FUN(new FUN.Param[] - { - new("seed", Vec3TP), - //new("lambda", new FUNTYPE( - // new []{ - // Vec3, - // }, - // Vec3 - //)), - //new("pred", new FUNTYPE( - // new [] { Vec3 }, - // new OMS(MMTConstants.Bool) - //)), - }, - new OMA(new OMS(MMTConstants.MakeObjectArray), new[] { - new OMA( - new OMS(MMTConstants.ToArray), - new OMA[]{ new( - new OMS(MMTConstants.FeedForwardWhile), - new[] { - Vec3TP, // return value - new OMV("seed"), - feed, //new OMV("lambda"), - pred, //new OMV("pred"), - }) - })})); - } - - var StepUntil_results = - StepUntil - .PartialInvokeCastingLambdaExpression(out Type[] signature_args0) - (new object[] { new Vector3(0, 0, 0) }); - ; - - SOMDoc TupelTest3 = SOMDoc.MakeTupel(new[] { new OMLIT<float>(1), new OMLIT<float>(2), new OMLIT<float>(3) }); - var TupelTest3_resutl = - TupelTest3 - .PartialInvokeCastingLambdaExpression(out Type[] signature_argsT3) - (new object[0]); - - SOMDoc ProjTest0 = new OMA(new OMS(MMTConstants.ProjL), new[] { TupelTest3 }); - var ProjTest0_resutl = - ProjTest0 - .PartialInvokeCastingLambdaExpression(out Type[] signature_args3) - (new object[0]); - - SOMDoc ProjTest1 = new OMA(new OMS(MMTConstants.ProjR), new[] { TupelTest3 }); - var ProjTest1_resutl = - ProjTest1 - .PartialInvokeCastingLambdaExpression(out Type[] signature_args4) - (new object[0]); - ; - } - private void Compute() { SOMDoc BuildOMA_XVA() diff --git a/Assets/Scripts/InventoryStuff/ScrollDetails.cs b/Assets/Scripts/InventoryStuff/ScrollDetails.cs index 0f068a6a..2f969934 100644 --- a/Assets/Scripts/InventoryStuff/ScrollDetails.cs +++ b/Assets/Scripts/InventoryStuff/ScrollDetails.cs @@ -43,7 +43,7 @@ public static ScrollDetails Instance private bool DynamicScrollInQue = false; private bool MagicInQue = false; - private readonly IReadOnlyList<string> NoDynamicScroll = new List<string>() { + private readonly IReadOnlyList<string> NoDynamicScroll = new List<string>() { MMTConstants.ScrollCannonBall2D, MMTConstants.ScrollCannonBall3D, }; @@ -238,9 +238,50 @@ IEnumerator _MagicButton() else Popup.HidePopUp(); //close error Window - GeneratePushoutFacts(pushout.acquiredFacts); + yield return __GeneratePushoutFacts(pushout.acquiredFacts); } } + + IEnumerator __GeneratePushoutFacts(List<MMTFact> pushoutFacts) + { + List<Fact> new_facts = new(); + Dictionary<string, string> oldt_to_new = new(); + System.DateTime parseTime = System.DateTime.UtcNow; + + bool samestep = false; + for (int i = 0; i < pushoutFacts.Count; i++) + { + //yield return null; + List<Fact> new_list = ParsingDictionary.parseFactDictionary[pushoutFacts[i].getType()] + (pushoutFacts[i].MapURIs(oldt_to_new)); + if (new_list.Count == 0) + { + Debug.LogWarning("Parsing on pushout-fact returned empty List -> One of the dependent facts does not exist or parsing failed"); + continue; + } + + foreach (Fact new_fact in new_list) + { + //yield return null; + + Fact added = FactAdder.AddFactIfNotFound(new_fact, out bool exists, samestep, null, ActiveScroll.label); + if (!exists) + { + new_facts.Add(added); + AnimateExistingFactEvent.Invoke(added.Id, FactWrapper.FactMaterials.Solution); + samestep = true; + } + else + { + // AnimateExistingFactEvent.Invoke(_new, FactWrapper.FactMaterials.Hint); // Automaticly done in FactRecorder + oldt_to_new.Add(new_fact.Id, added.Id); + } + } + } + + Debug.Log($"Facts parsed within {(System.DateTime.UtcNow - parseTime).TotalMilliseconds}ms"); + yield break; + } } public void NewAssignmentTrigger() @@ -346,36 +387,6 @@ string prepareScrollAssignments() } } - private void GeneratePushoutFacts(List<MMTFact> pushoutFacts) - { - List<Fact> ret = new(); - System.DateTime parseTime = System.DateTime.UtcNow; - - bool samestep = false; - for (int i = 0; i < pushoutFacts.Count; i++) - { - List<Fact> new_list = ParsingDictionary.parseFactDictionary[pushoutFacts[i].getType()](pushoutFacts[i]); - if (new_list.Count == 0) - { - Debug.LogWarning("Parsing on pushout-fact returned empty List -> One of the dependent facts does not exist or parsing failed"); - continue; - } - - foreach (Fact new_fact in new_list) - { - ret.Add(new_fact); - - AnimateExistingFactEvent.Invoke - (FactAdder.AddFactIfNotFound(new_fact, out _, samestep, null, ActiveScroll.label).Id - , FactWrapper.FactMaterials.Solution); - - samestep = true; - } - } - - Debug.Log($"Facts parsed within {(System.DateTime.UtcNow - parseTime).TotalMilliseconds}ms"); - } - private void processScrollDynamicInfo(ScrollDynamicInfo scrollDynamicInfo) { LatestBackwartsCompletions = scrollDynamicInfo.backward_completions.Count > 0 diff --git a/Assets/Scripts/MMTServer/CommunicationProtocoll/Endpoints.cs b/Assets/Scripts/MMTServer/CommunicationProtocoll/Endpoints.cs index 24310a8e..6897479d 100644 --- a/Assets/Scripts/MMTServer/CommunicationProtocoll/Endpoints.cs +++ b/Assets/Scripts/MMTServer/CommunicationProtocoll/Endpoints.cs @@ -88,6 +88,8 @@ public string label public abstract string getType(); public abstract string getApplicant(); + + public abstract MMTFact MapURIs(Dictionary<string, string> old_to_new); } /// <summary>Class for facts without values, e.g. Points</summary> @@ -102,7 +104,13 @@ public class MMTGeneralFact : MMTFact [JsonConstructor] - private MMTGeneralFact() { } + private MMTGeneralFact(OMS @ref, string label, SOMDoc type, SOMDoc defines) + { + this.@ref = @ref; + this.label = label; + this.type = type; + this.defines = defines; + } /// <summary>Constructor used for sending new declarations to mmt</summary> public MMTGeneralFact(string label, SOMDoc type, SOMDoc defines) @@ -142,6 +150,9 @@ public override string getApplicant() _ => null }; } + + public override MMTFact MapURIs(Dictionary<string, string> old_to_new) + => new MMTGeneralFact(@ref, label, type.MapURIs(old_to_new), defines.MapURIs(old_to_new)); } /// <summary>Class for facts with values, e.g. Distances or Angles</summary> @@ -162,7 +173,15 @@ public class MMTValueFact : MMTFact public SOMDoc proof; [JsonConstructor] - private MMTValueFact() { } + private MMTValueFact(OMS @ref, string label, SOMDoc lhs, SOMDoc valueType, SOMDoc value, SOMDoc proof = null) + { + this.@ref = @ref; + this.label = label; + this.lhs = lhs; + this.valueType = valueType; + this.value = value; + this.proof = proof; + } /// <summary>Constructor used for sending new declarations to mmt</summary> public MMTValueFact(string label, SOMDoc lhs, SOMDoc valueType, SOMDoc value, SOMDoc proof = null) @@ -191,6 +210,14 @@ public override string getApplicant() _ => null }; } + + public override MMTFact MapURIs(Dictionary<string, string> old_to_new) + => new MMTValueFact(@ref, label, + lhs.MapURIs(old_to_new), + valueType.MapURIs(old_to_new), + value.MapURIs(old_to_new), + proof.MapURIs(old_to_new) + ); } public class Scroll diff --git a/Assets/Scripts/MMTServer/CommunicationProtocoll/SOMDocToLambdaExpression.cs b/Assets/Scripts/MMTServer/CommunicationProtocoll/SOMDocToLambdaExpression.cs index 24fd247a..47308153 100644 --- a/Assets/Scripts/MMTServer/CommunicationProtocoll/SOMDocToLambdaExpression.cs +++ b/Assets/Scripts/MMTServer/CommunicationProtocoll/SOMDocToLambdaExpression.cs @@ -6,22 +6,20 @@ using System.Reflection; using UnityEditor; using System.Collections.ObjectModel; -using UnityEngine.Assertions; namespace REST_JSON_API { abstract public partial class SOMDoc { - public Func<object[], object[]> PartialInvokeCastingLambdaExpression(out Type[] signature, object[] callArgs = null, bool[] useArgs = null) + public Func<object[], object[]> PartialInvokeCastingLambdaExpression(out Expression compile_base, out Type[] signature, object[] callArgs = null, bool[] useArgs = null) { - Expression to_compile; List<Type> signature_list; LambdaExpression lambda_orig = GetLambdaExpression(); if (FuncExtensions.IsFuncType(lambda_orig.ReturnType, out int signature_count)) { signature_list = lambda_orig.ReturnType.GetGenericArguments().ToList(); - to_compile = lambda_orig.Body; + compile_base = lambda_orig.Body; } else { @@ -31,7 +29,7 @@ public Func<object[], object[]> PartialInvokeCastingLambdaExpression(out Type[] lambda_orig.Parameters.Select(p => p.Type), lambda_orig.ReturnType) .ToList(); - to_compile = lambda_orig; + compile_base = lambda_orig; } ParameterExpression object_arr = Expression.Parameter(typeof(object[]), "PARAMS_Arr"); @@ -64,10 +62,10 @@ public Func<object[], object[]> PartialInvokeCastingLambdaExpression(out Type[] LambdaExpression final_expression = Expression.Lambda( typeof(object[]).IsAssignableFrom(signature[^1]) - ? Expression.Invoke(to_compile, cast_new_to_signature) + ? Expression.Invoke(compile_base, cast_new_to_signature) : Expression.NewArrayInit( typeof(object), - new Expression[] { Expression.Convert(Expression.Invoke(to_compile, cast_new_to_signature), typeof(object)) }), + new Expression[] { Expression.Convert(Expression.Invoke(compile_base, cast_new_to_signature), typeof(object)) }), object_arr ); @@ -83,6 +81,8 @@ protected static class SOMDocToLambdaExpression public delegate LambdaExpression CustomFunction(LambdaExpression[] lambda_applicant, LambdaExpression[] lambda_arguments, ParameterExpression[] bound_params); private static readonly Dictionary<string, CustomFunction> MMTtoLambdaMaker = new() { + { MMTConstants.InvertRealLit, + MakeInvert }, { MMTConstants.Sin, MakeSin }, { MMTConstants.Cos, @@ -121,7 +121,7 @@ protected static class SOMDocToLambdaExpression CallAnyFunction(false, "ToArray", typeof(Enumerable)) }, { MMTConstants.Filter2, ChainMakes(new[]{ - CallAnyFunction(false, "WhereManual", typeof(IEnumerableExtensions)), + CallAnyFunction(false, "Where", typeof(Enumerable)), CallAnyFunction(false, "ToList", typeof(Enumerable))})}, { MMTConstants.Fold, Aggregate}, @@ -231,8 +231,6 @@ protected static class SOMDocToLambdaExpression ExpressionType.Increment}, { MMTConstants.MinusRealLit, ExpressionType.Negate}, - { MMTConstants.InvertRealLit, - ExpressionType.Negate}, { "NegateChecked", ExpressionType.NegateChecked}, { "Not", @@ -275,30 +273,46 @@ void ThrowArgumentException(ExpressionType expression_cast, int expected) if (FactRecorder.AllFacts.TryGetValue(URI, out Fact fact)) { - MMTFact decl = fact.MakeMMTDeclaration(); - SOMDoc df = decl is MMTGeneralFact gf - ? gf.defines - : (decl as MMTValueFact).lhs; - - LambdaExpression lambda_orig = df.GetLambdaExpression(); + Expression lambda_lambda; + int ll_params_c; + IEnumerable<Type> ll_params; - if (lambda_orig.Body is not LambdaExpression lambda_lambda - || lambda_applicant.Length == 0) - return lambda_orig; + if (fact is not FunctionFact ffact) + { + MMTFact decl = fact.MakeMMTDeclaration(); + SOMDoc df = decl is MMTGeneralFact gf + ? gf.defines + : (decl as MMTValueFact).lhs; + + LambdaExpression lambda_orig = df.GetLambdaExpression(); + if (lambda_orig.Body is not LambdaExpression lambda_lambda1 + || lambda_applicant.Length == 0) + return lambda_orig; + + lambda_lambda = lambda_lambda1; + ll_params_c = lambda_lambda1.Parameters.Count(); + ll_params = lambda_lambda1.Parameters.Select(p => p.Type); + } + else + { + lambda_lambda = ffact.LambdaExpression; + ll_params_c = ffact.Signature.Length - 1; + ll_params = ffact.Signature.Take(ll_params_c); + } - int free_params = lambda_lambda.Parameters.Count() - lambda_applicant.Length; + int free_params = ll_params_c - lambda_applicant.Length; if (free_params <= 0) return Expression.Lambda( Expression.Invoke( - lambda_lambda, - lambda_applicant.Select(app => app.Body).Take(lambda_lambda.Parameters.Count())), + lambda_lambda, + lambda_applicant.Select(app => app.Body).Take(ll_params_c)), found_bound_params ); ParameterExpression[] new_params = - lambda_lambda.Parameters + ll_params .Skip(lambda_applicant.Length) - .Select(p => Expression.Parameter(p.Type)) + .Select(t => Expression.Parameter(t)) .ToArray(); return Expression.Lambda( @@ -359,6 +373,14 @@ public static LambdaExpression ExpresionFuncToLambda(LambdaExpression func, stri public static LambdaExpression ParseFuncUUToExpression<U>(Func<U, U> func) => (Expression<Func<U, U>>)((U x) => func(x)); + public static LambdaExpression MakeInvert(LambdaExpression[] lambda_applicant, LambdaExpression[] lambda_arguments, ParameterExpression[] bound_params) + => Expression.Lambda( + Expression.MakeBinary(ExpressionType.Divide, + Expression.Convert(Expression.Constant(1), lambda_applicant[0].ReturnType), + lambda_applicant[0].Body), + bound_params + ); + public static LambdaExpression MakeSin(LambdaExpression[] lambda_applicant, LambdaExpression[] lambda_arguments, ParameterExpression[] bound_params) => ExpresionFuncToLambda( lambda_applicant[0].ReturnType == typeof(float) ? ParseFuncUUToExpression<float>(MathF.Sin) diff --git a/Assets/Scripts/Utility/Extensions/IEnumerableExtensions.cs b/Assets/Scripts/Utility/Extensions/IEnumerableExtensions.cs index d7156187..ac9f5a5a 100644 --- a/Assets/Scripts/Utility/Extensions/IEnumerableExtensions.cs +++ b/Assets/Scripts/Utility/Extensions/IEnumerableExtensions.cs @@ -52,6 +52,19 @@ Func<TSource, bool> predicate } } + public static IEnumerable<TSelect> SelectManual<TSource, TSelect> + ( + IEnumerable<TSource> source, + Func<TSource, TSelect> selector + ) + { + foreach (TSource item in source) + { + TSelect selected = selector(item); + yield return selected; + } + } + public static TAccumulate AggregateManual<TAccumulate, TSource> ( IEnumerable<TSource> source, diff --git a/Assets/Stages/CanonBall 2D.JSON b/Assets/Stages/CanonBall 2D.JSON index 96bd0b6b..44b55727 100644 --- a/Assets/Stages/CanonBall 2D.JSON +++ b/Assets/Stages/CanonBall 2D.JSON @@ -7,20 +7,20 @@ "solution": { "ValidationSet": [], "ExposedSolutionFacts": [ - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 14.715, 18.639)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 7.3575, -24.0345)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0)", - "0.8", - "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, -0.04905), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 19.66905))", - "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -0.04905, 0), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.66905, 0.0004905))", - "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -0.04905, 19.62), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.66905, 19.62049))", - "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.62, -0.04905), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.62, 19.66905))", - "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 9.809999, 2.4525), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 13.2435, 5.886))", - "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 7.3575), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 9.809999))", - "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 13.97925, 7.3575), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 9.809999, 9.809999))", - "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 17.658, 11.2815), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 14.715, 14.715))", - "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 14.715), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 7.3575, 18.88425))", - "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 2.4525, 2.4525), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 6.62175, 4.905))", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact7", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact8", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact9", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact10", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact13", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact16", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact19", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact22", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact25", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact28", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact31", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact34", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact37", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact40", "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 14.71507, 18.63876), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 7.3575, -24.0345), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(0)))}(-1E-05, 0.2337258)", "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 16.16695, 13.02121), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 18.38171, -6.944755), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(0.2337258)))}(0.2337158, 0.4320768)", "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.61987, 11.64365), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -13.14871, -5.555804), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(0.4320768)))}(0.4320667, 0.9467315)", @@ -59,177 +59,177 @@ "-1": null }, "MetaInf": { - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 14.715, 18.639)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact7": { "workflow_id": 0, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 7.3575, -24.0345)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact8": { "workflow_id": 1, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact9": { "workflow_id": 2, "active": true, "isImmutable": false }, - "0.8": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact10": { "workflow_id": 3, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, -0.04905)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact11": { "workflow_id": 4, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 19.66905)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact12": { "workflow_id": 5, "active": true, "isImmutable": false }, - "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, -0.04905), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 19.66905))": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact13": { "workflow_id": 6, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -0.04905, 0)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact14": { "workflow_id": 7, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.66905, 0.0004905)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact15": { "workflow_id": 8, "active": true, "isImmutable": false }, - "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -0.04905, 0), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.66905, 0.0004905))": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact16": { "workflow_id": 9, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -0.04905, 19.62)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact17": { "workflow_id": 10, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.66905, 19.62049)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact18": { "workflow_id": 11, "active": true, "isImmutable": false }, - "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -0.04905, 19.62), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.66905, 19.62049))": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact19": { "workflow_id": 12, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.62, -0.04905)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact20": { "workflow_id": 13, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.62, 19.66905)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact21": { "workflow_id": 14, "active": true, "isImmutable": false }, - "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.62, -0.04905), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.62, 19.66905))": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact22": { "workflow_id": 15, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 9.809999, 2.4525)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact23": { "workflow_id": 16, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 13.2435, 5.886)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact24": { "workflow_id": 17, "active": true, "isImmutable": false }, - "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 9.809999, 2.4525), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 13.2435, 5.886))": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact25": { "workflow_id": 18, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 7.3575)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact26": { "workflow_id": 19, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 9.809999)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact27": { "workflow_id": 20, "active": true, "isImmutable": false }, - "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 7.3575), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 9.809999))": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact28": { "workflow_id": 21, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 13.97925, 7.3575)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact29": { "workflow_id": 22, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 9.809999, 9.809999)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact30": { "workflow_id": 23, "active": true, "isImmutable": false }, - "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 13.97925, 7.3575), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 9.809999, 9.809999))": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact31": { "workflow_id": 24, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 17.658, 11.2815)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact32": { "workflow_id": 25, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 14.715, 14.715)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact33": { "workflow_id": 26, "active": true, "isImmutable": false }, - "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 17.658, 11.2815), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 14.715, 14.715))": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact34": { "workflow_id": 27, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 14.715)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact35": { "workflow_id": 28, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 7.3575, 18.88425)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact36": { "workflow_id": 29, "active": true, "isImmutable": false }, - "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 14.715), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 7.3575, 18.88425))": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact37": { "workflow_id": 30, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 2.4525, 2.4525)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact38": { "workflow_id": 31, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 6.62175, 4.905)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact39": { "workflow_id": 32, "active": true, "isImmutable": false }, - "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 2.4525, 2.4525), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 6.62175, 4.905))": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact40": { "workflow_id": 33, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Datatypes?ListSymbols?list(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(-1, 0), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(401, 0)), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -1), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0.01, 401)), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(400, -1), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(400.01, 401)), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(-1, 400), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(401, 400)), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(50, 200), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(120, 270)), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(150, 100), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(200, 100)), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(150, 285), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(200, 200)), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(230, 360), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(300, 300)), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(300, 100), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(385, 150)), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(50, 50), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(100, 135)))": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact41": { "workflow_id": 34, "active": true, "isImmutable": false @@ -562,354 +562,354 @@ }, "Workflow": [ { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 14.715, 18.639)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact7", "samestep": false, "steplink": 1, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 7.3575, -24.0345)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact8", "samestep": false, "steplink": 2, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact9", "samestep": false, "steplink": 3, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "0.8", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact10", "samestep": false, "steplink": 4, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, -0.04905)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact11", "samestep": false, "steplink": 7, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 19.66905)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact12", "samestep": true, "steplink": 4, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, -0.04905), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 19.66905))", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact13", "samestep": true, "steplink": 4, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -0.04905, 0)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact14", "samestep": false, "steplink": 10, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.66905, 0.0004905)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact15", "samestep": true, "steplink": 7, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -0.04905, 0), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.66905, 0.0004905))", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact16", "samestep": true, "steplink": 7, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -0.04905, 19.62)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact17", "samestep": false, "steplink": 13, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.66905, 19.62049)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact18", "samestep": true, "steplink": 10, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -0.04905, 19.62), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.66905, 19.62049))", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact19", "samestep": true, "steplink": 10, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.62, -0.04905)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact20", "samestep": false, "steplink": 16, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.62, 19.66905)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact21", "samestep": true, "steplink": 13, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.62, -0.04905), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.62, 19.66905))", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact22", "samestep": true, "steplink": 13, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 9.809999, 2.4525)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact23", "samestep": false, "steplink": 19, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 13.2435, 5.886)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact24", "samestep": true, "steplink": 16, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 9.809999, 2.4525), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 13.2435, 5.886))", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact25", "samestep": true, "steplink": 16, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 7.3575)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact26", "samestep": false, "steplink": 22, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 9.809999)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact27", "samestep": true, "steplink": 19, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 7.3575), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 9.809999))", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact28", "samestep": true, "steplink": 19, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 13.97925, 7.3575)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact29", "samestep": false, "steplink": 25, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 9.809999, 9.809999)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact30", "samestep": true, "steplink": 22, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 13.97925, 7.3575), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 9.809999, 9.809999))", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact31", "samestep": true, "steplink": 22, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 17.658, 11.2815)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact32", "samestep": false, "steplink": 28, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 14.715, 14.715)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact33", "samestep": true, "steplink": 25, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 17.658, 11.2815), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 14.715, 14.715))", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact34", "samestep": true, "steplink": 25, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 14.715)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact35", "samestep": false, "steplink": 31, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 7.3575, 18.88425)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact36", "samestep": true, "steplink": 28, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 14.715), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 7.3575, 18.88425))", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact37", "samestep": true, "steplink": 28, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 2.4525, 2.4525)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact38", "samestep": false, "steplink": 35, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 6.62175, 4.905)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact39", "samestep": true, "steplink": 31, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 2.4525, 2.4525), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 6.62175, 4.905))", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact40", "samestep": true, "steplink": 31, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Datatypes?ListSymbols?list(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(-1, 0), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(401, 0)), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -1), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0.01, 401)), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(400, -1), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(400.01, 401)), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(-1, 400), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(401, 400)), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(50, 200), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(120, 270)), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(150, 100), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(200, 100)), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(150, 285), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(200, 200)), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(230, 360), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(300, 300)), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(300, 100), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(385, 150)), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(50, 50), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(100, 135)))", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact41", "samestep": true, "steplink": 31, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}", @@ -919,7 +919,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 14.71507, 18.63876), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 7.3575, -24.0345), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(0)))}", @@ -929,7 +929,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 14.71507, 18.63876), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 7.3575, -24.0345), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(0)))}(-1E-05, 0.2337258)", @@ -939,7 +939,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 16.16695, 13.02121), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 18.38171, -6.944755), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(0.2337258)))}", @@ -949,7 +949,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 16.16695, 13.02121), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 18.38171, -6.944755), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(0.2337258)))}(0.2337158, 0.4320768)", @@ -959,7 +959,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.61987, 11.64365), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -13.14871, -5.555804), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(0.4320768)))}", @@ -969,7 +969,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.61987, 11.64365), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -13.14871, -5.555804), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(0.4320768)))}(0.4320667, 0.9467315)", @@ -979,7 +979,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 11.5536, 8.784481), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -3.188384, 14.88368), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(0.9467315)))}", @@ -989,7 +989,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 11.5536, 8.784481), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -3.188384, 14.88368), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(0.9467315)))}(0.9467215, 1.613118)", @@ -999,7 +999,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 7.250884, 18.70275), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 14.18734, -1.015321), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(1.613118)))}", @@ -1009,7 +1009,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 7.250884, 18.70275), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 14.18734, -1.015321), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(1.613118)))}(1.613108, 4.627315)", @@ -1019,7 +1019,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 5.450568, 15.64226), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 5.268845, -11.15014), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(4.627315)))}", @@ -1029,7 +1029,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 5.450568, 15.64226), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 5.268845, -11.15014), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(4.627315)))}(4.627305, 5.634649)", @@ -1039,7 +1039,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 5.780749, 4.41036), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.589557, 1.108319), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(5.634649)))}", @@ -1049,7 +1049,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 5.780749, 4.41036), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.589557, 1.108319), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(5.634649)))}(5.634639, 6.117978)", @@ -1059,7 +1059,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0.0001146476, 4.946052), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 11.46481, 0.8866553), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(6.117978)))}", @@ -1069,7 +1069,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0.0001146476, 4.946052), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 11.46481, 0.8866553), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(6.117978)))}(6.117968, 8.45536)", @@ -1079,7 +1079,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 9.362611E-05, 7.018511), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 9.171925, 0.7093243), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(8.45536)))}", @@ -1089,7 +1089,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 9.362611E-05, 7.018511), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 9.171925, 0.7093243), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(8.45536)))}(8.455351, 10.32528)", @@ -1099,7 +1099,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 7.337572E-05, 8.344899), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 7.337621, 0.5674595), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(10.32528)))}", @@ -1109,7 +1109,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 7.337572E-05, 8.344899), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 7.337621, 0.5674595), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(10.32528)))}(10.32527, 11.82124)", @@ -1119,7 +1119,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 5.774759E-05, 9.193799), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 5.870175, 0.4539676), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(11.82124)))}", @@ -1129,7 +1129,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 5.774759E-05, 9.193799), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 5.870175, 0.4539676), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(11.82124)))}(11.82123, 13.01803)", @@ -1139,7 +1139,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.696168E-05, 9.737103), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.696218, 0.3631741), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(13.01803)))}", @@ -1149,7 +1149,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.696168E-05, 9.737103), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.696218, 0.3631741), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(13.01803)))}(13.01802, 13.97547)", @@ -1159,7 +1159,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 3.70932E-05, 10.08483), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 3.757053, 0.2905392), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(13.97547)))}", @@ -1169,7 +1169,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 3.70932E-05, 10.08483), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 3.757053, 0.2905392), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(13.97547)))}(13.97546, 14.74144)", @@ -1179,7 +1179,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 3.053354E-05, 10.30737), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 3.00572, 0.2324314), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(14.74144)))}", @@ -1189,7 +1189,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 3.053354E-05, 10.30737), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 3.00572, 0.2324314), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(14.74144)))}(14.74144, 15.35424)", @@ -1199,7 +1199,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 2.404606E-05, 10.44981), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 2.404655, 0.1859451), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(15.35424)))}", @@ -1209,7 +1209,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 2.404606E-05, 10.44981), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 2.404655, 0.1859451), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(15.35424)))}(15.35423, 15.8445)", @@ -1219,7 +1219,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 1.923753E-05, 10.54097), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 1.923803, 0.1487561), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(15.8445)))}", @@ -1229,7 +1229,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 1.923753E-05, 10.54097), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 1.923803, 0.1487561), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(15.8445)))}(15.84449, 16.23672)", @@ -1239,7 +1239,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 1.533111E-05, 10.59932), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 1.539121, 0.1190049), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(16.23672)))}", @@ -1249,7 +1249,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 1.533111E-05, 10.59932), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 1.539121, 0.1190049), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(16.23672)))}(16.23671, 16.55051)", @@ -1259,7 +1259,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 1.231325E-05, 10.63666), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 1.231375, 0.09520391), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(16.55051)))}", @@ -1269,7 +1269,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 1.231325E-05, 10.63666), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 1.231375, 0.09520391), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(16.55051)))}(16.5505, 16.80157)", @@ -1279,7 +1279,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 9.851289E-06, 10.66056), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0.985178, 0.07616313), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(16.80157)))}", @@ -1289,7 +1289,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 9.851289E-06, 10.66056), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0.985178, 0.07616313), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(16.80157)))}(16.80156, 17.00243)", @@ -1299,7 +1299,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 7.881718E-06, 10.67586), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0.7882209, 0.0609305), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(17.00243)))}", @@ -1309,7 +1309,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 7.881718E-06, 10.67586), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0.7882209, 0.0609305), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(17.00243)))}(17.00242, 17.16314)", @@ -1319,7 +1319,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 6.320961E-06, 10.68566), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0.6306551, 0.0487444), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(17.16314)))}", @@ -1329,7 +1329,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 6.320961E-06, 10.68566), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0.6306551, 0.0487444), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(17.16314)))}(17.16313, 17.29172)", @@ -1339,7 +1339,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 5.045537E-06, 10.69192), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0.5046028, 0.03899552), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(17.29172)))}", @@ -1349,7 +1349,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 5.045537E-06, 10.69192), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0.5046028, 0.03899552), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(17.29172)))}(17.29171, 17.39461)", @@ -1359,7 +1359,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.03339E-06, 10.69594), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0.4037606, 0.03119642), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(17.39461)))}", @@ -1369,7 +1369,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.03339E-06, 10.69594), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0.4037606, 0.03119642), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(17.39461)))}(17.3946, 17.47693)", @@ -1379,7 +1379,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 3.230379E-06, 10.6985), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0.3230869, 0.02495714), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(17.47693)))}", @@ -1389,7 +1389,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 3.230379E-06, 10.6985), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0.3230869, 0.02495714), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(17.47693)))}(17.47692, 17.54281)", @@ -1399,7 +1399,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 2.584989E-06, 10.70015), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0.258548, 0.01996571), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(17.54281)))}", @@ -1409,7 +1409,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 2.584989E-06, 10.70015), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0.258548, 0.01996571), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(17.54281)))}(17.5428, 17.59553)", @@ -1419,7 +1419,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 2.068678E-06, 10.7012), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0.2069168, 0.01597257), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(17.59553)))}", @@ -1429,7 +1429,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 2.068678E-06, 10.7012), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0.2069168, 0.01597257), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(17.59553)))}(17.59552, 17.63773)", @@ -1439,7 +1439,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 1.655629E-06, 10.70187), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0.1656119, 0.01277805), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(17.63773)))}", @@ -1449,7 +1449,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 1.655629E-06, 10.70187), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0.1656119, 0.01277805), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(17.63773)))}(17.63772, 17.6715)", @@ -1459,7 +1459,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 1.324724E-06, 10.70231), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0.132568, 0.01022244), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(17.6715)))}", @@ -1469,7 +1469,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 1.324724E-06, 10.70231), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0.132568, 0.01022244), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(17.6715)))}(17.67149, 17.69854)", @@ -1479,7 +1479,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 1.060837E-06, 10.70258), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0.1061328, 0.008177955), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(17.69854)))}", @@ -1489,7 +1489,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 1.060837E-06, 10.70258), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0.1061328, 0.008177955), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(17.69854)))}(17.69853, 17.72019)", @@ -1499,7 +1499,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 8.49123E-07, 10.70276), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0.08498463, 0.006542364), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(17.72019)))}", @@ -1509,7 +1509,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 8.49123E-07, 10.70276), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0.08498463, 0.006542364), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(17.72019)))}(17.72018, 17.73752)", @@ -1519,7 +1519,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 6.800538E-07, 10.70287), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0.06806608, 0.005233891), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(17.73752)))}", @@ -1529,7 +1529,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 6.800538E-07, 10.70287), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0.06806608, 0.005233891), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(17.73752)))}(17.73751, 17.75141)", @@ -1539,7 +1539,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 5.448217E-07, 10.70295), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0.05453122, 0.004187113), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(17.75141)))}", @@ -1549,7 +1549,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 5.448217E-07, 10.70295), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0.05453122, 0.004187113), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(17.75141)))}(17.7514, 17.76254)", @@ -1559,7 +1559,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 } ], "marker": 100, @@ -1570,7 +1570,7 @@ "MaxLabelId": 90, "UnusedLabelIds": [], "JsonFactSpace": { - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 14.715, 18.639)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact7": { "Point": { "x": 0.0, "y": 14.715, @@ -1594,34 +1594,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 14.715 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 18.639 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact7" }, "Label": "A", "hasCustomLabel": false, "LabelId": 1 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 7.3575, -24.0345)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact8": { "Point": { "x": 0.0, "y": 7.3575, @@ -1645,34 +1625,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 7.3575 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": -24.0345 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact8" }, "Label": "B", "hasCustomLabel": false, "LabelId": 2 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact9": { "Point": { "x": 0.0, "y": -9.809999, @@ -1696,46 +1656,25 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": -9.809999 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact9" }, "Label": "C", "hasCustomLabel": false, "LabelId": 3 }, - "0.8": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact10": { "value": 0.8, "s_type": "RealLitFact", "ServerDefinition": { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.8 + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact10" }, "Label": "D", "hasCustomLabel": false, "LabelId": 4 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, -0.04905)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact11": { "Point": { "x": 0.0, "y": 0.0, @@ -1759,34 +1698,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": -0.04905 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact11" }, "Label": "E", "hasCustomLabel": false, "LabelId": 5 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 19.66905)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact12": { "Point": { "x": 0.0, "y": 0.0, @@ -1810,37 +1729,17 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 19.66905 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact12" }, "Label": "F", "hasCustomLabel": false, "LabelId": 6 }, - "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, -0.04905), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 19.66905))": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact13": { "s_type": "LineFact", - "Pid1": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, -0.04905)", - "Pid2": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 19.66905)", + "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact11", + "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact12", "Dir": { "x": 0.0, "y": 0.0, @@ -1849,27 +1748,14 @@ "sqrMagnitude": 1.0 }, "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric" - }, - "arguments": [ - { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, -0.04905)" - }, - { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 19.66905)" - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact13" }, "Label": "[EF]", "hasCustomLabel": false, "LabelId": 0 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -0.04905, 0)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact14": { "Point": { "x": 0.0, "y": -0.04905, @@ -1893,34 +1779,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": -0.04905 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact14" }, "Label": "G", "hasCustomLabel": false, "LabelId": 7 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.66905, 0.0004905)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact15": { "Point": { "x": 0.0, "y": 19.66905, @@ -1944,37 +1810,17 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 19.66905 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0004905 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact15" }, "Label": "H", "hasCustomLabel": false, "LabelId": 8 }, - "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -0.04905, 0), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.66905, 0.0004905))": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact16": { "s_type": "LineFact", - "Pid1": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -0.04905, 0)", - "Pid2": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.66905, 0.0004905)", + "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact14", + "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact15", "Dir": { "x": 0.0, "y": -1.0, @@ -1983,27 +1829,14 @@ "sqrMagnitude": 1.0 }, "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric" - }, - "arguments": [ - { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -0.04905, 0)" - }, - { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.66905, 0.0004905)" - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact16" }, "Label": "[GH]", "hasCustomLabel": false, "LabelId": 0 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -0.04905, 19.62)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact17": { "Point": { "x": 0.0, "y": -0.04905, @@ -2027,34 +1860,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": -0.04905 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 19.6199989 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact17" }, "Label": "I", "hasCustomLabel": false, "LabelId": 9 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.66905, 19.62049)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact18": { "Point": { "x": 0.0, "y": 19.66905, @@ -2078,37 +1891,17 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 19.66905 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 19.620491 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact18" }, "Label": "J", "hasCustomLabel": false, "LabelId": 10 }, - "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -0.04905, 19.62), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.66905, 19.62049))": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact19": { "s_type": "LineFact", - "Pid1": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -0.04905, 19.62)", - "Pid2": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.66905, 19.62049)", + "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact17", + "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact18", "Dir": { "x": 0.0, "y": -1.0, @@ -2117,27 +1910,14 @@ "sqrMagnitude": 1.0 }, "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric" - }, - "arguments": [ - { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -0.04905, 19.62)" - }, - { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.66905, 19.62049)" - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact19" }, "Label": "[IJ]", "hasCustomLabel": false, "LabelId": 0 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.62, -0.04905)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact20": { "Point": { "x": 0.0, "y": 19.6199989, @@ -2161,34 +1941,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 19.6199989 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": -0.04905 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact20" }, "Label": "K", "hasCustomLabel": false, "LabelId": 11 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.62, 19.66905)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact21": { "Point": { "x": 0.0, "y": 19.6199989, @@ -2212,37 +1972,17 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 19.6199989 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 19.66905 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact21" }, "Label": "L", "hasCustomLabel": false, "LabelId": 12 }, - "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.62, -0.04905), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.62, 19.66905))": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact22": { "s_type": "LineFact", - "Pid1": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.62, -0.04905)", - "Pid2": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.62, 19.66905)", + "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact20", + "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact21", "Dir": { "x": 0.0, "y": 0.0, @@ -2251,27 +1991,14 @@ "sqrMagnitude": 1.0 }, "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric" - }, - "arguments": [ - { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.62, -0.04905)" - }, - { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.62, 19.66905)" - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact22" }, "Label": "[KL]", "hasCustomLabel": false, "LabelId": 0 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 9.809999, 2.4525)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact23": { "Point": { "x": 0.0, "y": 9.809999, @@ -2295,34 +2022,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 9.809999 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 2.45249987 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact23" }, "Label": "M", "hasCustomLabel": false, "LabelId": 13 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 13.2435, 5.886)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact24": { "Point": { "x": 0.0, "y": 13.2435, @@ -2346,37 +2053,17 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 13.2435 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 5.886 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact24" }, "Label": "N", "hasCustomLabel": false, "LabelId": 14 }, - "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 9.809999, 2.4525), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 13.2435, 5.886))": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact25": { "s_type": "LineFact", - "Pid1": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 9.809999, 2.4525)", - "Pid2": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 13.2435, 5.886)", + "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact23", + "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact24", "Dir": { "x": 0.0, "y": -0.707106769, @@ -2385,27 +2072,14 @@ "sqrMagnitude": 0.99999994 }, "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric" - }, - "arguments": [ - { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 9.809999, 2.4525)" - }, - { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 13.2435, 5.886)" - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact25" }, "Label": "[MN]", "hasCustomLabel": false, "LabelId": 0 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 7.3575)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact26": { "Point": { "x": 0.0, "y": 4.90499973, @@ -2429,34 +2103,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 4.90499973 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 7.3575 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact26" }, "Label": "O", "hasCustomLabel": false, "LabelId": 15 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 9.809999)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact27": { "Point": { "x": 0.0, "y": 4.90499973, @@ -2480,37 +2134,17 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 4.90499973 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 9.809999 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact27" }, "Label": "P", "hasCustomLabel": false, "LabelId": 16 }, - "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 7.3575), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 9.809999))": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact28": { "s_type": "LineFact", - "Pid1": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 7.3575)", - "Pid2": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 9.809999)", + "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact26", + "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact27", "Dir": { "x": 0.0, "y": 0.0, @@ -2519,27 +2153,14 @@ "sqrMagnitude": 1.0 }, "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric" - }, - "arguments": [ - { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 7.3575)" - }, - { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 9.809999)" - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact28" }, "Label": "[OP]", "hasCustomLabel": false, "LabelId": 0 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 13.97925, 7.3575)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact29": { "Point": { "x": 0.0, "y": 13.97925, @@ -2563,34 +2184,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 13.97925 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 7.3575 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact29" }, "Label": "Q", "hasCustomLabel": false, "LabelId": 17 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 9.809999, 9.809999)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact30": { "Point": { "x": 0.0, "y": 9.809999, @@ -2614,37 +2215,17 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 9.809999 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 9.809999 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact30" }, "Label": "R", "hasCustomLabel": false, "LabelId": 18 }, - "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 13.97925, 7.3575), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 9.809999, 9.809999))": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact31": { "s_type": "LineFact", - "Pid1": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 13.97925, 7.3575)", - "Pid2": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 9.809999, 9.809999)", + "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact29", + "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact30", "Dir": { "x": 0.0, "y": 0.8619343, @@ -2653,27 +2234,14 @@ "sqrMagnitude": 1.0 }, "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric" - }, - "arguments": [ - { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 13.97925, 7.3575)" - }, - { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 9.809999, 9.809999)" - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact31" }, "Label": "[QR]", "hasCustomLabel": false, "LabelId": 0 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 17.658, 11.2815)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact32": { "Point": { "x": 0.0, "y": 17.657999, @@ -2697,34 +2265,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 17.657999 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 11.2815 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact32" }, "Label": "S", "hasCustomLabel": false, "LabelId": 19 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 14.715, 14.715)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact33": { "Point": { "x": 0.0, "y": 14.715, @@ -2755,37 +2303,17 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 14.715 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 14.715 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact33" }, "Label": "T", "hasCustomLabel": false, "LabelId": 20 }, - "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 17.658, 11.2815), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 14.715, 14.715))": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact34": { "s_type": "LineFact", - "Pid1": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 17.658, 11.2815)", - "Pid2": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 14.715, 14.715)", + "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact32", + "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact33", "Dir": { "x": 0.0, "y": 0.650791168, @@ -2801,27 +2329,14 @@ "sqrMagnitude": 0.99999994 }, "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric" - }, - "arguments": [ - { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 17.658, 11.2815)" - }, - { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 14.715, 14.715)" - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact34" }, "Label": "[ST]", "hasCustomLabel": false, "LabelId": 0 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 14.715)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact35": { "Point": { "x": 0.0, "y": 4.90499973, @@ -2845,34 +2360,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 4.90499973 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 14.715 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact35" }, "Label": "U", "hasCustomLabel": false, "LabelId": 21 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 7.3575, 18.88425)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact36": { "Point": { "x": 0.0, "y": 7.3575, @@ -2903,37 +2398,17 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 7.3575 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 18.88425 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact36" }, "Label": "V", "hasCustomLabel": false, "LabelId": 22 }, - "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 14.715), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 7.3575, 18.88425))": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact37": { "s_type": "LineFact", - "Pid1": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 14.715)", - "Pid2": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 7.3575, 18.88425)", + "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact35", + "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact36", "Dir": { "x": 0.0, "y": -0.5070201, @@ -2949,27 +2424,14 @@ "sqrMagnitude": 0.99999994 }, "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric" - }, - "arguments": [ - { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 14.715)" - }, - { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 7.3575, 18.88425)" - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact37" }, "Label": "[UV]", "hasCustomLabel": false, "LabelId": 0 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 2.4525, 2.4525)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact38": { "Point": { "x": 0.0, "y": 2.45249987, @@ -2993,34 +2455,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 2.45249987 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 2.45249987 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact38" }, "Label": "W", "hasCustomLabel": false, "LabelId": 23 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 6.62175, 4.905)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact39": { "Point": { "x": 0.0, "y": 6.62175, @@ -3058,37 +2500,17 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 6.62175 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 4.90499973 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact39" }, "Label": "X", "hasCustomLabel": false, "LabelId": 24 }, - "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 2.4525, 2.4525), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 6.62175, 4.905))": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact40": { "s_type": "LineFact", - "Pid1": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 2.4525, 2.4525)", - "Pid2": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 6.62175, 4.905)", + "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact38", + "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact39", "Dir": { "x": 0.0, "y": -0.8619342, @@ -3104,27 +2526,14 @@ "sqrMagnitude": 0.99999994 }, "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric" - }, - "arguments": [ - { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 2.4525, 2.4525)" - }, - { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 6.62175, 4.905)" - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact40" }, "Label": "[WX]", "hasCustomLabel": false, "LabelId": 0 }, - "http://gl.mathhub.info/MMT/LFX/Datatypes?ListSymbols?list(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(-1, 0), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(401, 0)), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -1), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0.01, 401)), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(400, -1), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(400.01, 401)), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(-1, 400), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(401, 400)), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(50, 200), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(120, 270)), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(150, 100), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(200, 100)), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(150, 285), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(200, 200)), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(230, 360), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(300, 300)), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(300, 100), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(385, 150)), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(50, 50), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(100, 135)))": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact41": { "lids": [], "payload": [ { @@ -3652,483 +3061,8 @@ }, "s_type": "ListFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Datatypes?ListSymbols?list" - }, - "arguments": [ - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": -1.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - } - ] - }, - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 401.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - } - ] - } - ] - }, - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": -1.0 - } - ] - }, - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.01 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 401.0 - } - ] - } - ] - }, - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 400.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": -1.0 - } - ] - }, - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 400.01 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 401.0 - } - ] - } - ] - }, - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": -1.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 400.0 - } - ] - }, - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 401.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 400.0 - } - ] - } - ] - }, - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 50.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 200.0 - } - ] - }, - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 120.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 270.0 - } - ] - } - ] - }, - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 150.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 100.0 - } - ] - }, - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 200.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 100.0 - } - ] - } - ] - }, - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 150.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 285.0 - } - ] - }, - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 200.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 200.0 - } - ] - } - ] - }, - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 230.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 360.0 - } - ] - }, - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 300.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 300.0 - } - ] - } - ] - }, - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 300.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 100.0 - } - ] - }, - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 385.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 150.0 - } - ] - } - ] - }, - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 50.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 50.0 - } - ] - }, - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 100.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 135.0 - } - ] - } - ] - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact41" }, "Label": "Y", "hasCustomLabel": false, diff --git a/Assets/Stages/CanonBall 3D.JSON b/Assets/Stages/CanonBall 3D.JSON index 552c5da2..8d4ba14b 100644 --- a/Assets/Stages/CanonBall 3D.JSON +++ b/Assets/Stages/CanonBall 3D.JSON @@ -7,24 +7,24 @@ "solution": { "ValidationSet": [], "ExposedSolutionFacts": [ - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 14.715, 18.639)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(4.905, 7.3575, -24.0345)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0)", - "0.8", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact36", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact37", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact38", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact39", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact40", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact41", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact42", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact43", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact44", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact45", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact46", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact47", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact48", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact49", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact42", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact43", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact44", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact45", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact50", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact55", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact60", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact65", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact70", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact75", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact80", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact85", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact90", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact95", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact100", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact105", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact110", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact115", "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(4.905E-05, 14.71507, 18.63876), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(4.905, 7.3575, -24.0345), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(0)))}(-1E-05, 0.2860328)", "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(1.403079, 16.41841, 11.76398), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(3.924, 14.82811, -12.77051), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(0.2860328)))}(0.2860228, 0.5200639)", "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(2.321449, 19.6199, 8.775176), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(3.1392, -10.02582, -10.21641), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(0.5200639)))}(0.5200539, 1.378993)", @@ -63,277 +63,277 @@ "-1": null }, "MetaInf": { - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 14.715, 18.639)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact42": { "workflow_id": 0, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(4.905, 7.3575, -24.0345)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact43": { "workflow_id": 1, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact44": { "workflow_id": 2, "active": true, "isImmutable": false }, - "0.8": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact45": { "workflow_id": 3, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 0)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact46": { "workflow_id": 4, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 19.62)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact47": { "workflow_id": 5, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.62, 19.62)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact48": { "workflow_id": 6, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.62, 0)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact49": { "workflow_id": 7, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact36": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact50": { "workflow_id": 8, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 0, 0)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact51": { "workflow_id": 9, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 0, 19.62)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact52": { "workflow_id": 10, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 19.62, 19.62)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact53": { "workflow_id": 11, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 19.62, 0)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact54": { "workflow_id": 12, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact37": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact55": { "workflow_id": 13, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 12.2625)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact56": { "workflow_id": 14, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 14.715)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact57": { "workflow_id": 15, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 0, 14.715)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact58": { "workflow_id": 16, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 0, 12.2625)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact59": { "workflow_id": 17, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact38": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact60": { "workflow_id": 18, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact39": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact65": { "workflow_id": 19, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact40": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact70": { "workflow_id": 20, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact41": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact75": { "workflow_id": 21, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact42": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact80": { "workflow_id": 22, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact43": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact85": { "workflow_id": 23, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 9.809999, 2.4525)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact86": { "workflow_id": 24, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 13.27783, 5.920335)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact87": { "workflow_id": 25, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 13.27783, 5.920335)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact88": { "workflow_id": 26, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 9.809999, 2.4525)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact89": { "workflow_id": 27, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact44": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact90": { "workflow_id": 28, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 7.3575)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact91": { "workflow_id": 29, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 9.809999)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact92": { "workflow_id": 30, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 4.905, 9.809999)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact93": { "workflow_id": 31, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 4.905, 7.3575)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact94": { "workflow_id": 32, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact45": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact95": { "workflow_id": 33, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 14.05773, 7.3575)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact96": { "workflow_id": 34, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 9.809999, 9.809999)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact97": { "workflow_id": 35, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 9.809999, 9.809999)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact98": { "workflow_id": 36, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 14.05773, 7.3575)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact99": { "workflow_id": 37, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact46": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact100": { "workflow_id": 38, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 16.677, 11.31583)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact101": { "workflow_id": 39, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 14.715, 14.715)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact102": { "workflow_id": 40, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 14.715, 14.715)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact103": { "workflow_id": 41, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 16.677, 11.31583)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact104": { "workflow_id": 42, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact47": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact105": { "workflow_id": 43, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 14.715)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact106": { "workflow_id": 44, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 7.3575, 18.96273)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact107": { "workflow_id": 45, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 7.3575, 18.96273)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact108": { "workflow_id": 46, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 4.905, 14.715)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact109": { "workflow_id": 47, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact48": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact110": { "workflow_id": 48, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 2.4525, 2.4525)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact111": { "workflow_id": 49, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 6.70023, 4.905)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact112": { "workflow_id": 50, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 6.70023, 4.905)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact113": { "workflow_id": 51, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 2.4525, 2.4525)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact114": { "workflow_id": 52, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact49": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact115": { "workflow_id": 53, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact50": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact116": { "workflow_id": 54, "active": true, "isImmutable": false @@ -586,554 +586,554 @@ }, "Workflow": [ { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 14.715, 18.639)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact42", "samestep": false, "steplink": 1, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(4.905, 7.3575, -24.0345)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact43", "samestep": false, "steplink": 2, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact44", "samestep": false, "steplink": 3, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "0.8", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact45", "samestep": false, "steplink": 4, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 0)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact46", "samestep": false, "steplink": 5, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 19.62)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact47", "samestep": false, "steplink": 6, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.62, 19.62)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact48", "samestep": false, "steplink": 7, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.62, 0)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact49", "samestep": false, "steplink": 9, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact36", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact50", "samestep": true, "steplink": 7, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 0, 0)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact51", "samestep": false, "steplink": 10, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 0, 19.62)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact52", "samestep": false, "steplink": 11, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 19.62, 19.62)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact53", "samestep": false, "steplink": 12, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 19.62, 0)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact54", "samestep": false, "steplink": 14, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact37", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact55", "samestep": true, "steplink": 12, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 12.2625)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact56", "samestep": false, "steplink": 15, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 14.715)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact57", "samestep": false, "steplink": 16, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 0, 14.715)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact58", "samestep": false, "steplink": 17, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 0, 12.2625)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact59", "samestep": false, "steplink": 24, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact38", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact60", "samestep": true, "steplink": 17, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact39", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact65", "samestep": true, "steplink": 17, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact40", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact70", "samestep": true, "steplink": 17, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact41", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact75", "samestep": true, "steplink": 17, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact42", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact80", "samestep": true, "steplink": 17, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact43", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact85", "samestep": true, "steplink": 17, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 9.809999, 2.4525)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact86", "samestep": false, "steplink": 25, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 13.27783, 5.920335)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact87", "samestep": false, "steplink": 26, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 13.27783, 5.920335)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact88", "samestep": false, "steplink": 27, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 9.809999, 2.4525)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact89", "samestep": false, "steplink": 29, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact44", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact90", "samestep": true, "steplink": 27, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 7.3575)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact91", "samestep": false, "steplink": 30, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 9.809999)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact92", "samestep": false, "steplink": 31, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 4.905, 9.809999)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact93", "samestep": false, "steplink": 32, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 4.905, 7.3575)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact94", "samestep": false, "steplink": 34, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact45", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact95", "samestep": true, "steplink": 32, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 14.05773, 7.3575)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact96", "samestep": false, "steplink": 35, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 9.809999, 9.809999)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact97", "samestep": false, "steplink": 36, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 9.809999, 9.809999)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact98", "samestep": false, "steplink": 37, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 14.05773, 7.3575)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact99", "samestep": false, "steplink": 39, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact46", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact100", "samestep": true, "steplink": 37, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 16.677, 11.31583)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact101", "samestep": false, "steplink": 40, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 14.715, 14.715)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact102", "samestep": false, "steplink": 41, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 14.715, 14.715)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact103", "samestep": false, "steplink": 42, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 16.677, 11.31583)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact104", "samestep": false, "steplink": 44, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact47", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact105", "samestep": true, "steplink": 42, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 14.715)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact106", "samestep": false, "steplink": 45, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 7.3575, 18.96273)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact107", "samestep": false, "steplink": 46, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 7.3575, 18.96273)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact108", "samestep": false, "steplink": 47, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 4.905, 14.715)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact109", "samestep": false, "steplink": 49, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact48", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact110", "samestep": true, "steplink": 47, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 2.4525, 2.4525)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact111", "samestep": false, "steplink": 50, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 6.70023, 4.905)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact112", "samestep": false, "steplink": 51, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 6.70023, 4.905)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact113", "samestep": false, "steplink": 52, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 2.4525, 2.4525)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact114", "samestep": false, "steplink": 55, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact49", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact115", "samestep": true, "steplink": 52, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact50", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact116", "samestep": true, "steplink": 52, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}", @@ -1143,7 +1143,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(4.905E-05, 14.71507, 18.63876), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(4.905, 7.3575, -24.0345), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(0)))}", @@ -1153,7 +1153,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(4.905E-05, 14.71507, 18.63876), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(4.905, 7.3575, -24.0345), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(0)))}(-1E-05, 0.2860328)", @@ -1163,7 +1163,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(1.403079, 16.41841, 11.76398), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(3.924, 14.82811, -12.77051), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(0.2860328)))}", @@ -1173,7 +1173,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(1.403079, 16.41841, 11.76398), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(3.924, 14.82811, -12.77051), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(0.2860328)))}(0.2860228, 0.5200639)", @@ -1183,7 +1183,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(2.321449, 19.6199, 8.775176), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(3.1392, -10.02582, -10.21641), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(0.5200639)))}", @@ -1193,7 +1193,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(2.321449, 19.6199, 8.775176), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(3.1392, -10.02582, -10.21641), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(0.5200639)))}(0.5200539, 1.378993)", @@ -1203,7 +1203,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(5.017825, 7.389571, 8.173129E-05), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(2.51136, -14.76153, 8.173129), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(1.378993)))}", @@ -1213,7 +1213,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(5.017825, 7.389571, 8.173129E-05), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(2.51136, -14.76153, 8.173129), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(1.378993)))}(1.378983, 1.681127)", @@ -1223,7 +1223,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(5.776611, 2.481855, 2.469301), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(2.009088, -1.427282, -15.54984), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(1.681127)))}", @@ -1233,7 +1233,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(5.776611, 2.481855, 2.469301), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(2.009088, -1.427282, -15.54984), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(1.681127)))}(1.681117, 1.839926)", @@ -1243,7 +1243,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(6.095668, 2.13149, 0.0001243987), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(1.607271, -2.388081, 12.43987), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(1.839926)))}", @@ -1253,7 +1253,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(6.095668, 2.13149, 0.0001243987), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(1.607271, -2.388081, 12.43987), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(1.839926)))}(1.839916, 2.299212)", @@ -1263,7 +1263,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(6.833878, 5.526812E-05, 5.713683), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(1.285817, 5.514941, 9.9519), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(2.299212)))}", @@ -1273,7 +1273,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(6.833878, 5.526812E-05, 5.713683), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(1.285817, 5.514941, 9.9519), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(2.299212)))}(2.299202, 3.423573)", @@ -1283,7 +1283,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(8.279611, 4.411982E-05, 16.90329), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(1.028653, 4.412031, 7.96152), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(3.423573)))}", @@ -1293,7 +1293,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(8.279611, 4.411982E-05, 16.90329), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(1.028653, 4.412031, 7.96152), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(3.423573)))}(3.423563, 3.764802)", @@ -1303,7 +1303,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(8.630627, 0.934442, 19.61994), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0.8229226, 0.8516521, -6.369216), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(3.764802)))}", @@ -1313,7 +1313,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(8.630627, 0.934442, 19.61994), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0.8229226, 0.8516521, -6.369216), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(3.764802)))}(3.764792, 4.296639)", @@ -1323,7 +1323,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.068295, 3.480565E-05, 16.2325), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0.6583381, 3.492535, -5.095373), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(4.296639)))}", @@ -1333,7 +1333,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.068295, 3.480565E-05, 16.2325), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0.6583381, 3.492535, -5.095373), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(4.296639)))}(4.296629, 5.008685)", @@ -1343,7 +1343,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.537067, 2.770216E-05, 12.60432), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0.5266705, 2.794107, -4.076298), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(5.008685)))}", @@ -1353,7 +1353,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.537067, 2.770216E-05, 12.60432), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0.5266705, 2.794107, -4.076298), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(5.008685)))}(5.008675, 5.57834)", @@ -1363,7 +1363,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.837091, 2.235314E-05, 10.28221), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0.4213364, 2.235363, -3.261039), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(5.57834)))}", @@ -1373,7 +1373,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.837091, 2.235314E-05, 10.28221), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0.4213364, 2.235363, -3.261039), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(5.57834)))}(5.57833, 6.034081)", @@ -1383,7 +1383,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(10.02912, 1.800241E-05, 8.79599), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0.3370691, 1.788369, -2.608831), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(6.034081)))}", @@ -1393,7 +1393,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(10.02912, 1.800241E-05, 8.79599), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0.3370691, 1.788369, -2.608831), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(6.034081)))}(6.034071, 6.398692)", @@ -1403,7 +1403,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(10.15202, 1.430725E-05, 7.844759), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0.2696553, 1.430775, -2.087065), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(6.398692)))}", @@ -1413,7 +1413,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(10.15202, 1.430725E-05, 7.844759), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0.2696553, 1.430775, -2.087065), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(6.398692)))}(6.398682, 6.690399)", @@ -1423,7 +1423,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(10.23068, 1.144649E-05, 7.235931), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0.2157243, 1.144698, -1.669652), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(6.690399)))}", @@ -1433,7 +1433,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(10.23068, 1.144649E-05, 7.235931), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0.2157243, 1.144698, -1.669652), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(6.690399)))}(6.690389, 6.923783)", @@ -1443,7 +1443,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(10.28103, 9.15788E-06, 6.846248), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0.1725794, 0.915837, -1.335721), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(6.923783)))}", @@ -1453,7 +1453,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[Pos(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Vel(http://mathhub.info/MitM/core/geometry?3DGeometry?point), Acc(http://mathhub.info/MitM/core/geometry?3DGeometry?point), t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(Pos), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Vel), Variable_(t)), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(0.5, http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(Acc), http://mathhub.info/MitM/Foundation?RealLiterals?times_real_lit(Variable_(t), Variable_(t))))))}[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(10.28103, 9.15788E-06, 6.846248), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0.1725794, 0.915837, -1.335721), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(6.923783)))}(6.923773, 6.923783)", @@ -1463,7 +1463,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(10.28103, 1.830693E-06, 6.846238), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0.1380635, -0.7326696, -1.068577), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(6.923783)))}", @@ -1473,7 +1473,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(10.28103, 7.69156E-06, 6.846229), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0.1104508, 0.5861357, -0.8548617), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(6.923783)))}", @@ -1483,7 +1483,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(10.28103, 3.001984E-06, 6.846222), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0.08836066, -0.4689085, -0.6838894), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(6.923783)))}", @@ -1493,7 +1493,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(10.28103, 6.752762E-06, 6.846217), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0.07068853, 0.3751268, -0.5471115), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(6.923783)))}", @@ -1503,7 +1503,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(10.28103, 3.751257E-06, 6.846213), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0.05655083, -0.3001015, -0.4376892), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(6.923783)))}", @@ -1513,7 +1513,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(10.28103, 6.151578E-06, 6.84621), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0.04524066, 0.2400812, -0.3501514), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(6.923783)))}", @@ -1523,7 +1523,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(10.28103, 4.230438E-06, 6.846207), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0.03619253, -0.192065, -0.2801211), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(6.923783)))}", @@ -1533,7 +1533,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(10.28103, 5.766467E-06, 6.846204), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0.02895403, 0.153652, -0.2240969), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(6.923783)))}", @@ -1543,7 +1543,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(10.28103, 4.536761E-06, 6.846202), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0.02316322, -0.1229216, -0.1792775), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(6.923783)))}", @@ -1553,7 +1553,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(10.28103, 5.519642E-06, 6.846201), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0.01853058, 0.09833726, -0.143422), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(6.923783)))}", @@ -1563,7 +1563,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(10.28103, 4.732454E-06, 6.8462), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0.01482446, -0.07866981, -0.1147376), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(6.923783)))}", @@ -1573,7 +1573,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(10.28103, 5.361322E-06, 6.846199), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0.01185957, 0.06293585, -0.0917901), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(6.923783)))}", @@ -1583,7 +1583,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(10.28103, 4.857344E-06, 6.846198), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0.009487656, -0.05034868, -0.07343208), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(6.923783)))}", @@ -1593,7 +1593,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(10.28103, 5.259643E-06, 6.846198), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0.007590125, 0.04027895, -0.05874566), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(6.923783)))}", @@ -1603,7 +1603,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(10.28103, 4.936921E-06, 6.846197), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0.0060721, -0.03222316, -0.04699653), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(6.923783)))}", @@ -1613,7 +1613,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { "Id": "[t(http://mathhub.info/MitM/Foundation?RealLiterals?real_lit)] => {MakeObjectArray(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(10.28103, 5.194215E-06, 6.846197), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0.00485768, 0.02577853, -0.03759722), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0), http://mathhub.info/MitM/Foundation?RealLiterals?plus_real_lit(Variable_(t), http://mathhub.info/MitM/Foundation?RealLiterals?minus_real_lit(6.923783)))}", @@ -1623,7 +1623,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 } ], "marker": 104, @@ -1634,7 +1634,7 @@ "MaxLabelId": 124, "UnusedLabelIds": [], "JsonFactSpace": { - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 14.715, 18.639)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact42": { "Point": { "x": 0.0, "y": 14.715, @@ -1658,34 +1658,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 14.715 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 18.639 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact42" }, "Label": "A", "hasCustomLabel": false, "LabelId": 1 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(4.905, 7.3575, -24.0345)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact43": { "Point": { "x": 4.90499973, "y": 7.3575, @@ -1709,34 +1689,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 4.90499973 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 7.3575 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": -24.0345 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact43" }, "Label": "B", "hasCustomLabel": false, "LabelId": 2 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, -9.809999, 0)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact44": { "Point": { "x": 0.0, "y": -9.809999, @@ -1760,46 +1720,25 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": -9.809999 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact44" }, "Label": "C", "hasCustomLabel": false, "LabelId": 3 }, - "0.8": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact45": { "value": 0.8, "s_type": "RealLitFact", "ServerDefinition": { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.8 + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact45" }, "Label": "D", "hasCustomLabel": false, "LabelId": 4 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 0)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact46": { "Point": { "x": 0.0, "y": 0.0, @@ -1816,34 +1755,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact46" }, "Label": "E", "hasCustomLabel": false, "LabelId": 5 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 19.62)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact47": { "Point": { "x": 0.0, "y": 0.0, @@ -1867,34 +1786,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 19.6199989 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact47" }, "Label": "F", "hasCustomLabel": false, "LabelId": 6 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.62, 19.62)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact48": { "Point": { "x": 0.0, "y": 19.6199989, @@ -1918,34 +1817,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 19.6199989 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 19.6199989 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact48" }, "Label": "G", "hasCustomLabel": false, "LabelId": 7 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.62, 0)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact49": { "Point": { "x": 0.0, "y": 19.6199989, @@ -1969,50 +1848,30 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 19.6199989 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact49" }, "Label": "H", "hasCustomLabel": false, "LabelId": 8 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact36": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact50": { "Pids": [ - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 0)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 19.62)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.62, 19.62)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.62, 0)" + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact46", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact47", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact48", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact49" ], "s_type": "QuadFact", "ServerDefinition": { "kind": "OMS", - "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact36" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact50" }, "Label": "I", "hasCustomLabel": false, "LabelId": 9 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 0, 0)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact51": { "Point": { "x": 19.6199989, "y": 0.0, @@ -2036,34 +1895,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 19.6199989 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact51" }, "Label": "J", "hasCustomLabel": false, "LabelId": 10 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 0, 19.62)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact52": { "Point": { "x": 19.6199989, "y": 0.0, @@ -2087,34 +1926,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 19.6199989 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 19.6199989 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact52" }, "Label": "K", "hasCustomLabel": false, "LabelId": 11 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 19.62, 19.62)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact53": { "Point": { "x": 19.6199989, "y": 19.6199989, @@ -2138,34 +1957,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 19.6199989 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 19.6199989 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 19.6199989 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact53" }, "Label": "L", "hasCustomLabel": false, "LabelId": 12 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 19.62, 0)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact54": { "Point": { "x": 19.6199989, "y": 19.6199989, @@ -2189,50 +1988,30 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 19.6199989 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 19.6199989 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact54" }, "Label": "M", "hasCustomLabel": false, "LabelId": 13 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact37": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact55": { "Pids": [ - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 0, 0)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 0, 19.62)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 19.62, 19.62)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 19.62, 0)" + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact51", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact52", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact53", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact54" ], "s_type": "QuadFact", "ServerDefinition": { "kind": "OMS", - "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact37" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact55" }, "Label": "N", "hasCustomLabel": false, "LabelId": 14 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 12.2625)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact56": { "Point": { "x": 0.0, "y": 0.0, @@ -2256,34 +2035,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 12.2625 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact56" }, "Label": "O", "hasCustomLabel": false, "LabelId": 15 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 14.715)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact57": { "Point": { "x": 0.0, "y": 0.0, @@ -2307,34 +2066,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 14.715 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact57" }, "Label": "P", "hasCustomLabel": false, "LabelId": 16 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 0, 14.715)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact58": { "Point": { "x": 19.6199989, "y": 0.0, @@ -2358,34 +2097,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 19.6199989 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 14.715 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact58" }, "Label": "Q", "hasCustomLabel": false, "LabelId": 17 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 0, 12.2625)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact59": { "Point": { "x": 19.6199989, "y": 0.0, @@ -2409,130 +2128,110 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 19.6199989 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 12.2625 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact59" }, "Label": "R", "hasCustomLabel": false, "LabelId": 18 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact38": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact60": { "Pids": [ - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 12.2625)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 14.715)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 0, 14.715)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 0, 12.2625)" + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact56", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact57", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact58", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact59" ], "s_type": "QuadFact", "ServerDefinition": { "kind": "OMS", - "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact38" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact60" }, "Label": "S", "hasCustomLabel": false, "LabelId": 19 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact39": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact65": { "Pids": [ - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 0)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.62, 0)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 19.62, 0)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 0, 0)" + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact46", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact49", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact54", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact51" ], "s_type": "QuadFact", "ServerDefinition": { "kind": "OMS", - "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact39" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact65" }, "Label": "X", "hasCustomLabel": false, "LabelId": 24 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact40": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact70": { "Pids": [ - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 19.62)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.62, 19.62)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 19.62, 19.62)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 0, 19.62)" + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact47", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact48", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact53", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact52" ], "s_type": "QuadFact", "ServerDefinition": { "kind": "OMS", - "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact40" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact70" }, "Label": "]", "hasCustomLabel": false, "LabelId": 29 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact41": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact75": { "Pids": [ - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.62, 0)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.62, 19.62)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 19.62, 19.62)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 19.62, 0)" + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact49", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact48", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact53", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact54" ], "s_type": "QuadFact", "ServerDefinition": { "kind": "OMS", - "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact41" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact75" }, "Label": "b", "hasCustomLabel": false, "LabelId": 34 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact42": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact80": { "Pids": [ - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 14.715)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 19.62)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 0, 19.62)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 0, 14.715)" + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact57", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact47", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact52", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact58" ], "s_type": "QuadFact", "ServerDefinition": { "kind": "OMS", - "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact42" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact80" }, "Label": "g", "hasCustomLabel": false, "LabelId": 39 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact43": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact85": { "Pids": [ - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 0)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 12.2625)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 0, 12.2625)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 0, 0)" + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact46", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact56", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact59", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact51" ], "s_type": "QuadFact", "ServerDefinition": { "kind": "OMS", - "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact43" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact85" }, "Label": "l", "hasCustomLabel": false, "LabelId": 44 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 9.809999, 2.4525)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact86": { "Point": { "x": 0.0, "y": 9.809999, @@ -2556,34 +2255,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 9.809999 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 2.45249987 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact86" }, "Label": "m", "hasCustomLabel": false, "LabelId": 45 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 13.27783, 5.920335)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact87": { "Point": { "x": 0.0, "y": 13.2778349, @@ -2607,34 +2286,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 13.2778349 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 5.920335 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact87" }, "Label": "n", "hasCustomLabel": false, "LabelId": 46 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 13.27783, 5.920335)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact88": { "Point": { "x": 9.809999, "y": 13.2778349, @@ -2658,34 +2317,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 9.809999 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 13.2778349 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 5.920335 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact88" }, "Label": "o", "hasCustomLabel": false, "LabelId": 47 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 9.809999, 2.4525)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact89": { "Point": { "x": 9.809999, "y": 9.809999, @@ -2709,50 +2348,30 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 9.809999 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 9.809999 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 2.45249987 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact89" }, "Label": "p", "hasCustomLabel": false, "LabelId": 48 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact44": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact90": { "Pids": [ - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 9.809999, 2.4525)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 13.27783, 5.920335)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 13.27783, 5.920335)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 9.809999, 2.4525)" + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact86", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact87", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact88", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact89" ], "s_type": "QuadFact", "ServerDefinition": { "kind": "OMS", - "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact44" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact90" }, "Label": "q", "hasCustomLabel": false, "LabelId": 49 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 7.3575)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact91": { "Point": { "x": 0.0, "y": 4.90499973, @@ -2776,34 +2395,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 4.90499973 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 7.3575 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact91" }, "Label": "r", "hasCustomLabel": false, "LabelId": 50 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 9.809999)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact92": { "Point": { "x": 0.0, "y": 4.90499973, @@ -2827,34 +2426,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 4.90499973 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 9.809999 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact92" }, "Label": "s", "hasCustomLabel": false, "LabelId": 51 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 4.905, 9.809999)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact93": { "Point": { "x": 9.809999, "y": 4.90499973, @@ -2878,34 +2457,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 9.809999 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 4.90499973 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 9.809999 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact93" }, "Label": "t", "hasCustomLabel": false, "LabelId": 52 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 4.905, 7.3575)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact94": { "Point": { "x": 9.809999, "y": 4.90499973, @@ -2929,50 +2488,30 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 9.809999 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 4.90499973 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 7.3575 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact94" }, "Label": "u", "hasCustomLabel": false, "LabelId": 53 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact45": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact95": { "Pids": [ - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 7.3575)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 9.809999)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 4.905, 9.809999)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 4.905, 7.3575)" + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact91", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact92", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact93", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact94" ], "s_type": "QuadFact", "ServerDefinition": { "kind": "OMS", - "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact45" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact95" }, "Label": "v", "hasCustomLabel": false, "LabelId": 54 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 14.05773, 7.3575)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact96": { "Point": { "x": 0.0, "y": 14.05773, @@ -2996,34 +2535,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 14.05773 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 7.3575 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact96" }, "Label": "w", "hasCustomLabel": false, "LabelId": 55 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 9.809999, 9.809999)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact97": { "Point": { "x": 0.0, "y": 9.809999, @@ -3047,34 +2566,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 9.809999 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 9.809999 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact97" }, "Label": "x", "hasCustomLabel": false, "LabelId": 56 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 9.809999, 9.809999)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact98": { "Point": { "x": 9.809999, "y": 9.809999, @@ -3098,34 +2597,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 9.809999 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 9.809999 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 9.809999 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact98" }, "Label": "y", "hasCustomLabel": false, "LabelId": 57 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 14.05773, 7.3575)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact99": { "Point": { "x": 9.809999, "y": 14.05773, @@ -3149,50 +2628,30 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 9.809999 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 14.05773 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 7.3575 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact99" }, "Label": "z", "hasCustomLabel": false, "LabelId": 58 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact46": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact100": { "Pids": [ - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 14.05773, 7.3575)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 9.809999, 9.809999)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 9.809999, 9.809999)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 14.05773, 7.3575)" + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact96", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact97", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact98", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact99" ], "s_type": "QuadFact", "ServerDefinition": { "kind": "OMS", - "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact46" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact100" }, "Label": "{", "hasCustomLabel": false, "LabelId": 59 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 16.677, 11.31583)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact101": { "Point": { "x": 0.0, "y": 16.677, @@ -3216,34 +2675,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 16.677 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 11.315835 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact101" }, "Label": "|", "hasCustomLabel": false, "LabelId": 60 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 14.715, 14.715)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact102": { "Point": { "x": 0.0, "y": 14.715, @@ -3274,34 +2713,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 14.715 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 14.715 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact102" }, "Label": "}", "hasCustomLabel": false, "LabelId": 61 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 14.715, 14.715)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact103": { "Point": { "x": 9.809999, "y": 14.715, @@ -3325,34 +2744,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 9.809999 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 14.715 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 14.715 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact103" }, "Label": "~", "hasCustomLabel": false, "LabelId": 62 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 16.677, 11.31583)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact104": { "Point": { "x": 9.809999, "y": 16.677, @@ -3376,50 +2775,30 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 9.809999 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 16.677 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 11.315835 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact104" }, "Label": "", "hasCustomLabel": false, "LabelId": 63 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact47": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact105": { "Pids": [ - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 16.677, 11.31583)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 14.715, 14.715)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 14.715, 14.715)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 16.677, 11.31583)" + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact101", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact102", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact103", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact104" ], "s_type": "QuadFact", "ServerDefinition": { "kind": "OMS", - "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact47" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact105" }, "Label": "€", "hasCustomLabel": false, "LabelId": 64 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 14.715)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact106": { "Point": { "x": 0.0, "y": 4.90499973, @@ -3443,34 +2822,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 4.90499973 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 14.715 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact106" }, "Label": "Â", "hasCustomLabel": false, "LabelId": 65 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 7.3575, 18.96273)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact107": { "Point": { "x": 0.0, "y": 7.3575, @@ -3494,34 +2853,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 7.3575 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 18.96273 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact107" }, "Label": "‚", "hasCustomLabel": false, "LabelId": 66 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 7.3575, 18.96273)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact108": { "Point": { "x": 9.809999, "y": 7.3575, @@ -3552,34 +2891,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 9.809999 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 7.3575 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 18.96273 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact108" }, "Label": "ƒ", "hasCustomLabel": false, "LabelId": 67 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 4.905, 14.715)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact109": { "Point": { "x": 9.809999, "y": 4.90499973, @@ -3603,50 +2922,30 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 9.809999 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 4.90499973 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 14.715 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact109" }, "Label": "„", "hasCustomLabel": false, "LabelId": 68 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact48": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact110": { "Pids": [ - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 14.715)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 7.3575, 18.96273)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 7.3575, 18.96273)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 4.905, 14.715)" + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact106", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact107", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact108", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact109" ], "s_type": "QuadFact", "ServerDefinition": { "kind": "OMS", - "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact48" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact110" }, "Label": "\u0085", "hasCustomLabel": false, "LabelId": 69 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 2.4525, 2.4525)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact111": { "Point": { "x": 0.0, "y": 2.45249987, @@ -3670,34 +2969,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 2.45249987 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 2.45249987 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact111" }, "Label": "†", "hasCustomLabel": false, "LabelId": 70 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 6.70023, 4.905)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact112": { "Point": { "x": 0.0, "y": 6.70023, @@ -3721,34 +3000,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 6.70023 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 4.90499973 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact112" }, "Label": "‡", "hasCustomLabel": false, "LabelId": 71 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 6.70023, 4.905)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact113": { "Point": { "x": 9.809999, "y": 6.70023, @@ -3779,34 +3038,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 9.809999 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 6.70023 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 4.90499973 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact113" }, "Label": "ˆ", "hasCustomLabel": false, "LabelId": 72 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 2.4525, 2.4525)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact114": { "Point": { "x": 9.809999, "y": 2.45249987, @@ -3837,50 +3076,30 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 9.809999 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 2.45249987 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 2.45249987 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact114" }, "Label": "‰", "hasCustomLabel": false, "LabelId": 73 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact49": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact115": { "Pids": [ - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 2.4525, 2.4525)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 6.70023, 4.905)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 6.70023, 4.905)", - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 2.4525, 2.4525)" + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact111", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact112", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact113", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact114" ], "s_type": "QuadFact", "ServerDefinition": { "kind": "OMS", - "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact49" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact115" }, "Label": "Š", "hasCustomLabel": false, "LabelId": 74 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact50": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact116": { "lids": [], "payload": [ { @@ -3892,19 +3111,19 @@ "arguments": [ { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 0)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact46" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 19.62)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact47" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.62, 19.62)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact48" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.62, 0)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact49" } ] }, @@ -3917,19 +3136,19 @@ "arguments": [ { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 0, 0)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact51" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 0, 19.62)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact52" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 19.62, 19.62)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact53" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 19.62, 0)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact54" } ] }, @@ -3942,19 +3161,19 @@ "arguments": [ { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 12.2625)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact56" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 14.715)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact57" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 0, 14.715)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact58" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 0, 12.2625)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact59" } ] }, @@ -3967,19 +3186,19 @@ "arguments": [ { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 0)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact46" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.62, 0)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact49" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 19.62, 0)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact54" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 0, 0)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact51" } ] }, @@ -3992,19 +3211,19 @@ "arguments": [ { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 19.62)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact47" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.62, 19.62)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact48" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 19.62, 19.62)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact53" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 0, 19.62)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact52" } ] }, @@ -4017,19 +3236,19 @@ "arguments": [ { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.62, 0)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact49" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 19.62, 19.62)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact48" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 19.62, 19.62)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact53" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 19.62, 0)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact54" } ] }, @@ -4042,19 +3261,19 @@ "arguments": [ { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 14.715)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact57" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 19.62)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact47" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 0, 19.62)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact52" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 0, 14.715)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact58" } ] }, @@ -4067,19 +3286,19 @@ "arguments": [ { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 0)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact46" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 12.2625)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact56" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 0, 12.2625)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact59" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(19.62, 0, 0)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact51" } ] }, @@ -4092,19 +3311,19 @@ "arguments": [ { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 9.809999, 2.4525)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact86" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 13.27783, 5.920335)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact87" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 13.27783, 5.920335)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact88" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 9.809999, 2.4525)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact89" } ] }, @@ -4117,19 +3336,19 @@ "arguments": [ { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 7.3575)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact91" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 9.809999)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact92" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 4.905, 9.809999)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact93" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 4.905, 7.3575)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact94" } ] }, @@ -4142,19 +3361,19 @@ "arguments": [ { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 14.05773, 7.3575)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact96" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 9.809999, 9.809999)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact97" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 9.809999, 9.809999)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact98" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 14.05773, 7.3575)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact99" } ] }, @@ -4167,19 +3386,19 @@ "arguments": [ { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 16.677, 11.31583)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact101" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 14.715, 14.715)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact102" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 14.715, 14.715)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact103" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 16.677, 11.31583)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact104" } ] }, @@ -4192,19 +3411,19 @@ "arguments": [ { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 4.905, 14.715)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact106" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 7.3575, 18.96273)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact107" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 7.3575, 18.96273)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact108" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 4.905, 14.715)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact109" } ] }, @@ -4217,19 +3436,19 @@ "arguments": [ { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 2.4525, 2.4525)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact111" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 6.70023, 4.905)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact112" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 6.70023, 4.905)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact113" }, { "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(9.809999, 2.4525, 2.4525)" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact114" } ] } @@ -4271,7 +3490,7 @@ "s_type": "ListFact", "ServerDefinition": { "kind": "OMS", - "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory2?fact50" + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact116" }, "Label": "‹", "hasCustomLabel": false, diff --git a/Assets/Stages/TechDemo A.JSON b/Assets/Stages/TechDemo A.JSON index 815895d3..c13f4330 100644 --- a/Assets/Stages/TechDemo A.JSON +++ b/Assets/Stages/TechDemo A.JSON @@ -8,7 +8,7 @@ "ValidationSet": [ { "MasterIDs": [ - "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 0), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 6, 0))" + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact3" ], "SolutionIndex": [], "RelationIndex": [], @@ -21,17 +21,17 @@ "-1": null }, "MetaInf": { - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 0)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1": { "workflow_id": 0, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 6, 0)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact2": { "workflow_id": 1, "active": true, "isImmutable": false }, - "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 0), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 6, 0))": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact3": { "workflow_id": 2, "active": true, "isImmutable": false @@ -39,34 +39,34 @@ }, "Workflow": [ { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 0)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1", "samestep": false, "steplink": 3, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 6, 0)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact2", "samestep": true, "steplink": 0, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 0), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 6, 0))", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact3", "samestep": true, "steplink": 0, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 } ], "marker": 3, @@ -77,7 +77,7 @@ "MaxLabelId": 2, "UnusedLabelIds": [], "JsonFactSpace": { - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 0)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1": { "Point": { "x": 0.0, "y": 0.0, @@ -94,34 +94,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1" }, "Label": "A", "hasCustomLabel": false, "LabelId": 1 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 6, 0)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact2": { "Point": { "x": 0.0, "y": 6.0, @@ -145,37 +125,17 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 6.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact2" }, "Label": "B", "hasCustomLabel": false, "LabelId": 2 }, - "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 0), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 6, 0))": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact3": { "s_type": "LineFact", - "Pid1": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 0)", - "Pid2": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 6, 0)", + "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1", + "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact2", "Dir": { "x": 0.0, "y": -1.0, @@ -184,21 +144,8 @@ "sqrMagnitude": 1.0 }, "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric" - }, - "arguments": [ - { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 0)" - }, - { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 6, 0)" - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact3" }, "Label": "[AB]", "hasCustomLabel": false, diff --git a/Assets/Stages/TechDemo B.JSON b/Assets/Stages/TechDemo B.JSON index d322b65c..50d370c0 100644 --- a/Assets/Stages/TechDemo B.JSON +++ b/Assets/Stages/TechDemo B.JSON @@ -8,7 +8,7 @@ "ValidationSet": [ { "MasterIDs": [ - "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 0), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 6, 0))" + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact6" ], "SolutionIndex": [], "RelationIndex": [], @@ -16,7 +16,7 @@ }, { "MasterIDs": [ - "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 0), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 6, 0))" + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact6" ], "SolutionIndex": [], "RelationIndex": [], @@ -39,17 +39,17 @@ "-1": null }, "MetaInf": { - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 0)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact4": { "workflow_id": 0, "active": true, "isImmutable": false }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 6, 0)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5": { "workflow_id": 1, "active": true, "isImmutable": false }, - "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 0), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 6, 0))": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact6": { "workflow_id": 2, "active": true, "isImmutable": false @@ -57,34 +57,34 @@ }, "Workflow": [ { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 0)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact4", "samestep": false, "steplink": 3, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 6, 0)", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5", "samestep": true, "steplink": 0, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 }, { - "Id": "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 0), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 6, 0))", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact6", "samestep": true, "steplink": 0, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.81129899999996269 + "GadgetTime": 0.9207362000000785 } ], "marker": 3, @@ -95,7 +95,7 @@ "MaxLabelId": 2, "UnusedLabelIds": [], "JsonFactSpace": { - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 0)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact4": { "Point": { "x": 0.0, "y": 0.0, @@ -112,34 +112,14 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact4" }, "Label": "A", "hasCustomLabel": false, "LabelId": 1 }, - "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 6, 0)": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5": { "Point": { "x": 0.0, "y": 6.0, @@ -163,37 +143,17 @@ }, "s_type": "PointFact", "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple" - }, - "arguments": [ - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 6.0 - }, - { - "kind": "OMLIT<Single>", - "type": "http://mathhub.info/MitM/Foundation?RealLiterals?real_lit", - "value": 0.0 - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5" }, "Label": "B", "hasCustomLabel": false, "LabelId": 2 }, - "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric(http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 0), http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 6, 0))": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact6": { "s_type": "LineFact", - "Pid1": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 0)", - "Pid2": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 6, 0)", + "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact4", + "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5", "Dir": { "x": 0.0, "y": -1.0, @@ -202,21 +162,8 @@ "sqrMagnitude": 1.0 }, "ServerDefinition": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "http://mathhub.info/MitM/core/geometry?Geometry/Common?metric" - }, - "arguments": [ - { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 0, 0)" - }, - { - "kind": "OMS", - "uri": "http://gl.mathhub.info/MMT/LFX/Sigma?Symbols?Tuple(0, 6, 0)" - } - ] + "kind": "OMS", + "uri": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact6" }, "Label": "[AB]", "hasCustomLabel": false, -- GitLab